/* =========================================================
   InovareDP — style.css
   Arquivo unificado (style.css + extras.css)
   ========================================================= */

/* =========================================================
   SEGURANÇA — Proteções via CSS
   ========================================================= */

/* Evita seleção indevida de texto em elementos de interface */
.btn, .nav-link, .hamburger, .logo {
  -webkit-user-select: none;
  user-select: none;
}

/* Evita arrastar imagens (anti-scraping básico) */
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* Garante que links externos sejam visualmente identificáveis */
a[target="_blank"]:not(.btn):not(.logo):not(.nav-link)::after {
  content: ' ↗';
  font-size: 0.7em;
  opacity: 0.6;
}

/* Foco visível para acessibilidade e segurança (evita phishing por foco oculto) */
:focus-visible {
  outline: 2px solid #83E509;
  outline-offset: 3px;
}

/* Impede overflow oculto que poderia esconder elementos maliciosos */
body {
  overflow-x: hidden;
}

/* ========================================================= */

/* =========================================================
   InovareDP — Estilos Principais
   ========================================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0A0A0A;
  --navy2:   #111111;
  --gold:    #83E509;
  --gold2:   #A0F530;
  --cream:   #F8FAF5;
  --white:   #FFFFFF;
  --gray:    #6B7280;
  --gray-lt: #F0F4EB;
  --border:  rgba(131,229,9,.28);
  --shadow:  0 4px 32px rgba(0,0,0,.10);
  --shadow-green: 0 8px 40px rgba(131,229,9,.15);
  --radius:  16px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  /* Gradiente escuro do popup — reutilizado nas seções de destaque */
  --dark-bg: linear-gradient(145deg, #0f1a00 0%, #1a2e00 55%, #0A0A0A 100%);
  font-size: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

em { font-style: italic; color: var(--gold); }

a { text-decoration: none; color: inherit; }

/* ---------- CONTAINER ---------- */
.container {
  width: min(1200px, 94%);
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .8rem 1.75rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(131,229,9,.4);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(0,0,0,.18);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

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

.btn-nav {
  background: var(--gold);
  color: var(--white);
  padding: .6rem 1.4rem;
  font-size: .9rem;
}
.btn-nav:hover { background: var(--gold2); color: var(--navy); }

/* ---------- BOTÃO PLATAFORMA ---------- */
.btn-platform {
  background: linear-gradient(145deg, #0f1a00 0%, #1a2e00 55%, #0A0A0A 100%);
  color: var(--white);
  padding: .6rem 1.3rem;
  font-size: .9rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(131,229,9,.25);
  letter-spacing: .01em;
  border: 1px solid rgba(131,229,9,.35);
}

.btn-platform::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(131,229,9,.12) 0%, transparent 60%);
  pointer-events: none;
}

.btn-platform svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}

.btn-platform:hover {
  background: linear-gradient(145deg, #182500 0%, #243d00 55%, #111111 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(131,229,9,.4);
  border-color: rgba(131,229,9,.6);
}

.btn-platform:hover svg {
  transform: rotate(15deg) scale(1.1);
}

.btn-platform:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(131,229,9,.25);
}

/* Variante ghost para fundos escuros (hero, how, testimonials) */
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.7); }

/* ---------- SECTION COMMONS ---------- */
.section { padding: 6rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header.light .section-title,
.section-header.light .section-sub { color: var(--white); }
.section-header.light .section-tag {
  background: rgba(131,229,9,.2);
  color: var(--gold2);
}

.section-tag {
  display: inline-block;
  background: rgba(131,229,9,.12);
  color: var(--gold);
  border: 1px solid var(--border);
  padding: .3rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.section-sub { color: var(--gray); font-size: 1.05rem; max-width: 550px; margin: 0 auto; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.2rem 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(131,229,9,0.15);
  will-change: padding, background;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: .8rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.08), 0 0 0 1px rgba(131,229,9,.10);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.3rem;
  color: var(--navy);
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.logo-text strong { color: var(--navy); }
.logo-dp { color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--navy);
  font-size: .95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* =========================================================
   HERO — redesign two-column
   ========================================================= */
.hero {
  min-height: 100vh;
  background: var(--dark-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

/* ---- backgrounds ---- */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(131,229,9,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131,229,9,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .28;
}
.s1 {
  width: 700px; height: 500px;
  background: radial-gradient(circle, #83E509 0%, transparent 70%);
  top: -180px; right: -180px;
}
.s2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #1a2e00 0%, transparent 70%);
  bottom: 60px; left: -80px;
  opacity: .5;
}
.s3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #83E509 0%, transparent 70%);
  bottom: -80px; right: 28%;
  opacity: .1;
}

/* ---- wrapper ---- */
.hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0 7rem;
}

/* ---- COPY ---- */
.hero-copy { animation: fadeUp .75s ease forwards; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(131,229,9,.10);
  border: 1px solid rgba(131,229,9,.35);
  color: var(--gold2);
  padding: .38rem 1rem .38rem .7rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
  position: relative;
  isolation: isolate;
}
.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(131,229,9,.4);
  animation: pulseDot 2s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1);    opacity: .7; }
  50%      { transform: scale(1.9);  opacity: 0;  }
}

.hero-title {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  color: var(--white);
  margin-bottom: 1.4rem;
  letter-spacing: -.02em;
  line-height: 1.18;
}

.hero-sub {
  color: rgba(255,255,255,.60);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Trust checklist */
.hero-trust-row {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 2.4rem;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  font-weight: 500;
}
.hero-trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn-main {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: .85rem 1.8rem;
  font-size: .95rem;
  letter-spacing: .01em;
}
.hero-btn-main:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(131,229,9,.4);
}
.hero-btn-main svg { transition: transform var(--transition); }
.hero-btn-main:hover svg { transform: translateX(4px); }

/* ---- CARD (right column) ---- */
.hero-side {
  animation: fadeUp .75s .2s ease both;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(131,229,9,.22);
  border-radius: 20px;
  padding: 1.6rem;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(131,229,9,.06) inset,
    0 24px 60px rgba(0,0,0,.35);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero-card-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.hero-card-dot.active { background: var(--gold); }
.hero-card-label {
  margin-left: auto;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Metric items */
.hero-metrics {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 1.4rem;
}

.hero-metric-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: .85rem 1rem;
  transition: background var(--transition), border-color var(--transition);
}
.hero-metric-item:hover {
  background: rgba(131,229,9,.05);
  border-color: rgba(131,229,9,.2);
}

.hero-metric-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(131,229,9,.12);
  border: 1px solid rgba(131,229,9,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.hero-metric-info {
  flex: 1;
  min-width: 0;
}
.hero-metric-info strong {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.88);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-metric-info span {
  font-size: .73rem;
  color: rgba(255,255,255,.42);
}

.hero-metric-badge {
  font-size: .7rem;
  font-weight: 700;
  padding: .22rem .65rem;
  border-radius: 50px;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.hero-metric-badge.ok {
  background: rgba(131,229,9,.14);
  color: var(--gold2);
  border: 1px solid rgba(131,229,9,.28);
}

/* Card footer stats */
.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.hero-stat-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-stat-mini strong {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.hero-stat-mini span {
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}
.hero-stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,.08);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.35);
  font-size: .75rem;
}
.scroll-arrow {
  width: 20px; height: 30px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 10px;
  position: relative;
}
.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,.4);
  border-radius: 2px;
  animation: scrollBounce 1.8s infinite;
}
@keyframes scrollBounce {
  0%,100% { top: 6px; opacity: 1; }
  60%      { top: 12px; opacity: 0; }
}

/* ---- responsive ---- */
@media (max-width: 960px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0 6rem;
  }
  .hero-side { justify-content: flex-start; }
  .hero-card { max-width: 100%; }
  .hero-title { font-size: clamp(1.75rem, 5vw, 2.5rem); }
}

/* =========================================================
   POR QUE CONTRATAR — why-us section
   ========================================================= */
.why-us {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative background pattern */
.why-us::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 480px; height: 480px;
  background: radial-gradient(ellipse at top right, rgba(131,229,9,.09) 0%, transparent 65%);
  pointer-events: none;
}
.why-us::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 320px; height: 320px;
  background: radial-gradient(ellipse at bottom left, rgba(131,229,9,.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Header */
.why-us-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.why-us-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.why-us-title em {
  font-style: italic;
  color: var(--gold);
}
.why-us-sub {
  color: var(--gray);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

/* Cards */
.why-card {
  background: var(--white);
  border: 1.5px solid rgba(131,229,9,.14);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.08), 0 0 0 1px rgba(131,229,9,.18);
  border-color: rgba(131,229,9,.35);
}

/* Featured card (first) */
.why-card--featured {
  background: var(--dark-bg);
  border-color: rgba(131,229,9,.30);
  color: var(--white);
}
.why-card--featured:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,.25), 0 0 0 1px rgba(131,229,9,.4), var(--shadow-green);
  border-color: var(--gold);
}
.why-card--featured .why-card-body h3 { color: var(--white); }
.why-card--featured .why-card-body p  { color: rgba(255,255,255,.6); }
.why-card--featured .why-card-number  { color: rgba(131,229,9,.2); }
.why-card--featured .why-card-icon   {
  background: rgba(131,229,9,.12);
  border-color: rgba(131,229,9,.28);
  color: var(--gold);
}

