/* ═══════════════════════════════════════════════════════════
   BELA FISIO — Landing Page
   Poppins + Montserrat · Primário #9e4b47 (terracota) · Secundário #668586 (teal)
═══════════════════════════════════════════════════════════ */

/* ── Fontes locais ─────────────────────────────────────── */
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url(../../_shared/fonts/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url(../../_shared/fonts/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: italic; font-weight: 500; font-display: swap; src: url(../../_shared/fonts/pxiDyp8kv8JHgFVrJJLmg1hVF9eO.woff2) format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url(../../_shared/fonts/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url(../../_shared/fonts/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 100 900; font-display: swap; src: url(../../_shared/fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2'); }

:root {
  /* Bela Fisio palette */
  --primary:        #9e4b47;  /* terracota / brick red */
  --primary-dark:   #7c3a37;
  --primary-light:  #fdf0ef;
  --secondary:      #668586;  /* teal */
  --secondary-dark: #4e6869;
  --accent:         #f0837e;
  --header-bg:      #668586;  /* teal — matches mobile drawer & header */

  --dark:           #1a1a1a;
  --dark-2:         #2c2c2c;
  --text:           #333333;
  --text-soft:      #6B7280;
  --text-lighter:   #9CA3AF;
  --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), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:      0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:      0 20px 60px rgba(0,0,0,.12);
  --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: 'Poppins', 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 ─────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 28px; }

/* ── Section ───────────────────────────────────────────── */
.section { padding-block: 96px; background: var(--bg); }
section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

.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: 14px;
}
.section-label.light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

.section-title {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--dark);
  line-height: 1.2; margin-bottom: 14px;
}
.section-title.white { color: #fff; }

.section-subtitle {
  font-size: .98rem; color: var(--text-soft);
  max-width: 580px; margin-inline: auto; line-height: 1.75;
}
.section-subtitle.white { color: rgba(255,255,255,.78); }

/* ── Animate-in ─────────────────────────────────────────── */
.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: 'Poppins', sans-serif; font-size: .9rem; font-weight: 700;
  transition: var(--t); white-space: nowrap; cursor: pointer;
}
.btn i { width: 17px; height: 17px; }

.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 16px rgba(158,75,71,.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(158,75,71,.35); }

.btn-secondary {
  background: var(--secondary); color: #fff;
  box-shadow: 0 4px 16px rgba(102,133,134,.3);
}
.btn-secondary:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(102,133,134,.4); }

.btn-outline {
  background: transparent; color: var(--dark); border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-header {
  background: #fff; color: var(--header-bg);
  padding: 10px 20px; font-size: .82rem; font-weight: 700;
  border-radius: 50px; box-shadow: 0 2px 12px rgba(0,0,0,.12);
  transition: var(--t); white-space: nowrap; margin-left: 8px;
}
.btn-header:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }

.btn-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #1ebe5c; box-shadow: 0 8px 24px rgba(37,211,102,.45); }

.btn-plan {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  background: var(--secondary); color: #fff;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 700;
  transition: var(--t);
  box-shadow: 0 4px 16px rgba(102,133,134,.3);
}
.btn-plan:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(102,133,134,.4); }

/* ── HEADER ─────────────────────────────────────────────── */
.header {
  z-index: 1000;
  height: var(--header-h);
  background: var(--header-bg);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.25); }

.page-home .header   { position: fixed; inset: 0 0 auto; }
.page-subpage .header { position: sticky; top: 0; }

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

.logo { flex-shrink: 0; margin-right: auto; }
.logo img { height: 48px; width: auto; }

.nav {
  display: flex; align-items: center;
  gap: 2px;
}
.nav-link {
  font-size: .84rem; font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 6px 12px; border-radius: 7px;
  transition: var(--t);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.15); }
.nav-link-active { color: #fff !important; background: rgba(255,255,255,.18); }

.menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 36px; height: 36px; margin-left: 8px;
  color: #fff; flex-shrink: 0;
}
.menu-toggle i { width: 22px; height: 22px; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center 30%;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: var(--primary);
  opacity: .55; z-index: 1;
}

.hero-inner { position: relative; z-index: 2; }

.hero-content {
  padding-block: 80px;
  max-width: 560px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; line-height: 1.1; color: #fff;
  margin-bottom: 20px; letter-spacing: -.02em;
}

.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,.88);
  line-height: 1.72; margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── VANTAGENS ──────────────────────────────────────────── */
.vantagens { padding-block: 80px; }

