/* ========================================
   Clube Levida — Identidade Visual
   Azul Celeste #0468BF · Azul Puro #049DD9 · Pêssego #F27244
   Sora (display) + Hanken Grotesk (corpo)
   Conceito: semente alada · céu · leveza
   ======================================== */

:root {
  /* Cores oficiais */
  --azul-celeste: #0468BF;
  --azul-puro:    #049DD9;
  --azul-deep:    #024C8C;
  --pessego:      #F27244;
  --pessego-soft: #F8A07C;
  --off-white:    #F0F2F2;
  --branco:       #FFFFFF;
  --preto:        #0F0F0F;
  --cinza-soft:   #E2E6E9;
  --cinza-medio:  #8A98A4;
  --cinza-escuro: #4A5763;

  /* Aplicações */
  --bg:           var(--off-white);
  --bg-elev:      var(--branco);
  --texto:        var(--preto);
  --texto-suave:  var(--cinza-escuro);
  --borda:        rgba(15,15,15,0.10);
  --borda-forte:  rgba(15,15,15,0.18);

  --primary:      var(--azul-celeste);
  --primary-hov:  var(--azul-deep);
  --accent:       var(--pessego);

  /* Tipografia */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;

  /* Sombras */
  --shadow-xs: 0 1px 2px rgba(2,76,140,0.06);
  --shadow-sm: 0 2px 8px rgba(2,76,140,0.08), 0 1px 2px rgba(2,76,140,0.05);
  --shadow-md: 0 8px 28px rgba(2,76,140,0.12), 0 2px 6px rgba(2,76,140,0.06);
  --shadow-lg: 0 24px 60px -20px rgba(2,76,140,0.30), 0 8px 20px -8px rgba(2,76,140,0.16);

  /* Raios */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-feature-settings: "ss01", "ss02";
  color: var(--texto);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--preto);
  line-height: 1.15;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--primary-hov); }

img, svg { max-width: 100%; display: block; }

::selection { background: rgba(4,157,217,0.25); color: var(--preto); }

/* ========================================
   Container
   ======================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

@media (min-width: 1200px) {
  .container { padding: 0 40px; }
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  background: var(--azul-celeste);
  box-shadow: 0 2px 10px rgba(2,76,140,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--branco);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  height: 40px;
}

.logo img,
.logo svg {
  height: 40px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--branco);
  text-decoration: none;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-display);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--pessego);
  transition: width .25s ease, left .25s ease;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--branco); }
.nav-links a:hover::after { width: 100%; left: 0; }

.header-actions { display: flex; gap: 10px; align-items: center; }

/* Botões dentro do header — sobre azul celeste */
.site-header .btn-secondary {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255,255,255,0.55);
}
.site-header .btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  color: var(--branco);
  border-color: var(--branco);
}

.site-header .btn-primary {
  background: var(--branco);
  color: var(--azul-celeste);
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.6);
}
.site-header .btn-primary:hover {
  background: var(--off-white);
  color: var(--azul-deep);
}

