/* ============================================
   ENDEREÇO FISCAL - LP DE ALTA CONVERSÃO
   ============================================ */

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

:root {
  /* Paleta principal - Verde tech moderno */
  --green-primary: #0F6E56;
  --green-dark: #085041;
  --green-darker: #04342C;
  --green-light: #E1F5EE;
  --green-mid: #1D9E75;
  --green-accent: #5DCAA5;

  /* Cores de apoio */
  --dark: #0A1612;
  --dark-2: #14231E;
  --white: #FFFFFF;
  --gray-50: #F8FAFA;
  --gray-100: #EEF2F1;
  --gray-200: #DCE2E0;
  --gray-400: #8B9691;
  --gray-600: #4A5854;
  --gray-800: #1F2E28;

  --red: #E24B4A;
  --amber: #EF9F27;
  --blue: #378ADD;

  /* Tipografia */
  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 22, 18, 0.05);
  --shadow-md: 0 4px 16px rgba(10, 22, 18, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 22, 18, 0.12);
  --shadow-xl: 0 24px 60px rgba(10, 22, 18, 0.16);
  --shadow-green: 0 12px 32px rgba(15, 110, 86, 0.25);

  /* Transições */
  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ============================================
   BARRA DE URGÊNCIA
   ============================================ */
.urgency-bar {
  background: var(--dark);
  color: var(--green-accent);
  padding: 10px 0;
  font-size: 13px;
  position: relative;
  z-index: 100;
}
.urgency-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.urgency-bar strong { color: white; }
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #E24B4A;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
.countdown {
  background: rgba(255,255,255,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
}
.logo-icon { font-size: 24px; }
.logo-text strong { font-weight: 800; color: var(--green-primary); }
.nav {
  display: flex;
  gap: 32px;
  font-size: 15px;
  color: var(--gray-600);
}
.nav a { transition: color var(--t); }
.nav a:hover { color: var(--green-primary); }
.btn-header {
  background: var(--green-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all var(--t);
}
.btn-header:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ============================================
   BOTÕES
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-primary);
  color: white;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--t);
  box-shadow: var(--shadow-green);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 110, 86, 0.35);
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-primary.btn-block { width: 100%; }
.btn-primary.btn-large { padding: 18px 32px; font-size: 16px; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: #25D366;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #25D366;
  transition: all var(--t);
}
.btn-whatsapp:hover {
  background: #25D366;
  color: white;
  transform: translateY(-2px);
}
.btn-whatsapp svg { width: 20px; height: 20px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: -200px;
  right: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(15, 110, 86, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--dark);
}
.hero h1 em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--green-primary);
}
.price-highlight {
  color: var(--green-primary);
  font-weight: 800;
  white-space: nowrap;
}
.price-per {
  font-size: 0.6em;
  color: var(--gray-600);
  font-weight: 500;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-benefits > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-800);
  font-weight: 500;
}
.hero-benefits svg {
  width: 18px;
  height: 18px;
  color: var(--green-primary);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}
.avatars {
  display: flex;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 13px;
  border: 3px solid white;
  margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.avatar-count {
  background: var(--dark) !important;
  font-size: 11px;
}
.stars {
  color: var(--amber);
  font-size: 14px;
  margin-bottom: 2px;
}
.stars span {
  color: var(--dark);
  font-weight: 600;
  margin-left: 4px;
}
.social-subtitle {
  font-size: 13px;
  color: var(--gray-600);
}

/* HERO CARD */
.hero-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-accent));
  border-radius: 22px;
  z-index: -1;
  opacity: 0.3;
}
.card-label {
  display: inline-block;
  background: var(--dark);
  color: var(--green-accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.card-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}
.price-from {
  font-size: 14px;
  color: var(--gray-400);
  display: block;
  margin-bottom: 4px;
}
.price-from s { margin-left: 4px; }
.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--green-primary);
}
.price-main .currency {
  font-size: 24px;
  font-weight: 600;
}
.price-main .value {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-main .period {
  font-size: 18px;
  color: var(--gray-600);
  font-weight: 500;
}
.price-discount {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.card-features {
  list-style: none;
  margin-bottom: 24px;
}
.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray-800);
  border-bottom: 1px dashed var(--gray-100);
}
.card-features li:last-child { border-bottom: none; }
.card-features svg {
  width: 18px;
  height: 18px;
  color: var(--green-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.card-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-600);
}
.card-guarantee svg {
  width: 16px;
  height: 16px;
  color: var(--green-primary);
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--dark);
  padding: 32px 0;
  color: white;
}
.trust-strip .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
}
.trust-item strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--green-accent);
  letter-spacing: -0.02em;
}
.trust-item span {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ============================================
   SECTIONS COMUNS
   ============================================ */
.section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--dark);
}
.section-header p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   DORES
   ============================================ */