.vantagens-card {
  border-radius: 30px; overflow: hidden;
  background-image: url('../images/close-up-young-woman-s-shoulder-adorned-with-soft-pink-flower-against-neutral-background-1920w.jpg');
  background-size: cover; background-position: 50% 50%;
  position: relative;
  padding: 56px 52px 48px;
}
.vantagens-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--primary); opacity: .7;
}

.vantagens-card-content {
  position: relative; z-index: 1;
  text-align: center; margin-bottom: 44px;
}
.vantagens-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 22px;
}
.vantagens-text {
  font-size: .98rem; color: rgba(255,255,255,.88);
  line-height: 1.78; max-width: 720px; margin-inline: auto;
}

.vantagens-images {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.vantagens-img-item {
  height: 280px; border-radius: 16px; overflow: hidden;
}
.vantagens-img-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.vantagens-img-item:hover img { transform: scale(1.04); }

/* ── ESPECIALISTAS ──────────────────────────────────────── */
.especialistas {
  background: var(--secondary-dark);
  padding-block: 96px;
}

/* Tratamento carousel */
.tratamento-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding-inline: 28px;
}
.tratamento-carousel {
  display: flex;
  transition: transform .5s ease;
  gap: 20px;
}
.tratamento-card {
  flex: 0 0 calc(33.333% - 14px);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  transition: var(--t);
}
.tratamento-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }

.tratamento-img {
  height: 220px; overflow: hidden; position: relative;
}
.tratamento-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.tratamento-card:hover .tratamento-img img { transform: scale(1.04); }
.tratamento-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(240,131,126,.3);
  pointer-events: none;
}

.tratamento-info { padding: 18px 20px; }
.tratamento-info h3 {
  font-size: .95rem; font-weight: 700; color: #fff;
  text-align: center;
}

.carousel-btn {
  position: absolute; top: calc(50% - 22px);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer; z-index: 10;
  transition: var(--t);
  backdrop-filter: blur(6px);
}
.carousel-btn i { width: 20px; height: 20px; }
.carousel-btn:hover { background: rgba(255,255,255,.3); }
.carousel-btn:disabled { opacity: .35; pointer-events: none; }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* ── DEPOIMENTOS ────────────────────────────────────────── */
.depoimentos { background: var(--bg-alt); }

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.depoimento-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: var(--t);
}
.depoimento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.depoimento-stars {
  display: flex; gap: 3px;
}
.depoimento-stars i { width: 14px; height: 14px; color: #F59E0B; }

.depoimento-text {
  font-size: .87rem; color: var(--text-soft);
  line-height: 1.75; font-style: italic; flex: 1;
}

.depoimento-author strong {
  font-size: .85rem; font-weight: 700; color: var(--primary);
}

/* ── PLANOS ─────────────────────────────────────────────── */
.planos {
  background: var(--dark-2);
  padding-block: 96px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}

.plan-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: var(--t);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.plan-card-featured {
  border: 2px solid var(--secondary);
  transform: scale(1.02);
}
.plan-card-featured:hover { transform: scale(1.02) translateY(-4px); }
.plan-card-featured .plan-header { background: var(--secondary); }
.plan-card-featured .plan-name  { color: #fff; }
.plan-card-featured .plan-value { color: #fff; }
.plan-card-featured .plan-currency { color: rgba(255,255,255,.85); }
.plan-card-featured .plan-period   { color: rgba(255,255,255,.75); }

.plan-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.plan-name {
  font-size: 1.15rem; font-weight: 800;
  color: var(--secondary); margin-bottom: 14px;
}

.plan-price {
  display: flex; align-items: baseline; gap: 2px;
}
.plan-currency {
  font-size: 1rem; font-weight: 700; color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}
.plan-value {
  font-size: 2.6rem; font-weight: 900;
  color: var(--secondary); line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -.03em;
}
.plan-period { font-size: .85rem; font-weight: 600; color: var(--text-soft); margin-left: 2px; }

.plan-features {
  padding: 20px 24px 0;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.plan-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .84rem; color: var(--text-soft); line-height: 1.5;
}
.plan-features li i { flex-shrink: 0; width: 16px; height: 16px; color: var(--secondary); stroke-width: 2.5; margin-top: 1px; }

.plan-actions {
  display: flex; gap: 6px;
  padding: 16px 24px 0;
}
.plan-action-link {
  flex: 1; text-align: center;
  padding: 6px 4px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .7rem; font-weight: 600;
  color: var(--text-soft); transition: var(--t);
}
.plan-action-link:hover { border-color: var(--secondary); color: var(--secondary); }
.plan-action-pix {
  color: var(--primary); border-color: rgba(158,75,71,.3);
  background: var(--primary-light);
}
.plan-action-pix:hover { border-color: var(--primary); }

.plan-card .btn-plan { margin: 16px 24px 24px; width: calc(100% - 48px); }

/* ── CTA WHATSAPP ───────────────────────────────────────── */
.cta-wa { background: var(--bg-alt); padding-block: 80px; }

.cta-wa-inner {
  display: flex; align-items: center; gap: 48px;
}
.cta-wa-content { flex: 1; }
.cta-wa-title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800; color: var(--dark);
  line-height: 1.3; margin-bottom: 12px;
}
.cta-wa-title strong { color: var(--primary); }
.cta-wa-text { font-size: .97rem; color: var(--text-soft); line-height: 1.7; }
.cta-wa-action { flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.6); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 52px; padding-block: 64px;
}

.footer-brand {}
.footer-logo { display: inline-block; margin-bottom: 12px; }
.footer-logo img { height: 48px; width: auto; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 18px; line-height: 1.6; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff; transition: var(--t);
}
.footer-social a i { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--secondary); }