.hamburger {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--branco);
  transition: background .15s ease, border-color .15s ease;
}
.hamburger:hover { background: rgba(255,255,255,0.20); border-color: var(--branco); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  transition: transform .12s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--azul-celeste);
  color: var(--branco);
  box-shadow: 0 6px 18px -4px rgba(4,104,191,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, transparent 45%, rgba(242,114,68,0.30) 50%, transparent 55%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .55s ease;
}
.btn-primary:hover {
  background: var(--azul-deep);
  color: var(--branco);
  box-shadow: 0 10px 22px -6px rgba(4,104,191,0.55), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary > * { position: relative; }

.btn-secondary {
  background: transparent;
  color: var(--azul-celeste);
  border-color: var(--azul-celeste);
}
.btn-secondary:hover {
  background: var(--azul-celeste);
  color: var(--branco);
}

.btn-ghost {
  border: none;
  background: none;
  color: var(--azul-celeste);
  text-decoration: none;
  padding: 10px 4px;
  border-radius: 0;
}
.btn-ghost:hover { color: var(--azul-deep); }

.btn-accent {
  background: var(--pessego);
  color: var(--branco);
  box-shadow: 0 6px 18px -4px rgba(242,114,68,0.5), inset 0 1px 0 rgba(255,255,255,0.20);
}
.btn-accent:hover {
  background: #de5e30;
  color: var(--branco);
  box-shadow: 0 12px 26px -6px rgba(242,114,68,0.6), inset 0 1px 0 rgba(255,255,255,0.24);
}
.cta-section .btn-accent,
section.section-azul-celeste .btn-accent,
section.section-azul-puro .btn-accent { background: var(--pessego); color: var(--branco); }
.cta-section .btn-accent:hover,
section.section-azul-celeste .btn-accent:hover,
section.section-azul-puro .btn-accent:hover { background: #de5e30; color: var(--branco); }

.btn-sm  { padding: 8px 16px;  font-size: 13px; }
.btn-lg  { padding: 16px 30px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* ========================================
   ENTRAR DROPDOWN
   ======================================== */
.entrar-wrapper { position: relative; }

.entrar-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-md);
  min-width: 200px;
  z-index: 110;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  animation: dropdown-in .18s ease-out;
}
.entrar-dropdown.active { display: block; }

@keyframes dropdown-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.entrar-dropdown a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--cinza-escuro);
  border-bottom: 1px solid var(--borda);
  transition: background .15s ease, color .15s ease;
}
.entrar-dropdown a:last-child { border-bottom: none; }
.entrar-dropdown a:hover { background: var(--off-white); color: var(--azul-celeste); }

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  background: var(--azul-celeste);
  padding: 8px 20px 16px;
}
.mobile-menu.active { display: block; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  text-decoration: none;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--branco); }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-color: var(--azul-deep);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--branco);
  border-top: none;
}

/* Overlay azul para garantir contraste do texto branco sobre a foto */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg,
      rgba(2,76,140,0.60) 0%,
      rgba(4,104,191,0.40) 45%,
      rgba(4,157,217,0.18) 100%);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.hero-text { max-width: 640px; }
.hero-text h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--branco);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--branco);
  text-shadow: 0 2px 24px rgba(2,28,55,0.35);
  line-height: 1.05;
}
.hero-text p {
  font-size: 19px;
  color: rgba(255,255,255,0.94);
  margin-bottom: 28px;
  max-width: 540px;
  text-shadow: 0 1px 12px rgba(2,28,55,0.3);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* `.hero-text` é reusado como bloco de conteúdo em seções claras (ex.: a
   seção Telemedicina da página Para Você). Lá o texto branco do hero não
   vale — volta para a cor padrão legível sobre fundo claro. */
section.section-cinza .hero-text h1,
section.section-branca .hero-text h1 {
  color: var(--preto);
  -webkit-text-fill-color: var(--preto);
  text-shadow: none;
}
section.section-cinza .hero-text p,
section.section-branca .hero-text p {
  color: var(--cinza-escuro);
  text-shadow: none;
}

/* Botões dentro do hero — invertidos sobre foto azul */
.hero .btn-primary {
  background: var(--branco);
  color: var(--azul-celeste);
  border-color: var(--branco);
}
.hero .btn-primary:hover {
  background: var(--off-white);
  color: var(--azul-deep);
  border-color: var(--off-white);
}
.hero .btn-secondary {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255,255,255,0.7);
}
.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.16);
  border-color: var(--branco);
  color: var(--branco);
}

/* .hero-image continua sendo usado como placeholder em outras seções (mockups) */
.hero-image {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), transparent 50%),
    linear-gradient(135deg, var(--azul-celeste) 0%, var(--azul-puro) 100%);
  width: 100%;
  height: 280px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-image-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-image-ph .ic { width: 48px; height: 48px; opacity: .92; }
.hero-image-ph span { max-width: 240px; font-size: 14px; line-height: 1.4; }

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.30) 0 2px, transparent 3px),
    radial-gradient(circle at 65% 70%, rgba(255,255,255,0.25) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.30) 0 1.5px, transparent 2.5px);
  pointer-events: none;
}

/* ========================================
   SECTIONS
   ======================================== */
section { padding: 64px 0; position: relative; }
section + section { border-top: 1px solid var(--borda); }

.section-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.015em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--texto-suave);
  text-align: center;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Variantes de fundo — cores chapadas, sem gradiente */
