/* ===============================================================
   Vie Infinie — style.css
   Identidade: navy #061B3A · dourado #C9A84C · verde Unimed #00A859
   =============================================================== */

:root {
  --navy: #061B3A;
  --navy-2: #0A2C5A;
  --navy-deep: #031225;
  --gold: #C9A84C;
  --gold-light: #E0C880;
  --green: #00A859;
  --green-dark: #008F4C;
  --whatsapp: #25D366;
  --text: #111827;
  --muted: #596273;
  --border: #E7E9EE;
  --bg: #ffffff;
  --off: #F7F4EF;
  --off-2: #FAFAFA;
  --shadow-sm: 0 4px 12px rgba(6, 27, 58, .06);
  --shadow-md: 0 8px 24px rgba(6, 27, 58, .08);
  --shadow-lg: 0 16px 50px rgba(6, 27, 58, .12);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --serif: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  padding: 14px 26px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  transition: all .2s ease;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 168, 89, .25);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 168, 89, .35);
}
.btn-secondary {
  border: 1.5px solid rgba(255,255,255,.45);
  color: #fff;
  background: rgba(255,255,255,.05);
}
.btn-secondary:hover { background: rgba(255,255,255,.12); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 12px 22px;
  font-size: 14px;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 26px;
  font-size: 15px;
}
.btn-whatsapp:hover { background: #1FBE5C; transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-icon { font-size: 16px; line-height: 1; }

/* ============== HEADER ============== */
.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 168, 76, .15);
}
.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link { display: inline-flex; align-items: center; }
.logo { height: 56px; width: auto; }
.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.nav a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav a:hover { color: var(--gold); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s;
}
.nav a:hover::after { width: 100%; }

.nav-toggle { display: none; }