.pains { background: var(--gray-50); }
.pains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.pain-card {
  background: white;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: all var(--t);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.pain-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(226, 75, 74, 0.08);
  padding: 10px;
  border-radius: 12px;
  line-height: 1;
}
.pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.pain-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   BENEFÍCIOS
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: white;
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: all var(--t);
  position: relative;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-primary);
}
.benefit-card.featured {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: white;
  border-color: var(--green-primary);
}
.benefit-card.featured h3, .benefit-card.featured p { color: white; }
.benefit-card.featured p { opacity: 0.9; }
.benefit-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--amber);
  color: var(--dark);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.benefit-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}
.benefit-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.benefit-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   COMO FUNCIONA
   ============================================ */
.how { background: var(--gray-50); }
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.step {
  text-align: center;
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  position: relative;
}
.step-num {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-green);
}
.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}
.step-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-accent), var(--gray-200));
  position: relative;
}
.step-line::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  color: var(--green-primary);
  font-weight: bold;
}

/* ============================================
   PARA QUEM É
   ============================================ */
.for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.for-card {
  background: white;
  border: 1px solid var(--gray-100);
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.for-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
}
.for-emoji {
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1;
}
.for-card strong {
  font-size: 15px;
  color: var(--dark);
  font-weight: 700;
}
.for-card span {
  font-size: 12px;
  color: var(--gray-400);
}

/* ============================================
   COMPARATIVO
   ============================================ */
.compare { background: var(--gray-50); }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.compare-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  position: relative;
}
.compare-bad { opacity: 0.85; }
.compare-good {
  border: 2px solid var(--green-primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.compare-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.compare-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.compare-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.compare-good .compare-header h3 { color: var(--dark); }
.compare-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.compare-good .compare-price { color: var(--green-primary); }
.compare-price small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0;
  margin-bottom: 4px;
}
.compare-price span {
  font-size: 16px;
  color: var(--gray-400);
  font-weight: 500;
}
.compare-card ul {
  list-style: none;
}
.compare-card li {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--gray-100);
}
.compare-card li:last-child { border-bottom: none; }
.compare-card li.bad { color: var(--gray-400); }
.compare-card li.good { color: var(--dark); font-weight: 500; }
.compare-savings {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: var(--gray-600);
  background: white;
  padding: 16px 24px;
  border-radius: 100px;
  max-width: 600px;
  margin: 32px auto 0;
  border: 2px dashed var(--green-primary);
}
.compare-savings strong { color: var(--green-primary); font-weight: 800; }

/* ============================================
   DEPOIMENTOS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial {
  background: white;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: all var(--t);
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial .stars {
  margin-bottom: 12px;
  font-size: 16px;
}
.testimonial p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-800);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  margin: 0;
  border: none;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.testimonial-author small {
  font-size: 12px;
  color: var(--gray-400);
}

/* ============================================
   GARANTIA
   ============================================ */
.guarantee-section { background: var(--gray-50); }
.guarantee-box {
  background: linear-gradient(135deg, #FFF8E8, #FAEEDA);
  border: 2px solid var(--amber);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.guarantee-seal {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 30px rgba(239, 159, 39, 0.4);
  position: relative;
}
.guarantee-seal::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed var(--amber);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
.guarantee-seal svg {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
}
.guarantee-seal span {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.guarantee-content h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}
.guarantee-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}
.guarantee-content strong { color: var(--green-primary); }

/* ============================================
   CTA PRINCIPAL
   ============================================ */
.cta-main {
  background: linear-gradient(135deg, var(--dark) 0%, var(--green-darker) 100%);
  position: relative;
  overflow: hidden;
}
.cta-main::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(15, 110, 86, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box {
  background: white;
  border-radius: 24px;
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.cta-header {
  text-align: center;
  margin-bottom: 32px;
}
.cta-tag {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  animation: pulse-bg 2s infinite;
}
@keyframes pulse-bg {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226, 75, 74, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(226, 75, 74, 0); }
}
.cta-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
  line-height: 1.2;
}
.cta-header p {
  font-size: 15px;
  color: var(--gray-600);
}

.cta-plan {
  background: var(--gray-50);
  padding: 28px;
  border-radius: 16px;
  margin-bottom: 28px;
}
.plan-price {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.plan-price small {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.plan-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--green-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-value span {
  font-size: 24px;
  margin-right: 4px;
}
.plan-value em {
  font-style: normal;
  font-size: 18px;
  color: var(--gray-600);
  font-weight: 500;
}
.plan-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.plan-features li {
  font-size: 13px;
  color: var(--gray-800);
  font-weight: 500;
}

.cta-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.cta-form input, .cta-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--t);
  background: white;
}
.cta-form input:focus, .cta-form select:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 4px rgba(15, 110, 86, 0.1);
}
.cta-form button { margin-top: 8px; }
.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
}
.form-security svg { width: 14px; height: 14px; }