/* Number watermark */
.why-card-number {
  position: absolute;
  top: 1.1rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(131,229,9,.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Icon */
.why-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(131,229,9,.10);
  border: 1.5px solid rgba(131,229,9,.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover .why-card-icon {
  background: rgba(131,229,9,.16);
  transform: scale(1.06);
}

/* Body */
.why-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.why-card-body p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.72;
}

/* Tag pill */
.why-card-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(131,229,9,.10);
  border: 1px solid rgba(131,229,9,.25);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  align-self: flex-start;
}
.why-card-tag--alt {
  background: rgba(131,229,9,.07);
  color: #5aad00;
  border-color: rgba(131,229,9,.18);
}

/* Hours badge */
.why-card-hours {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(131,229,9,.07);
  border: 1px solid rgba(131,229,9,.18);
  border-radius: 50px;
  padding: .32rem .9rem;
  font-size: .77rem;
  font-weight: 600;
  color: var(--navy);
  align-self: flex-start;
}
.why-hours-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 0 3px rgba(76,175,80,.2);
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Bottom strip */
.why-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--white);
  border: 1.5px solid rgba(131,229,9,.14);
  border-radius: 14px;
  padding: 1.15rem 2rem;
  position: relative;
  z-index: 1;
}
.why-strip-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--navy);
}
.why-strip-item svg { color: var(--gold); flex-shrink: 0; }
.why-strip-divider {
  width: 1px; height: 20px;
  background: rgba(131,229,9,.2);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card--featured { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card--featured { grid-column: auto; }
  .why-strip { gap: 1rem; }
  .why-strip-divider { display: none; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1.5px solid rgba(131,229,9,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(131,229,9,.07);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
  border-color: rgba(131,229,9,.45);
}
.service-card.highlight {
  background: var(--dark-bg);
  border-color: var(--gold);
  color: var(--white);
}
.service-card.highlight::before { color: rgba(131,229,9,.1); }
.service-card.highlight h3 { color: var(--white); }
.service-card.highlight p { color: rgba(255,255,255,.65); }
.service-card.highlight .service-list li { color: rgba(255,255,255,.75); }
.service-card.highlight .service-list li::before { color: var(--gold); }
.service-card.highlight .service-link { color: var(--gold); }

.service-badge-card {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .7rem;
  border-radius: 50px;
  margin-bottom: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-icon { font-size: 2.2rem; margin-bottom: .75rem; }

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
  color: var(--navy);
}

.service-card p {
  font-size: .9rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
}
.service-list li {
  font-size: .87rem;
  color: var(--gray);
  padding: .2rem 0;
}
.service-list li::before { content: '✓ '; color: var(--gold); font-weight: 700; }

.service-link {
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}
.service-link:hover { letter-spacing: .03em; }

/* =========================================================
   SERVICES V2 — Redesign sofisticado
   ========================================================= */
.services-v2 {
  background: #f7f9f4;
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}

/* Ambient background elements */
.sv2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sv2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.sv2-orb--1 {
  width: 500px; height: 500px;
  background: rgba(131,229,9,.08);
  top: -120px; left: -100px;
}
.sv2-orb--2 {
  width: 400px; height: 400px;
  background: rgba(131,229,9,.05);
  bottom: -80px; right: -80px;
}

.sv2-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(131,229,9,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131,229,9,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ---------- Header ---------- */
.sv2-header {
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
}

.sv2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.5rem;
}
.sv2-eyebrow-line {
  display: block;
  width: 36px; height: 1.5px;
  background: var(--gold);
}
.sv2-eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.sv2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 1.1rem;
}

.sv2-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Layout ---------- */
.sv2-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 1.75rem;
  align-items: start;
}

/* ---------- Featured card ---------- */
.sv2-featured {
  background: var(--dark-bg);
  border: 1.5px solid rgba(131,229,9,.30);
  border-radius: 24px;
  padding: 2.6rem;
  position: relative;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 24px 64px rgba(0,0,0,.18), 0 0 0 0 rgba(131,229,9,0);
  transition: box-shadow var(--transition), transform var(--transition);
}
.sv2-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0,0,0,.22), 0 0 48px rgba(131,229,9,.12);
}
.sv2-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 10%, rgba(131,229,9,.08) 0%, transparent 70%);
  pointer-events: none;
}

.sv2-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .85rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.sv2-featured-num {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(131,229,9,.06);
  line-height: 1;
  pointer-events: none;
}

.sv2-featured-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(131,229,9,.12);
  border: 1.5px solid rgba(131,229,9,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.sv2-featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .85rem;
  line-height: 1.25;
}

.sv2-featured-desc {
  font-size: .93rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.sv2-featured-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.sv2-featured-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  line-height: 1.4;
}
.sv2-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(131,229,9,.15);
  border: 1px solid rgba(131,229,9,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* Stat row */
.sv2-featured-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(131,229,9,.15);
  padding-top: 1.5rem;
  margin-top: .5rem;
}
.sv2-fstat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .18rem;
}
.sv2-fstat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--gold);
  font-weight: 700;
}
.sv2-fstat span {
  font-size: .7rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.sv2-fstat-div {
  width: 1px; height: 36px;
  background: rgba(131,229,9,.15);
}

/* ---------- Grid cards ---------- */
.sv2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.1rem;
}

.sv2-card {
  background: var(--white);
  border: 1.5px solid rgba(131,229,9,.12);
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.4rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.sv2-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.sv2-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.07), 0 0 0 1px rgba(131,229,9,.22);
  border-color: rgba(131,229,9,.32);
}
.sv2-card:hover::after { opacity: 1; }

.sv2-card--accent {
  background: var(--cream);
  border-color: rgba(131,229,9,.22);
}

.sv2-card--wide {
  grid-column: span 1;
}

.sv2-card-num {
  position: absolute;
  top: .85rem; right: 1.1rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(131,229,9,.06);
  line-height: 1;
  pointer-events: none;
}

.sv2-card-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(131,229,9,.08);
  border: 1.5px solid rgba(131,229,9,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a8a00;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.sv2-card:hover .sv2-card-icon {
  background: rgba(131,229,9,.15);
  transform: scale(1.08);
}

.sv2-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.sv2-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.sv2-card-content p {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.65;
}

.sv2-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-top: .2rem;
}
.sv2-card-tags span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #4a8a00;
  background: rgba(131,229,9,.09);
  border: 1px solid rgba(131,229,9,.18);
  padding: .16rem .55rem;
  border-radius: 50px;
}

.sv2-card-arrow {
  position: absolute;
  bottom: 1.1rem; right: 1.1rem;
  color: rgba(131,229,9,.3);
  transition: color var(--transition), transform var(--transition);
}
.sv2-card:hover .sv2-card-arrow {
  color: var(--gold);
  transform: translate(2px, -2px);
}

/* ---------- Bottom bar ---------- */
.sv2-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.8rem;
  background: var(--white);
  border: 1.5px solid rgba(131,229,9,.14);
  border-radius: 16px;
  padding: 1.2rem 2rem;
  position: relative;
}
.sv2-bottom::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(131,229,9,.18), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.sv2-bottom-label {
  font-family: 'Playfair Display', serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
}

.sv2-bottom-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
}

.sv2-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .77rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-lt);
  border: 1px solid rgba(131,229,9,.15);
  padding: .3rem .85rem;
  border-radius: 50px;
}
.sv2-pill svg { color: var(--gold); flex-shrink: 0; }

.sv2-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  padding: .72rem 1.6rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.sv2-cta:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(131,229,9,.35);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .sv2-layout {
    grid-template-columns: 360px 1fr;
  }
}
@media (max-width: 900px) {
  .sv2-layout {
    grid-template-columns: 1fr;
  }
  .sv2-featured { max-width: 100%; }
  .sv2-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .sv2-grid {
    grid-template-columns: 1fr;
  }
  .sv2-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.4rem;
  }
  .sv2-bottom-pills { gap: .45rem; }
  .sv2-cta { width: 100%; justify-content: center; }
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
/* =========================================================
   COMO FUNCIONA — hf-section (redesign senior)
   ========================================================= */

/* ---------- Section shell ---------- */
.hf-section {
  position: relative;
  background: #080e00;
  overflow: hidden;
  padding: 100px 0 80px;
}

/* ---------- Atmospheric BG ---------- */
.hf-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hf-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(131,229,9,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131,229,9,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hf-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hf-bg-glow--1 {
  width: 500px; height: 500px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(131,229,9,0.10) 0%, transparent 70%);
}
.hf-bg-glow--2 {
  width: 400px; height: 400px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(131,229,9,0.08) 0%, transparent 70%);
}
.hf-bg-glow--3 {
  width: 300px; height: 200px;
  top: 45%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(131,229,9,0.06) 0%, transparent 70%);
}

.hf-bg-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(131,229,9,0.15), transparent);
  height: 1px;
  width: 100%;
}
.hf-bg-line--1 { top: 0; }
.hf-bg-line--2 { bottom: 0; }

/* ---------- Container ---------- */
.hf-container { position: relative; z-index: 1; }

/* ---------- Header ---------- */
.hf-header {
  text-align: center;
  margin-bottom: 72px;
}

/* .hf-eyebrow → substituído por .section-eyebrow */

.hf-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hf-title em { color: var(--gold); font-style: italic; }

.hf-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Track (steps container) ---------- */
.hf-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  align-items: start;
  margin-bottom: 56px;
}

/* ---------- Connector line (desktop) ---------- */
.hf-connector {
  position: absolute;
  top: 36px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  z-index: 0;
  pointer-events: none;
}
.hf-connector-line {
  position: absolute; inset: 0;
  background: rgba(131,229,9,0.15);
  border-radius: 2px;
}
.hf-connector-progress {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(131,229,9,0.6) 0%, rgba(131,229,9,0.15) 100%);
  border-radius: 2px;
  animation: hfProgressFill 1.8s ease-out forwards;
  animation-delay: 0.3s;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes hfProgressFill {
  to { transform: scaleX(1); }
}

