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

:root {
  --verde-italia: #1f7a5c;
  --vermelho-italia: #b11226;
  --cinza-claro: #f5f7f6;
  --texto-escuro: #1c1c1c;
  --green: #1f7a4d;
  --red: #c0392b;
  --dark: #1c1c1c;
  --light: #f9f9f9;
  --gray: #666;
  --blue: #162860;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #f5f7f6, #f5f7f6);
  color: var(--texto-escuro);
  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  padding: 20px 0;
  text-align: center;
}

.brand {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #8c1d18;
  font-weight: 500;
}

/* Container principal */
.container {
  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Título */
h1 {
  font-family: "Playfair Display", serif;
  margin-bottom: 16px;
  padding: 48px;
  line-height: 1.25;
  font-size: 3.4rem;
  color: var(--green);
  text-align: center;
}

h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 16px;
  margin-top: 26px;
  line-height: 1.25;
  font-size: 2.4rem;
  color: var(--green);
  text-align: center;
}

h1 span {
  color: var(--verde-italia);
}

.subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
  text-align: center;
}

/* Container */
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin: auto;
}

.container section {
  width: 100%;
  text-align: center;
}

/* Texto */
p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 32px;
}

/* Progresso */
.progress-wrapper {
  margin-bottom: 24px;
}

#progress-text {
  font-size: 13px;
  color: #777;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  border-radius: 4px;
  margin-top: 6px;
}

#progress-fill {
  height: 100%;
  width: 0%;
  background: var(--green);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Pergunta */
.question h2 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 20px;
}

/* Radios */
.option {
  display: block;
  padding: 14px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.option:hover {
  border-color: var(--green);
}

.option input {
  display: none;
}

.option.selected {
  border-color: var(--green);
  background: #f0f6f2;
}

/* Inputs texto */
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  font-size: 15px;
}

/* Botões */
.actions {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.btn {
  padding: 12px 22px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
}

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

.btn.secondary {
  background: transparent;
  color: #555;
}

.btn.primary:hover {
  opacity: 0.9;
}

/* Privacidade */
.privacy {
  font-size: 13px;
  color: #777;
  margin-top: 20px;
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  min-width: 300px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--verde-italia), #2fa37a);
  color: #ffffff;
  transition: all 0.25s ease;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(31, 122, 92, 0.25);
}

footer {
  padding: 16px 12px;
  text-align: center;
  font-size: 13px;
  background-color: var(--blue);
}

