/* ============================================================
   A+ Saúde — Aline Marquet · Plano de Saúde Empresarial
   Design system: navy profundo + dourado + creme
   ============================================================ */

:root {
  --navy-950: #060e1f;
  --navy-900: #0b1b3a;
  --navy-800: #122650;
  --navy-700: #1a3468;
  --navy-100: #dde5f2;
  --gold: #c9a144;
  --gold-light: #e3c987;
  --gold-soft: rgba(201, 161, 68, 0.14);
  --green: #2e9e6b;
  --green-soft: rgba(46, 158, 107, 0.12);
  --cream: #f8f6f1;
  --white: #ffffff;
  --ink: #1c2536;
  --ink-soft: #4c5870;
  --line: rgba(11, 27, 58, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --wa: #25d366;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -18px rgba(11, 27, 58, 0.25);
  --shadow-soft: 0 8px 30px -12px rgba(11, 27, 58, 0.16);
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }

section { position: relative; }

.section-pad { padding: 96px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }

.section-title { font-size: clamp(30px, 4.2vw, 44px); color: var(--navy-900); margin-bottom: 18px; }
.section-lead { font-size: 18.5px; color: var(--ink-soft); max-width: 640px; }

.on-dark .section-title { color: var(--white); }
.on-dark .section-lead { color: rgba(255, 255, 255, 0.72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 12px;
  font-family: var(--font-sans); font-size: 16px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-950);
  box-shadow: 0 6px 18px -8px rgba(201, 161, 68, 0.45);
}
.btn-gold:hover { transform: translateY(-2px); background: #b8903a; box-shadow: 0 10px 24px -8px rgba(201, 161, 68, 0.5); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 6px 18px -8px rgba(37, 211, 102, 0.45); }
.btn-wa:hover { transform: translateY(-2px); background: #1fc75c; }

.btn-outline-light {
  background: rgba(255, 255, 255, 0.06); color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }

.btn svg { flex-shrink: 0; }

.btn-note { font-size: 13.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 7px; }
.btn-note svg { color: var(--green); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 20px 0;
}
.site-header.scrolled {
  background: rgba(6, 14, 31, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand-mark {
  font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--white);
  letter-spacing: -0.01em;
}
.brand-mark span { color: var(--gold); }
.brand-sub {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: rgba(255, 255, 255, 0.82); text-decoration: none; font-size: 14.5px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  padding: 10px 18px; border-radius: 10px; font-size: 14px; font-weight: 600; white-space: nowrap;
  background: var(--gold); color: var(--navy-950) !important; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px -6px rgba(201, 161, 68, 0.6); }

@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
@media (max-width: 700px) { .hero-bg img { object-position: center top; } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6, 14, 31, 0.96) 0%, rgba(6, 14, 31, 0.88) 34%, rgba(6, 14, 31, 0.45) 62%, rgba(6, 14, 31, 0.25) 100%),
    linear-gradient(to top, rgba(6, 14, 31, 0.9) 0%, transparent 30%);
}
.hero-inner { position: relative; z-index: 2; padding: 150px 24px 90px; width: 100%; }
.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }

.hero h1 {
  font-size: clamp(36px, 5.4vw, 60px);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: clamp(17px, 2vw, 19.5px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 22px; }

.hero-micro { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13.5px; color: rgba(255, 255, 255, 0.62); }
.hero-micro span { display: flex; align-items: center; gap: 7px; }
.hero-micro svg { color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  text-decoration: none;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 34px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ---------- Trust bar (números) ---------- */
.trustbar { background: var(--navy-900); border-top: 1px solid var(--line-dark); color: var(--white); }
.trustbar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  padding: 44px 24px;
}
.trust-item { text-align: center; }
.trust-num { font-family: var(--font-serif); font-size: clamp(30px, 3.4vw, 42px); font-weight: 600; color: var(--gold-light); line-height: 1.1; }
.trust-label { font-size: 13.5px; color: rgba(255, 255, 255, 0.62); margin-top: 6px; }
@media (max-width: 760px) { .trustbar-inner { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; padding: 36px 24px; } }

/* ---------- Para quem é ---------- */
.bg-cream { background: var(--cream); }

.cards-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px;
}
@media (max-width: 1000px) { .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards-4 { grid-template-columns: 1fr; } }

.segment-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.segment-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(201, 161, 68, 0.45); }
.segment-vidas {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-soft);
  display: inline-block; padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
}
.segment-card h3 { font-size: 21px; color: var(--navy-900); margin-bottom: 10px; }
.segment-card p { font-size: 14.5px; color: var(--ink-soft); }
.segment-flag { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 6px; }

/* ---------- Por que empresarial ---------- */
.why-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; margin-top: 24px; }
@media (max-width: 920px) { .why-grid { grid-template-columns: 1fr; gap: 44px; } }