/* ---------- Individual Step ---------- */
.hf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 0 6px;
  opacity: 0;
  transform: translateY(20px);
  animation: hfStepIn 0.5s ease forwards;
}
.hf-step[data-hf-step="1"] { animation-delay: 0.1s; }
.hf-step[data-hf-step="2"] { animation-delay: 0.25s; }
.hf-step[data-hf-step="3"] { animation-delay: 0.4s; }
.hf-step[data-hf-step="4"] { animation-delay: 0.55s; }
.hf-step[data-hf-step="5"] { animation-delay: 0.7s; }

@keyframes hfStepIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Step Node (icon circle) ---------- */
.hf-step-node {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hf-step-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(131,229,9,0.25);
  background: rgba(131,229,9,0.04);
  transition: border-color 0.3s, background 0.3s;
}

.hf-step-node:hover .hf-step-ring {
  border-color: rgba(131,229,9,0.7);
  background: rgba(131,229,9,0.10);
}

.hf-step-icon-wrap {
  position: relative;
  z-index: 1;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(131,229,9,0.08);
  border-radius: 50%;
  border: 1px solid rgba(131,229,9,0.2);
  transition: background 0.3s, transform 0.3s;
}

.hf-step-node:hover .hf-step-icon-wrap {
  background: rgba(131,229,9,0.18);
  transform: scale(1.08);
}

.hf-step-node--final .hf-step-ring {
  border-color: rgba(131,229,9,0.5);
  background: rgba(131,229,9,0.08);
  box-shadow: 0 0 32px rgba(131,229,9,0.15), 0 0 0 8px rgba(131,229,9,0.04);
}

.hf-step-node--final .hf-step-icon-wrap {
  background: rgba(131,229,9,0.15);
  border-color: rgba(131,229,9,0.4);
  box-shadow: 0 0 20px rgba(131,229,9,0.2);
}

/* Step number badge */
.hf-step-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0f1a00;
  border: 1.5px solid rgba(131,229,9,0.4);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* ---------- Step Card ---------- */
.hf-step-card {
  width: 100%;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(131,229,9,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.hf-step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(131,229,9,0.04) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}

.hf-step-card:hover,
.hf-step:hover .hf-step-card {
  border-color: rgba(131,229,9,0.3);
  background: rgba(131,229,9,0.04);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(131,229,9,0.15);
}

.hf-step:hover .hf-step-card::before { opacity: 1; }

.hf-step-card--final {
  border-color: rgba(131,229,9,0.22);
  background: rgba(131,229,9,0.06);
}

.hf-step-card--final::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hf-step-card-inner {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Labels & text */
.hf-step-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(131,229,9,0.55);
}

.hf-step-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

.hf-step-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.hf-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(131,229,9,0.08);
  border: 1px solid rgba(131,229,9,0.18);
  border-radius: 100px;
  padding: 4px 10px;
  margin-top: 4px;
  width: fit-content;
}

.hf-step-tag--final {
  background: rgba(131,229,9,0.14);
  border-color: rgba(131,229,9,0.3);
}

/* ---------- CTA Strip ---------- */
.hf-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(131,229,9,0.05);
  border: 1px solid rgba(131,229,9,0.15);
  border-radius: 16px;
  padding: 24px 32px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hf-cta-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(131,229,9,0.4), transparent);
}

.hf-cta-strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hf-cta-strip-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(131,229,9,0.12);
  border: 1px solid rgba(131,229,9,0.25);
  border-radius: 12px;
  color: var(--gold);
  flex-shrink: 0;
}

.hf-cta-strip-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hf-cta-strip-copy strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.hf-cta-strip-copy span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.hf-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hf-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 0;
  }
  .hf-connector { display: none; }

  .hf-step:nth-child(4),
  .hf-step:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .hf-section { padding: 72px 0 60px; }
  .hf-header { margin-bottom: 48px; }
  .hf-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hf-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }
  .hf-step-node { flex-shrink: 0; }
  .hf-step-card { width: 100%; }

  .hf-cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .hf-cta-strip-left { flex-direction: column; }
  .hf-cta-btn { width: 100%; justify-content: center; }
}

/* =========================================================
   PLANOS & PREÇOS — pp-section (redesign senior)
   ========================================================= */

.pp-section {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  padding: 100px 0 90px;
}

/* ---------- BG ---------- */
.pp-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.pp-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(131,229,9,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131,229,9,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.6;
}

.pp-bg-glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.pp-bg-glow--1 {
  width: 600px; height: 400px;
  top: -100px; left: -120px;
  background: radial-gradient(ellipse, rgba(131,229,9,0.07) 0%, transparent 70%);
}
.pp-bg-glow--2 {
  width: 500px; height: 350px;
  bottom: -80px; right: -80px;
  background: radial-gradient(ellipse, rgba(131,229,9,0.05) 0%, transparent 70%);
}

.pp-bg-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(131,229,9,0.18) 40%, rgba(131,229,9,0.18) 60%, transparent 95%);
}
.pp-bg-line--top { top: 0; }
.pp-bg-line--bot { bottom: 0; }

/* ---------- Container ---------- */
.pp-container { position: relative; z-index: 1; }

/* ---------- Header ---------- */
.pp-header {
  text-align: center;
  margin-bottom: 40px;
}

/* .pp-eyebrow → substituído por .section-eyebrow */

.pp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.pp-title em { color: #1a3300; font-style: italic; }

.pp-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Tabs ---------- */
.pp-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 48px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(131,229,9,0.15);
  border-radius: 100px;
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pp-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gray);
  background: transparent;
  border: none;
  border-radius: 100px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}
.pp-tab:hover { color: var(--navy); background: rgba(131,229,9,0.06); }

.pp-tab--active {
  background: #fff !important;
  color: var(--navy) !important;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.pp-tab--active svg { color: var(--gold); }

/* ---------- Panels ---------- */
.pp-panel { display: none; }
.pp-panel--active { display: block; }

/* ---------- Plans Cards Grid ---------- */
.pp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: start;
  margin-bottom: 36px;
  position: relative;
}

/* ---------- Base card ---------- */
.pp-card {
  background: #fff;
  border: 1.5px solid rgba(131,229,9,0.15);
  border-radius: 20px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pp-card--base:first-child {
  border-radius: 20px 0 0 20px;
  border-right: none;
}
.pp-card--base:last-child {
  border-radius: 0 20px 20px 0;
  border-left: none;
}

.pp-card--base:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  border-color: rgba(131,229,9,0.35);
  z-index: 2;
}

/* ---------- Featured card ---------- */
.pp-card--featured {
  background: linear-gradient(145deg, #0f1a00 0%, #1a2e00 55%, #0d0d0d 100%);
  border: 1.5px solid rgba(131,229,9,0.5);
  border-radius: 20px !important;
  transform: translateY(-14px) scale(1.02);
  z-index: 3;
  box-shadow: 0 24px 72px rgba(0,0,0,0.22), 0 0 0 1px rgba(131,229,9,0.15);
  overflow: visible;
}
.pp-card--featured:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 32px 80px rgba(0,0,0,0.28), 0 0 40px rgba(131,229,9,0.12);
}

.pp-card-featured-glow {
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(131,229,9,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pp-card--featured > * { position: relative; z-index: 1; }

/* Badge */
.pp-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(131,229,9,0.3);
}

/* ---------- Card internals ---------- */
.pp-card-top { margin-bottom: 20px; }

.pp-card-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.pp-card-tier {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.pp-card-tier--light { color: var(--gold2); }

.pp-card-tier-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 2px 7px;
  border-radius: 100px;
}

.pp-card-price-block {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 12px;
}

.pp-card-price {
  display: flex;
  align-items: flex-start;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
}
.pp-card-price--light { color: #fff; }

.pp-price-cur {
  font-size: 1.2rem;
  margin-top: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.pp-price-val { font-size: 3.2rem; letter-spacing: -0.03em; }
.pp-price-dec { font-size: 1.5rem; margin-top: 6px; }

.pp-price-period {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 6px;
}
.pp-price-period--light { color: rgba(255,255,255,0.45); }

.pp-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.6;
}
.pp-card-desc--light { color: rgba(255,255,255,0.5); }

.pp-card-divider {
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin: 20px 0;
}
.pp-card-divider--light { background: rgba(255,255,255,0.1); }

/* Features list */
.pp-card-features {
  list-style: none;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.pp-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: #333;
}
.pp-feat--light { color: rgba(255,255,255,0.8); }
.pp-feat--no { opacity: 0.38; }

.pp-feat-icon {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(131,229,9,0.12);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}
.pp-feat-icon--no {
  background: rgba(0,0,0,0.05);
  color: var(--gray);
}

/* CTA buttons */
.pp-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.pp-card-btn--outline {
  background: transparent;
  border: 1.5px solid rgba(131,229,9,0.3);
  color: var(--navy);
}
.pp-card-btn--outline:hover {
  background: rgba(131,229,9,0.06);
  border-color: var(--gold);
  color: var(--navy);
}

.pp-card-btn--primary {
  background: var(--gold);
  border: 1.5px solid var(--gold);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(131,229,9,0.3);
}
.pp-card-btn--primary:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  box-shadow: 0 6px 28px rgba(131,229,9,0.45);
  transform: translateY(-1px);
}

/* ---------- Trust strip ---------- */
.pp-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.pp-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--gray);
}
.pp-trust-item svg { color: var(--gold); flex-shrink: 0; }

.pp-trust-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
}

/* ---------- Avulsos tab ---------- */
.pp-avulsos-intro {
  text-align: center;
  margin-bottom: 36px;
}
.pp-avulsos-intro p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--gray);
}

.pp-avulsos-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 28px;
}

