:root {
  --bg: #f6f0e8;
  --card: #fffaf3;
  --text: #2a201b;
  --muted: #6f625a;
  --line: #e1d4c7;
  --accent: #7b4e36;
  --accent-dark: #5d3927;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.page {
  width: min(920px, 92vw);
  margin: 0 auto;
  padding: 40px 0 70px;
}

.hero {
  text-align: center;
  margin-bottom: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--accent);
  font-weight: bold;
}

h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  margin: 10px 0 16px;
}

h2 {
  font-size: 28px;
  margin: 0 0 18px;
}

h3 {
  font-size: 21px;
  margin: 0 0 12px;
}

.subtitle {
  font-size: 20px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(50, 35, 20, .06);
}

.video-box {
  border: 1px dashed var(--accent);
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
  background: rgba(123, 78, 54, .06);
}

label {
  display: block;
  margin: 18px 0;
  font-weight: bold;
}

input, select {
  width: 100%;
  display: block;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 16px;
  background: white;
  color: var(--text);
}

.question-block {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  margin-top: 28px;
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: normal;
  font-size: 14px;
  color: var(--muted);
}

.consent input {
  width: auto;
  margin-top: 5px;
}

button, .cta {
  display: inline-block;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 17px 22px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background: var(--accent);
  color: white;
  transition: .2s ease;
}

button:hover, .cta:hover {
  background: var(--accent-dark);
}

.result p {
  font-size: 18px;
}

.notice {
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  margin: 26px 0;
  background: rgba(123, 78, 54, .07);
  border-radius: 14px;
}

.small {
  font-size: 13px !important;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 640px) {
  .card { padding: 22px; border-radius: 18px; }
  h2 { font-size: 24px; }
}

/* Ajustes da v2 */
.video-box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
  margin-top: 10px;
}

.video-title {
  margin-top: 0;
}

.step-video {
  margin-bottom: 18px;
}

.small.left {
  text-align: left;
}

select:disabled {
  opacity: .75;
  cursor: not-allowed;
  background: #f3eee7;
}

/* Pergunta de feedback no fim da leitura */
.feedback {
  margin: 28px 0 6px;
}

.feedback-pergunta {
  font-size: 18px;
  margin-bottom: 12px;
}

.feedback-botoes {
  display: flex;
  gap: 12px;
}

.feedback-botoes .cta {
  width: auto;
  flex: 1;
}

.cta-claro {
  background: #9c8676;
}

.cta-claro:hover {
  background: #836e5f;
}

.feedback-resposta {
  display: none;
  margin-top: 14px;
}

.cta-destaque {
  font-size: 18px;
  padding: 20px 22px;
  margin-top: 18px;
}

.secundario {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
}

.secundario a {
  color: var(--accent);
  font-weight: bold;
}

/* Caixinha da live (destaque no topo do resultado) */
.live-box {
  border: 2px solid var(--accent);
  background: rgba(123, 78, 54, .08);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 26px;
}

.live-box .live-tag {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 10px;
}

.live-box p {
  margin: 0 0 10px;
}

/* Entrega da leitura completa pelo e-mail */
.email-delivery-box {
  border: 2px solid var(--accent);
  background: #fff3df;
  border-radius: 18px;
  padding: 24px;
  margin: 28px 0;
  box-shadow: 0 8px 24px rgba(93, 57, 39, .10);
}

.email-delivery-box h2 {
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.email-delivery-box p {
  margin: 0 0 10px;
}

.email-delivery-tag {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px !important;
  font-weight: bold;
  color: var(--accent);
}

/* Rodapé com redes sociais */
.rodape {
  text-align: center;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.rodape p {
  margin: 0 0 10px;
  font-size: 14px;
}

.rodape-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.rodape-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.rodape-links a:hover {
  text-decoration: underline;
}

/* Campo anti-robô: invisível para pessoas, robôs de spam o preenchem e são barrados */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* Vídeos do YouTube */
.video {
  margin: 18px 0 8px;
}

.video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
  display: block;
}