section.section-azul-celeste,
section.section-azul-puro {
  color: var(--branco);
  border-top: none;
  overflow: hidden;
}
section.section-azul-celeste { background: var(--azul-celeste); }
section.section-azul-puro    { background: var(--azul-puro); }
section.section-cinza        { background: var(--off-white); border-top: none; }
section.section-branca       { background: var(--branco); border-top: none; }

/* Quando seções de cores diferentes ficam adjacentes, sem borda */
section.section-azul-celeste + section.section-azul-puro,
section.section-azul-puro + section.section-azul-celeste,
section.section-cinza + section,
section + section.section-cinza,
section.section-branca + section,
section + section.section-branca,
section.section-azul-celeste + section,
section.section-azul-puro + section,
section + section.section-azul-celeste,
section + section.section-azul-puro { border-top: none; }

section.section-azul-celeste .section-title,
section.section-azul-puro .section-title,
section.section-azul-celeste h2,
section.section-azul-puro h2,
section.section-azul-celeste h3,
section.section-azul-puro h3,
section.section-azul-celeste h4,
section.section-azul-puro h4 { color: var(--branco); }

section.section-azul-celeste .section-subtitle,
section.section-azul-puro .section-subtitle,
section.section-azul-celeste p,
section.section-azul-puro p { color: rgba(255,255,255,0.92); }

/* Cards e steps invertidos quando dentro de seção azul */
section.section-azul-celeste .card,
section.section-azul-puro .card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
section.section-azul-celeste .card:hover,
section.section-azul-puro .card:hover {
  background: rgba(255,255,255,0.16);
  border-color: var(--pessego);
  box-shadow: 0 16px 40px -10px rgba(242,114,68,0.35);
}
section.section-azul-celeste .card h3,
section.section-azul-puro .card h3,
section.section-azul-celeste .card h4,
section.section-azul-puro .card h4 { color: var(--branco); }
section.section-azul-celeste .card p,
section.section-azul-puro .card p { color: rgba(255,255,255,0.82); }
section.section-azul-celeste .card .btn-ghost,
section.section-azul-puro .card .btn-ghost { color: var(--pessego-soft); }
section.section-azul-celeste .card .btn-ghost:hover,
section.section-azul-puro .card .btn-ghost:hover { color: var(--branco); }

section.section-azul-celeste .step h3,
section.section-azul-puro .step h3 { color: var(--branco); }
section.section-azul-celeste .step p,
section.section-azul-puro .step p { color: rgba(255,255,255,0.82); }

/* Botões dentro de seções azuis */
section.section-azul-celeste .btn-primary,
section.section-azul-puro .btn-primary {
  background: var(--branco);
  color: var(--azul-celeste);
}
section.section-azul-celeste .btn-primary:hover,
section.section-azul-puro .btn-primary:hover { background: var(--off-white); color: var(--azul-deep); }

section.section-azul-celeste .btn-secondary,
section.section-azul-puro .btn-secondary {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255,255,255,0.7);
}
section.section-azul-celeste .btn-secondary:hover,
section.section-azul-puro .btn-secondary:hover { background: rgba(255,255,255,0.14); border-color: var(--branco); }

/* Partner logos invertem para branco em fundo azul */
section.section-azul-celeste .partner-logo,
section.section-azul-puro .partner-logo {
  background: var(--branco);
  color: var(--cinza-escuro);
  border-color: rgba(255,255,255,0.4);
}
section.section-azul-celeste .partner-logo:hover,
section.section-azul-puro .partner-logo:hover {
  border-color: var(--pessego);
  box-shadow: 0 8px 22px -6px rgba(242,114,68,0.45);
}