.pp-avulso-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1.5px solid rgba(131,229,9,0.14);
  border-radius: 16px;
  padding: 22px 24px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.pp-avulso-card:hover {
  border-color: rgba(131,229,9,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.pp-avulso-card--highlight {
  border-color: rgba(131,229,9,0.3);
  background: linear-gradient(135deg, rgba(131,229,9,0.04) 0%, #fff 60%);
}

.pp-avulso-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(131,229,9,0.08);
  border: 1px solid rgba(131,229,9,0.2);
  border-radius: 12px;
  color: var(--gold);
  flex-shrink: 0;
}

.pp-avulso-body {
  flex: 1;
  min-width: 0;
}

.pp-avulso-name {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.pp-avulso-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

.pp-avulso-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.pp-avulso-price-wrap {
  display: flex;
  align-items: flex-start;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: var(--navy);
}
.pp-avulso-cur { font-size: 0.85rem; margin-top: 2px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.pp-avulso-price { font-size: 1.9rem; line-height: 1; letter-spacing: -0.02em; }
.pp-avulso-cents { font-size: 1rem; }

.pp-avulso-price--custom {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(131,229,9,0.1);
  border: 1px solid rgba(131,229,9,0.2);
  border-radius: 100px;
  padding: 5px 12px;
}

.pp-avulso-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  padding: 8px 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pp-avulso-btn:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(131,229,9,0.35);
}

.pp-avulsos-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: var(--gray);
  text-align: center;
}
.pp-avulsos-note svg { color: var(--gold); flex-shrink: 0; }
.pp-avulsos-note a { color: var(--gold); font-weight: 600; text-decoration: none; }
.pp-avulsos-note a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .pp-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pp-card--base:first-child,
  .pp-card--base:last-child {
    border-radius: 20px;
    border: 1.5px solid rgba(131,229,9,0.15);
  }
  .pp-card--featured {
    transform: none;
    order: -1;
  }
  .pp-card--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 600px) {
  .pp-section { padding: 72px 0 60px; }
  .pp-tabs { width: 100%; justify-content: stretch; }
  .pp-tab { flex: 1; justify-content: center; font-size: 0.78rem; padding: 9px 10px; }
  .pp-avulso-card { flex-wrap: wrap; }
  .pp-avulso-price-col { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
  .pp-trust { gap: 8px 12px; }
  .pp-trust-dot { display: none; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--dark-bg); position: relative; overflow: hidden; }
.testimonials::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131,229,9,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-tag {
  background: rgba(131,229,9,.2);
  color: var(--gold2);
  border-color: rgba(131,229,9,.3);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border); }

.stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; }

.testimonial-card p {
  color: rgba(255,255,255,.75);
  font-size: .93rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: .9rem; }
.testimonial-author span { color: rgba(255,255,255,.45); font-size: .78rem; }

/* =========================================================
   REQUEST / FORM
   ========================================================= */
.request { background: var(--white); }

/* Progress */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: .25rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.progress-step span {
  font-size: .75rem;
  color: var(--gray);
  font-weight: 500;
}
.progress-step.active .progress-dot { background: var(--gold); color: var(--navy); }
.progress-step.active span { color: var(--navy); font-weight: 600; }
.progress-step.done .progress-dot {
  background: #16a34a;
  color: var(--white);
}

.progress-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.1);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--gray);
  transition: var(--transition);
}

.progress-line {
  width: 80px; height: 2px;
  background: rgba(0,0,0,.1);
  margin-bottom: 1.3rem;
  transition: background var(--transition);
}
.progress-line.done { background: var(--gold); }

/* Form wrapper */
.form-wrapper {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 40px rgba(0,0,0,.08), 0 0 0 1.5px rgba(131,229,9,.18);
  padding: 3rem;
  max-width: 780px;
  margin: 0 auto;
}

.form-step { display: none; }
.form-step.active { display: block; }

.step-title {
  font-size: 1.4rem;
  margin-bottom: 1.75rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gray-lt);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(131,229,9,.2);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  color: var(--navy);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(131,229,9,.10);
}
.form-group textarea { resize: vertical; }

/* Service selection */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}

.service-option { cursor: pointer; }
.service-option input[type="radio"] { display: none; }

.service-option-body {
  border: 1.5px solid rgba(131,229,9,.18);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .3rem;
  transition: var(--transition);
  background: var(--cream);
}
.service-option input:checked + .service-option-body {
  border-color: var(--gold);
  background: rgba(131,229,9,.08);
  box-shadow: 0 0 0 3px rgba(131,229,9,.12);
}
.service-option-body:hover { border-color: rgba(131,229,9,.5); }

.service-option-icon { font-size: 1.6rem; }
.service-option-body strong { font-size: .88rem; color: var(--navy); }
.service-option-price {
  font-size: .9rem;
  color: var(--gold);
  font-weight: 700;
}

/* Step actions */
.step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-lt);
}

/* Order summary */
.order-summary {
  background: var(--gray-lt);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  font-size: .92rem;
}
.order-summary h4 { font-size: .9rem; margin-bottom: .5rem; color: var(--gray); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.order-row { display: flex; justify-content: space-between; padding: .3rem 0; }
.order-row.total { border-top: 1px solid rgba(0,0,0,.1); margin-top: .5rem; padding-top: .6rem; font-weight: 700; font-size: 1rem; }

/* Payment tabs */
.pay-label { font-weight: 600; margin-bottom: .75rem; }
.pay-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.pay-tab {
  padding: .6rem 1.2rem;
  border: 2px solid rgba(0,0,0,.1);
  border-radius: 8px;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.pay-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pay-tab:hover:not(.active) { border-color: var(--gold); }

.pay-panel { display: none; }
.pay-panel.active { display: block; }

/* PIX */
.pix-box {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.pix-qr .qr-placeholder {
  width: 130px; height: 130px;
  border: 2px dashed var(--border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--gray);
  gap: .3rem;
}
.pix-info p { margin-bottom: .4rem; font-size: .92rem; }
.pix-key {
  background: var(--gray-lt);
  padding: .4rem .8rem;
  border-radius: 6px;
  font-size: .85rem;
  margin-top: .5rem !important;
}

/* Boleto */
.boleto-box {
  text-align: center;
  padding: 2rem;
  background: var(--gray-lt);
  border-radius: 12px;
}
.boleto-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.boleto-note { color: var(--gray); font-size: .85rem; margin-top: .75rem; }

/* Security */
.secure-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding: .75rem 1rem;
  background: var(--gray-lt);
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray);
}

.btn-pay { font-size: 1rem; padding: .9rem 2rem; }

/* Success */
.success-screen { text-align: center; padding: 2rem 0; }
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.success-screen h3 { font-size: 1.8rem; margin-bottom: .75rem; color: #16a34a; }
.success-screen p { color: var(--gray); margin-bottom: 1rem; }
.success-details {
  background: var(--gray-lt);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin: 1rem auto;
  max-width: 420px;
  font-size: .9rem;
  text-align: left;
}
.success-details p { margin-bottom: .3rem; color: var(--navy); }
.success-note {
  font-size: .88rem;
  color: var(--gray);
  background: rgba(131,229,9,.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  margin: 1rem 0 1.5rem;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-tag { display: inline-block; margin-bottom: .75rem; }
.contact-info .section-title { font-size: 2rem; margin-bottom: 1.75rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.contact-item strong { display: block; font-size: .9rem; margin-bottom: .15rem; }
.contact-item p { color: var(--gray); font-size: .92rem; }

.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid rgba(131,229,9,.18);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-green);
}

/* =========================================================
   FOOTER V2 — Redesign sofisticado
   ========================================================= */
.footer-v2 {
  background: #080d00;
  background: linear-gradient(170deg, #0a1200 0%, #0d1600 40%, #080b00 100%);
  color: rgba(255,255,255,.55);
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Ambient glows */
.fv2-ambient { position: absolute; inset: 0; pointer-events: none; }
.fv2-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.fv2-glow--1 {
  width: 500px; height: 300px;
  background: rgba(131,229,9,.055);
  top: -80px; left: -80px;
}
.fv2-glow--2 {
  width: 380px; height: 280px;
  background: rgba(131,229,9,.04);
  bottom: 0; right: -60px;
}
.fv2-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* Top border gradient */
.fv2-top-border {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(131,229,9,.35) 30%, rgba(131,229,9,.55) 50%, rgba(131,229,9,.35) 70%, transparent 100%);
  position: relative;
  z-index: 2;
}

/* Main grid */
.fv2-grid {
  display: grid;
  grid-template-columns: 320px 40px 1fr 1fr 1fr;
  gap: 0 2.5rem;
  padding: 4rem 0 3.5rem;
  position: relative;
  z-index: 2;
}

/* ---------- Brand column ---------- */
.fv2-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fv2-logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.fv2-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(131,229,9,.08);
  border: 1px solid rgba(131,229,9,.22);
  flex-shrink: 0;
}
.fv2-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.fv2-logo-dp { color: var(--gold); }

/* Tagline block */
.fv2-tagline-block {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.fv2-since {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
}
.fv2-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
}

.fv2-desc {
  font-size: .84rem;
  color: rgba(255,255,255,.42);
  line-height: 1.78;
  max-width: 280px;
}

/* Social links */
.fv2-socials {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.fv2-social {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: .42rem .85rem .42rem .7rem;
  border-radius: 50px;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.fv2-social:hover {
  color: var(--gold);
  background: rgba(131,229,9,.08);
  border-color: rgba(131,229,9,.28);
  transform: translateY(-2px);
}
.fv2-social svg { flex-shrink: 0; }

/* Spacer vertical line */
.fv2-spacer {
  display: flex;
  justify-content: center;
  position: relative;
}
.fv2-spacer::after {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(131,229,9,.12) 20%, rgba(131,229,9,.12) 80%, transparent 100%);
}

/* ---------- Columns ---------- */
.fv2-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: .15rem;
}

.fv2-col-header {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .25rem;
}
.fv2-col-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.fv2-col-header strong {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.fv2-links {
  display: flex;
  flex-direction: column;
  gap: .52rem;
}
.fv2-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
  line-height: 1.5;
}
.fv2-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* Contact items */
.fv2-contact-items {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.fv2-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.45;
}
.fv2-contact-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(131,229,9,.07);
  border: 1px solid rgba(131,229,9,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .05rem;
}

.fv2-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--gold);
  padding: .5rem 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  align-self: flex-start;
}
.fv2-wa-btn:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(131,229,9,.35);
}