.cta-alt {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-600);
}
.cta-alt a {
  color: var(--green-primary);
  font-weight: 600;
  margin-left: 4px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq details {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 20px 24px;
  transition: all var(--t);
}
.faq details:hover { border-color: var(--green-primary); }
.faq details[open] {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--green-primary);
  transition: transform var(--t);
  flex-shrink: 0;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   CTA FINAL
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--green-primary), var(--green-darker));
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(93, 202, 165, 0.2) 0%, transparent 70%);
}
.final-cta h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.15;
  position: relative;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.final-cta .btn-primary {
  background: white;
  color: var(--green-primary);
  position: relative;
}
.final-cta .btn-primary:hover {
  background: var(--gray-50);
}
.final-trust {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .logo { color: white; margin-bottom: 16px; }
.footer .logo-text strong { color: var(--green-accent); }
.footer h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer p { line-height: 1.8; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a { transition: color var(--t); }
.footer-links a:hover { color: var(--green-accent); }

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all var(--t);
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wpulse 2s infinite;
  z-index: -1;
}
@keyframes wpulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   RESPONSIVO - TABLET
   ============================================ */
@media (max-width: 968px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero h1 { font-size: 40px; }
  .section-header h2 { font-size: 32px; }
  .nav { display: none; }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-line { display: none; }

  .compare-grid { grid-template-columns: 1fr; }
  .compare-good { transform: none; }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 32px 24px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   RESPONSIVO - MOBILE
   ============================================ */
@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .urgency-bar {
    font-size: 11px;
    padding: 8px 0;
  }
  .urgency-bar .container { gap: 6px; }

  .header-inner { height: 64px; }
  .logo-text { font-size: 17px; }
  .btn-header { padding: 8px 14px; font-size: 13px; }

  .hero { padding: 40px 0 60px; }
  .hero h1 { font-size: 32px; line-height: 1.15; }
  .hero-sub { font-size: 16px; }
  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn-primary, .hero-cta .btn-whatsapp {
    width: 100%;
  }
  .hero-card { padding: 24px; }
  .price-main .value { font-size: 44px; }

  .trust-strip { padding: 24px 0; }
  .trust-strip .container { gap: 12px; }
  .trust-divider { display: none; }
  .trust-item strong { font-size: 24px; }
  .trust-item span { font-size: 11px; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 26px; }
  .section-header p { font-size: 15px; }

  .cta-box { padding: 28px 20px; }
  .cta-header h2 { font-size: 24px; }
  .plan-value { font-size: 40px; }
  .plan-features { grid-template-columns: 1fr; }
  .cta-form .form-row { grid-template-columns: 1fr; }

  .compare-card { padding: 24px; }
  .compare-price { font-size: 30px; }

  .guarantee-content h2 { font-size: 22px; }

  .final-cta { padding: 60px 0; }
  .final-cta h2 { font-size: 28px; }
  .final-cta p { font-size: 15px; }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   ANIMAÇÕES DE ENTRADA
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .pain-card, .benefit-card, .for-card, .testimonial, .step {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s forwards;
  }
  .pain-card:nth-child(1), .benefit-card:nth-child(1), .testimonial:nth-child(1), .step:nth-child(1) { animation-delay: 0.1s; }
  .pain-card:nth-child(2), .benefit-card:nth-child(2), .testimonial:nth-child(2), .step:nth-child(3) { animation-delay: 0.2s; }
  .pain-card:nth-child(3), .benefit-card:nth-child(3), .testimonial:nth-child(3), .step:nth-child(5) { animation-delay: 0.3s; }
  .pain-card:nth-child(4), .benefit-card:nth-child(4), .testimonial:nth-child(4) { animation-delay: 0.4s; }
  .benefit-card:nth-child(5), .testimonial:nth-child(5) { animation-delay: 0.5s; }
  .benefit-card:nth-child(6), .testimonial:nth-child(6) { animation-delay: 0.6s; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
