/* =====================================================================
   Dra. Larissa Fouad — Design System "Premium Editorial"
   Oftalmologia · Retina e Vítreo — Belo Horizonte
   Petróleo profundo + champagne + marfim · Cormorant + Josefin Sans
   (Identidade renovada. Mantém apenas o logo/símbolo da marca.)
   ===================================================================== */

:root {
  --teal-deep: #15363d;     /* fundo escuro premium (header, hero, footer) */
  --teal-deeper: #0f2a30;
  --teal: #2c5560;
  --teal-logo: #1f5e71;
  --primary: #3e6170;
  --gold: #c9a96e;
  --gold-soft: #ddc596;
  --gold-deep: #a8884d;
  --cream: #f6f1e8;         /* fundo claro */
  --cream-warm: #efe7d7;
  --ink: #20333a;           /* texto sobre claro */
  --muted: #6f8085;
  --line-dark: rgba(201, 169, 110, 0.22);   /* hairline dourada em fundo escuro */
  --line-light: rgba(21, 54, 61, 0.12);     /* hairline em fundo claro */
  --success: #1f8f5f;
  --emergency: #9c3b34;
  --font-display: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-body: 'Josefin Sans', 'Segoe UI', sans-serif;
  --shadow-soft: 0 10px 30px -18px rgba(15, 42, 48, 0.45);
  --shadow-medium: 0 22px 50px -26px rgba(15, 42, 48, 0.40);
  --shadow-large: 0 36px 70px -28px rgba(15, 42, 48, 0.55);
  --maxw: 1200px;
  /* Aliases de compatibilidade (estilos inline antigos adotam a nova paleta) */
  --accent: #c9a96e;
  --accent-light: #ddc596;
  --dark: #15363d;
  --text: #20333a;
  --border: rgba(21, 54, 61, 0.12);
  --bg-alt: #efe7d7;
  --font-heading: 'Cormorant', Georgia, serif;
  --iris: #2f9aa6;          /* turquesa da marca — acento secundário (olho/lente) */
  /* Ornamento "lente/olho": dois fios + íris (substitui a estrela da referência) */
  --lens: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 16'%3E%3Cpath d='M2 8H22M42 8H62' stroke='%23c9a96e' stroke-width='1'/%3E%3Cellipse cx='32' cy='8' rx='8' ry='5.5' fill='none' stroke='%23c9a96e' stroke-width='1.3'/%3E%3Ccircle cx='32' cy='8' r='2.4' fill='%232f9aa6'/%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16.5px;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--teal-deep); font-weight: 500; letter-spacing: -0.01em; line-height: 1.1; }
em { font-style: italic; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 22px; } }

/* ---------- Eyebrow / kicker ---------- */
.kicker, .eyebrow {
  display: inline-block; font-family: var(--font-body); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 3.5px; color: var(--gold-deep);
  font-weight: 600; margin-bottom: 18px;
}
.text-accent { color: var(--gold-deep); font-style: italic; font-family: var(--font-display); font-weight: 500; }

/* ---------- Seções ---------- */
.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--cream-warm); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head::before {
  content: ''; display: block; width: 70px; height: 18px; margin: 0 auto 20px;
  background: var(--lens) center/contain no-repeat;
}
.section-head .kicker { position: relative; }
.section-head .kicker::before, .section-head .kicker::after {
  content: ''; position: absolute; top: 50%; width: 42px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.section-head .kicker::before { right: calc(100% + 16px); background: linear-gradient(to left, transparent, var(--gold)); }
.section-head .kicker::after { left: calc(100% + 16px); }
.section-head h2 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); color: var(--teal-deep); margin-bottom: 18px; }
.section-head p { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--muted); max-width: 600px; margin: 0 auto; }