/* ---------- Horizontal rule ---------- */
.fv2-hr {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.06) 20%, rgba(255,255,255,.06) 80%, transparent 100%);
  position: relative;
  z-index: 2;
}

/* ---------- Bottom bar ---------- */
.fv2-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.4rem 0 1.6rem;
}

.fv2-legal-line {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
  text-align: center;
  letter-spacing: .02em;
  line-height: 1.6;
}
.fv2-legal-line strong {
  color: rgba(255,255,255,.38);
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .fv2-grid {
    grid-template-columns: 280px 32px 1fr 1fr 1fr;
    gap: 0 1.8rem;
  }
}
@media (max-width: 900px) {
  .fv2-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }
  .fv2-brand { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 2rem; }
  .fv2-spacer { display: none; }
}
@media (max-width: 640px) {
  .fv2-grid {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 0 2.5rem;
  }
  .fv2-brand { flex-direction: column; gap: 1.2rem; }
  .fv2-desc { max-width: 100%; }
}
@media (max-width: 420px) {
  .fv2-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .nav { display: none; flex-direction: column; gap: 1rem; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,.98); padding: 1.5rem 5%; border-top: 1px solid rgba(131,229,9,.15); box-shadow: 0 8px 32px rgba(0,0,0,.08); }
  .nav.open { display: flex; }
  .nav-link { font-size: 1rem; color: var(--navy); }
  .hamburger { display: flex; }

  /* Plataforma no menu mobile */
  .btn-platform {
    justify-content: center;
    width: 100%;
  }

  /* hf-section responsive handled in its own block */

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* footer-v2 responsive handled inside its own block */

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }

  .hero-title { font-size: clamp(1.65rem, 5vw, 2.2rem); }

  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  /* pp-section responsive handled in its own block */

  .form-wrapper { padding: 1.75rem 1.25rem; }

  /* footer-v2 mobile handled inside its own block */

  .hero-stats { gap: 1.25rem; }
  .stat-divider { display: none; }

  .progress-line { width: 40px; }

  .pix-box { flex-direction: column; text-align: center; }
}


/* =========================================================
   TESTIMONIALS V2 — Sophisticated redesign
   ========================================================= */

.testimonials-v2 {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}

.tv2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.tv2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.tv2-orb--1 {
  width: 500px; height: 500px;
  top: -120px; left: -150px;
  background: radial-gradient(circle, rgba(131,229,9,0.35) 0%, transparent 70%);
}
.tv2-orb--2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(131,229,9,0.2) 0%, transparent 70%);
}
.tv2-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
}

.tv2-container { position: relative; z-index: 1; }

.tv2-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.tv2-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.tv2-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(131,229,9,0.6));
}
.tv2-eyebrow-line:last-child {
  background: linear-gradient(90deg, rgba(131,229,9,0.6), transparent);
}
.tv2-eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.tv2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.tv2-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ---- Ratings Bar ---- */
.tv2-ratings-bar {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 3rem;
  backdrop-filter: blur(12px);
}

.tv2-rating-card {
  flex: 1;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.3s ease;
}
.tv2-rating-card:hover {
  background: rgba(131,229,9,0.04);
}

.tv2-ratings-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
}

.tv2-rating-platform {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.tv2-platform-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.tv2-rating-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tv2-score-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.tv2-score-stars {
  display: flex;
  gap: 2px;
}
.tv2-star {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.2);
}
.tv2-star.filled {
  color: #FBBF24;
}

.tv2-ra-badge {
  background: linear-gradient(135deg, #00BF6F, #00A05A);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.tv2-rating-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}

.tv2-ra-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00BF6F;
  margin-top: 0.25rem;
  transition: gap 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.tv2-ra-link:hover {
  color: #00d97a;
  gap: 0.55rem;
}

.tv2-ratings-summary {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: rgba(131,229,9,0.06);
  border-left: 1px solid rgba(131,229,9,0.15);
  min-width: 210px;
}
.tv2-summary-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.tv2-summary-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.35rem;
}
.tv2-summary-sub {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}

/* ---- Testimonials Grid ---- */
.tv2-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.tv2-card--featured {
  grid-row: 1 / 3;
}

.tv2-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  overflow: hidden;
}
.tv2-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(131,229,9,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tv2-card:hover {
  border-color: rgba(131,229,9,0.25);
  transform: translateY(-3px);
  background: rgba(255,255,255,0.06);
}
.tv2-card:hover::before { opacity: 1; }

.tv2-card--accent {
  background: rgba(131,229,9,0.06);
  border-color: rgba(131,229,9,0.15);
}
.tv2-card--accent:hover {
  border-color: rgba(131,229,9,0.35);
  background: rgba(131,229,9,0.09);
}

.tv2-card--featured {
  background: rgba(131,229,9,0.05);
  border-color: rgba(131,229,9,0.15);
  padding: 2.5rem;
}
.tv2-card--featured:hover {
  border-color: rgba(131,229,9,0.4);
}

.tv2-card-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.7;
  margin-bottom: 1rem;
  display: block;
  user-select: none;
}

.tv2-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.tv2-card-stars span {
  color: #FBBF24;
  font-size: 0.95rem;
}

blockquote.tv2-card-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 1.5rem;
}
.tv2-card--featured blockquote.tv2-card-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
}

.tv2-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tv2-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
  border: 2px solid rgba(131,229,9,0.3);
}
.tv2-avatar--mf { background: linear-gradient(135deg, #1a3a00, #2d5e00); color: var(--gold); }
.tv2-avatar--ac { background: linear-gradient(135deg, #001a3a, #00305e); color: #60a5fa; }
.tv2-avatar--ro { background: linear-gradient(135deg, #3a1a00, #5e2d00); color: #fb923c; }
.tv2-avatar--lm { background: linear-gradient(135deg, #2a0038, #4a0060); color: #c084fc; }

.tv2-author-info {
  flex: 1;
  min-width: 0;
}
.tv2-author-info strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.tv2-author-info span {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  line-height: 1.3;
  display: block;
}

.tv2-card-source {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  margin-left: auto;
  flex-shrink: 0;
}
.tv2-card-source.tv2-source-ra {
  color: rgba(0,191,111,0.7);
}

/* ---- Bottom Strip ---- */
.tv2-bottom-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  flex-wrap: wrap;
}

.tv2-strip-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tv2-strip-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(131,229,9,0.12);
  border: 1px solid rgba(131,229,9,0.2);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}

.tv2-strip-left strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}
.tv2-strip-left span {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
}

.tv2-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: #00BF6F;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, gap 0.2s ease;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
.tv2-strip-btn:hover {
  background: #00d97a;
  transform: translateY(-2px);
  gap: 0.65rem;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .tv2-ratings-bar {
    flex-direction: column;
  }
  .tv2-ratings-divider {
    width: 100%;
    height: 1px;
  }
  .tv2-ratings-summary {
    border-left: none;
    border-top: 1px solid rgba(131,229,9,0.15);
    min-width: unset;
  }
  .tv2-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .tv2-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .testimonials-v2 { padding: 4.5rem 0; }
  .tv2-grid {
    grid-template-columns: 1fr;
  }
  .tv2-bottom-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .tv2-strip-btn { width: 100%; justify-content: center; }
  .tv2-ratings-bar { border-radius: 14px; }
}

/* =========================================================
   FAQ SECTION — Sophisticated accordion
   ========================================================= */

.faq-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
  padding: 7rem 0;
  border-top: 1px solid rgba(131,229,9,0.1);
}

/* Ambient background */
.faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.faq-orb--1 {
  width: 480px; height: 480px;
  top: -60px; right: -120px;
  background: radial-gradient(circle, rgba(131,229,9,0.1) 0%, transparent 70%);
}
.faq-orb--2 {
  width: 320px; height: 320px;
  bottom: -80px; left: 5%;
  background: radial-gradient(circle, rgba(131,229,9,0.07) 0%, transparent 70%);
}
.faq-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(131,229,9,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131,229,9,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

/* Layout */
.faq-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

/* ---- Left column ---- */
.faq-col-left {
  position: sticky;
  top: 100px;
}

.faq-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.faq-eyebrow-dot {
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(131,229,9,0.7);
  flex-shrink: 0;
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.faq-title em {
  font-style: italic;
  color: var(--gold);
}

.faq-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 300px;
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.87rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.25s ease, gap 0.2s ease, transform 0.2s ease;
  margin-bottom: 2rem;
}
.faq-cta:hover {
  background: var(--gold);
  color: var(--navy);
  gap: 0.7rem;
  transform: translateY(-2px);
}

.faq-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--gray-lt);
  border-radius: 12px;
  border: 1px solid rgba(131,229,9,0.15);
}
.faq-trust-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(131,229,9,0.12);
  border: 1px solid rgba(131,229,9,0.2);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-trust strong {
  display: block;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 600;
}
.faq-trust span {
  font-size: 0.73rem;
  color: var(--gray);
}

/* ---- Right column: accordion ---- */
.faq-col-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(10,10,10,0.08);
  transition: background 0.2s ease;
}
.faq-item:first-child {
  border-top: 1px solid rgba(10,10,10,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: #2a6600;
}

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1.5px solid rgba(10,10,10,0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.3s ease;
}

/* Open state */
.faq-item--open .faq-question {
  color: #2a6600;
}
.faq-item--open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}
.faq-item--open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1rem 1.5rem 0;
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.75;
}

/* Hover highlight on item */
.faq-item:hover .faq-icon {
  border-color: var(--gold);
  color: #2a6600;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .faq-col-left {
    position: static;
    max-width: 560px;
  }
}

