/* ================================
   QUIZ PAGE BASE
   ================================ */
.quiz-page {
  background: var(--creme);
  min-height: 100vh;
}

/* ================================
   BARRA DE PROGRESSO (fixed no topo)
   ================================ */
.progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(45, 74, 45, 0.14);
  z-index: 200;
}

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

/* ================================
   WRAPPER PRINCIPAL DO QUIZ
   ================================ */
.quiz-wrapper {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.quiz-header {
  text-align: center;
  margin-bottom: 48px;
  padding-top: 16px;
}

.quiz-header h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--verde-profundo);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.quiz-header p {
  font-size: 14px;
  font-weight: 400;
  color: var(--texto-medio);
  margin-top: 8px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .quiz-wrapper { padding: 56px 32px 96px; }
  .quiz-header h1 { font-size: 32px; }
}

/* ================================
   BLOCOS DE PERGUNTAS
   ================================ */
.question-block {
  margin-bottom: 48px;
}

.step-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--verde-salvia);
  margin-bottom: 10px;
}

.question-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--texto-escuro);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .question-text { font-size: 22px; }
}

/* ================================
   PILLS (opções de resposta)
   ================================ */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 20px;
  border-radius: 50px;
  border: 2px solid var(--verde-salvia);
  background: #fff;
  color: var(--texto-escuro);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  line-height: 1;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  text-align: left;
}

.pill:hover {
  border-color: var(--verde-profundo);
  background: rgba(125, 155, 118, 0.07);
}

.pill:focus-visible {
  outline: 3px solid var(--verde-salvia);
  outline-offset: 2px;
}

.pill.selected {
  background: var(--verde-profundo);
  border-color: var(--verde-profundo);
  color: var(--creme);
}

.pill.selected::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2 7l4 4 6-7' stroke='%23F5EFE6' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ================================
   SINALIZAÇÃO DE PERGUNTA FALTANDO
   ================================ */
.question-block.missing .question-text {
  color: var(--terracota);
}

.question-block.missing .step-label {
  color: var(--terracota);
}

.question-block.missing .pill-group {
  border-left: 3px solid var(--terracota);
  padding-left: 12px;
}

.question-block.missing .name-input {
  border-bottom-color: var(--terracota);
}

.missing-hint {
  display: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--terracota);
  margin-top: 10px;
  line-height: 1.5;
}

.question-block.missing .missing-hint {
  display: block;
}

/* ================================
   INPUT DE NOME
   ================================ */
.name-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--verde-salvia);
  background: transparent;
  padding: 12px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--texto-escuro);
  outline: none;
  transition: border-color 0.2s ease;
  caret-color: var(--terracota);
}

.name-input::placeholder {
  color: rgba(74, 74, 74, 0.4);
}

.name-input:focus {
  border-bottom-color: var(--verde-profundo);
}

/* ================================
   BOTÃO FINAL
   ================================ */
.quiz-cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.quiz-cta .btn-cta {
  font-size: 14px;
  letter-spacing: 0.07em;
  padding: 20px 32px;
}

@media (min-width: 1024px) {
  .quiz-cta { align-items: center; }
  .quiz-cta .btn-cta { min-width: 340px; }
}

/* ================================
   OVERLAYS DE PROCESSAMENTO
   ================================ */
.processing-overlay {
  position: fixed;
  inset: 0;
  background: rgba(245, 239, 230, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.processing-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.processing-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 48px 32px;
  max-width: 320px;
  text-align: center;
}

.processing-box p {
  font-size: 16px;
  font-weight: 600;
  color: var(--verde-profundo);
  line-height: 1.55;
}

.spinner {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(196, 114, 90, 0.18);
  border-top-color: var(--terracota);
  border-radius: 50%;
  animation: spin 0.72s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================================
   MODAL DE CONFIRMAÇÃO DE REFAZER
   ================================ */
.confirm-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 24px;
}

.confirm-modal.active {
  opacity: 1;
  pointer-events: all;
}

.confirm-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 340px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.confirm-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--texto-escuro);
  line-height: 1.6;
  margin-bottom: 24px;
}

.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.confirm-secondary {
  background: none;
  border: 2px solid var(--verde-salvia);
  color: var(--verde-profundo);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.confirm-secondary:hover {
  background: rgba(125, 155, 118, 0.08);
}

.confirm-primary {
  display: block;
  width: 100%;
  font-size: 14px;
  padding: 14px 24px;
}

/* ================================
   SEÇÃO DE RESULTADO
   ================================ */
.result-section {
  display: none;
  background: var(--creme);
  padding-bottom: 96px;
}

.result-section.visible {
  display: block;
}

/* 1. Imagem de perfil */
.result-profile-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* 2. Container branco com conteúdo */
.result-container {
  background: #fff;
  max-width: 600px;
  margin: 0 auto;
  padding: 28px 24px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

@media (min-width: 640px) {
  .result-profile-img {
    max-width: 600px;
    margin: 0 auto;
    display: block;
    border-radius: 16px 16px 0 0;
  }

  .result-container {
    border-radius: 0 0 16px 16px;
  }
}

@media (min-width: 1024px) {
  .result-section {
    padding-top: 48px;
  }
}

/* 3. Título */
.result-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--verde-profundo);
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 16px;
}