/* Testimonials/cards translúcidos sobre azul */
section.section-azul-celeste .testimonial,
section.section-azul-puro .testimonial {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
section.section-azul-celeste .testimonial blockquote,
section.section-azul-puro .testimonial blockquote { color: rgba(255,255,255,0.92); }
section.section-azul-celeste .testimonial cite,
section.section-azul-puro .testimonial cite { color: rgba(255,255,255,0.70); }
section.section-azul-celeste .testimonial::before,
section.section-azul-puro .testimonial::before { color: var(--pessego-soft); opacity: .55; }

/* ========================================
   CARDS GRID
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azul-celeste), var(--azul-puro), var(--pessego));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(4,104,191,0.25);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--azul-celeste), var(--azul-puro));
  color: var(--branco);
  border-radius: var(--r-sm);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 14px -4px rgba(4,104,191,0.4);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--pessego), #d96130);
  box-shadow: 0 8px 18px -4px rgba(242,114,68,0.5);
  transform: rotate(-4deg) scale(1.04);
}
.card-icon .ic { width: 26px; height: 26px; }

/* Cards do blog (capa + texto) */
.blog-card { padding: 0; }
.blog-card-img {
  height: 180px;
  background: var(--cinza-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

/* Corpo do artigo do blog */
.blog-corpo p { margin-bottom: 16px; color: var(--cinza-escuro); line-height: 1.8; }
.blog-corpo h1 { font-size: 26px; margin: 32px 0 12px; }
.blog-corpo h2 { font-size: 22px; margin: 32px 0 12px; }
.blog-corpo h3 { font-size: 18px; margin: 24px 0 10px; }
.blog-corpo ul, .blog-corpo ol { margin: 0 0 16px 24px; color: var(--cinza-escuro); line-height: 1.8; }

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.card p {
  font-size: 14.5px;
  color: var(--texto-suave);
  margin-bottom: 14px;
  line-height: 1.55;
}

/* ========================================
   STEPS
   ======================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--azul-celeste), var(--azul-puro));
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px -6px rgba(4,104,191,0.45);
  position: relative;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.step-number::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.45);
  opacity: 0;
  transition: opacity .3s ease, transform .5s ease, border-color .3s ease;
}
.step:hover .step-number {
  background: linear-gradient(135deg, var(--pessego), #d96130);
  box-shadow: 0 14px 28px -6px rgba(242,114,68,0.55);
  transform: translateY(-2px);
}
.step:hover .step-number::after { opacity: 1; transform: rotate(45deg); border-color: rgba(242,114,68,0.50); }

.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--texto-suave); }

/* ========================================
   PRICING BOX
   ======================================== */
.pricing-box {
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(4,157,217,0.18), transparent 70%),
    var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-lg);
  padding: 48px 32px 40px;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.pricing-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azul-celeste), var(--azul-puro), var(--pessego));
}
.pricing-box h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--cinza-escuro);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--azul-celeste);
  line-height: 1;
  margin: 18px 0 6px;
}

.pricing-period {
  font-size: 15px;
  color: var(--texto-suave);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--borda);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--cinza-escuro);
}
.pricing-features li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(4,157,217,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23049DD9' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

.pricing-optional {
  font-size: 14px;
  color: var(--cinza-escuro);
  margin-bottom: 24px;
  padding: 14px 16px;
  background: rgba(242,114,68,0.08);
  border-left: 3px solid var(--pessego);
  border-radius: var(--r-sm);
  text-align: left;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: var(--azul-celeste);
  color: var(--branco);
  text-align: center;
  padding: 72px 20px;
  position: relative;
  overflow: hidden;
}
.cta-section > * { position: relative; }

.cta-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--branco);
}
.cta-section p {
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .btn-primary {
  background: var(--branco);
  color: var(--azul-celeste);
}
.cta-section .btn-primary:hover { background: var(--off-white); color: var(--azul-deep); }
.cta-section .btn-secondary {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255,255,255,0.7);
}
.cta-section .btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--branco); }
.cta-section abbr { color: var(--branco); }

/* Forms dentro de seções azuis ficam invertidos */
.cta-section .form-group label { color: rgba(255,255,255,0.92); }
.cta-section .form-group input,
.cta-section .form-group select,
.cta-section .form-group textarea {
  background: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.6);
}
.cta-section .form-group input:focus,
.cta-section .form-group select:focus,
.cta-section .form-group textarea:focus {
  border-color: var(--branco);
  background: var(--branco);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
}
.cta-section .form-checkbox { color: rgba(255,255,255,0.92); }
.cta-section .btn-block.btn-primary { background: var(--branco); color: var(--azul-celeste); }
.cta-section .btn-block.btn-primary:hover { background: var(--off-white); color: var(--azul-deep); }

/* ========================================
   PARTNERS
   ======================================== */
.partners-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 4px;
  scrollbar-width: thin;
}

