/* ═══════════════════════════════════════════════════════════
   Clube Senhor Sorriso — css/main.css
   Montserrat · Azul #003399 + Laranja #FF9100 + Amarelo #FFB900
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Marca */
  --primary:        #003399;   /* azul Senhor Sorriso */
  --primary-dark:   #00256e;
  --primary-light:  #E6ECFA;
  --secondary:      #FF9100;   /* laranja CTA */
  --secondary-dark: #d97a00;
  --secondary-light:#FFF1DD;
  --accent:         #FFB900;   /* amarelo destaque */
  --header-bg:      #003399;
  --shadow-primary: 0 8px 32px rgba(0, 51, 153, .2);
  --shadow-secondary: 0 8px 32px rgba(255, 145, 0, .25);

  /* Neutros */
  --dark:         #1a1d2b;
  --dark-2:       #383838;
  --text:         #1a1d2b;
  --text-soft:    #5a5f6e;
  --text-lighter: #8a8f9a;
  --bg:           #FFFFFF;
  --bg-alt:       #F6F8FD;
  --border:       #E2E6EE;

  /* Tokens */
  --header-h:  76px;
  --radius:    16px;
  --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: '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; }

/* Layout */
.container   { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 28px; }
.section     { padding-block: 96px; background: var(--bg); }
.section-alt { background: var(--bg-alt); }
section[id]  { scroll-margin-top: calc(var(--header-h) + 8px); }
.grid-2         { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.grid-2-reverse { grid-template-columns: 1fr 1.1fr; }

/* Section headers */
.section-header   { text-align: center; margin-bottom: 56px; }
.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-title    { font-size: clamp(1.65rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.section-title strong { color: var(--secondary); }
.section-subtitle { font-size: .98rem; color: var(--text-soft); max-width: 640px; margin-inline: auto; line-height: 1.75; }
.section-subtitle strong { color: var(--primary); font-weight: 700; }
.section-label-dark    { display: inline-block; background: rgba(255,255,255,.15); color: rgba(255,255,255,.92); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.section-title-dark    { font-size: clamp(1.65rem, 3vw, 2.2rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.section-subtitle-dark { font-size: .98rem; color: rgba(255,255,255,.78); max-width: 640px; margin-inline: auto; line-height: 1.75; }
.section-subtitle-dark strong { color: #fff; font-weight: 700; }

/* 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(--secondary); color: #fff; box-shadow: var(--shadow-secondary); }
.btn-primary:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,145,0,.35); }
.btn-secondary { background: #fff; color: var(--primary); }
.btn-secondary:hover { background: var(--primary-light); transform: translateY(-2px); }
.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: var(--secondary); color: #fff; padding: 10px 20px; font-size: .82rem; font-weight: 700; border-radius: 50px; box-shadow: 0 2px 12px rgba(255,145,0,.35); transition: var(--t); }
.btn-header i { width: 15px; height: 15px; }
.btn-header:hover { background: var(--secondary-dark); transform: translateY(-1px); }
.btn-hero-ghost { 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; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.45); color: #fff; backdrop-filter: blur(6px); transition: var(--t); white-space: nowrap; }
.btn-hero-ghost i { width: 17px; height: 17px; }
.btn-hero-ghost:hover { background: rgba(255,255,255,.22); border-color: #fff; }

/* Header */
.header            { position: sticky; top: 0; z-index: 1000; height: var(--header-h); background: var(--header-bg); transition: box-shadow .3s; }
.page-home .header { position: fixed; inset: 0 0 auto; }
.hero              { padding-top: var(--header-h); }
.header.scrolled   { box-shadow: 0 4px 20px rgba(0,0,0,.18); }
.nav      { display: flex; align-items: center; height: var(--header-h); }
.nav-logo { flex-shrink: 0; margin-right: auto; }
.nav-logo img { height: 44px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; margin-right: 20px; }
.nav-link { font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.88); padding: 6px 12px; border-radius: 7px; transition: var(--t); }
.nav-link:hover { color: #fff; background: rgba(255,255,255,.12); }
/* Hamburger */
.menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; margin-left: 12px; }
.menu-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero            { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg         { position: absolute; inset: 0; z-index: 0; }
.hero-bg img     { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay    { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(0,20,60,.85) 0%, rgba(0,51,153,.62) 55%, rgba(0,51,153,.15) 100%); }
.hero-content    { position: relative; z-index: 1; padding-block: 80px; }
.hero-text-inner { max-width: 660px; }
.hero-title      { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; line-height: 1.1; color: #fff; margin-bottom: 22px; letter-spacing: -.02em; }
.hero-title em   { font-style: normal; color: var(--accent); }
.hero-subtitle   { font-size: 1.02rem; color: rgba(255,255,255,.85); line-height: 1.72; margin-bottom: 32px; }
.hero-actions    { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── SEÇÕES ESPECÍFICAS ─────────────────────────────────── */

/* Planos: categorias */
.planos-categoria      { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-top: 32px; margin-bottom: 4px; text-align: center; }
.planos-categoria-sub  { font-size: .9rem; color: var(--text-soft); text-align: center; margin-bottom: 28px; }
.planos-categoria:first-of-type { margin-top: 0; }

/* Plan cards */
.plans-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plans-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin-inline: auto; }
.plan-card   { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; background: var(--bg); box-shadow: var(--shadow-sm); transition: var(--t); position: relative; }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-card.destaque { border-color: var(--secondary); box-shadow: var(--shadow-secondary); transform: translateY(-8px); }
.plan-card.destaque:hover { transform: translateY(-12px); }
.plan-popular { position: absolute; top: 0; left: 50%; transform: translate(-50%, -1px); background: var(--secondary); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 16px; border-radius: 0 0 8px 8px; }
.plan-header  { padding: 32px 24px 20px; border-bottom: 1px solid var(--border); }
.plan-card.destaque .plan-header { background: var(--secondary-light); border-bottom-color: rgba(0,0,0,.07); }
.plan-name    { font-size: 1.55rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.plan-card.destaque .plan-name { color: var(--secondary-dark); }
.plan-tagline { font-size: .85rem; color: var(--text-soft); font-style: italic; line-height: 1.5; }
.plan-body    { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.plan-price   { display: flex; align-items: baseline; gap: 2px; margin-bottom: 16px; }
.price-prefix { font-size: 1rem; font-weight: 700; color: var(--primary); }
.price-value  { font-size: 2.6rem; font-weight: 900; color: var(--secondary); line-height: 1; letter-spacing: -.03em; }
.price-period { font-size: .85rem; font-weight: 600; color: var(--text-soft); margin-left: 4px; }
.plan-payment-label { font-size: .85rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.plan-benefits { display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 20px; }
.plan-benefits li { display: flex; align-items: flex-start; gap: 9px; font-size: .85rem; color: var(--text-soft); line-height: 1.5; }
.plan-benefits li i { flex-shrink: 0; width: 16px; height: 16px; color: var(--secondary); stroke-width: 2.5; margin-top: 2px; }
/* Payment action links */
.plan-actions      { display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.plan-action-link  { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; border-radius: var(--radius-sm); background: var(--bg-alt); border: 1px solid var(--border); font-size: .8rem; font-weight: 600; color: var(--dark); transition: var(--t); }
.plan-action-link:hover { border-color: var(--secondary); color: var(--secondary-dark); background: var(--secondary-light); }
.plan-action-link i { width: 14px; height: 14px; }
.plan-action-pix   { background: var(--secondary-light); border-color: var(--secondary); color: var(--secondary-dark); }
.plan-action-pix:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); }

.plans-intro-block { max-width: 640px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.plans-note { display: flex; align-items: center; gap: 7px; font-size: .88rem; color: var(--text-soft); text-align: center; font-weight: 600; }
.plans-note i { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.plans-disclaimer { font-size: .75rem; color: var(--text-lighter); font-style: italic; text-align: center; }

/* Sobre nós (dark with orange/blue palette) */
.section-sobre { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; padding-block: 110px; }
.sobre-logo { height: 80px; width: auto; margin-bottom: 24px; }
.sobre-title { font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 800; color: var(--accent); margin-bottom: 12px; line-height: 1.1; }
.sobre-headline { font-size: 1.15rem; font-weight: 600; color: rgba(255,255,255,.95); margin-bottom: 20px; line-height: 1.35; }
.sobre-text p { font-size: .95rem; color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 14px; }
.sobre-text .btn { margin-top: 14px; }
.sobre-image img { border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.4); width: 100%; }

/* Especialidades */
.esp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.esp-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; text-align: left; transition: var(--t); }
.esp-card:hover { border-color: var(--secondary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.esp-card i { width: 36px; height: 36px; color: var(--secondary); margin-bottom: 14px; stroke-width: 2; }
.esp-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.25; }
.esp-card p { font-size: .85rem; color: var(--text-soft); line-height: 1.55; }

/* Diferenciais (dark band) */
.section-dark { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; padding-block: 80px; }
.section-dark .section-header { margin-bottom: 0; }

/* Depoimentos */
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.depo-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: var(--t); }
.depo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.depo-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.depo-stars i { width: 18px; height: 18px; color: var(--accent); fill: var(--accent); stroke-width: 0; }
.depo-text { font-size: .9rem; color: var(--text-soft); line-height: 1.65; font-style: italic; flex: 1; margin-bottom: 18px; }
.depo-author { display: flex; flex-direction: column; gap: 2px; padding-top: 16px; border-top: 1px solid var(--border); }
.depo-author strong { font-size: .9rem; color: var(--primary); font-weight: 700; }
.depo-author span { font-size: .78rem; color: var(--text-lighter); }

/* Unidades */
.section-unidades { background: var(--bg-alt); }
.unidades-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.unidade-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; box-shadow: var(--shadow-sm); transition: var(--t); }
.unidade-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.unidade-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.unidade-card:hover img { transform: scale(1.05); }
.unidade-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,51,153,.85) 100%); }
.unidade-label { position: absolute; bottom: 16px; left: 16px; right: 16px; color: #fff; font-weight: 700; font-size: .95rem; z-index: 1; }
.unidades-cta { text-align: center; margin-top: 40px; }

/* Parcerias */
.section-parcerias { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; padding-block: 90px; }
.parc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 36px; }
.parc-grid img { background: #fff; border-radius: var(--radius-sm); padding: 14px; height: 80px; width: 100%; object-fit: contain; transition: var(--t); }
.parc-grid img:hover { transform: scale(1.05); }
.parc-cta { text-align: center; }

/* FAQ */
.section-faq { background: var(--bg); }
.faq-header { text-align: center; margin-bottom: 44px; }
.faq-header .section-title strong { color: var(--secondary); }
.faq-list { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg); overflow: hidden; transition: var(--t); }
.faq-item[open] { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-size: .95rem; font-weight: 700; color: var(--dark); cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { width: 18px; height: 18px; color: var(--primary); transition: transform .3s; flex-shrink: 0; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--primary); }
.faq-body { padding: 0 22px 22px; }
.faq-body p { font-size: .9rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 10px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body a { color: var(--primary); font-weight: 600; text-decoration: underline; }
.faq-body strong { color: var(--dark); }

/* Footer */
.footer         { background: var(--primary-dark); color: rgba(255,255,255,.65); }
.footer-content { display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 52px; padding-block: 64px; }
.footer-logo    { height: 80px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: .85rem; line-height: 1.65; }
.footer-contato h4, .footer-nav h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-contato p   { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 10px; }
.footer-contato i   { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.footer-contato a:hover { color: #fff; }
.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-bottom  { border-top: 1px solid rgba(255,255,255,.1); padding-block: 20px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.5); }
.footer-credit  { color: rgba(255,255,255,.4) !important; }
.footer-credit strong { color: rgba(255,255,255,.65); }

/* Subpage: page banner */
.page-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding-block: 80px 70px; color: #fff; text-align: center; }
.page-banner-eyebrow { display: inline-block; background: rgba(255,255,255,.15); color: rgba(255,255,255,.92); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
.page-banner-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 16px; max-width: 800px; margin-inline: auto; }
.page-banner-sub { font-size: 1rem; color: rgba(255,255,255,.82); max-width: 720px; margin-inline: auto; line-height: 1.7; }

/* Manual de uso: content blocks */
.manual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.manual-block { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); transition: var(--t); }
.manual-block:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.manual-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.manual-icon i { width: 26px; height: 26px; color: var(--primary); }
.manual-block h2 { font-size: 1.25rem; font-weight: 800; color: var(--primary); margin-bottom: 14px; line-height: 1.2; }
.manual-block p { font-size: .9rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 12px; }
.manual-block p:last-child { margin-bottom: 0; }
.manual-block strong { color: var(--dark); }
.manual-steps, .manual-list { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.manual-steps { counter-reset: step; padding-left: 0; }
.manual-steps li { position: relative; padding-left: 40px; font-size: .9rem; color: var(--text-soft); line-height: 1.6; counter-increment: step; }
.manual-steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--secondary); color: #fff; font-weight: 800; font-size: .8rem; display: flex; align-items: center; justify-content: center; }
.manual-list li { position: relative; padding-left: 22px; font-size: .9rem; color: var(--text-soft); line-height: 1.6; }
.manual-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); }
.manual-list a, .manual-steps a { color: var(--primary); font-weight: 600; }
.manual-list a:hover, .manual-steps a:hover { text-decoration: underline; }

/* Parc card */
.parc-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; max-width: 720px; margin: 0 auto 40px; box-shadow: var(--shadow-sm); }
.parc-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.parc-note { font-size: .85rem; color: var(--text-soft); margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.parc-cta-row { margin-top: 22px; text-align: center; }

.parc-logos-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; max-width: 900px; margin-inline: auto; }
.parc-logos-grid img { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; height: 80px; width: 100%; object-fit: contain; transition: var(--t); }
.parc-logos-grid img:hover { transform: scale(1.05); border-color: var(--secondary); }

/* Telemedicina */
.tele-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin-inline: auto; }
.tele-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.tele-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 18px; }
.tele-card h3 i { width: 22px; height: 22px; color: var(--secondary); }

/* Endereços */
.enderecos-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.endereco-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: left; transition: var(--t); }
.endereco-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.endereco-card h3 { font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.endereco-card p { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; color: var(--text-soft); line-height: 1.5; }
.endereco-card i { width: 16px; height: 16px; color: var(--secondary); margin-top: 3px; flex-shrink: 0; }

.nav-link-active { color: #fff !important; background: rgba(255,255,255,.18) !important; }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; 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); }

/* ══ RESPONSIVO ═════════════════════════════════════════════ */
@media (max-width: 960px) {
  .grid-2, .grid-2-reverse { grid-template-columns: 1fr; gap: 44px; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .plan-card.destaque { transform: none; grid-column: 1 / -1; max-width: 420px; margin-inline: auto; width: 100%; }
  .plans-grid-2 { grid-template-columns: 1fr; }
  .esp-grid { grid-template-columns: repeat(2, 1fr); }
  .depo-grid { grid-template-columns: repeat(2, 1fr); }
  .unidades-grid { grid-template-columns: repeat(3, 1fr); }
  .parc-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .manual-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .parc-logos-grid { grid-template-columns: repeat(4, 1fr); }
  .enderecos-grid { grid-template-columns: repeat(3, 1fr); }
  .tele-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding-block: 60px; }
  .nav-menu { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: #fff; flex-direction: column; gap: 0; padding: 12px 0 20px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.08); margin-right: 0; }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-link { display: block; padding: 12px 28px; border-radius: 0; font-size: .95rem; color: var(--text); }
  .nav-link:hover { background: var(--primary-light); color: var(--primary-dark); }
  .btn-header { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 100svh; }
  .hero-content { padding-block: 48px; }
  .hero-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .hero-actions .btn-hero-ghost { justify-content: center; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.destaque { transform: none; grid-column: auto; max-width: 100%; }
  .esp-grid { grid-template-columns: 1fr; }
  .depo-grid { grid-template-columns: 1fr; }
  .unidades-grid { grid-template-columns: repeat(2, 1fr); }
  .parc-grid { grid-template-columns: repeat(3, 1fr); }
  .parc-grid img { height: 64px; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .sobre-image { order: -1; }
  .parc-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .parc-logos-grid img { height: 64px; }
  .enderecos-grid { grid-template-columns: 1fr; }
  .parc-card { padding: 24px; }
  .page-banner { padding-block: 60px 50px; }
}