/* 4. Pill de perfil */
.profile-pill {
  display: block;
  width: fit-content;
  margin: 0 auto 8px;
  background: var(--verde-profundo);
  color: var(--creme);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
}

/* 5. Linha de contexto */
.diagnosis-context {
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: var(--texto-medio);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* 6. Parágrafos do diagnóstico */
.diagnosis-text {
  margin-bottom: 24px;
}

.diagnosis-text p {
  font-size: 15px;
  font-weight: 400;
  color: var(--texto-escuro);
  line-height: 1.8;
  margin-bottom: 10px;
}

.diagnosis-text p.diagnosis-last {
  font-weight: 700;
  color: var(--verde-profundo);
  margin-top: 4px;
}

/* 7. Linha de transição */
.protocol-transition {
  font-size: 15px;
  font-weight: 600;
  color: var(--verde-profundo);
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.4;
}

/* 8. Stack de valor */
.value-stack {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.value-stack li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--texto-escuro);
  line-height: 1.5;
}

.value-stack li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* 9. Label do preview */
.preview-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--texto-medio);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 24px 0 12px;
}

/* ================================
   PREVIEW BLOQUEADO REDESENHADO
   ================================ */
.protocol-preview-wrap {
  position: relative;
  margin-bottom: 8px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Documento mockup (todo com blur) */
.protocol-doc {
  filter: blur(7px);
  pointer-events: none;
  user-select: none;
  background: #fff;
}

.doc-header {
  background: var(--verde-profundo);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.doc-brand {
  font-size: 12px;
  font-weight: 700;
  color: var(--creme);
  font-family: 'Montserrat', sans-serif;
}

.doc-profile-tag {
  font-size: 11px;
  font-weight: 400;
  color: rgba(245, 239, 230, 0.8);
  font-family: 'Montserrat', sans-serif;
}

.doc-block {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(45, 74, 45, 0.08);
}

.doc-block-last {
  border-bottom: none;
}

.doc-section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.doc-icon {
  font-size: 12px;
  line-height: 1;
}

.doc-title-bar {
  height: 10px;
  background: rgba(125, 155, 118, 0.4);
  border-radius: 4px;
}

.doc-line {
  height: 8px;
  background: rgba(45, 74, 45, 0.10);
  border-radius: 3px;
  margin-bottom: 6px;
}

.doc-line:last-child {
  margin-bottom: 0;
}

/* Cadeado sobreposto no centro */
.lock-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Nota abaixo do preview */
.preview-note {
  font-size: 12px;
  font-weight: 400;
  color: var(--texto-medio);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ================================
   CARD DE OFERTA
   ================================ */
.offer-card {
  background: #fff;
  border: 2px solid var(--verde-salvia);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(45, 74, 45, 0.12);
  padding: 24px 24px 20px;
  margin-top: 28px;
  overflow: hidden;
  text-align: left;
}

.offer-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--texto-escuro);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 6px;
}

.offer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.avatar-stack {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  display: block;
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.offer-social {
  font-size: 13px;
  font-weight: 400;
  color: var(--texto-medio);
  line-height: 1.4;
  margin: 0;
}

.offer-social strong {
  font-weight: 700;
  color: var(--texto-escuro);
}

.carousel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--texto-medio);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── Carrossel infinito ── */
.carousel-wrap {
  margin: 0 -24px;
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 72px, black calc(100% - 72px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 72px, black calc(100% - 72px), transparent 100%);
}

.carousel-track {
  display: flex;
  will-change: transform;
}

.carousel-item {
  height: 200px;
  width: 266px;
  flex-shrink: 0;
  border-radius: 8px;
  display: block;
  margin-right: 8px;
  object-fit: cover;
}

/* ── Preço + benefícios ── */
.offer-bottom {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(45, 74, 45, 0.10);
  border-bottom: 1px solid rgba(45, 74, 45, 0.10);
  margin-bottom: 20px;
}

.offer-price-col {
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid rgba(45, 74, 45, 0.14);
  margin-right: 20px;
}

.offer-price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texto-medio);
  margin-bottom: 4px;
}

.price-original {
  font-size: 13px;
  font-weight: 400;
  color: var(--texto-medio);
  opacity: 0.7;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price-main {
  font-size: 36px;
  font-weight: 800;
  color: var(--terracota);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}

.offer-benefits-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-benefit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--texto-escuro);
  line-height: 1.4;
}

.offer-benefit svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CTA e garantia ── */
.offer-cta {
  display: block;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 20px 24px;
  margin-bottom: 14px;
  text-align: center;
}

.guarantee-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.guarantee-line svg {
  flex-shrink: 0;
}

.guarantee-line span {
  font-size: 13px;
  font-weight: 500;
  color: var(--verde-profundo);
  line-height: 1.4;
}

/* ================================
   BLOCO DE BÔNUS
   ================================ */
.bonus-block {
  margin: 16px 0 0;
  border-radius: 10px;
  background: rgba(125, 155, 118, 0.10);
  border: 1.5px solid var(--verde-salvia);
  padding: 14px 16px;
}