.partner-logo {
  flex-shrink: 0;
  width: 120px;
  height: 70px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--cinza-medio);
  transition: border-color .2s ease, transform .2s ease;
}
.partner-logo:hover {
  border-color: var(--pessego);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(242,114,68,0.30);
}
.partner-logo img { max-height: 70%; max-width: 84%; width: auto; object-fit: contain; }
.partner-logo span {
  padding: 0 10px;
  text-align: center;
  font-weight: 600;
  color: var(--cinza-escuro);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-md);
  padding: 28px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.testimonial::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--azul-puro);
  opacity: .25;
  transition: color .25s ease, opacity .25s ease;
}
.testimonial:hover::before { color: var(--pessego); opacity: .55; }
.testimonial:hover { border-color: rgba(242,114,68,0.30); }

.testimonial blockquote {
  font-size: 15.5px;
  margin-bottom: 16px;
  color: var(--cinza-escuro);
  line-height: 1.6;
  position: relative;
}

.testimonial cite {
  font-style: normal;
  font-size: 13px;
  color: var(--cinza-medio);
  font-family: var(--font-display);
  font-weight: 500;
}

/* ========================================
   FAQ / ACCORDION
   ======================================== */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item.active { border-color: rgba(4,104,191,0.3); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--preto);
}
.faq-question::after {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(4,157,217,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%230468BF' stroke-width='2' stroke-linecap='round' d='M8 4v8M4 8h8'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .25s ease;
}
.faq-item.active .faq-question::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%230468BF' stroke-width='2' stroke-linecap='round' d='M4 8h8'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--cinza-escuro);
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 600px; }

/* ========================================
   FORMS
   ======================================== */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--cinza-escuro);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--cinza-soft);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--branco);
  color: var(--preto);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--azul-puro);
  box-shadow: 0 0 0 4px rgba(4,157,217,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cinza-medio); }

.form-group textarea { resize: vertical; min-height: 96px; }

/* Formulários no padrão `.erp-form` reusados em páginas públicas de auth
   (forgot/reset/register/etc.). O erp.css não é carregado no site público,
   então replicamos aqui o essencial dos campos. */
.erp-form { display: grid; gap: 18px; }
.erp-form label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--cinza-escuro);
}
.erp-form input[type=text],
.erp-form input[type=email],
.erp-form input[type=tel],
.erp-form input[type=number],
.erp-form input[type=date],
.erp-form input[type=password],
.erp-form input[type=url],
.erp-form select,
.erp-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--cinza-soft);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--branco);
  color: var(--preto);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.erp-form input:focus,
.erp-form select:focus,
.erp-form textarea:focus {
  outline: none;
  border-color: var(--azul-puro);
  box-shadow: 0 0 0 4px rgba(4,157,217,0.12);
}
.erp-form textarea { resize: vertical; min-height: 96px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--cinza-escuro);
}
.form-checkbox input { margin-top: 4px; accent-color: var(--azul-celeste); }

.radio-group { display: flex; gap: 24px; margin-bottom: 18px; flex-wrap: wrap; }
.radio-group label { display: flex; gap: 8px; align-items: center; font-weight: 400; cursor: pointer; }
.radio-group input { accent-color: var(--azul-celeste); }

/* ========================================
   CHECKOUT
   ======================================== */
.checkout-progress {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
  padding: 32px 0 0;
  flex-wrap: wrap;
}

.checkout-step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--cinza-medio);
}

.checkout-step-indicator.active   { color: var(--azul-celeste); font-weight: 600; }
.checkout-step-indicator.completed { color: var(--cinza-escuro); }

.checkout-step-indicator .step-dot {
  width: 32px;
  height: 32px;
  border: 2px solid var(--cinza-soft);
  background: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--cinza-medio);
}

.checkout-step-indicator.active .step-dot {
  border-color: var(--azul-celeste);
  background: var(--azul-celeste);
  color: var(--branco);
  box-shadow: 0 0 0 4px rgba(4,104,191,0.15);
}
.checkout-step-indicator.completed .step-dot {
  border-color: var(--azul-puro);
  background: var(--azul-puro);
  color: var(--branco);
}

.step-line { width: 32px; height: 2px; background: var(--cinza-soft); align-self: center; }