@media (max-width: 600px) {
  .faq-section { padding: 4.5rem 0; }
  .faq-question { font-size: 0.93rem; }
}

/* =========================================================
   MVV — Missão, Visão & Valores
   ========================================================= */

.mvv-section {
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
  padding: 7rem 0;
}

/* ---- Background layer ---- */
.mvv-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Subtle noise texture */
.mvv-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.05;
}

/* Hairline grid lines */
.mvv-line {
  position: absolute;
  background: rgba(131,229,9,0.06);
}
.mvv-line--h1 { height: 1px; left: 0; right: 0; top: 38%; }
.mvv-line--h2 { height: 1px; left: 0; right: 0; top: 72%; }
.mvv-line--v1 { width: 1px; top: 0; bottom: 0; left: 33.33%; }

/* Ambient glow */
.mvv-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131,229,9,0.07) 0%, transparent 65%);
  filter: blur(40px);
}

.mvv-container {
  position: relative;
  z-index: 1;
}

/* ---- Intro strip ---- */
.mvv-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mvv-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.mvv-tag-dot {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(131,229,9,0.8);
}

.mvv-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.mvv-heading em {
  font-style: italic;
  color: var(--gold);
}

.mvv-intro-right p {
  font-size: 1rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
  max-width: 480px;
}

/* ---- Cards grid ---- */
.mvv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.5px;
}

.mvv-card {
  position: relative;
  padding: 2.75rem 2.5rem;
  background: rgba(10,10,10,0.6);
  transition: background 0.35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mvv-card:hover {
  background: rgba(20,35,5,0.85);
}

/* The glowing accent bar at bottom */
.mvv-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mvv-card:hover .mvv-card-accent {
  opacity: 1;
  transform: scaleX(1);
}

/* Corner glow on hover */
.mvv-card::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131,229,9,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.mvv-card:hover::before { opacity: 1; }

.mvv-card-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.mvv-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(131,229,9,0.1);
  border: 1px solid rgba(131,229,9,0.2);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.mvv-card:hover .mvv-card-icon {
  background: rgba(131,229,9,0.18);
  border-color: rgba(131,229,9,0.4);
}

.mvv-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.mvv-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.mvv-card-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.78;
  flex: 1;
}

/* Values list */
.mvv-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mvv-values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.mvv-val-marker {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(131,229,9,0.6);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.mvv-values-list strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.15rem;
}
.mvv-values-list span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.45;
}

/* ---- Stat bar ---- */
.mvv-statbar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1.6rem 2.5rem;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.mvv-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 1.5rem;
}
.mvv-stat:first-child { padding-left: 0; }

.mvv-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.mvv-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
  line-height: 1.35;
}

.mvv-statbar-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.mvv-statbar-cta {
  padding-left: 2rem;
  flex-shrink: 0;
}

.mvv-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 700;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.25s ease, gap 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.mvv-cta:hover {
  background: var(--gold2);
  gap: 0.7rem;
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .mvv-cards {
    grid-template-columns: 1fr 1fr;
  }
  .mvv-card--values {
    grid-column: 1 / -1;
    border-top: 1.5px solid rgba(255,255,255,0.06);
  }
}

@media (max-width: 768px) {
  .mvv-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .mvv-intro-right p { max-width: 100%; }
  .mvv-cards {
    grid-template-columns: 1fr;
  }
  .mvv-card--values { grid-column: auto; }
  .mvv-statbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
  }
  .mvv-stat { padding: 0; }
  .mvv-statbar-div { width: 100%; height: 1px; }
  .mvv-statbar-cta { padding-left: 0; width: 100%; }
  .mvv-cta { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .mvv-section { padding: 4.5rem 0; }
  .mvv-card { padding: 2rem 1.5rem; }
  .mvv-line--v1 { display: none; }
}


/* =================================================================
   CONTATO V2 — Redesign Sofisticado
   ================================================================= */

.contato-v2 {
  position: relative;
  background: #0A0A0A;
  padding: 7rem 0 8rem;
  overflow: hidden;
}

/* ── Background layers ── */
.cv2-bg { position: absolute; inset: 0; pointer-events: none; }

.cv2-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}
.cv2-glow--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #83E509, transparent 70%);
  top: -100px; left: -80px;
}
.cv2-glow--2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #83E509, transparent 70%);
  bottom: -80px; right: 5%;
  opacity: 0.12;
}

.cv2-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(131,229,9,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131,229,9,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cv2-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(131,229,9,.18), transparent);
  height: 1px; width: 100%;
}
.cv2-line--1 { top: 28%; }
.cv2-line--2 { bottom: 32%; }

/* ── Header ── */
.cv2-container { position: relative; z-index: 2; }

.cv2-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* .cv2-eyebrow/.cv2-eyebrow-dot → substituído por .section-eyebrow */
@keyframes cv2pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.cv2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.18;
  margin-bottom: 1.1rem;
}
.cv2-title em { color: #83E509; font-style: italic; }

.cv2-subtitle {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,.52);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Channel cards ── */
.cv2-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 4.5rem;
}

.cv2-channel {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 1.8rem 1.6rem 1.5rem;
  text-decoration: none;
  color: #fff;
  transition: transform 0.28s cubic-bezier(.34,1.2,.64,1),
              border-color 0.25s ease,
              background 0.25s ease,
              box-shadow 0.28s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cv2-channel::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 18px;
}
.cv2-channel:hover {
  transform: translateY(-6px);
  border-color: rgba(131,229,9,.4);
  background: rgba(131,229,9,.05);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(131,229,9,.15);
}

/* WhatsApp accent */
.cv2-channel--wa:hover { border-color: rgba(37,211,102,.5); background: rgba(37,211,102,.06); box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 20px rgba(37,211,102,.1); }
.cv2-channel--wa .cv2-channel-icon { color: #25D366; background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.2); }

/* Email accent */
.cv2-channel--email:hover { border-color: rgba(131,229,9,.4); }
.cv2-channel--email .cv2-channel-icon { color: #83E509; background: rgba(131,229,9,.1); border-color: rgba(131,229,9,.2); }

/* Phone accent */
.cv2-channel--phone:hover { border-color: rgba(99,179,237,.4); background: rgba(99,179,237,.04); box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 20px rgba(99,179,237,.08); }
.cv2-channel--phone .cv2-channel-icon { color: #63B3ED; background: rgba(99,179,237,.1); border-color: rgba(99,179,237,.2); }

/* Platform accent */
.cv2-channel--platform { border-color: rgba(131,229,9,.2); background: rgba(131,229,9,.04); }
.cv2-channel--platform:hover { border-color: #83E509; background: rgba(131,229,9,.08); box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 30px rgba(131,229,9,.15); }
.cv2-channel--platform .cv2-channel-icon { color: #83E509; background: rgba(131,229,9,.15); border-color: rgba(131,229,9,.3); }

.cv2-channel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.cv2-channel-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.cv2-channel:hover .cv2-channel-icon { transform: scale(1.06); }

.cv2-channel-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(37,211,102,.15);
  color: #25D366;
  border: 1px solid rgba(37,211,102,.3);
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
}
.cv2-channel-badge--platform {
  background: rgba(131,229,9,.15);
  color: #83E509;
  border-color: rgba(131,229,9,.3);
}

.cv2-channel-body { flex: 1; margin-bottom: 1.4rem; }
.cv2-channel-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.cv2-channel-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,.48);
  line-height: 1.65;
}

.cv2-channel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.07);
  gap: 0.5rem;
}

.cv2-channel-info {
  display: flex; align-items: center; gap: 0.35rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,.38);
}

.cv2-channel-action {
  display: flex; align-items: center; gap: 0.3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.cv2-channel:hover .cv2-channel-action { color: #83E509; }

/* ── Bottom: meta + form ── */
.cv2-bottom {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Meta column */
.cv2-meta { padding-top: 0.5rem; }

.cv2-live-dot-row {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
}

.cv2-meta-dot-row {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,.48);
  margin-bottom: 1.2rem;
}

.cv2-live-dot {
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37,211,102,.2);
  animation: cv2pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

.cv2-meta-header { margin-bottom: 2rem; }

.cv2-meta-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.cv2-meta-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
}

.cv2-meta-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.cv2-meta-item {
  display: flex; align-items: flex-start; gap: 0.9rem;
}

.cv2-meta-item-icon {
  width: 32px; height: 32px;
  background: rgba(131,229,9,.08);
  border: 1px solid rgba(131,229,9,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #83E509;
  flex-shrink: 0;
  margin-top: 2px;
}

.cv2-meta-item strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin-bottom: 0.15rem;
}
.cv2-meta-item span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,.38);
}

.cv2-meta-trust {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}

.cv2-trust-chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
}
.cv2-trust-chip svg { color: #83E509; }

/* Form card */
.cv2-form-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.cv2-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #83E509, transparent);
  opacity: 0.6;
}

.cv2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cv2-field { display: flex; flex-direction: column; gap: 0.4rem; }
.cv2-field--full { margin-bottom: 1rem; }