/* ---------- Botões (dourado premium) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: 4px; font-family: var(--font-body);
  font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.4px;
  text-decoration: none; border: 1px solid var(--gold); cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease; line-height: 1;
}
.btn i { font-size: 1.05em; }
.btn-primary, .btn-whatsapp { background: var(--gold); color: var(--teal-deep); }
.btn-primary:hover, .btn-whatsapp:hover { background: transparent; color: var(--gold-deep); }
.btn-outline { background: transparent; color: var(--teal-deep); border-color: var(--teal-deep); }
.btn-outline:hover { background: var(--teal-deep); color: var(--cream); }
.btn-block { width: 100%; }
/* Botões claros sobre fundo escuro */
.on-dark .btn-outline, .hero .btn-outline { color: var(--cream); border-color: rgba(245, 239, 227, 0.5); }
.on-dark .btn-outline:hover, .hero .btn-outline:hover { background: var(--cream); color: var(--teal-deep); }

/* ---------- Barra de urgência (premium, discreta) ---------- */
.urgent-bar {
  background: var(--teal-deeper); color: var(--cream); padding: 11px 24px; text-align: center;
  font-size: 0.82rem; letter-spacing: 0.4px; display: flex; align-items: center;
  justify-content: center; gap: 10px; flex-wrap: wrap; border-bottom: 1px solid var(--line-dark);
}
.urgent-bar i { color: var(--gold); }
.urgent-bar a { color: var(--gold-soft); font-weight: 600; border-bottom: 1px solid transparent; }
.urgent-bar a:hover { border-color: var(--gold-soft); }

/* ---------- Topbar (oculta — header premium dispensa) ---------- */
.topbar { display: none; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 100; background: var(--teal-deep);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 4px 24px -10px rgba(0, 0, 0, 0.5);
}
.navbar .container { height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.navbar .logo { display: inline-flex; align-items: center; height: 100%; }
.navbar .logo img { height: 58px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--cream); opacity: 0.82; font-size: 0.9rem; letter-spacing: 0.4px; position: relative; padding: 6px 0; transition: color 0.25s, opacity 0.25s; }
.nav-links a:not(.btn)::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:not(.btn):hover { color: var(--gold); opacity: 1; }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links .btn { padding: 12px 24px; opacity: 1; }
.mobile-toggle { display: none; background: transparent; border: 1px solid var(--line-dark); color: var(--gold); width: 44px; height: 42px; border-radius: 4px; font-size: 1.1rem; cursor: pointer; }
.mobile-menu { display: none; background: var(--teal-deep); border-bottom: 1px solid var(--line-dark); padding: 12px 0 22px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 32px; color: var(--cream); font-size: 1rem; letter-spacing: 0.4px; border-bottom: 1px solid rgba(201,169,110,0.08); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin: 16px 32px 4px; display: flex; }

/* ---------- HERO (escuro, com retrato fundido) ---------- */
.hero { position: relative; background: var(--teal-deep); overflow: hidden; }
.hero .container { max-width: 1280px; padding: 0; }
.hero-grid, .hero .container { display: grid; grid-template-columns: 1.12fr 0.88fr; align-items: stretch; min-height: 600px; }
.hero .container { display: grid; }
.hero-main { padding: 92px 56px 92px 64px; display: flex; flex-direction: column; justify-content: center; color: var(--cream); position: relative; z-index: 3; }
.hero .eyebrow { color: var(--gold); display: inline-flex; align-items: center; gap: 12px; }
.hero .eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--gold); }
.hero h1 { font-size: clamp(2.8rem, 5.4vw, 4.8rem); color: var(--cream); font-weight: 500; line-height: 1.05; margin-bottom: 24px; text-wrap: balance; }
.hero h1 .text-accent, .hero h1 em { color: var(--gold); font-style: italic; }
.hero .lead { font-size: 1.06rem; color: rgba(245, 239, 227, 0.82); margin-bottom: 26px; max-width: 500px; }
.hero-checks { display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
.hero-checks div { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: rgba(245, 239, 227, 0.9); }
.hero-checks i { color: var(--gold); font-size: 0.95rem; }
.hero-meta { font-size: 0.9rem; color: rgba(245, 239, 227, 0.7); margin-bottom: 30px; letter-spacing: 0.4px; }
.hero-meta strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); font-weight: 500; margin-bottom: 4px; letter-spacing: 0.3px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 22px; font-size: 0.82rem; color: rgba(245,239,227,0.6); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; letter-spacing: 0.4px; }
.hero-trust i { color: var(--gold); }