.checkout-panel { display: none; }
.checkout-panel.active { display: block; }

.checkout-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  gap: 12px;
}

.plan-item {
  background: var(--branco);
  border: 1.5px solid var(--azul-celeste);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.plan-item.optional { border-color: var(--cinza-soft); border-style: dashed; }

.plan-item-info h4 { font-family: var(--font-display); font-size: 15px; margin-bottom: 4px; }
.plan-item-info p { font-size: 13px; color: var(--texto-suave); }
.plan-item-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--azul-celeste);
}

.dependents-list { margin: 16px 0; }

.dependent-entry {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.add-dependent-form {
  display: none;
  background: var(--off-white);
  border: 1px solid var(--borda);
  border-radius: var(--r-md);
  padding: 20px;
  margin-top: 12px;
}
.add-dependent-form.active { display: block; }

.checkout-total {
  border-top: 2px solid var(--azul-celeste);
  padding-top: 18px;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--azul-celeste);
}

.checkout-summary {
  background: var(--off-white);
  border: 1px solid var(--borda);
  border-radius: var(--r-md);
  padding: 24px;
  margin-bottom: 28px;
}
.checkout-summary h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--azul-celeste);
}
.checkout-summary ul { list-style: none; font-size: 14px; }
.checkout-summary li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--borda);
  color: var(--cinza-escuro);
}
.checkout-summary li:last-child { border-bottom: none; }

/* ========================================
   SUCCESS
   ======================================== */
.success-screen {
  text-align: center;
  padding: 80px 20px;
}

.success-screen .checkmark {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--azul-celeste), var(--azul-puro));
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin: 0 auto 28px;
  box-shadow: 0 16px 36px -8px rgba(4,104,191,0.45);
  animation: pulse-soft 2.4s ease-in-out infinite;
}
@keyframes pulse-soft {
  0%, 100% { transform: scale(1); box-shadow: 0 16px 36px -8px rgba(4,104,191,0.45); }
  50%      { transform: scale(1.04); box-shadow: 0 20px 44px -8px rgba(4,104,191,0.55); }
}

.success-screen h1 { font-size: 32px; margin-bottom: 14px; }
.success-screen p { color: var(--texto-suave); margin-bottom: 28px; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   LOGIN BOX (rotas /entrar e /recuperar-senha)
   ======================================== */
.login-box {
  max-width: 440px;
  margin: 56px auto;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.login-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azul-celeste), var(--azul-puro));
}

.login-box h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 28px;
}

.login-separator {
  border: none;
  border-top: 1px solid var(--borda);
  margin: 28px 0;
}

.login-footer { text-align: center; font-size: 14px; color: var(--cinza-medio); }
.login-footer a { font-size: 14px; color: var(--azul-celeste); }

/* ========================================
   DASHBOARD
   ======================================== */
.dashboard-layout {
  display: flex;
  min-height: calc(100vh - 140px);
  background: var(--off-white);
}

.dashboard-sidebar {
  width: 240px;
  border-right: 1px solid var(--borda);
  padding: 32px 18px;
  display: none;
  background: var(--branco);
}

.dashboard-sidebar h3 {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cinza-medio);
  margin-bottom: 20px;
}

.dashboard-sidebar a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--cinza-escuro);
  border-radius: var(--r-sm);
  margin-bottom: 2px;
  transition: background .15s ease, color .15s ease;
}
.dashboard-sidebar a:hover { color: var(--azul-celeste); background: var(--off-white); }
.dashboard-sidebar a.active {
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul-celeste), var(--azul-puro));
  box-shadow: 0 6px 14px -6px rgba(4,104,191,0.45);
  position: relative;
}
.dashboard-sidebar a.active::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pessego);
  box-shadow: 0 0 0 3px rgba(242,114,68,0.30);
}

.dashboard-main { flex: 1; padding: 36px 28px; }
.dashboard-main h1 {
  font-size: 26px;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.dashboard-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dashboard-card:hover {
  transform: translateY(-2px);
  border-color: rgba(4,104,191,0.25);
  box-shadow: var(--shadow-sm);
}
.dashboard-card h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cinza-medio);
  margin-bottom: 8px;
  font-weight: 500;
}
.dashboard-card p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--preto);
}

