/* =========================
   VEEA – style.css
   (Base do funil + paleta Veea)
   ========================= */

/* ===== VARIÁVEIS DE MARCA ===== */
:root{
  /* Verde mais claro (Veea) */
  --brand-green: #85CE5E;       /* principal (mais claro) */
  --brand-green-dark: #64B738;  /* tom original do logo (para contraste) */
  --brand-green-light: #A5E68A; /* ainda mais claro (detalhes) */

  /* Se existirem pontos usando “amarelo”, vamos reaproveitar como verde claro */
  --brand-yellow: var(--brand-green-light);

  --text-main: #464046;
  --text-secondary: #505155;
  --surface: #ffffff;
  --surface-soft: #f4f5f7;
  --muted: #e6e8ec;
}


/* RESET BÁSICO */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--surface);
  color: var(--text-main);
}

/* ========= LAYOUT GERAL ========= */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Header alinhado ao “card” principal */
.header {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px auto 0;
}

.logo-leal {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 0px;
}

/* Barrinha de progresso */
.progress-bar-wrapper {
  width: 100%;
  max-width: 520px;
  margin: 24px auto 40px;
  padding: 0;
  box-sizing: border-box;
}

.progress-bar,
.progress-bar-full {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  height: 12px;
  border-radius: 999px;
  background-color: #f2f4f7;
  overflow: hidden;
}

/* Preenchimento colorido */
.progress-bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, var(--brand-yellow) 0%, var(--brand-green) 100%);
}

/* ========= PÁGINA 1 – FORMULÁRIO ========= */

.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 16px 80px;
}

.hero-content {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

/* Emoji de alerta */
.hero-alert {
  font-size: 32px;
  margin-bottom: 8px;
}

/* Título principal */
.hero-title {
  font-size: 31px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.registered-symbol {
  font-weight: 700;
}

/* Wrapper para o ® não “estourar” a altura da linha */
.reg-wrap{
  position: relative;
  display: inline-block;
  padding-right: 0.55em; /* espaço pro ® */
}

/* ® sem quebrar o layout */
.registered-symbol-big{
  position: absolute;
  right: -0.05em;
  top: -0.45em;
  font-weight: 700;
  font-size: 1.25em; /* tamanho “bonito” e estável */
  line-height: 1;
}


/* Subtítulo */
.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* FORMULÁRIO */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Grupo base dos campos */
.form-group {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--surface-soft);
  border-radius: 14px;
  padding: 0 18px;
  height: 62px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* Primeiro campo com borda forte preta */
.form-group-primary {
  background-color: var(--surface);
  border: 2px solid #111111;
}

/* Ícone à esquerda dentro do campo */
.form-icon {
  font-size: 20px;
  margin-right: 10px;
}

/* Inputs */
.form-group input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--text-secondary);
}

.form-group input::placeholder {
  color: #a0a3af;
}

/* BOTÃO PRINCIPAL */
.primary-button {
  margin-top: 10px;
  position: relative;
  width: 100%;
  height: 64px;
  border: none;
  border-radius: 14px;
  background-color: var(--brand-green);
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Faixa amarela fina embaixo do botão */
.primary-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 9px;
  border-radius: 0 0 14px 14px;
  background-color: var(--brand-yellow);
  top: auto;
  margin: 0;
}

.primary-button .btn-icon {
  font-size: 20px;
}

.primary-button:hover {
  filter: brightness(1.03);
}

/* ========= PÁGINA 2 – BARRA DE CARREGAMENTO ========= */

.loading-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.loading-hero {
  width: 100%;
  display: flex;
  justify-content: center;
}

.loading-content {
  width: 100%;
  max-width: 520px;
  text-align: center;
}

/* ajuste extra para mobile */
@media (max-width: 600px) {
  .loading-page-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .loading-bar {
    width: 90%;
    max-width: 420px;
    height: 22px;
  }

  .loading-status-title {
    font-size: 16px;
  }

  .loading-status-subtitle {
    font-size: 14px;
  }
}

/* Barra central de carregamento */
.loading-bar-wrapper {
  margin-bottom: 18px;
}

.loading-bar {
  position: relative;
  width: 420px;
  max-width: 100%;
  height: 22px;
  background-color: #e2e5ea;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  margin: 0 auto;
}

/* Preenchimento verde */
.loading-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: var(--brand-green);
}

/* Percentual no centro da barra */
.loading-percent {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 13px;
  font-weight: 600;
  color: #222222;
}

/* Textos abaixo da barra */
.loading-status-title {
  font-size: 16px;
  margin-bottom: 4px;
  color: #20232a;
}

.loading-status-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ========= PÁGINAS DE PERGUNTAS ========= */