.hero-photo { position: relative; display: flex; align-items: center; justify-content: center; padding: 60px 44px; min-height: 600px; }
.hero-photo > img { width: 100%; max-width: 348px; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 16%;
  border-radius: 174px 174px 10px 10px; border: 1px solid rgba(201,169,110,0.55); box-shadow: var(--shadow-large); position: relative; z-index: 1; background: var(--teal-deeper); }
.hero-photo::before { content: ''; position: absolute; width: 348px; max-width: calc(100% - 64px); aspect-ratio: 4 / 5;
  border: 1px solid rgba(201,169,110,0.38); border-radius: 174px 174px 10px 10px; transform: translate(18px, 20px); z-index: 0; }
.hero-photo::after { content: ''; position: absolute; z-index: 2; width: 64px; height: 1px; background: var(--iris); bottom: 44px; left: 50%; transform: translateX(-50%); opacity: 0.85; }
.hero-corner { display: none; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: #fff; border-radius: 8px; padding: 44px 34px; border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-medium); transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-large); }
.card-icon { width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--teal); border: 1px solid var(--line-light); border-radius: 50%; }
.card-icon i { font-size: 1.45rem; color: var(--teal); }
.card h3 { font-size: 1.7rem; color: var(--teal-deep); margin-bottom: 12px; font-weight: 600; }
.card p { color: var(--muted); font-size: 0.98rem; line-height: 1.65; flex-grow: 1; }
.card .card-link { margin-top: 20px; font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 8px; }
.card .card-link i { transition: transform 0.25s ease; }
.card:hover .card-link i { transform: translateX(5px); }
.card.center { text-align: center; align-items: center; }
.card.center .card-icon { margin-left: auto; margin-right: auto; }

/* ---------- Lista "o que inclui" ---------- */
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.include-item { display: flex; align-items: center; gap: 13px; background: #fff; padding: 16px 20px; border: 1px solid var(--line-light); border-radius: 6px; font-size: 0.95rem; color: var(--ink); }
.include-item i { color: var(--gold-deep); font-size: 1rem; flex-shrink: 0; }

/* ---------- "Por que escolher" (painel escuro) ---------- */
.why-card { background: var(--teal-deep); color: var(--cream); border-radius: 10px; padding: 64px 52px; position: relative; overflow: hidden; box-shadow: var(--shadow-large); }
.why-card::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 12% 18%, rgba(201,169,110,0.10) 0%, transparent 42%), radial-gradient(circle at 88% 82%, rgba(201,169,110,0.07) 0%, transparent 42%); pointer-events: none; }
.why-card .kicker { color: var(--gold-soft); position: relative; }
.why-card h2 { color: var(--cream); font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 16px; position: relative; }
.why-card p { font-size: 1.05rem; color: rgba(245,239,227,0.82); max-width: 720px; margin-bottom: 44px; position: relative; }
.why-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-top: 36px; border-top: 1px solid var(--line-dark); position: relative; }
.why-stats .stat strong { display: block; font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--gold); line-height: 1; margin-bottom: 8px; }
.why-stats .stat span { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.6px; color: rgba(245,239,227,0.7); }

/* ---------- CTA strip (escuro) ---------- */
.cta-strip { background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(201,169,110,0.07) 1px, transparent 1px); background-size: 26px 26px; pointer-events: none; }
.cta-strip .container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.cta-strip .title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--cream); max-width: 760px; line-height: 1.15; }

/* ---------- Convênios (chips) ---------- */
.chips { max-width: 980px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chip { background: #fff; border: 1px solid var(--line-light); border-radius: 999px; padding: 9px 20px; font-size: 0.82rem; letter-spacing: 0.3px; color: var(--ink); transition: all 0.25s ease; }
a.chip:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.chip.more { background: var(--teal-deep); color: var(--gold-soft); border-color: var(--teal-deep); font-weight: 600; }

/* ---------- Convênio cards ---------- */
.conv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.conv-card { background: #fff; border: 1px solid var(--line-light); border-top: 2px solid var(--gold); border-radius: 6px; padding: 24px 18px; text-align: center; transition: all 0.3s ease; }
.conv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); border-color: var(--gold); }
.conv-card .cc-name { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--teal-deep); margin-bottom: 4px; }
.conv-card .cc-sub { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-deep); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line-light); border-radius: 6px; margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; padding: 24px 26px; display: flex; justify-content: space-between; align-items: center; gap: 18px; text-align: left; }
.faq-question span { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--teal-deep); line-height: 1.25; }
.faq-question:hover span { color: var(--gold-deep); }
.faq-question i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; transition: transform 0.35s ease; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-item.open .faq-answer { max-height: 560px; }
.faq-answer p { color: var(--muted); padding: 0 26px 24px; font-size: 0.98rem; line-height: 1.7; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.4px; color: var(--muted); padding: 28px 0 0; text-transform: uppercase; }
.breadcrumb a { color: var(--gold-deep); }
.breadcrumb a:hover { color: var(--teal-deep); }