.placeholder-banner {
  background: rgba(4,157,217,0.06);
  border: 1px dashed rgba(4,104,191,0.35);
  border-radius: var(--r-md);
  padding: 28px;
  text-align: center;
  margin-top: 28px;
  color: var(--cinza-escuro);
  font-size: 14px;
  line-height: 1.65;
}
.placeholder-banner strong { color: var(--azul-celeste); }

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 14px;
  background: var(--branco);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.dashboard-table th,
.dashboard-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--borda);
}
.dashboard-table tbody tr:last-child td { border-bottom: none; }
.dashboard-table tbody tr:hover { background: var(--off-white); }

.dashboard-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cinza-medio);
  background: var(--off-white);
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--cinza-medio);
}
.breadcrumb a { color: var(--cinza-medio); font-size: 13px; }
.breadcrumb a:hover { color: var(--azul-celeste); }
.breadcrumb strong { color: var(--cinza-escuro); font-weight: 600; }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--preto);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 24px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--azul-puro), transparent);
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(4,157,217,0.20), transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(4,104,191,0.18), transparent 60%);
  pointer-events: none;
}
.site-footer .container { position: relative; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  color: var(--branco);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 6px 0;
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--azul-puro); }

.footer-brand .logo,
.footer-brand .logo img { height: 44px; }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 0;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.footer-social a:hover {
  background: var(--azul-celeste);
  border-color: var(--azul-celeste);
  color: var(--branco);
}

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
}
.footer-legal a { color: rgba(255,255,255,0.55); font-size: 12px; }
.footer-legal a:hover { color: var(--azul-puro); }
.footer-legal strong { color: rgba(255,255,255,0.85); }

.back-to-top {
  display: block;
  text-align: center;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 20px;
  letter-spacing: 0.04em;
}
.back-to-top:hover { color: var(--azul-puro); }

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 8px 24px -4px rgba(37,211,102,0.45);
  z-index: 90;
  transition: transform .15s ease, box-shadow .15s ease;
}
.whatsapp-float:hover {
  color: var(--branco);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 32px -4px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--preto);
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  font-size: 14px;
  z-index: 200;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.20);
}
.cookie-banner.active { display: flex; }

.cookie-banner button {
  background: var(--azul-celeste);
  color: var(--branco);
  border: none;
  border-radius: var(--r-pill);
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease;
}
.cookie-banner button:hover { background: var(--azul-puro); }

/* ========================================
   REDE CREDENCIADA
   ======================================== */
.search-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.search-bar input {
  padding: 14px 18px;
  border: 1.5px solid var(--cinza-soft);
  border-radius: var(--r-pill);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--branco);
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.search-bar input:focus {
  outline: none;
  border-color: var(--azul-puro);
  box-shadow: 0 0 0 4px rgba(4,157,217,0.12);
}

.search-filters { display: flex; gap: 12px; flex-wrap: wrap; }

.search-filters select {
  padding: 12px 16px;
  border: 1.5px solid var(--cinza-soft);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-family: var(--font-body);
  flex: 1;
  min-width: 140px;
  background: var(--branco);
  color: var(--cinza-escuro);
  cursor: pointer;
}

.partner-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--r-md);
  padding: 22px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(4,157,217,0.35);
}

.partner-card-logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.partner-card-logo {
  width: 100%;
  height: 92px;
  background:
    radial-gradient(circle at 50% 50%, rgba(4,157,217,0.10), transparent 70%),
    var(--off-white);
  border-radius: var(--r-sm);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-medio);
  font-family: var(--font-display);
  font-size: 12px;
}

.partner-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.partner-card .partner-meta { font-size: 13px; color: var(--cinza-medio); margin-bottom: 6px; }

.map-placeholder {
  width: 100%;
  height: 320px;
  background:
    radial-gradient(circle at 50% 50%, rgba(4,157,217,0.10), transparent 70%),
    var(--off-white);
  border: 1px dashed var(--borda-forte);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-medio);
  font-family: var(--font-display);
  margin-top: 32px;
}

/* ========================================
   FLASH MESSAGES
   ======================================== */
.flash-error {
  background: rgba(242,114,68,0.10);
  border: 1px solid rgba(242,114,68,0.35);
  color: #B14722;
  border-radius: var(--r-sm);
  padding: 12px 18px;
  margin-bottom: 18px;
  font-size: 14px;
  text-align: center;
}

