/* ============================================
   MÉTODO BALDE DE OURO — Estilo popular/rural
   Público: 45-65+, renda extra, mobile-first
   ============================================ */

:root {
  --green: #2E7D32;
  --green-dark: #1B5E20;
  --green-light: #E8F5E9;
  --yellow: #F5B800;
  --yellow-dark: #D19A00;
  --yellow-light: #FFF8E1;
  --brown: #6B4423;
  --red: #D32F2F;
  --red-dark: #B71C1C;
  --white: #FFFFFF;
  --bg: #FFFBF0;
  --text: #1A1A1A;
  --text-light: #4A4A4A;
  --border: #E0D9C8;

  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  --font-title: 'Montserrat', 'Arial Black', sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Imagens responsivas com proporção consistente */
.responsive-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(1.8rem, 5.5vw, 2.8rem);
}

h2 {
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

.highlight {
  background: linear-gradient(120deg, transparent 0%, var(--yellow) 0%, var(--yellow) 100%, transparent 100%);
  background-size: 100% 45%;
  background-repeat: no-repeat;
  background-position: 0 88%;
  padding: 0 3px;
  font-weight: 700;
}

.text-green {
  color: var(--green);
}

.text-red {
  color: var(--red);
}

.text-brown {
  color: var(--brown);
}

.text-center {
  text-align: center;
}

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.3px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 0 var(--green-dark), var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--green-dark), var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--green-dark);
}

.btn-cta {
  background: var(--red);
  color: var(--white);
  font-size: 1.3rem;
  padding: 22px 32px;
  box-shadow: 0 5px 0 var(--red-dark), var(--shadow-lg);
  animation: pulse 2s infinite;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--red-dark), var(--shadow-lg);
}

.btn-cta:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--red-dark);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

.btn-yellow {
  background: var(--yellow);
  color: var(--text);
  box-shadow: 0 4px 0 var(--yellow-dark), var(--shadow);
}

/* ============ LAYOUT ============ */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 48px 0;
}

.section-alt {
  background: var(--white);
}

.section-green {
  background: var(--green);
  color: var(--white);
}

.section-green h2,
.section-green h3 {
  color: var(--white);
}

.section-yellow {
  background: var(--yellow-light);
}

/* ============ QUIZ ============ */
.quiz-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.quiz-logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.quiz-logo span {
  color: var(--yellow-dark);
}

.progress-bar {
  width: 100%;
  max-width: 600px;
  height: 10px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 28px;
}

.progress-bar-fill {
  height: 100%;
  background: var(--green);
  width: 0%;
  transition: width 0.4s ease;
  border-radius: 999px;
}

.quiz-card {
  width: 90%;
  max-width: 600px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  margin: 0 auto 20px auto;
  text-align: center;
}