/* ============== HERO ============== */
.hero {
  background:
    radial-gradient(circle at 80% 30%, rgba(201, 168, 76, .22), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(0, 168, 89, .12), transparent 35%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 18px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.08;
  margin: 0 0 22px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.hero h1 .highlight {
  color: var(--gold);
  white-space: nowrap;
}
.subtitle {
  font-size: clamp(17px, 1.4vw, 19px);
  color: rgba(255,255,255,.86);
  max-width: 620px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.microcopy {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
}
.microcopy .check {
  color: var(--gold);
  font-weight: 700;
  margin-right: 4px;
}

.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-card h3 {
  color: var(--gold);
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
}
.hero-card ul { list-style: none; padding: 0; margin: 0 0 18px; }
.hero-card li {
  margin: 14px 0;
  padding-left: 28px;
  position: relative;
  color: rgba(255,255,255,.92);
  font-size: 15px;
}
.hero-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}
.hero-card li strong { color: #fff; }
.hero-card-note {
  font-size: 13px;
  color: rgba(255,255,255,.66);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
}

/* ============== STATS ============== */
.stats {
  margin-top: -56px;
  position: relative;
  z-index: 5;
  padding: 0 0 60px;
}
.stats-grid {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 24px;
  text-align: center;
}
.stats-grid > div + div { border-left: 1px solid var(--border); }
.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}
.stats span {
  color: var(--muted);
  font-size: 14px;
}

/* ============== PARTNERS ============== */
.partners {
  padding: 36px 0 60px;
  background: var(--off-2);
}
.partners-label {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 24px;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 56px;
  align-items: center;
}
.partner {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  opacity: .55;
  font-weight: 600;
  transition: opacity .2s;
}
.partner:hover { opacity: 1; }

/* ============== SECTION GENERIC ============== */
section { padding: 90px 0; }
h2 {
  font-family: var(--serif);
  text-align: center;
  font-size: clamp(28px, 2.8vw, 40px);
  margin: 0 0 14px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 40px;
  font-size: 17px;
  max-width: 680px;
}

/* ============== PRODUCTS ============== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.card-featured { border-color: var(--gold); }
.card-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.card h3 {
  color: var(--navy);
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}
.card p { color: var(--muted); margin: 0 0 16px; font-size: 15px; }
.card-list { list-style: none; padding: 0; margin: 0 0 24px; }
.card-list li {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0 6px 24px;
  position: relative;
}
.card-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  position: absolute;
  left: 0;
}
.card-cta {
  margin-top: auto;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  border-bottom: 2px solid var(--gold);
  padding: 4px 0;
  align-self: flex-start;
  transition: color .2s;
}
.card-cta:hover { color: var(--gold); }

/* ============== PERSONA ============== */
.persona { background: var(--off); }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.persona-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all .25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.persona-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.persona-icon { font-size: 36px; }
.persona-card h3 { color: var(--navy); margin: 0; font-size: 22px; font-weight: 700; }
.persona-card p { color: var(--muted); margin: 0 0 8px; font-size: 16px; }
.persona-arrow {
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  margin-top: auto;
}

/* ============== HOW (PROCESSO) ============== */
.how { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  position: relative;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 50%;
  font-weight: 800;
  font-size: 22px;
  font-family: var(--serif);
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(201, 168, 76, .35);
}
.step h3 { color: var(--navy); margin: 0 0 10px; font-size: 19px; }
.step p { color: var(--muted); margin: 0; font-size: 15px; }

/* ============== WHY ============== */
.why {
  background: var(--navy);
  color: #fff;
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(201, 168, 76, .12), transparent 40%);
  pointer-events: none;
}
.why h2 { color: #fff; }
.why-subtitle { color: rgba(255,255,255,.74); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.why-item {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  background: rgba(255,255,255,.03);
}
.why-item h3 { color: var(--gold); margin: 0 0 10px; font-size: 17px; font-weight: 700; }
.why-item p { color: rgba(255,255,255,.78); margin: 0; font-size: 14.5px; }

/* ============== TESTIMONIALS ============== */
.testimonials { background: var(--off-2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testi-stars {
  color: var(--gold);
  font-size: 17px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi p {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.65;
  margin: 0 0 18px;
  font-style: italic;
}
.testi-author {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testi-author strong { color: var(--navy); font-size: 15px; }
.testi-author span { color: var(--muted); font-size: 13px; margin-top: 2px; }

/* ============== LEAD FORM ============== */
.lead-form {
  background: linear-gradient(180deg, var(--off) 0%, #fff 100%);
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lead-copy h2 { text-align: left; margin-bottom: 12px; }
.lead-copy > p { color: var(--muted); font-size: 17px; margin: 0 0 22px; }
.lead-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.lead-perks li {
  font-size: 15px;
  color: var(--text);
  padding: 6px 0;
}
.lead-perks .check {
  color: var(--green);
  font-weight: 800;
  margin-right: 8px;
}
.lead-or {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 15px;
  font-style: italic;
}
.lead-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.lead-card h3 {
  color: var(--navy);
  font-family: var(--serif);
  margin: 0 0 22px;
  font-size: 22px;
  text-align: center;
}
.lead-card label {
  display: block;
  margin-bottom: 16px;
}
.lead-card label span {
  display: block;
  font-size: 13.5px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 6px;
}
.lead-card label em {
  color: var(--green);
  font-style: normal;
}
.lead-card input {
  width: 100%;
  padding: 13px 14px;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: border-color .2s;
}
.lead-card input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
}
.form-lgpd {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 16px 0 0;
  line-height: 1.55;
}
.form-lgpd a { color: var(--navy); text-decoration: underline; }

/* ============== FAQ ============== */
.faq { background: #fff; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-list details[open] summary { color: var(--gold); }
.faq-list summary {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  padding-right: 30px;
  position: relative;
  list-style: none;
  transition: color .2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 24px;
  color: var(--gold);
  transition: transform .2s;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p {
  color: var(--muted);
  margin: 14px 0 0;
  font-size: 15.5px;
  line-height: 1.7;
}
.faq-list details p a { color: var(--green); font-weight: 700; }

/* ============== CTA FINAL ============== */
.cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 168, 76, .14), transparent 50%);
}
.cta-final-content { position: relative; z-index: 2; }
.cta-final h2 { color: #fff; }
.cta-final p {
  color: rgba(255,255,255,.86);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 32px;
}
.cta-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.78);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: .02em;
}
.footer-col p { font-size: 14px; margin: 0 0 10px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin: 0 0 8px; }
.footer-col a {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-logo { height: 56px; margin-bottom: 16px; }
.footer-bottom {
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-align: center;
}
.footer-bottom p { margin: 0; }

/* ============== WHATSAPP FLOAT ============== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 14px 36px rgba(37, 211, 102, .35);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform .25s;
}
.whatsapp-float:hover {
  transform: scale(1.05);
}
.whatsapp-float-label { white-space: nowrap; }

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lead-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  section { padding: 64px 0; }
  .hero { padding: 70px 0 80px; }
  .hero h1 { font-size: 36px; }

  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px 20px;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav.open { display: flex; }
  .header-cta { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: .2s;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .stats-grid > div { border-left: none !important; padding: 8px 0; }
  .partners-grid { gap: 20px 32px; }
  .partner { font-size: 18px; }

  .cards, .persona-grid, .steps, .why-grid, .testi-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .btn { width: 100%; }
  .hero-actions .btn { flex: 1; }
  .cta-final-actions { flex-direction: column; }
  .cta-final-actions .btn { width: 100%; }
  .whatsapp-float-label { display: none; }
  .whatsapp-float { padding: 16px; }
  .lead-card { padding: 28px 22px; }
}

/* ============== INTERNAS (páginas filhas) ============== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 80px 0 70px;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 auto 18px;
  max-width: 860px;
  line-height: 1.1;
}
.page-hero p {
  color: rgba(255,255,255,.86);
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 18px;
}
.page-hero .hero-actions { justify-content: center; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.feature h3 { color: var(--navy); margin: 0 0 8px; font-size: 18px; }
.feature p { color: var(--muted); margin: 0; font-size: 14.5px; }

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--off);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}
.compare-table td.check { color: var(--green); font-weight: 800; text-align: center; }
.compare-table td.x { color: #C95151; font-weight: 800; text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }

@media (max-width: 760px) {
  .feature-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 10px; }
}


/* ============== HEADER V2 (BRANCO PARA LOGO COMPLETO) ============== */
.site-header {
  background: #FFFFFF !important;
  color: var(--navy) !important;
  border-bottom: 1px solid #E7E9EE;
  box-shadow: 0 2px 12px rgba(6, 27, 58, .04);
}
.site-header .header-inner { height: 88px; }
.site-header .logo { height: 64px; }
.site-header .nav a { color: var(--navy); font-weight: 700; }
.site-header .nav a:hover { color: var(--gold); }
.site-header .nav-toggle span { background: var(--navy); }
@media (max-width: 760px) {
  .site-header .nav {
    background: #fff;
    border-top: 1px solid var(--border);
  }
  .site-header .nav a { color: var(--navy); border-bottom: 1px solid var(--border); padding: 12px 0; }
}

/* ============== WHATSAPP ICON ============== */
.wa-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: -3px;
  flex-shrink: 0;
}
.btn-lg .wa-icon { width: 20px; height: 20px; }
.whatsapp-float .wa-icon { width: 22px; height: 22px; }

/* ============== PLANOS PF UNIMED ============== */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.plano-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all .25s;
  position: relative;
}
.plano-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.plano-featured {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.plano-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.plano-orto { border-color: var(--green); }
.plano-orto .plano-valor { color: var(--green); }
.plano-nome {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 22px;
  margin: 0 0 16px;
  text-align: center;
}
.plano-preco {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.plano-cifra { color: var(--navy); font-size: 18px; font-weight: 700; }
.plano-valor {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}
.plano-periodo { color: var(--muted); font-size: 14px; }
.plano-sub {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 22px;
  min-height: 36px;
}
.plano-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex-grow: 1;
}
.plano-features li {
  font-size: 14px;
  color: var(--text);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid #F0F1F4;
}
.plano-features li:last-child { border-bottom: none; }
.plano-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  position: absolute;
  left: 0;
}
.planos-help {
  text-align: center;
  margin-top: 50px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.planos-help p { color: var(--text); font-size: 16px; margin: 0 0 18px; }
.planos-help strong { color: var(--navy); }

@media (max-width: 980px) {
  .planos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .planos-grid { grid-template-columns: 1fr; }
}


/* ============== COOKIE BANNER LGPD ============== */
.vie-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(6, 27, 58, .25);
  z-index: 9999;
  padding: 22px 24px;
  max-width: 880px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
}
.vie-cookie-banner.show { opacity: 1; transform: translateY(0); }
.vie-cookie-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vie-cookie-text { flex: 1; min-width: 280px; }
.vie-cookie-text strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 6px;
}
.vie-cookie-text p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.vie-cookie-text a { color: var(--green); font-weight: 700; text-decoration: underline; }
.vie-cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.vie-cookie-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.vie-cookie-btn-primary { background: var(--green); color: #fff; }
.vie-cookie-btn-primary:hover { background: var(--green-dark); }
.vie-cookie-btn-secondary { background: transparent; color: var(--muted); border: 1.5px solid var(--border); }
.vie-cookie-btn-secondary:hover { border-color: var(--navy); color: var(--navy); }
@media (max-width: 760px) {
  .vie-cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 18px 16px; }
  .vie-cookie-actions { width: 100%; }
  .vie-cookie-btn { flex: 1; }
}
