/* ═══════════════════════════════════════════════════════════
   BOA VIDA BENEFÍCIOS — Landing Page
   Montserrat · Azul #1484e6 · Roxo #770fba
═══════════════════════════════════════════════════════════ */

@import url('fonts.css');

:root {
  --primary:      #770fba;    /* roxo — botões CTA */
  --primary-dark: #4a0975;
  --primary-light: #f3e8ff;
  --secondary:    #1484e6;    /* azul */
  --header-bg:    #1484e6;    /* azul — fundo do header */
  --accent:       #d436e5;    /* pink/magenta */
  --dark:         #111827;
  --dark-2:       #1f2937;
  --text:         #111827;
  --text-soft:    #6B7280;
  --bg:           #FFFFFF;
  --bg-alt:       #F9FAFB;
  --border:       #E5E7EB;
  --header-h:     72px;
  --radius:       14px;
  --radius-sm:    8px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,.1);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.14);
  --t:            all .28s ease;
  --max-w:        1200px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { font-family: 'Montserrat', sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img   { display: block; max-width: 100%; height: auto; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button{ cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Container / Layout ────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 28px; }

.section     { padding-block: 88px; background: var(--bg); }
.section-alt { background: var(--bg-alt); }
.section-dark{ background: var(--primary); }
.section-navy{ background: var(--header-bg); }

section[id]  { scroll-margin-top: calc(var(--header-h) + 8px); }

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.grid-2-reverse { grid-template-columns: 1fr 1.1fr; }

/* ── Section headers ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 52px; }

.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-label-dark {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title-dark {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-subtitle { font-size: .97rem; color: var(--text-soft); max-width: 600px; margin-inline: auto; line-height: 1.75; }
.section-subtitle-dark { font-size: .97rem; color: rgba(255,255,255,.72); max-width: 600px; margin-inline: auto; line-height: 1.75; }

/* ── Scroll animation ──────────────────────────────────── */
.animate-in { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.animate-in.visible { opacity: 1; transform: none; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  transition: var(--t);
  white-space: nowrap;
}
.btn i { width: 17px; height: 17px; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(119,15,186,.28);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(119,15,186,.35); }

.btn-white {
  background: #fff;
  color: var(--header-bg);
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }

.btn-header {
  background: #fff;
  color: var(--header-bg);
  box-shadow: var(--shadow-sm);
}
.btn-header:hover { background: #e8f4ff; transform: translateY(-2px); }

.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
  font-size: 1rem;
  padding: 16px 36px;
}
.btn-wa:hover { background: #128C4A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }

/* ── Header ─────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  transition: box-shadow .3s;
}
.page-home .header { position: fixed; inset: 0 0 auto; }

.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.18); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  list-style: none;
}
.nav-link {
  color: rgba(255,255,255,.88);
  font-size: .875rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--t);
}
.nav-link:hover, .nav-link-active { background: rgba(255,255,255,.15); color: #fff; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding-block: 100px 80px;
  padding-top: calc(var(--header-h) + 60px);
}
.page-home .hero { padding-top: calc(var(--header-h) + 60px); }

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,132,230,.85) 0%, rgba(119,15,186,.80) 100%);
}

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

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── Especialidades cards ────────────────────────────────── */
.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.especialidade-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.especialidade-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.especialidade-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}
.especialidade-icon i { width: 26px; height: 26px; }
.especialidade-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.especialidade-desc  { font-size: .875rem; color: var(--text-soft); line-height: 1.6; }

/* ── Sobre nós ───────────────────────────────────────────── */
.sobre-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.sobre-text h4 {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.55;
}
.sobre-text p {
  font-size: .95rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 16px;
  line-height: 1.75;
}
.sobre-text p:last-of-type { margin-bottom: 32px; }

/* ── Vantagens ───────────────────────────────────────────── */
.vantagens-banner {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}
.vantagens-banner img { width: 100%; height: auto; }

.vantagens-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.vantagens-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.vantagens-text h3 {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  font-weight: 500;
  margin-bottom: 28px;
  line-height: 1.6;
}
.vantagens-list { display: flex; flex-direction: column; gap: 10px; }
.vantagens-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
}
.vantagens-list li::before {
  content: '✅';
  flex-shrink: 0;
  font-size: .95rem;
  margin-top: 1px;
}

.especialidades-imgs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.especialidades-imgs img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

/* ── Planos ──────────────────────────────────────────────── */
.planos-header {
  text-align: center;
  margin-bottom: 48px;
}
.planos-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.planos-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.planos-subtitle {
  font-size: .97rem;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

.planos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.plan-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.plan-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.plan-taxa {
  font-size: .85rem;
  color: var(--text-soft);
  margin-bottom: 20px;
}
.plan-taxa strong { color: var(--primary); font-weight: 700; }
.plan-divider { border: none; border-top: 2px solid var(--border); margin-bottom: 20px; }
.plan-benefits-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.plan-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
}
.plan-benefits li {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.5;
  padding-left: 4px;
}
.plan-benefits li strong { color: var(--dark); }
.plan-options-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.plan-actions { display: flex; flex-direction: column; gap: 10px; }
.plan-action-link {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  transition: var(--t);
  box-shadow: 0 2px 10px rgba(119,15,186,.2);
}
.plan-action-link:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ── Ambientes ───────────────────────────────────────────── */
.ambientes-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 10px;
}
.ambientes-text .sub {
  font-size: .97rem;
  color: var(--text-soft);
  margin-bottom: 28px;
  line-height: 1.7;
}
.ambientes-text .sub strong { color: var(--dark); font-weight: 700; }
.ambientes-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.ambientes-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
}
.ambientes-checklist li::before {
  content: '✔';
  color: var(--accent);
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ambientes-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ambientes-img-wrap img { width: 100%; height: 420px; object-fit: cover; }

/* ── CTA / Consultores ───────────────────────────────────── */
.cta-section { text-align: center; }
.cta-section h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 14px;
  max-width: 680px;
  margin-inline: auto;
}
.cta-section p {
  font-size: .97rem;
  color: var(--text-soft);
  margin-bottom: 8px;
  line-height: 1.65;
}
.cta-section p strong { color: var(--dark); }
.cta-actions { margin-top: 32px; display: flex; justify-content: center; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  color: #fff;
  padding-block: 60px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 28px;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 80px; width: auto; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  transition: var(--t);
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-social i { width: 18px; height: 18px; }

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.footer-contact-item i { width: 16px; height: 16px; color: rgba(255,255,255,.4); flex-shrink: 0; margin-top: 2px; }

.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  transition: var(--t);
}
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── WhatsApp float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: var(--t);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,.35); }
.whatsapp-float img { width: 100%; height: 100%; object-fit: cover; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .especialidades-grid { grid-template-columns: repeat(2, 1fr); }
  .planos-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .vantagens-grid { grid-template-columns: 1fr; }
  .especialidades-imgs { flex-direction: row; }
}

@media (max-width: 768px) {
  .grid-2, .grid-2-reverse { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .section { padding-block: 56px; }
  .hero { padding-block: 80px 60px; }
  .page-home .hero { padding-top: calc(var(--header-h) + 40px); }

  .nav-menu, .btn-header { display: none; }
  .menu-toggle { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--header-bg);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open .nav-link { color: #fff; }
  .nav-link { color: #fff; }
  .nav-link:hover, .nav-link-active { background: rgba(255,255,255,.15); color: #fff; }

  .especialidades-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .planos-grid { grid-template-columns: 1fr; }
  .vantagens-grid { grid-template-columns: 1fr; }
  .especialidades-imgs { flex-direction: column; }

  .ambientes-img-wrap img { height: 260px; }
  .hero-title { font-size: 1.75rem; }
}