.question-main {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 16px 80px;
}

.question-container {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.question-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.question-lead {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 20px;
}

.question-title {
  font-size: 22px;
  font-weight: 600;
  color: #20232a;
  margin-bottom: 32px;
}

/* Duas opções lado a lado */
.question-options-two {
  display: flex;
  justify-content: center;
  gap: 24px;
}

/* Cartão grande de opção */
.quiz-card-button {
  position: relative;
  width: 260px;
  max-width: 100%;
  height: 150px;
  border: none;
  border-radius: 16px;
  background-color: var(--brand-green);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Barra amarela na base do cartão */
.quiz-card-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 11px;
  border-radius: 0 0 16px 16px;
  background-color: var(--brand-yellow);
}

.quiz-card-icon {
  font-size: 52px;
  color: #111111;
  margin-bottom: 14px;
}

.quiz-card-label {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

/* Coluna com três opções empilhadas */
.question-options-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.quiz-row-button {
  position: relative;
  width: 480px;
  max-width: 100%;
  height: 80px;
  border: none;
  border-radius: 16px;
  background-color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Barra amarela na base de cada linha */
.quiz-row-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  border-radius: 0 0 16px 16px;
  background-color: var(--brand-yellow);
}

.quiz-row-icon {
  font-size: 32px;
  color: #111111;
  margin-right: 18px;
}

.quiz-row-label {
  flex: 1;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  color: #ffffff;
}

.quiz-row-radio {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background-color: transparent;
}

/* ========= PÁGINA DE DEPOIMENTO ========= */

.testimonial-main {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 16px 80px;
}

.testimonial-container {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.testimonial-headline {
  font-size: 22px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 12px;
}

.testimonial-headline span {
  font-size: 20px;
}

.testimonial-subtitle {
  font-size: 18px;
  color: #444444;
  margin-bottom: 32px;
}

.testimonial-card {
  margin: 0 auto 35px;
  max-width: 520px;
  background-color: var(--surface);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 22px 26px 18px;
  text-align: left;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 700;
  color: #20232a;
}

.testimonial-location {
  font-size: 15px;
  color: #777777;
}

.testimonial-text {
  font-size: 15px;
  color: #444444;
  line-height: 1.5;
  margin-bottom: 10px;
}

.testimonial-stars {
  color: var(--brand-yellow);
  font-size: 22px;
}

/* ========= PÁGINA DE RESULTADO ========= */

.result-main {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 16px 80px;
}

@media (max-width: 600px) {
  .result-main {
    padding: 0 12px 40px;
  }

  .result-container {
    max-width: 100%;
  }

  .result-card {
    padding: 32px 24px;
    margin-bottom: 24px;
  }

  .result-meter {
    width: 90px;
    height: 190px;
  }

  .result-title {
    font-size: 20px;
  }

  .result-subtitle {
    font-size: 16px;
  }

  .primary-button {
    height: 70px;
    font-size: 16px;
  }
}

.result-container {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.result-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0px;
  color: #20232a;
}

.result-subtitle {
  font-size: 18px;
  color: #555555;
  margin-bottom: 10px;
}

.result-card {
  margin: 0 auto 40px;
  max-width: 520px;
  background-color: var(--surface);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 26px 32px 22px;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.result-column {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: #444444;
}

.result-column-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.result-meter {
  margin: 0 auto 10px;
  width: 65px;
  height: 140px;
  border-radius: 999px;
  background-color: var(--muted);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.result-meter-fill-equal {
  width: 100%;
  height: 10%;
  background-color: var(--brand-yellow);
}

.result-meter-fill-similar {
  width: 100%;
  height: 30%;
  background-color: #ff3333;
}

.result-percent-equal {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ff9900;
}

.result-percent-similar {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ff3333;
}

.result-total {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.result-footnote {
  font-size: 11px;
  line-height: 1.4;
}

/* ========= PÁGINA DE CURIOSIDADE ========= */

.fact-main {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 16px 80px;
}

.fact-container {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.fact-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.fact-highlight {
  font-size: 28px;
  font-weight: 700;
  color: #ff0000;
  margin: 30px auto 40px;
}

.fact-text-main {
  font-size: 22px;
  color: #222222;
  margin-bottom: 20px;
}

.fact-text-main strong {
  font-weight: 700;
}

.fact-text-secondary {
  font-size: 17px;
  color: #555555;
  margin-bottom: 40px;
}

/* ========= PÁGINA FINAL – PERCENTUAL DE SUCESSO ========= */

.success-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px 80px;
}

.success-container {
  max-width: 520px;
  width: 100%;
  text-align: center;
  margin-bottom: 0px;
}

.success-title {
  font-size: 19px;
  font-weight: 700;
  color: #20232a;
  margin-bottom: 0px;
}

.success-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.success-card {
  background-color: var(--surface);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
  padding: 22px 24px 26px;
  text-align: center;
}

.success-card-header {
  margin-bottom: 18px;
}

.success-label-top {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  margin-bottom: 6px;
}

.success-label-strong {
  font-weight: 700;
  color: #ff2e2e;
  text-transform: uppercase;
  font-size: 18px;
}

.success-label-note {
  font-weight: 700;
  color: #ff2e2e;
  font-size: 18px;
}

.success-label-text {
  font-size: 15px;
  color: #555555;
  line-height: 1.5;
}

.success-gauge-wrapper {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.success-gauge-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  /* o JS anima isso; aqui é apenas o estado inicial */
  background: conic-gradient(var(--brand-green) 0 83%, var(--muted) 83% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-gauge-inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-gauge-percent {
  font-size: 36px;
  font-weight: 700;
  color: #20232a;
}

.success-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--surface-soft);
}

.success-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.bottom-progress {
  margin: 0 auto 30px;
  max-width: 520px;
  width: 100%;
}

.success-bottom-section {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

.success-question {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 22px;
  color: #20232a;
}

.success-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cta-option {
  position: relative;
  width: 100%;
  max-width: 520px;
  border: none;
  border-radius: 18px;
  background-color: var(--brand-green);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-option::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 9px;
  border-radius: 0 0 16px 16px;
  background-color: var(--brand-yellow);
  top: auto;
  margin: 0;
}

.cta-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.cta-icon {
  font-size: 24px;
  margin-top: 0;
}

.cta-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0px;
  color: #ffffff;
}

.cta-subtitle {
  font-size: 14px;
  color: #f7f7f7;
  line-height: 1.5;
}

.cta-radio {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 3px solid var(--brand-green);
  background: transparent;
}

.cta-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #ffffff;
}

/* Ajustes específicos da página Percentual */
.percentual-page .cta-option::after {
  display: none;
}

.percentual-page .cta-option {
  border: 2px solid var(--brand-yellow);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

/* AVISO FINAL */

.warning-box {
  margin-top: 20px;
  padding: 16px 24px;
  border-radius: 16px;
  background-color: var(--surface);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
  text-align: center;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.warning-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 4px;
}

.warning-icon {
  font-size: 20px;
}

.warning-text {
  font-size: 15px;
  color: #444444;
}

.success-footer-button {
  max-width: 520px;
  width: 100%;
  margin: 26px auto 0;
}

/* Transição suave */
.primary-button,
.quiz-card-button,
.quiz-row-button,
.cta-option {
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, filter 0.18s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .primary-button:hover,
  .quiz-card-button:hover,
  .quiz-row-button:hover,
  .cta-option:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.20);
    filter: brightness(1.05);
  }
}

/* ========= RESPONSIVO ========= */

/* Tablets / telas médias */
@media (max-width: 900px) {
  .success-card-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    flex-direction: column;
  }

  .success-gauge-circle {
    width: 180px;
    height: 180px;
  }

  .success-gauge-inner {
    width: 130px;
    height: 130px;
  }
}

/* Mobile padrão */
@media (max-width: 600px) {
  .header {
    margin-top: 24px;
  }

  .logo-leal {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .progress-bar-wrapper {
    margin: 16px auto 28px;
  }

  .hero {
    padding: 0 12px 48px;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .form-group,
  .primary-button {
    height: 56px;
  }

  .loading-bar {
    width: 100%;
    height: 18px;
  }

  .loading-status-title {
    font-size: 15px;
  }

  .loading-status-subtitle {
    font-size: 13px;
  }

  .question-main {
    padding: 0 12px 56px;
  }

  .question-lead {
    font-size: 17px;
  }

  .question-title {
    font-size: 19px;
  }

  .question-options-two {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .quiz-card-button {
    width: 100%;
    height: 130px;
  }

  .quiz-row-button {
    width: 100%;
    padding: 0 18px;
  }

  .testimonial-main,
  .result-main,
  .fact-main,
  .success-main {
    padding: 0 12px 56px;
  }

  .success-card {
    padding: 18px 18px 22px;
  }

  .success-gauge-circle {
    width: 170px;
    height: 170px;
  }

  .success-gauge-inner {
    width: 120px;
    height: 120px;
  }

  .success-gauge-percent {
    font-size: 30px;
  }

  .success-question {
    font-size: 18px;
  }

  .cta-option {
    padding: 16px 18px;
  }

  .cta-title {
    font-size: 18px;
  }

  .cta-subtitle {
    font-size: 13px;
  }

  .cta-radio {
    right: 16px;
    width: 28px;
    height: 28px;
  }
}

/* Mobile bem estreito */
@media (max-width: 480px) {
  .page-wrapper {
    padding: 0 8px 32px;
  }

  .hero {
    padding: 0 4px 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .primary-button {
    width: 100%;
  }

  .quiz-card-button,
  .quiz-row-button,
  .cta-option {
    width: 100%;
  }

  .progress-bar-wrapper {
    margin: 20px auto 30px;
  }

  .success-gauge-circle {
    width: 150px;
    height: 150px;
  }

  .success-gauge-inner {
    width: 110px;
    height: 110px;
  }

  .success-gauge-percent {
    font-size: 26px;
  }

  .warning-box {
    padding: 14px 16px;
  }

  .warning-title {
    font-size: 18px;
  }

  .warning-text {
    font-size: 13px;
  }
}

/* ===== MOBILE: QUASE FULL WIDTH + RESPIRO ===== */
@media (max-width: 600px) {
  .page-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 12px 32px;
  }

  .header,
  .progress-bar-wrapper,
  .hero,
  .question-main,
  .testimonial-main,
  .result-main,
  .fact-main,
  .success-main,
  .loading-page-wrapper,
  .bottom-progress,
  .success-bottom-section {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-content,
  .question-container,
  .testimonial-container,
  .result-container,
  .fact-container,
  .success-container,
  .loading-content,
  .success-options,
  .warning-box,
  .success-footer-button {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .progress-bar-wrapper,
  .progress-bar,
  .progress-bar-full,
  .loading-bar {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
/* REMOVE a “barra amarela” (faixa inferior) de botões e cards */
.primary-button::after,
.quiz-card-button::after,
.quiz-row-button::after,
.cta-option::after {
  display: none !important;
  content: none !important;
}
/* =========================
   MOBILE GRANDE (como no PC)
   Cole no FINAL do CSS
   ========================= */

/* Evita zoom/boost de fonte no iOS */
html { -webkit-text-size-adjust: 100%; }

/* MOBILE: mantém tamanhos grandes, mas com segurança usando clamp() */
@media (max-width: 600px){

  /* Logo grande no celular */
  .logo-leal{
    width: clamp(140px, 36vw, 200px);
    height: clamp(140px, 36vw, 200px);
    margin-bottom: 8px;
  }

  /* Títulos e textos principais (grandes como desktop) */
  .hero-title{ font-size: clamp(26px, 6.2vw, 31px); }
  .hero-subtitle{ font-size: clamp(16px, 4.4vw, 20px); }

  .question-lead{ font-size: clamp(18px, 4.6vw, 20px); }
  .question-title{ font-size: clamp(20px, 5vw, 22px); }

  .result-title{ font-size: clamp(20px, 5.2vw, 22px); }
  .result-subtitle{ font-size: clamp(16px, 4.4vw, 18px); }

  .fact-highlight{ font-size: clamp(24px, 6vw, 28px); margin: 20px auto 28px; }
  .fact-text-main{ font-size: clamp(18px, 4.8vw, 22px); }
  .fact-text-secondary{ font-size: clamp(15px, 4vw, 17px); }

  .testimonial-headline{ font-size: clamp(20px, 5.2vw, 22px); }
  .testimonial-subtitle{ font-size: clamp(16px, 4.4vw, 18px); }

  .success-question{ font-size: clamp(20px, 5.2vw, 22px); }
  .cta-title{ font-size: clamp(18px, 5vw, 20px); }
  .cta-subtitle{ font-size: clamp(13px, 3.8vw, 14px); }

  /* Campos e botão principal no tamanho do desktop */
  .form-group{ height: 62px; }
  .primary-button{ height: 64px; font-size: 15px; }

  /* Cards e botões de opções (mantém grande) */
  .quiz-card-button{
    width: 100%;
    max-width: 520px;
    height: 150px;
  }
  .quiz-card-label{ font-size: 20px; }

  .quiz-row-button{
    height: 80px;
    padding: 0 22px;
  }
  .quiz-row-label{ font-size: 18px; }

  /* ® maior no celular */
  .registered-symbol-big{
    font-size: 3.6em;
    top: 6px;
  }
}

/* Celular bem estreito: mantém grande, mas evita estourar */
@media (max-width: 480px){
  .logo-leal{
    width: clamp(130px, 42vw, 180px);
    height: clamp(130px, 42vw, 180px);
  }
  .quiz-card-icon{ font-size: 48px; }
  .registered-symbol-big{ font-size: 3.4em; top: 6px; }
}
/* Corrige “font boosting” (texto bugado) em mobile */
html, body{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}