.footer-nav-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; margin-bottom: 18px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: .85rem; transition: var(--t); }
.footer-nav a:hover { color: #fff; padding-left: 6px; }

.footer-contact {}
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 8px; font-size: .85rem;
}
.footer-contact-list i { width: 14px; height: 14px; color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 20px; }
.footer-bottom .container { display: flex; justify-content: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.5); transition: var(--t); }
.footer-bottom a:hover { color: #fff; }

/* ── PAGE TITLE BANNER ──────────────────────────────────── */
.page-title-banner {
  background: var(--header-bg);
  padding-block: 52px;
}
.page-title-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: #fff; margin-bottom: 12px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .84rem; color: rgba(255,255,255,.7);
}
.breadcrumb a { color: rgba(255,255,255,.85); transition: var(--t); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { width: 14px; height: 14px; }

/* ── BENEFÍCIOS SUBPAGE ──────────────────────────────────── */
.beneficios-intro { background: var(--bg-alt); }
.beneficios-intro-inner { max-width: 760px; }
.beneficios-lead {
  font-size: 1.02rem; color: var(--text-soft); line-height: 1.85;
  margin-top: 18px;
}

.beneficios-card {
  display: flex; align-items: flex-start; gap: 24px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 40px;
}
.beneficios-card-icon {
  flex-shrink: 0; width: 52px; height: 52px;
  background: var(--primary-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.beneficios-card-icon i { width: 22px; height: 22px; color: var(--primary); }
.beneficios-card-title {
  font-size: 1.25rem; font-weight: 800; color: var(--dark); margin-bottom: 10px;
}
.beneficios-card-text { font-size: .96rem; color: var(--text-soft); line-height: 1.8; }

.beneficios-visao { background: var(--bg); }

/* Como Usar steps */
.beneficios-passos { display: flex; flex-direction: column; gap: 24px; }
.beneficios-passo {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 32px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--t);
}
.beneficios-passo:hover { box-shadow: var(--shadow-md); }
.beneficios-passo-num {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--secondary); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
}
.beneficios-passo-title {
  font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px;
}
.beneficios-passo p { font-size: .9rem; color: var(--text-soft); line-height: 1.75; }
.beneficios-passo a { color: var(--secondary); font-weight: 600; }
.beneficios-passo a:hover { color: var(--secondary-dark); }

.beneficios-como { background: var(--bg-alt); }

/* Termos */
.beneficios-termos { background: var(--bg); }
.beneficios-termos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.beneficios-termo-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: var(--t);
}
.beneficios-termo-card:hover { box-shadow: var(--shadow-md); }
.beneficios-termo-icon {
  width: 44px; height: 44px;
  background: var(--primary-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.beneficios-termo-icon i { width: 20px; height: 20px; color: var(--primary); }
.beneficios-termo-card h3 {
  font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px;
}
.beneficios-termo-card p { font-size: .87rem; color: var(--text-soft); line-height: 1.7; }

/* Carências */
.beneficios-carencias { background: var(--bg-alt); }
.carencias-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.carencia-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
}
.carencia-titulo {
  font-size: 1.1rem; font-weight: 800; color: var(--secondary);
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 2px solid var(--secondary);
}
.carencia-lista { display: flex; flex-direction: column; gap: 12px; }
.carencia-lista li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--text-soft); line-height: 1.55;
}
.carencia-lista i { flex-shrink: 0; width: 16px; height: 16px; color: var(--secondary); margin-top: 2px; }