.page {
  flex: 1;
  width: 100%;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

footer img {
  max-height: 28px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.footer-text {
  color: var(--light);
  font-size: 12px;
}

/* Card */
.card {
  max-width: 720px;
  padding: 32px;
  background: #ffffff;
  border-radius: 14px;
  width: 100%;
  max-width: 720px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.quiz {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 0 12px;
}

.microcopy {
  font-size: 13px;
  color: #777;
  margin-bottom: 24px;
}

ul {
  padding-left: 18px;
  margin-bottom: 32px;
}

ul li {
  margin-bottom: 8px;
}

.video-box {
  width: 100%;
  max-width: 800px; /* 👈 controla o tamanho */
  aspect-ratio: 16 / 9; /* mantém proporção */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

video {
  width: 100%;
  display: block;
}

.video-caption {
  font-size: 14px;
  color: #666;
  margin: 12px;
}

.question-block {
  display: none;
  margin-top: 32px;
}

.question-block h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.option {
  display: block;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 10px;
  cursor: pointer;
  background: #fff;
}

.option.selected {
  border-color: #111;
  background: #f0f0f0;
  font-weight: 500;
}

.cta {
  margin-top: 32px;
  text-align: center;
}

.cta button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  cursor: not-allowed;
  background: #ccc;
  color: #555;
}

.cta button.enabled {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--verde-italia), #2fa37a);
  color: #ffffff;
  transition: all 0.25s ease;
  text-decoration: none;
}

.cta .hint {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

/* Melhorias na lista de informações */
.info-list {
  list-style-type: none; /* Remove os pontos padrão */
  padding: 0; /* Remove o padding padrão da lista */
  margin: 0 auto; /* Centraliza a lista inteira */
  max-width: 450px;
}

.info-list li {
  padding: 10px 0; /* Mais espaço entre os itens da lista */
  border-bottom: 1px solid var(--cinza-claro); /* Adiciona uma linha divisória sutil */
  position: relative;
  padding-left: 25px; /* Espaço para nosso novo marcador */
}

/* Adiciona um marcador visual verde (melhor que o ponto padrão) */
.info-list li::before {
  content: "•"; /* Use um ponto ou outro ícone */
  color: var(--verde-italia);
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 5px;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto; /* Centraliza o bloco principal na página */
  padding: 0 20px; /* Garante margem nas laterais do mobile */
}

.faq-card {
  background-color: var(--light, #f9f9f9); /* Use seu cinza claro ou branco */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Sombra suave para o efeito "card" */
  padding: 20px 25px;
  margin-bottom: 25px; /* Espaço generoso entre os cards */
  border: 1px solid var(--cinza-claro, #f5f7f6);
}

.faq-question {
  font-family: "Playfair Display", serif;
  color: var(--blue); /* Cor principal da sua marca */
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0; /* Espaço entre a pergunta e a resposta */
}

.faq-answer {
  font-family: "Playfair Display", serif;
  color: var(--texto-escuro, #1c1c1c);
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.flag-bar {
  width: 120px;
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 4px;
  background: linear-gradient(to right, #1f7a5c, #ffffff, #b11226);
}

.badge {
  position: relative;
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: rgba(31, 122, 92, 0.1);
  color: var(--verde-italia);
  font-weight: 500;
  margin-bottom: 20px;
}

/* faixa esquerda */
.badge::before,
.badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 90px;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 2px;
}

/* verde + branco + vermelho */
.badge::before {
  left: -100px;
  background: linear-gradient(to right, #1f7a5c, #ffffff, #b11226);
}

.badge::after {
  right: -100px;
  background: linear-gradient(to right, #1f7a5c, #ffffff, #b11226);
}

.final-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  color: var(--verde-italia);
  text-align: center;
  margin-bottom: 24px;
}

.final-subtitle {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 500;
  text-align: center;
  color: var(--verde-italia);
  margin-bottom: 20px;
}

.final-description {
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.focus {
  font-weight: 700; /* destaque sem exagero */
  color: var(--verde-italia);
}

.cta-helper {
  text-align: center;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.section-cta {
  margin: 32px;
}

input.error {
  border: 2px solid #d33;
  background: #fff5f5;
}

.error-message {
  color: #d33;
  font-size: 14px;
  margin-top: 16px;
}

/**TESTE  */

.exit-page-content {
  max-width: 1100px;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.offer-badge {
  background: #fff4e6;
  color: #e67e22;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
}

.main-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 20px;
}

.main-title span {
  color: #555;
}

.main-description {
  font-family: "Inter", sans-serif;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.benefit-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #444;
}

.benefit-list .icon {
  margin-right: 10px;
}

.social-proof {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #888;
}

.floating-img {
  max-width: 300px;
}

.benefits-check {
  max-width: 700px;
  list-style: none;
  padding: 20px;
  /* 24px em cima/baixo e auto nas laterais para centralizar */
  margin: 24px auto;
}

.benefits-check li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: #f8fafc;
}

.benefits-check .text {
  font-size: 24px;
  line-height: 1.4;
}

.benefits-check li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #ffffff;
}

.benefits-check .check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-top: 4px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.check-icon {
  width: 14px;
  height: 14px;
  fill: #f5f5f5;
  transform: scale(1.8);
}

@media (max-width: 768px) {
  .image-column {
    order: -1;
  } /* Imagem aparece antes no celular */
  .benefit-list li {
    justify-content: center;
  }
  /* quiz cresce */
  .quiz {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .card {
    max-width: 100%;
    padding: 20px 16px;
    border-radius: 12px;
  }
  h1 {
    font-size: 26px;
  }
  p {
    font-size: 15px;
  }

  h2 {
    font-size: 26px;
  }

  .container {
    padding: 32px 24px;
  }
}

/* 📱 Mobile refinado */
@media (max-width: 480px) {
  .page {
    justify-content: space-between;
  }

  .badge::before,
  .badge::after {
    display: none;
  }

  /* quiz cresce */
  .quiz {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .card {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  h1 {
    font-size: 22px;
    padding: 24px 16px 12px;
    margin-bottom: 8px;
  }
  .question {
    flex: 1;
  }

  .actions {
    margin-top: 16px;
  }
  .header {
    padding: 8px 0;
    font-size: 12px;
  }
  p {
    font-size: 15px;
  }

  .container {
    padding: 32px 24px;
  }
}