.why-photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.why-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.6; }
.photo-tag {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  background: rgba(6, 14, 31, 0.78); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white); border-radius: var(--radius-sm);
  padding: 16px 20px; font-size: 14px;
}
.photo-tag strong { color: var(--gold-light); }

.why-list { display: flex; flex-direction: column; gap: 8px; margin-top: 34px; }
.why-item { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.why-item:last-child { border-bottom: none; }
.why-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px;
  background: var(--gold-soft); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.why-item h3 { font-size: 18px; color: var(--navy-900); margin-bottom: 4px; font-family: var(--font-sans); font-weight: 700; }
.why-item p { font-size: 14.5px; color: var(--ink-soft); }
.why-item p strong { color: var(--navy-900); }

/* ---------- Como funciona ---------- */
.dark-section { background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%); color: var(--white); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; counter-reset: step; }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}
.step:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.075); border-color: rgba(201, 161, 68, 0.4); }
.step-num {
  font-family: var(--font-serif); font-size: 46px; font-weight: 600;
  color: transparent; -webkit-text-stroke: 1.3px var(--gold);
  line-height: 1; margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; font-family: var(--font-sans); font-weight: 700; }
.step p { font-size: 14.5px; color: rgba(255, 255, 255, 0.66); }

/* ---------- Operadoras ---------- */
.logos-marquee {
  margin-top: 54px; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.logos-track { display: flex; gap: 18px; width: max-content; animation: marquee 46s linear infinite; }
.logos-marquee:hover .logos-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.logo-chip {
  display: flex; align-items: center; justify-content: center;
  min-width: 168px; height: 78px; padding: 16px 26px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.logo-chip img {
  max-height: 40px; max-width: 128px; object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s;
}
.logo-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.logo-chip:hover img { filter: grayscale(0) opacity(1); }
.logo-chip .logo-text { font-family: var(--font-serif); font-size: 17px; font-weight: 600; color: #6d7891; white-space: nowrap; }
.logo-chip:hover .logo-text { color: var(--navy-900); }

.ops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
@media (max-width: 960px) { .ops-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ops-grid { grid-template-columns: 1fr; } }

.op-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.op-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(201, 161, 68, 0.4); }
.op-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.op-logo { height: 30px; display: flex; align-items: center; }
.op-logo img { max-height: 30px; max-width: 110px; object-fit: contain; }
.op-name { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--navy-900); }
.op-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; white-space: nowrap;
}
.op-tag.premium { background: var(--gold-soft); color: #a07f2c; }
.op-tag.executivo { background: rgba(18, 38, 80, 0.08); color: var(--navy-700); }
.op-tag.custo { background: var(--green-soft); color: var(--green); }
.op-tag.regional { background: rgba(46, 125, 158, 0.1); color: #2e7d9e; }
.op-tag.senior { background: rgba(158, 88, 46, 0.1); color: #9e6a2e; }
.op-card p { font-size: 13.5px; color: var(--ink-soft); }
.op-vidas { margin-top: 12px; font-size: 12.5px; font-weight: 600; color: var(--navy-900); display: flex; align-items: center; gap: 6px; }
.op-vidas svg { color: var(--gold); }

.ops-disclaimer { margin-top: 28px; font-size: 12.5px; color: var(--ink-soft); opacity: 0.8; text-align: center; }

/* ---------- Sobre Aline ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; gap: 44px; } }

.about-photo { position: relative; }
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; object-position: top; width: 100%; }
.about-photo::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1.5px solid var(--gold); border-radius: var(--radius); z-index: -1; opacity: 0.55;
}
.about-quote {
  margin: 26px 0 30px; padding: 22px 26px;
  border-left: 3px solid var(--gold); background: var(--cream); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif); font-size: 19px; font-style: italic; color: var(--navy-800);
}
.about-points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
.about-point { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.about-point svg { flex-shrink: 0; color: var(--green); margin-top: 3px; }
.about-point strong { color: var(--navy-900); }

/* ---------- Pós-venda ---------- */
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
@media (max-width: 900px) { .care-grid { grid-template-columns: 1fr; } }
.care-card {
  background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform 0.25s, background 0.25s;
}
.care-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.08); }
.care-icon {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 20px;
  background: var(--gold-soft); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.care-card h3 { font-size: 19px; margin-bottom: 10px; font-family: var(--font-sans); font-weight: 700; }
.care-card p { font-size: 14.5px; color: rgba(255, 255, 255, 0.66); }

/* ---------- Depoimentos ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow-soft);
}
.stars { color: var(--gold); display: flex; gap: 3px; }
.testimonial blockquote { font-size: 15.5px; color: var(--ink); font-style: italic; flex: 1; }
.testimonial-author { display: flex; flex-direction: column; }
.testimonial-author strong { font-size: 15px; color: var(--navy-900); }
.testimonial-author span { font-size: 13px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; text-align: left;
  font-family: var(--font-sans); font-size: 17px; font-weight: 600; color: var(--navy-900);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s ease; color: var(--gold); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 4px 26px; font-size: 15px; color: var(--ink-soft); max-width: 720px; }
.faq-a-inner strong { color: var(--navy-900); }

/* ---------- Formulário / CTA final ---------- */
.quote-section {
  background:
    radial-gradient(1000px 500px at 85% 0%, rgba(201, 161, 68, 0.12), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--white);
}
.quote-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
@media (max-width: 960px) { .quote-grid { grid-template-columns: 1fr; gap: 48px; } }

.quote-side .section-title { color: var(--white); }
.quote-benefits { display: flex; flex-direction: column; gap: 16px; margin: 30px 0 36px; }
.quote-benefit { display: flex; gap: 12px; font-size: 15.5px; color: rgba(255, 255, 255, 0.8); }
.quote-benefit svg { flex-shrink: 0; color: var(--gold); margin-top: 3px; }

.quote-wa-card {
  display: flex; align-items: center; gap: 18px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius); padding: 22px;
}
.quote-wa-card img { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid var(--gold); }
.quote-wa-card p { font-size: 14px; color: rgba(255, 255, 255, 0.75); margin-bottom: 8px; }
.quote-wa-card a { color: var(--wa); font-weight: 700; text-decoration: none; font-size: 15.5px; display: inline-flex; align-items: center; gap: 8px; }
.quote-wa-card a:hover { text-decoration: underline; }

/* form card */
.form-card {
  background: var(--white); color: var(--ink);
  border-radius: 22px; padding: 38px 36px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 560px) { .form-card { padding: 30px 22px; } }

.form-progress { display: flex; gap: 8px; margin-bottom: 28px; }
.form-progress span { flex: 1; height: 4px; border-radius: 100px; background: var(--line); transition: background 0.3s; }
.form-progress span.active { background: var(--gold); }

.form-step-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.form-card h3 { font-family: var(--font-serif); font-size: 24px; color: var(--navy-900); margin-bottom: 24px; }

.form-step { display: none; }
.form-step.active { display: block; animation: stepIn 0.35s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }
.field input, .field select {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); font-family: var(--font-sans); font-size: 16px; color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234c5870' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }

.pill-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pill-group.cols-2 { grid-template-columns: repeat(2, 1fr); }
.pill-group input { position: absolute; opacity: 0; pointer-events: none; }
.pill-group label {
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 13px 10px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  transition: all 0.2s; margin-bottom: 0; min-height: 50px;
}
.pill-group label:hover { border-color: var(--gold); color: var(--navy-900); }
.pill-group input:checked + label {
  border-color: var(--gold); background: var(--gold-soft); color: var(--navy-900);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.form-nav { display: flex; gap: 12px; margin-top: 28px; }
.btn-back {
  padding: 14px 20px; border-radius: 12px; border: 1.5px solid var(--line);
  background: none; cursor: pointer; font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--ink-soft);
  transition: border-color 0.2s, color 0.2s;
}
.btn-back:hover { border-color: var(--navy-900); color: var(--navy-900); }
.btn-next, .btn-submit { flex: 1; }

.form-lgpd { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; font-size: 12.5px; color: var(--ink-soft); }
.form-lgpd svg { color: var(--green); flex-shrink: 0; }

.field-error { border-color: #d43f3f !important; }
.error-msg { display: none; font-size: 13px; color: #d43f3f; margin-top: 8px; font-weight: 500; }
.error-msg.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255, 255, 255, 0.65); padding: 64px 0 34px; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 34px; } }
.footer-brand .brand-mark { font-size: 24px; }
.footer-brand p { font-size: 14px; margin-top: 14px; max-width: 340px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(255, 255, 255, 0.65); text-decoration: none; font-size: 14.5px; margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-legal {
  border-top: 1px solid var(--line-dark); padding-top: 28px;
  font-size: 12.5px; color: rgba(255, 255, 255, 0.4); line-height: 1.8;
}
.footer-legal .ans-note { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; color: rgba(255, 255, 255, 0.55); }
.footer-legal .ans-note svg { color: var(--green); flex-shrink: 0; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px -6px rgba(37, 211, 102, 0.6);
  transition: transform 0.25s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float::before {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--wa); opacity: 0;
  animation: waPing 2.4s ease infinite;
}
@keyframes waPing { 0% { transform: scale(0.9); opacity: 0.7; } 70%, 100% { transform: scale(1.35); opacity: 0; } }

.wa-tooltip {
  position: fixed; right: 94px; bottom: 33px; z-index: 80;
  background: var(--white); color: var(--navy-900);
  font-size: 13.5px; font-weight: 600;
  padding: 10px 16px; border-radius: 100px; box-shadow: var(--shadow-soft);
  opacity: 0; transform: translateX(8px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}
.wa-float:hover + .wa-tooltip, .wa-tooltip.show { opacity: 1; transform: none; }
@media (max-width: 600px) { .wa-tooltip { display: none; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .logos-track { animation: none; }
  .wa-float::before { animation: none; }
}

/* ---------- Obrigado page ---------- */
.thanks-page {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white); text-align: center; padding: 40px 24px;
}
.thanks-card { max-width: 560px; }
.thanks-check {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 30px;
  background: var(--green-soft); border: 2px solid var(--green); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.thanks-card h1 { font-size: clamp(30px, 5vw, 42px); margin-bottom: 16px; }
.thanks-card h1 em { font-style: italic; color: var(--gold-light); }
.thanks-card p { color: rgba(255, 255, 255, 0.75); font-size: 17px; margin-bottom: 34px; }


/* ============================================================
   Mobile (≤700px) — otimização dedicada
   ============================================================ */
@media (max-width: 700px) {
  /* Cabeçalho compacto em uma linha */
  .site-header { padding: 12px 0; }
  .site-header.scrolled { padding: 10px 0; }
  .brand { gap: 0; align-items: center; }
  .brand-mark { font-size: 21px; white-space: nowrap; }
  .brand-sub { display: none; }
  .nav-cta { font-size: 13px; padding: 9px 14px; }

  /* Hero mobile: foto limpa no topo, texto em bloco solido abaixo (sem sobreposicao) */
  .hero { min-height: auto; display: block; background: var(--navy-950); }
  .hero-bg { position: relative; inset: auto; height: 54svh; min-height: 380px; }
  .hero-bg img { object-position: center 18%; }
  .hero-bg::after {
    background: linear-gradient(to top, var(--navy-950) 0%, rgba(6, 14, 31, 0.45) 16%, rgba(6, 14, 31, 0) 40%, rgba(6, 14, 31, 0.35) 100%);
  }
  .hero-inner { padding: 0 20px 56px; min-height: auto; margin-top: -40px; position: relative; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(30px, 8.6vw, 36px); margin-bottom: 16px; }
  .hero-sub { font-size: 16px; margin-bottom: 24px; }
  .hero-badge { font-size: 11.5px; padding: 7px 14px; margin-bottom: 18px; }
  .hero-ctas { gap: 10px; margin-bottom: 16px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 15.5px; }
  .hero-micro { gap: 10px 14px; font-size: 12.5px; }
  .hero-scroll { display: none; }

  /* Tipografia e espaçamento de seção */
  .section-pad { padding: 64px 0; }
  .section-title { font-size: clamp(26px, 7vw, 30px); }
  .section-lead { font-size: 16px; }
  .trust-num { font-size: 28px; }
  .trust-label { font-size: 12.5px; }

  /* Sobre: remover moldura decorativa (vazava pra fora da tela) e foto mais compacta */
  .about-photo::before { display: none; }
  .about-photo { max-width: 300px; margin: 0 auto; }
  .about-photo img { aspect-ratio: auto; height: auto; }

  /* Formulário */
  .form-card { padding: 26px 18px; border-radius: 18px; }
  .form-card h3 { font-size: 21px; }
  .pill-group { gap: 8px; }
  .pill-group label { font-size: 13.5px; padding: 11px 6px; min-height: 46px; }
  .form-nav { flex-direction: column-reverse; gap: 10px; }
  .form-nav .btn, .form-nav .btn-back { width: 100%; justify-content: center; }
  .quote-wa-card { flex-direction: row; padding: 16px; gap: 14px; }
  .quote-wa-card img { width: 54px; height: 54px; }

  /* Botões gerais e flutuante */
  .btn { padding: 14px 22px; font-size: 15px; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 26px; height: 26px; }

  /* Cards e grades */
  .cards-4, .care-grid, .testimonials { gap: 14px; }
  .segment-card, .care-card, .testimonial { padding: 24px 20px; }
  .steps { gap: 14px; }
  .step { padding: 26px 20px 22px; }
  .step-num { font-size: 38px; }
  .op-card { padding: 20px; }
  .logo-chip { min-width: 136px; height: 64px; padding: 12px 18px; }
  .logo-chip img { max-height: 32px; max-width: 104px; }
  .faq-q { font-size: 15.5px; padding: 20px 4px; }
  .about-quote { font-size: 17px; padding: 18px 20px; }
  .footer-grid { gap: 28px; }
}

/* Telas muito estreitas */
@media (max-width: 380px) {
  .brand-mark { font-size: 19px; }
  .nav-cta { font-size: 12px; padding: 8px 11px; }
  .hero h1 { font-size: 28px; }
  .pill-group { grid-template-columns: repeat(2, 1fr); }
  .pill-group.cols-2 { grid-template-columns: 1fr; }
}