.quiz-card img {
  border-radius: var(--radius);
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.quiz-question {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option {
  padding: 18px 20px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--text);
  line-height: 1.4;
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.quiz-option:hover {
  border-color: var(--green);
  background: var(--green-light);
  transform: translateX(4px);
}

.quiz-option.selected {
  border-color: var(--green);
  background: var(--green-light);
}

.quiz-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quiz-form input {
  padding: 16px 18px;
  font-size: 1.05rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  background: var(--bg);
}

.quiz-form input:focus {
  outline: none;
  border-color: var(--green);
}

.quiz-hint {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

.quiz-hook {
  text-align: center;
  margin-bottom: 16px;
}

.quiz-hook h1 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
}

.quiz-hook p {
  font-size: 1.05rem;
  color: var(--text-light);
}

/* Resultado */
.result-card {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
}

.result-card h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.result-amount {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  color: var(--yellow);
  margin: 14px 0;
  line-height: 1;
}

.result-card p {
  font-size: 1.05rem;
  opacity: 0.95;
}

.loading {
  text-align: center;
  padding: 40px 20px;
}

.loading-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background: var(--green);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

/* ============ PÁGINA DE VENDAS ============ */
.pre-headline {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero {
  background: var(--bg);
  padding: 40px 0 32px;
  text-align: center;
}

.hero h1 {
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin: 24px auto;
  max-width: 560px;
}

.hero-caption {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto 28px;
}

.cta-box {
  background: var(--yellow-light);
  border: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  margin: 24px auto;
  max-width: 560px;
}

.cta-box .btn-cta {
  margin: 14px auto;
}

.cta-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 10px;
}

.section-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 20px auto;
  max-width: 560px;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 720px) {
  .pillars {
    grid-template-columns: 1fr 1fr;
  }
}

.pillar {
  background: var(--white);
  border-left: 6px solid var(--green);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pillar-letter {
  background: var(--yellow);
  color: var(--text);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.pillar p {
  font-size: 0.98rem;
  margin: 0;
  color: var(--text-light);
}

/* Lucro matemática */
.lucro-table {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin: 20px auto;
  max-width: 560px;
  border: 2px solid var(--border);
}

.lucro-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
}

.lucro-row:last-child {
  border-bottom: none;
}

.lucro-row.highlight-row {
  background: var(--yellow-light);
  font-weight: 800;
}

.lucro-baldes {
  font-weight: 700;
}

.lucro-valor {
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--green-dark);
  font-size: 1.15rem;
}

/* Bônus */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.bonus-item {
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: center;
}

.bonus-icon {
  font-size: 2rem;
  min-width: 50px;
  text-align: center;
}

.bonus-content {
  flex: 1;
}

.bonus-content h4 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.bonus-value {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 4px;
}

/* Oferta */
.oferta-card {
  background: var(--white);
  border: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin: 24px auto;
  max-width: 560px;
}

.oferta-de {
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.oferta-por {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.oferta-valor {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.oferta-parcela {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 20px;
}

/* Garantia */
.garantia {
  background: var(--white);
  border: 3px dashed var(--red);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  margin: 24px auto;
  max-width: 560px;
}

.garantia-selo {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 800;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  transform: rotate(-8deg);
  font-size: 0.85rem;
  line-height: 1.1;
  box-shadow: var(--shadow);
}

.garantia-selo .big {
  font-size: 2.2rem;
  line-height: 1;
  margin: 4px 0;
}

/* FAQ */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.faq-question:hover {
  background: var(--yellow-light);
}

.faq-arrow {
  font-size: 1.4rem;
  color: var(--green);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 20px 18px;
}

/* Footer */
footer {
  background: #2A2A2A;
  color: #CCC;
  padding: 32px 20px;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.7;
}

footer a {
  color: var(--yellow);
  text-decoration: none;
}

/* Utilitários */
.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-2 {
  margin-top: 16px;
}

.mb-2 {
  margin-bottom: 16px;
}

.arrow-pointer {
  font-family: var(--font-title);
  color: var(--red);
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  margin: 16px 0 4px;
}

.badge-escassez {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ============ OBRIGADO ============ */
.obrigado {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.obrigado-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  box-shadow: var(--shadow-lg);
  max-width: 560px;
}

.obrigado-check {
  font-size: 4rem;
  color: var(--green);
  margin-bottom: 16px;
}

/* ============ MEDIA / AS VISTO EM ============ */
.media-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.media-logo {
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--text-light);
  opacity: 0.7;
  font-size: 1.1rem;
  padding: 8px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
}

.media-frame {
  max-width: 600px;
  margin: 20px auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--text);
  background: var(--text);
  padding: 4px;
}

.media-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.media-caption {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  max-width: 560px;
  margin: 12px auto 0;
}

/* ============ IMAGENS RESPONSIVAS ============ */
.hero img,
.section-img,
.quiz-card>img:first-child {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: var(--radius);
  margin-left: auto;
  margin-right: auto;
}

/* ============ MEDIA QUERIES MOBILE ============ */
@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 36px 0;
  }

  h1 {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  h2 {
    font-size: 1.45rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  /* Quiz no mobile */
  .quiz-wrapper {
    padding: 16px 10px;
  }

  .quiz-card {
    width: 90%;
    padding: 24px 20px;
    margin: 0 auto 20px auto;
  }

  .quiz-question {
    font-size: 1.2rem;
  }

  .quiz-option {
    padding: 16px 14px;
    font-size: 1rem;
  }

  .quiz-card img {
    margin-bottom: 16px;
  }

  .quiz-logo {
    font-size: 1rem;
  }

  /* Botões ocupam largura cheia */
  .btn {
    padding: 16px 20px;
    font-size: 1.05rem;
  }

  .btn-cta {
    padding: 18px 20px;
    font-size: 1.15rem;
    line-height: 1.25;
  }

  /* Hero no mobile */
  .hero {
    padding: 28px 0 24px;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-caption {
    font-size: 0.9rem;
    padding: 0 8px;
  }

  /* Oferta / CTA box */
  .oferta-card {
    padding: 24px 16px;
  }

  .oferta-valor {
    font-size: 2.8rem;
  }

  .cta-box {
    padding: 20px 14px;
  }

  /* Pilares empilham */
  .pillars {
    grid-template-columns: 1fr;
  }

  .pillar {
    padding: 16px;
  }

  .pillar-letter {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1.5rem;
  }

  /* Tabela de lucro */
  .lucro-row {
    padding: 14px 16px;
    font-size: 0.98rem;
  }

  .lucro-valor {
    font-size: 1rem;
  }

  /* Bônus */
  .bonus-item {
    padding: 14px 16px;
    gap: 10px;
  }

  .bonus-icon {
    font-size: 1.6rem;
    min-width: 40px;
  }

  .bonus-content h4 {
    font-size: 1rem;
  }

  .bonus-content p {
    font-size: 0.92rem;
  }

  /* FAQ */
  .faq-question {
    padding: 14px 16px;
    font-size: 0.98rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }

  .faq-item.open .faq-answer {
    padding: 0 16px 14px;
  }

  /* Garantia */
  .garantia {
    padding: 22px 16px;
  }

  .garantia-selo {
    width: 120px;
    height: 120px;
    font-size: 0.78rem;
  }

  .garantia-selo .big {
    font-size: 1.9rem;
  }

  /* Pré-headline menor */
  .pre-headline {
    padding: 8px 14px;
    font-size: 0.85rem;
    line-height: 1.3;
  }

  /* Resultado do quiz */
  .result-card {
    padding: 28px 20px;
  }

  .result-amount {
    font-size: 2.6rem;
  }

  /* Forms */
  .quiz-form input {
    padding: 14px 16px;
    font-size: 1rem;
  }

  /* Media strip */
  .media-strip {
    gap: 10px;
  }

  .media-logo {
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  /* Imagens cheias */
  .hero img,
  .section-img,
  .quiz-card>img:first-child {
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .btn-cta {
    font-size: 1rem;
    padding: 16px 14px;
  }

  .oferta-valor {
    font-size: 2.4rem;
  }

  .quiz-question {
    font-size: 1.1rem;
  }

  .quiz-option {
    padding: 14px 12px;
    font-size: 0.95rem;
  }
}

/* ============ EXIT INTENT MODAL ============ */
.exit-intent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.exit-intent-overlay.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 9999;
}

.exit-intent-modal {
  background: var(--bg);
  border: 4px solid var(--yellow);
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  padding: 30px 20px;
}

.exit-intent-overlay.active .exit-intent-modal {
  transform: scale(1);
}

.exit-intent-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 32px;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.exit-intent-close:hover {
  color: var(--red);
}

.exit-intent-headline {
  color: var(--red);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  margin-bottom: 10px;
}

.exit-intent-sub {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.exit-intent-proof {
  background: var(--yellow-light);
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.exit-intent-offer {
  margin-bottom: 20px;
}

.exit-intent-offer .oferta-de {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--text-light);
}

.exit-intent-offer .oferta-por {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.exit-intent-offer .oferta-valor {
  font-size: 3rem;
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1;
  color: var(--green-dark);
}

.exit-intent-btn {
  font-size: 1rem;
  padding: 16px 20px;
  margin-bottom: 15px;
  width: 100%;
}

.exit-intent-scarcity {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
}

/* ============ STICKY OFFER BAR ============ */
.sticky-offer-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--red);
  color: white;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
}

.sticky-offer-bar .timer {
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--yellow);
  min-width: 60px;
  text-align: center;
}

.sticky-offer-bar .btn-offer {
  background: var(--yellow);
  color: var(--text);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: transform 0.2s;
}

/* Ajuste mobile */
@media (max-width: 600px) {
  .sticky-offer-bar {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    font-size: 0.8rem;
  }

  body {
    padding-top: 80px !important;
  }
}

@media (max-width: 600px) {
  .exit-intent-modal {
    width: 95%;
    padding: 20px 15px;
  }

  .exit-intent-sub {
    margin-bottom: 15px;
  }

  .exit-intent-proof {
    margin-bottom: 15px;
    padding: 8px;
  }

  .exit-intent-offer {
    margin-bottom: 15px;
  }

  .exit-intent-btn {
    padding: 12px 16px;
  }
}