/* ---------- Landing (procedimento) ---------- */
.lp-hero { padding: 16px 0 8px; }
.lp-hero .grid { display: grid; grid-template-columns: 1fr 0.78fr; gap: 60px; align-items: center; }
.lp-hero .pill { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 18px; }
.lp-hero .pill::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.lp-hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); color: var(--teal-deep); margin-bottom: 20px; }
.lp-hero .lead { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--muted); margin-bottom: 30px; line-height: 1.4; }
.lp-visual { position: relative; display: flex; align-items: center; justify-content: center; padding: 18px 14px 24px; }
.lp-visual > img { width: 100%; max-width: 340px; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 16%;
  border-radius: 170px 170px 10px 10px; border: 1px solid rgba(201,169,110,0.5); box-shadow: var(--shadow-large); position: relative; z-index: 1; background: var(--cream-warm); }
.lp-visual::before { content: ''; position: absolute; width: 340px; max-width: calc(100% - 28px); aspect-ratio: 4 / 5;
  border: 1px solid var(--line-light); border-radius: 170px 170px 10px 10px; transform: translate(16px, 18px); z-index: 0; }
.lp-visual::after { content: ''; position: absolute; z-index: 2; width: 56px; height: 1px; background: var(--iris); bottom: 30px; left: 50%; transform: translateX(-50%); opacity: 0.8; }
.lp-visual i { display: none; }

/* ---------- Rodapé ---------- */
.footer { background: var(--teal-deeper); color: rgba(245, 239, 227, 0.7); }
.footer .container { padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
.footer .brand { display: inline-flex; align-items: center; margin-bottom: 18px; }
.footer .brand img { height: 64px; width: auto; }
.footer .brand small { display: none; }
.footer .f-about { font-family: var(--font-display); font-style: italic; font-size: 1.12rem; color: rgba(245,239,227,0.75); max-width: 320px; margin-bottom: 18px; line-height: 1.6; }
.footer .col-title { font-family: var(--font-display); font-style: normal; font-weight: 600; color: var(--gold); margin-bottom: 18px; text-transform: none; letter-spacing: 0; font-size: 1.3rem; }
.footer a { color: rgba(245,239,227,0.7); transition: color 0.25s; }
.footer a:hover { color: var(--gold); }
.footer .links { display: grid; gap: 11px; font-size: 0.9rem; }
.footer .whats-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; color: var(--gold-soft); font-weight: 600; font-size: 0.92rem; }
.footer .socials { display: flex; gap: 16px; font-size: 1.3rem; margin-top: 8px; }
.footer .socials a { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 56px; padding: 26px 0 34px; text-align: center; font-size: 0.78rem; color: rgba(245,239,227,0.45); letter-spacing: 0.3px; }
.footer-bottom p + p { margin-top: 10px; max-width: 720px; margin-left: auto; margin-right: auto; }
.footer-bottom a { color: rgba(245,239,227,0.55); }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float { position: fixed; width: 58px; height: 58px; bottom: 24px; right: 24px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; z-index: 95; box-shadow: 0 10px 26px rgba(37,211,102,0.4); transition: transform 0.25s ease; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid #25d366; opacity: 0.5; animation: pulse-ring 2.2s cubic-bezier(.4,0,.6,1) infinite; }
@keyframes pulse-ring { 0% { transform: scale(0.95); opacity: 0.5; } 70% { transform: scale(1.22); opacity: 0; } 100% { transform: scale(0.95); opacity: 0; } }

/* ---------- CTA fixo inferior ---------- */
.sticky-cta { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--teal-deep); border-top: 1px solid var(--line-dark); padding: 12px 16px; z-index: 90; transform: translateY(110%); transition: transform 0.35s ease; }
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .inner { max-width: 1040px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 20px; }
.sticky-cta span { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--cream); }
.sticky-cta .btn { padding: 11px 24px; }