.bonus-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bonus-tag {
  flex-shrink: 0;
  background: var(--verde-salvia);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 2px;
  line-height: 1.4;
}

.bonus-inner p {
  font-size: 14px;
  font-weight: 500;
  color: var(--verde-profundo);
  line-height: 1.45;
  margin: 0;
}

@media (min-width: 768px) {
  .result-title { font-size: 30px; }
  .diagnosis-text p { font-size: 16px; }
  .offer-title { font-size: 22px; }
  .price-main { font-size: 44px; }
  .carousel-item { height: 220px; }
}

/* ================================
   FORMULÁRIO DE PAGAMENTO
   ================================ */
.payment-form {
  margin-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.payment-form.visible {
  opacity: 1;
  transform: translateY(0);
}

.payment-form-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--verde-profundo);
  margin-bottom: 12px;
  text-align: center;
}

.payment-email-wrap {
  margin-bottom: 4px;
}

.payment-email-input {
  width: 100%;
  border: 2px solid var(--verde-salvia);
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--texto-escuro);
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  caret-color: var(--terracota);
}

.payment-email-input:focus {
  border-color: var(--verde-profundo);
}

.payment-field-error {
  font-size: 12px;
  font-weight: 600;
  color: var(--terracota);
  margin-top: 6px;
  margin-bottom: 0;
}

.payment-btn-pix {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ================================
   ORDER BUMPS
   ================================ */
.order-bump-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--verde-salvia);
  border-radius: 12px;
  background: rgba(125, 155, 118, 0.06);
  cursor: pointer;
  margin-top: 14px;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.order-bump-card:has(.order-bump-check:checked) {
  border-color: var(--verde-profundo);
  background: rgba(45, 74, 45, 0.07);
}

.order-bump-check {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--verde-profundo);
  cursor: pointer;
}

.order-bump-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.order-bump-inner { flex: 1; }

.order-bump-tag {
  display: inline-block;
  background: var(--terracota);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.order-bump-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--texto-escuro);
  margin-bottom: 2px;
  line-height: 1.3;
}

.order-bump-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--texto-medio);
  line-height: 1.4;
  margin-bottom: 4px;
}

.order-bump-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--verde-profundo);
  margin: 0;
}

/* ================================
   SEÇÃO PIX / QR CODE
   ================================ */
.pix-section {
  margin-top: 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pix-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.pix-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--verde-profundo);
  margin-bottom: 16px;
}

.pix-qr-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.pix-qr-img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  border: 2px solid var(--verde-salvia);
  background: #fff;
  display: block;
}

.pix-steps {
  text-align: left;
  padding: 14px 16px 14px 32px;
  margin: 0 0 16px;
  background: rgba(45, 74, 45, 0.05);
  border-radius: 10px;
  list-style: decimal;
  font-size: 13px;
  color: var(--texto-medio);
  line-height: 1.8;
}

.pix-steps strong {
  color: var(--texto-escuro);
}

.pix-copy-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: #fff;
  border: 2px solid var(--verde-profundo);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--verde-profundo);
  cursor: pointer;
  margin-bottom: 16px;
  transition: background 0.18s ease, color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.pix-copy-btn:hover {
  background: var(--verde-profundo);
  color: var(--creme);
}

.pix-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(45, 74, 45, 0.06);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--verde-profundo);
  margin-bottom: 16px;
}

.pix-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(196, 114, 90, 0.2);
  border-top-color: var(--terracota);
  border-radius: 50%;
  animation: spin 0.72s linear infinite;
  flex-shrink: 0;
}

.pix-status.confirmed {
  background: rgba(45, 74, 45, 0.1);
  font-weight: 700;
}

.pix-status.confirmed .pix-spinner {
  display: none;
}

/* ── Modal confirmação de e-mail ── */
.email-confirm-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: ecFadeIn .2s ease;
}
@keyframes ecFadeIn { from { opacity: 0; } to { opacity: 1; } }

.email-confirm-box {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px 28px;
  max-width: 380px; width: 100%;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  animation: ecSlide .2s ease;
}
@keyframes ecSlide {
  from { transform: translateY(14px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.email-confirm-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #7D9B76; margin-bottom: 12px;
}
.email-confirm-msg  { font-size: 14px; color: #888; margin-bottom: 10px; }
.email-confirm-value {
  font-size: 18px; font-weight: 800;
  color: #2D4A2D; margin-bottom: 12px;
  word-break: break-all;
}
.email-confirm-hint {
  font-size: 13px; color: #aaa;
  line-height: 1.55; margin-bottom: 28px;
}
.email-confirm-btns { display: flex; gap: 10px; flex-direction: column; }

.email-confirm-btn {
  width: 100%; padding: 13px;
  border: none; border-radius: 8px;
  font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; letter-spacing: .02em;
}
.email-confirm-btn--ok   { background: #2D4A2D; color: #F5EFE6; }
.email-confirm-btn--ok:hover   { background: #3a6140; }
.email-confirm-btn--back { background: #F5EFE6; color: #2D4A2D; }
.email-confirm-btn--back:hover { background: #ede7db; }