/* Parcerias */
.beneficios-parcerias { background: var(--bg); }

.parcerias-como {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px; margin-bottom: 40px;
}
.parcerias-como-titulo {
  font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 28px;
}
.parcerias-passos { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.parceria-passo {
  display: flex; align-items: flex-start; gap: 16px;
}
.parceria-passo-num {
  flex-shrink: 0; width: 34px; height: 34px;
  background: var(--secondary); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; font-family: 'Montserrat', sans-serif;
}
.parceria-passo p { font-size: .9rem; color: var(--text-soft); line-height: 1.6; padding-top: 6px; }

.parcerias-cta { text-align: center; }

.parcerias-info { text-align: center; margin-bottom: 36px; }
.parcerias-count { font-size: 1.05rem; color: var(--dark); margin-bottom: 6px; }
.parcerias-resp { font-size: .85rem; color: var(--text-soft); }

.parcerias-logos {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px; align-items: center;
}
.parceiro-logo {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 10px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.parceiro-logo:hover { box-shadow: var(--shadow-sm); border-color: var(--secondary); }
.parceiro-logo img { max-height: 32px; width: auto; object-fit: contain; }

/* Subpage responsive */
@media (max-width: 960px) {
  .beneficios-termos-grid { grid-template-columns: 1fr 1fr; }
  .carencias-grid { grid-template-columns: 1fr 1fr; }
  .parcerias-logos { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .beneficios-card { flex-direction: column; gap: 16px; padding: 24px; }
  .beneficios-termos-grid { grid-template-columns: 1fr; }
  .carencias-grid { grid-template-columns: 1fr; }
  .parcerias-logos { grid-template-columns: repeat(3, 1fr); }
  .parcerias-como { padding: 24px; }
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%; overflow: hidden;
  box-shadow: 0 4px 22px rgba(37,211,102,.55);
  z-index: 999; transition: var(--t);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.65); }
.whatsapp-float a { display: block; width: 100%; height: 100%; }
.whatsapp-float img { width: 100%; height: 100%; object-fit: cover; }

/* ── RESPONSIVE — TABLET (≤ 960px) ─────────────────────── */
@media (max-width: 960px) {
  .hero-content { padding-block: 60px; max-width: 100%; }

  .vantagens-images { grid-template-columns: repeat(3, 1fr); }

  .tratamento-card { flex: 0 0 calc(50% - 10px); }

  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid .depoimento-card:last-child { grid-column: 1 / -1; max-width: 420px; margin-inline: auto; width: 100%; }

  .plans-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid .plan-card:last-child { grid-column: 1 / -1; max-width: 380px; margin-inline: auto; width: 100%; }
  .plan-card-featured { transform: none; }
  .plan-card-featured:hover { transform: translateY(-4px); }

  .cta-wa-inner { flex-direction: column; text-align: center; gap: 28px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── RESPONSIVE — MOBILE (≤ 640px) ─────────────────────── */
@media (max-width: 640px) {
  .section { padding-block: 60px; }
  .vantagens { padding-block: 56px; }
  .especialistas { padding-block: 60px; }
  .planos { padding-block: 60px; }
  .cta-wa { padding-block: 60px; }

  /* Header */
  .nav {
    display: none; position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--header-bg);
    flex-direction: column; align-items: stretch;
    padding: 12px 0 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    z-index: 999;
  }
  .nav.open { display: flex; }
  .nav-link {
    display: block; padding: 12px 28px;
    border-radius: 0; font-size: .95rem;
    color: rgba(255,255,255,.85);
  }
  .nav-link:hover { color: #fff; background: rgba(255,255,255,.12); }
  .btn-header { display: none; }
  .menu-toggle { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding-block: 48px; }
  .hero-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  /* Vantagens */
  .vantagens-card { padding: 36px 24px 32px; border-radius: 20px; }
  .vantagens-images { grid-template-columns: 1fr; }
  .vantagens-img-item { height: 200px; }

  /* Carousel */
  .tratamento-card { flex: 0 0 calc(100% - 0px); }

  /* Depoimentos */
  .depoimentos-grid { grid-template-columns: 1fr; }
  .depoimentos-grid .depoimento-card:last-child { grid-column: auto; max-width: 100%; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; }
  .plans-grid .plan-card:last-child { grid-column: auto; max-width: 100%; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}