/* ========================================
   CARTEIRINHA DIGITAL
   ======================================== */
.carteirinha {
  background:
    radial-gradient(ellipse 110% 70% at 80% -10%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(ellipse 90% 60% at 20% 110%, rgba(242,114,68,0.30), transparent 60%),
    linear-gradient(135deg, var(--azul-celeste) 0%, var(--azul-puro) 100%);
  color: var(--branco);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.carteirinha::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.45) 0 1.5px, transparent 2px),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.30) 0 1px,   transparent 2px),
    radial-gradient(circle at 70% 88%, rgba(255,255,255,0.40) 0 1.5px, transparent 2px),
    radial-gradient(circle at 30% 76%, rgba(255,255,255,0.25) 0 1px,   transparent 2px);
  pointer-events: none;
}
.carteirinha-brand {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: .88;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.carteirinha-nome {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.carteirinha-cpf {
  font-size: 14px;
  opacity: .85;
  margin-bottom: 24px;
}
.carteirinha-qr {
  background: var(--branco);
  padding: 20px;
  border-radius: var(--r-md);
  margin: 0 auto 18px;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-medio);
  font-size: 12px;
  box-shadow: 0 6px 20px -6px rgba(0,0,0,0.25);
}
.carteirinha-qr svg { width: 100%; height: 100%; display: block; }
.carteirinha-qr-mini {
  background: var(--branco);
  padding: 12px;
  border-radius: 10px;
  margin: 18px auto 14px;
  width: 108px;
  height: 108px;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.20);
}
.carteirinha-qr-mini svg { width: 100%; height: 100%; display: block; }

.carteirinha-meta {
  font-size: 13px;
  opacity: .85;
  margin-top: 4px;
}

.carteirinha-mini {
  background:
    radial-gradient(ellipse 110% 70% at 80% -10%, rgba(255,255,255,0.30), transparent 60%),
    linear-gradient(135deg, var(--azul-celeste), var(--azul-puro));
  color: var(--branco);
  border-radius: var(--r-md);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.carteirinha-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 25%, rgba(255,255,255,0.30) 0 1px, transparent 2px),
    radial-gradient(circle at 25% 80%, rgba(255,255,255,0.30) 0 1px, transparent 2px);
  pointer-events: none;
}
.carteirinha-mini > * { position: relative; }

/* ========================================
   TAGS / CHIPS (especialidades, etc.)
   ======================================== */
.chip {
  display: inline-block;
  background: rgba(4,157,217,0.10);
  color: var(--azul-deep);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
}

/* ========================================
   RESPONSIVE — Tablet (600px+)
   ======================================== */
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ========================================
   RESPONSIVE — Desktop (900px+)
   ======================================== */
@media (min-width: 900px) {
  .hero { padding: 140px 0 160px; min-height: 560px; }

  /* Layout 2-colunas continua funcionando para .hero-inner usados como blocos
     internos (mockups de app etc.) — mas o hero principal agora é coluna única
     com background image. */
  section:not(.hero) > .container > .hero-inner,
  section:not(.hero) .hero-inner { flex-direction: row; align-items: center; gap: 56px; }
  section:not(.hero) .hero-text { flex: 1.1; }
  section:not(.hero) .hero-image { flex: 1; height: 380px; }
  /* Desktop: conteúdo do hero na metade direita, revelando mais o background. */
  .hero .hero-inner { flex-direction: column; align-items: flex-end; gap: 36px; }
  .hero .hero-text { flex: none; width: 56%; max-width: 900px; }
  /* Overlay reorientado: claro à esquerda (mostra a foto), mais firme à
     direita (contraste para o texto). */
  .hero::before {
    background: linear-gradient(100deg,
      rgba(2,76,140,0.08) 0%,
      rgba(2,76,140,0.22) 42%,
      rgba(2,49,92,0.62) 100%);
  }

  .hamburger { display: none; }
  .nav-links { display: flex; }

  .cards-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }

  .dashboard-sidebar { display: block; }

  .form-row { grid-template-columns: 1fr 1fr; }

  .search-bar { flex-direction: row; align-items: center; }
  .search-bar input { flex: 2; }
}