/* ---------- Animação de scroll ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Utilidades ---------- */
.text-center { text-align: center; }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; min-height: 0; }
  .hero-photo { order: -1; min-height: 440px; }
  .hero-photo::before { background: linear-gradient(180deg, transparent 55%, rgba(21,54,61,0.5) 78%, var(--teal-deep) 100%); }
  .hero-main { padding: 60px 32px 72px; text-align: center; align-items: center; }
  .hero .eyebrow { justify-content: center; }
  .lp-hero .grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-visual { min-height: 240px; }
  .grid-3, .grid-4, .conv-grid { grid-template-columns: repeat(2, 1fr); }
  .why-stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 2.6rem; }
  .hero-main { padding: 52px 22px 64px; }
  .grid-2, .grid-3, .grid-4, .includes-grid { grid-template-columns: 1fr; }
  .why-card { padding: 44px 26px; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer .brand, .footer .f-about { margin-left: auto; margin-right: auto; }
  .footer .socials { justify-content: center; }
  .lp-hero { text-align: center; }
  .lp-hero .pill, .breadcrumb { justify-content: center; }
  .sticky-cta span { display: none; }
  .sticky-cta .btn { width: 100%; }
  .whatsapp-float { bottom: 76px; right: 16px; width: 54px; height: 54px; font-size: 1.5rem; }
  .section-head h2 { font-size: 2rem; }
}

/* =====================================================================
   ADIÇÕES: foto no CTA · prova social · ajustes da nova assinatura
   ===================================================================== */

/* ---- Foto no CTA (toda página) ---- */
.cta-strip .container { flex-direction: row; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.cta-photo { width: 150px; height: 188px; object-fit: cover; object-position: center 14%; flex-shrink: 0;
  border-radius: 75px 75px 8px 8px; border: 1px solid rgba(201,169,110,0.5); box-shadow: var(--shadow-large); }
.cta-body { display: flex; flex-direction: column; align-items: center; gap: 24px; max-width: 600px; }

/* ---- Prova social (seção escura) ---- */
.social { background: var(--teal-deep); color: var(--cream); position: relative; overflow: hidden; }
.social::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 12% 16%, rgba(201,169,110,0.08) 0%, transparent 42%), radial-gradient(circle at 88% 84%, rgba(47,154,166,0.07) 0%, transparent 42%); }
.social .section-head { position: relative; }
.social .section-head h2 { color: var(--cream); }
.social .section-head .kicker { color: var(--gold-soft); }
.social .section-head p { color: rgba(245,239,227,0.72); }
.social-rating { position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 52px; }
.social-rating .stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 3px; }
.social-rating .score { font-family: var(--font-display); font-style: italic; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.social-rating .count { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(245,239,227,0.7); }
.social-rating .count a { color: var(--gold-soft); border-bottom: 1px solid transparent; }
.social-rating .count a:hover { border-color: var(--gold-soft); }
.social-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.social-card { background: rgba(0,0,0,0.16); border: 1px solid var(--line-dark); border-radius: 8px; padding: 34px 30px; display: flex; flex-direction: column; gap: 16px; }
.social-card .q-mark { font-family: var(--font-display); font-size: 3.2rem; line-height: 0.6; color: var(--gold); opacity: 0.55; height: 24px; }
.social-card p { font-family: var(--font-display); font-style: italic; font-size: 1.22rem; line-height: 1.45; color: rgba(245,239,227,0.94); flex-grow: 1; }
.social-card cite { font-style: normal; font-family: var(--font-body); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.8px; color: var(--gold-soft); }
.social-card cite span { display: block; color: rgba(245,239,227,0.45); letter-spacing: 1px; margin-top: 3px; }

@media (max-width: 900px) {
  .cta-strip .container { flex-direction: column; gap: 30px; }
  .social-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