.cv2-field label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.03em;
}
.cv2-req { color: #83E509; }

.cv2-field input,
.cv2-field select,
.cv2-field textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}
.cv2-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.cv2-field select option { background: #1a1a1a; color: #fff; }
.cv2-field input::placeholder,
.cv2-field textarea::placeholder { color: rgba(255,255,255,.25); }
.cv2-field input:focus,
.cv2-field select:focus,
.cv2-field textarea:focus {
  border-color: rgba(131,229,9,.5);
  background: rgba(131,229,9,.04);
  box-shadow: 0 0 0 3px rgba(131,229,9,.08);
}
.cv2-field input.input-error,
.cv2-field select.input-error,
.cv2-field textarea.input-error {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,.1);
}

.cv2-err {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: #f87171;
  min-height: 0.9rem;
}

.cv2-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.cv2-lgpd {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.73rem;
  color: rgba(255,255,255,.3);
}
.cv2-lgpd a {
  color: rgba(131,229,9,.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cv2-lgpd a:hover { color: #83E509; }

.cv2-btn-send {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  background: #83E509;
  color: #0A0A0A;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(.34,1.2,.64,1),
              box-shadow 0.22s ease,
              background 0.22s ease;
  white-space: nowrap;
}
.cv2-btn-send:hover {
  background: #A0F530;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(131,229,9,.4);
}
.cv2-btn-send:active { transform: scale(0.98); }

.cv2-btn-label { display: flex; align-items: center; gap: 0.5rem; }

/* Success state */
.cv2-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
  min-height: 280px;
}

.cv2-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(131,229,9,.1);
  border: 1px solid rgba(131,229,9,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem;
}

.cv2-form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
}
.cv2-form-success p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  max-width: 320px;
  line-height: 1.65;
}

.cv2-reset-btn {
  background: transparent;
  border: 1px solid rgba(131,229,9,.35);
  color: #83E509;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.cv2-reset-btn:hover { background: rgba(131,229,9,.08); transform: translateY(-1px); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .cv2-channels { grid-template-columns: repeat(2, 1fr); }
  .cv2-bottom { grid-template-columns: 1fr; gap: 2.5rem; }
  .cv2-meta { order: 2; }
  .cv2-form-card { order: 1; }
}

@media (max-width: 700px) {
  .contato-v2 { padding: 5rem 0 6rem; }
  .cv2-channels { grid-template-columns: 1fr; gap: 1rem; }
  .cv2-form-row { grid-template-columns: 1fr; }
  .cv2-form-card { padding: 1.8rem 1.4rem; }
  .cv2-form-footer { flex-direction: column; align-items: flex-start; }
  .cv2-btn-send { width: 100%; justify-content: center; }
  .cv2-channel-footer { flex-wrap: wrap; gap: 0.5rem; }
  .cv2-header { margin-bottom: 2.5rem; }
}

/* =========================================================
   CLASSES UTILITÁRIAS COMPARTILHADAS (DRY)
   ========================================================= */

/* ── Section eyebrow — rótulo de seção padronizado ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(131,229,9,.08);
  border: 1px solid rgba(131,229,9,.2);
  padding: .38rem .95rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}

/* Ponto decorativo animado */
.section-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 7px var(--gold);
  animation: eyebrowPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes eyebrowPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

/* Linha decorativa (variante pip usada em hf e pp) */
.section-eyebrow-pip {
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--gold);
  opacity: .45;
}

/* ── Trust pill — indicador de segurança/benefício ── */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: .45rem 1rem;
  border-radius: 50px;
}
.trust-pill svg { color: var(--gold); flex-shrink: 0; }

/* Variante pequena (ex: svc-pay-security) */
.trust-pill--sm {
  font-size: .72rem;
  padding: .3rem .65rem;
  gap: .35rem;
}

/* ── Seção de background decorativo (grid + glows) ── */
.section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.section-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(131,229,9,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131,229,9,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.section-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}


/* =========================================================
   EXTRAS — componentes adicionais
   ========================================================= */

  /* ===== SVC-HUB: SOLICITAR SERVIÇO — PREMIUM ===== */
  .svc-hub {
    position: relative;
    padding: 6rem 0 5rem;
    background: #050d00;
    overflow: hidden;
  }

  /* Background elements */
  .svc-hub-bg { position: absolute; inset: 0; pointer-events: none; }
  .svc-hub-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .18;
  }
  .svc-hub-glow--1 {
    width: 500px; height: 500px;
    background: var(--gold);
    top: -120px; left: -80px;
  }
  .svc-hub-glow--2 {
    width: 380px; height: 380px;
    background: var(--gold);
    bottom: -80px; right: -60px;
    opacity: .12;
  }
  .svc-hub-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(131,229,9,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(131,229,9,.04) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  .svc-hub-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(131,229,9,.15), transparent);
  }
  .svc-hub-line--h { height: 1px; width: 100%; top: 38%; }
  .svc-hub-line--v {
    width: 1px; height: 100%;
    left: 50%;
    background: linear-gradient(180deg, transparent, rgba(131,229,9,.1), transparent);
  }

  /* Container */
  .svc-hub-container { position: relative; z-index: 2; }

  /* Header */
  .svc-hub-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  /* .svc-hub-eyebrow → substituído por .section-eyebrow */
  .svc-hub-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .svc-hub-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,.55);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* Panels grid */
  .svc-hub-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  @media (max-width: 1024px) { .svc-hub-panels { grid-template-columns: 1fr; } }

  /* Panel base */
  .svc-panel {
    position: relative;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border: 1px solid rgba(131,229,9,.12);
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(12px);
    transition: transform .3s ease, box-shadow .3s ease;
    overflow: hidden;
  }
  .svc-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(131,229,9,.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .svc-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(131,229,9,.2);
  }

  /* Panel payment gets gold accent top border */
  .svc-panel--payment {
    border-top: 2px solid var(--gold);
  }
  .svc-panel--payment::after {
    content: '';
    position: absolute;
    top: -1px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(131,229,9,.6), transparent);
  }

  /* Panel number */
  .svc-panel-num {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(131,229,9,.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  /* Panel icon */
  .svc-panel-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(131,229,9,.1);
    border: 1px solid rgba(131,229,9,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
  }

  /* Panel tag */
  .svc-panel-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(131,229,9,.1);
    padding: .2rem .65rem;
    border-radius: 50px;
    border: 1px solid rgba(131,229,9,.2);
  }

  /* Panel title */
  .svc-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
  }

  /* Panel desc */
  .svc-panel-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
  }

  /* ── INTEREST PANEL — plan chips ── */
  .svc-interest-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
  }
  .svc-plan-chip {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .1rem;
    padding: .75rem .9rem;
    border-radius: 12px;
    border: 1px solid rgba(131,229,9,.18);
    background: rgba(131,229,9,.04);
    cursor: pointer;
    text-align: left;
    transition: all .22s ease;
  }
  .svc-plan-chip:hover,
  .svc-plan-chip.selected {
    border-color: var(--gold);
    background: rgba(131,229,9,.12);
    box-shadow: 0 0 0 1px rgba(131,229,9,.2);
  }
  .svc-plan-chip-badge {
    position: absolute;
    top: .4rem; right: .5rem;
    font-size: .62rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(131,229,9,.12);
    padding: .1rem .4rem;
    border-radius: 50px;
  }
  .svc-plan-chip-name {
    font-family: 'DM Sans', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: var(--white);
  }
  .svc-plan-chip-price {
    font-family: 'DM Sans', sans-serif;
    font-size: .75rem;
    color: var(--gold);
    font-weight: 500;
  }

  /* Interest form */
  .svc-interest-form { display: flex; flex-direction: column; gap: .8rem; }
  .svc-interest-selected-label {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
  }
  .svc-interest-selected-label strong { color: var(--gold); }
  .svc-ifield-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
  .svc-ifield { display: flex; flex-direction: column; gap: .3rem; }
  .svc-ifield label {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .svc-ifield input {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: .65rem .9rem;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    outline: none;
    transition: border-color .2s ease;
  }
  .svc-ifield input:focus { border-color: var(--gold); }
  .svc-ifield input::placeholder { color: rgba(255,255,255,.25); }
  .svc-ierr {
    font-size: .72rem;
    color: #ff6b6b;
    font-family: 'DM Sans', sans-serif;
    min-height: .9rem;
  }
  .svc-interest-actions {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: .2rem;
  }
  .svc-btn-back {
    background: none;
    border: none;
    color: rgba(255,255,255,.4);
    font-family: 'DM Sans', sans-serif;
    font-size: .85rem;
    cursor: pointer;
    transition: color .2s;
  }
  .svc-btn-back:hover { color: var(--white); }
  .svc-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .65rem 1.3rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .22s ease;
    flex: 1;
    justify-content: center;
  }
  .svc-btn-submit:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(131,229,9,.35);
  }

  /* Interest success */
  .svc-interest-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .svc-success-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(131,229,9,.15);
    border: 1px solid rgba(131,229,9,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
  }
  .svc-interest-success p {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    font-family: 'DM Sans', sans-serif;
  }
  .svc-interest-success strong { color: var(--white); }

  /* ── REGISTER PANEL ── */
  .svc-register-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem;
  }
  .svc-register-list li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .87rem;
    color: rgba(255,255,255,.6);
    line-height: 1.5;
  }
  .svc-register-list li svg {
    color: var(--gold);
    margin-top: .15rem;
    flex-shrink: 0;
  }
  .svc-panel-note {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 8px;
    padding: .55rem .85rem;
  }
  .svc-panel-note svg { flex-shrink: 0; color: rgba(131,229,9,.5); }

  /* ── PAYMENT PANEL ── */
  .svc-pay-methods {
    display: flex;
    flex-direction: column;
    gap: .65rem;
  }
  .svc-pay-method {
    display: flex;
    align-items: center;
    gap: .8rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: .75rem 1rem;
  }
  .svc-pay-method-icon {
    width: 36px; height: 36px;
    background: rgba(131,229,9,.1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
  }
  .svc-pay-method div {
    display: flex;
    flex-direction: column;
    gap: .1rem;
  }
  .svc-pay-method strong {
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    color: var(--white);
  }
  .svc-pay-method span {
    font-family: 'DM Sans', sans-serif;
    font-size: .76rem;
    color: rgba(255,255,255,.4);
  }

  .svc-pay-security {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
  }
  /* .svc-pay-security-item → substituído por .trust-pill .trust-pill--sm */

  /* ── CTA BUTTONS ── */
  .svc-panel-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem 1.4rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    transition: all .25s ease;
    margin-top: auto;
    text-decoration: none;
  }
  .svc-panel-cta--primary {
    background: var(--gold);
    color: var(--navy);
  }
  .svc-panel-cta--primary:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(131,229,9,.4);
  }
  .svc-panel-cta--secondary {
    background: rgba(131,229,9,.1);
    color: var(--gold);
    border: 1px solid rgba(131,229,9,.25);
  }
  .svc-panel-cta--secondary:hover {
    background: rgba(131,229,9,.18);
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  /* ── FOOTER ── */
  .svc-hub-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(131,229,9,.1);
    border-radius: 16px;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .svc-hub-footer-left p {
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    color: rgba(255,255,255,.5);
    margin-bottom: .4rem;
  }
  .svc-hub-footer-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: var(--gold);
    transition: opacity .2s;
    text-decoration: none;
  }
  .svc-hub-footer-link:hover { opacity: .75; }
  /* .svc-trust-pill → substituído por .trust-pill */

  @media (max-width: 680px) {
    .svc-hub { padding: 4rem 0 3.5rem; }
    .svc-interest-plans { grid-template-columns: 1fr; }
    .svc-ifield-row { grid-template-columns: 1fr; }
    .svc-hub-footer { flex-direction: column; align-items: flex-start; }
    .svc-hub-panels { gap: 1rem; }
    .svc-panel { padding: 1.5rem; }
  }


/* ============================================================
   POPUP — LAYOUT PAISAGEM (HORIZONTAL)
   ============================================================ */

/* === BASE === */
#popup-especialista {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: popupFadeIn 0.35s ease forwards;
}
@keyframes popupFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.60);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* === BOTÃO FECHAR — fora da caixa, canto superior direito === */
.popup-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 10001;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: background 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.popup-close:hover {
  background: #83E509;
  border-color: #83E509;
  color: #0A0A0A;
  transform: rotate(90deg) scale(1.08);
  box-shadow: 0 4px 20px rgba(131,229,9,0.45);
}

/* === CAIXA PAISAGEM === */
.popup-box {
  position: relative;
  z-index: 10000;
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 820px;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.05),
    0 24px 70px rgba(0,0,0,0.28),
    0 0 0 1px rgba(131,229,9,0.15);
  animation: popupSlideUp 0.38s cubic-bezier(0.34,1.3,0.64,1) forwards;
}
@keyframes popupSlideUp {
  from { transform: translateY(30px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

/* === PAINEL ESQUERDO — fundo verde-escuro === */
.popup-left {
  flex: 0 0 300px;
  background: linear-gradient(145deg, #0f1a00 0%, #1a2e00 60%, #0A0A0A 100%);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}
/* Detalhe decorativo */
.popup-left::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131,229,9,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.popup-left::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131,229,9,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Ícone hexágono */
.popup-logo-icon {
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 16px rgba(131,229,9,0.30));
}

/* Nome da marca */
.popup-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.popup-logo-text strong {
  font-weight: 700;
  color: #83E509;
}

/* Headline */
.popup-headline {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* Sub */
.popup-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Lista de benefícios */
.popup-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
}
.popup-benefits li svg {
  flex-shrink: 0;
}

/* === PAINEL DIREITO — formulário === */
.popup-right {
  flex: 1;
  background: #ffffff;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* === CAMPOS === */
.popup-field {
  margin-bottom: 13px;
}
.popup-field label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #0A0A0A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.popup-required { color: #83E509; }

.popup-field input {
  width: 100%;
  height: 42px;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  padding: 0 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #0A0A0A;
  background: #FAFAFA;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  outline: none;
}
.popup-field input:focus {
  border-color: #83E509;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(131,229,9,0.12);
}
.popup-field input.input-error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
}
.popup-error {
  display: block;
  font-size: 11px;
  color: #EF4444;
  margin-top: 4px;
  min-height: 14px;
  font-family: 'DM Sans', sans-serif;
}

/* === LGPD === */
.popup-lgpd {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 16px;
}
.popup-lgpd-link {
  color: #83E509;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: color 0.15s;
}
.popup-lgpd-link:hover { color: #5aaa00; }

/* === BOTÃO ENVIAR === */
.popup-btn-enviar {
  width: 100%;
  height: 46px;
  background: #83E509;
  color: #0A0A0A;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 16px rgba(131,229,9,0.35);
}
.popup-btn-enviar:hover {
  background: #A0F530;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(131,229,9,0.45);
}
.popup-btn-enviar:active { transform: translateY(0); }

/* === SUCESSO === */
.popup-success {
  text-align: center;
  padding: 20px 0 8px;
}
.popup-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(131,229,9,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid rgba(131,229,9,0.2);
}

/* === BOTÃO X NO SUCESSO === */
.popup-success {
  position: relative;
}
.popup-success-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid #E5E7EB;
  background: #F9FAFB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6B7280;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
}
.popup-success-close:hover {
  background: #83E509;
  border-color: #83E509;
  color: #0A0A0A;
  transform: rotate(90deg) scale(1.1);
}

/* === BARRA DE CONTAGEM REGRESSIVA === */
.popup-success-timer {
  width: 100%;
  height: 4px;
  background: #E5E7EB;
  border-radius: 99px;
  overflow: hidden;
  margin-top: 20px;
}
.popup-success-timer-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #83E509, #A0F530);
  border-radius: 99px;
  transform-origin: left;
  animation: timerShrink 10s linear forwards;
}
@keyframes timerShrink {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}
.popup-success-timer-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #9CA3AF;
  text-align: center;
  margin-top: 6px;
}
.popup-success-timer-label strong {
  color: #6B7280;
}

/* === RESPONSIVO — telas pequenas volta ao vertical === */
@media (max-width: 640px) {
  .popup-box {
    flex-direction: column;
    max-width: 400px;
    min-height: unset;
  }
  .popup-left {
    flex: 0 0 auto;
    padding: 28px 24px 22px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }
  .popup-left .popup-logo-icon { margin-bottom: 0; }
  .popup-left .popup-logo-text { margin-bottom: 0; font-size: 17px; }
  .popup-headline { font-size: 16px; margin-bottom: 0; width: 100%; }
  .popup-sub, .popup-benefits { display: none; }
  .popup-right { padding: 24px 20px 22px; }
  .popup-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
}

/* === OCULTO === */
#popup-especialista.popup-hidden {
  display: none;
}


/* ========== COOKIES POPUP ========== */
.cookies-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13), 0 2px 8px rgba(131,229,9,0.10);
  padding: 18px 20px 16px;
  max-width: 310px;
  width: calc(100vw - 48px);
  border: 1.5px solid rgba(131,229,9,0.18);
  animation: cookiesSlideIn 0.38s cubic-bezier(.22,.68,0,1.2) forwards;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@keyframes cookiesSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cookiesSlideOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(16px) scale(0.96); }
}

.cookies-hidden {
  display: none !important;
}

.cookies-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.cookies-link {
  color: #83E509;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
  white-space: nowrap;
}
.cookies-link:hover { color: #5aaa00; }

.cookies-actions {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}

.cookies-btn {
  flex: 1;
  height: 36px;
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.cookies-btn-primary {
  background: linear-gradient(135deg, #83E509 0%, #5aaa00 100%);
  color: #0A0A0A;
  box-shadow: 0 3px 12px rgba(131,229,9,0.35);
}
.cookies-btn-primary:hover {
  background: linear-gradient(135deg, #A0F530 0%, #72cc00 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(131,229,9,0.45);
}
.cookies-btn-primary:active { transform: translateY(0); }

.cookies-btn-secondary {
  background: linear-gradient(135deg, #e8f5d0 0%, #d4edaa 100%);
  color: #3a6200;
  box-shadow: 0 2px 8px rgba(131,229,9,0.12);
}
.cookies-btn-secondary:hover {
  background: linear-gradient(135deg, #d4edaa 0%, #c0e080 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(131,229,9,0.22);
}
.cookies-btn-secondary:active { transform: translateY(0); }

@media (max-width: 400px) {
  .cookies-popup {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }
}


/* ========== BOTÃO WHATSAPP ========== */
#whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.22s cubic-bezier(.34,1.3,.64,1), box-shadow 0.22s ease;
  text-decoration: none;
  will-change: transform;
  /* isolation garante que o ::after fique contido */
  isolation: isolate;
}
/* Pulse: pseudo-elemento com transform+opacity — 100% GPU, zero repaint */
#whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.45);
  animation: waBtnPulse 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
#whatsapp-btn:hover::after {
  animation: none;
  opacity: 0;
}
#whatsapp-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.18);
}
#whatsapp-btn:active {
  transform: scale(1.04);
}
/* Apenas transform + opacity: composited pela GPU, sem repaint */
@keyframes waBtnPulse {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.55); opacity: 0;   }
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #111;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 3px 12px rgba(0,0,0,0.18);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #111;
}
#whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  #whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}
