/* ══════════════════════════════════════════
   ALCATEIA DE LEÕES — Plano de 90 dias
   Identidade Visual: Cordão de 3 Dobras
   Navy #0d1b2e · Gold #c9a84c · Cream #f5f0e8
══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@400;500;600&display=swap');

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

:root {
  --navy:   #0d1b2e;
  --navy2:  #122338;
  --navy3:  #07101d;
  --gold:   #c9a84c;
  --gold2:  #8B6914;
  --cream:  #f5f0e8;
}

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.app {
  max-width: 640px;
  margin: 0 auto;
}

/* ── TELAS ── */
.screen { display: none; }
.screen.active { display: block; }

/* ══════════════════════════════
   LANDING
══════════════════════════════ */
.land-hero {
  padding: 2.5rem 1.5rem 1.75rem;
  text-align: center;
  border-bottom: 0.5px solid rgba(201,168,76,0.2);
}

.land-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid var(--gold);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.land-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: .75rem;
}

.land-title-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: rgba(201,168,76,0.7);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.land-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  opacity: .5;
}

.land-sub {
  font-size: 16px;
  color: rgba(245,240,232,0.75);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

/* Manifesto */
.manifesto {
  padding: 1.5rem 1.75rem;
  background: rgba(201,168,76,0.06);
  border-left: 3px solid var(--gold);
  margin: 0 1.5rem 1.75rem;
  border-radius: 0 10px 10px 0;
}

.manifesto p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.75;
}

.manifesto cite {
  display: block;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  color: var(--gold);
  margin-top: .75rem;
  letter-spacing: .05em;
}

/* Pilares */
.pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 1.5rem 1.75rem;
}

.pilar {
  background: rgba(201,168,76,0.07);
  border: 0.5px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 1rem .875rem;
  text-align: center;
}

.pilar-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 8px;
}

.pilar-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.pilar-desc {
  font-size: 13px;
  color: rgba(245,240,232,0.6);
  line-height: 1.5;
}

/* Trial box */
.trial-box {
  margin: 0 1.5rem 1.75rem;
  padding: 1.75rem 1.5rem;
  background: var(--navy3);
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 14px;
  text-align: center;
}

.trial-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: .75rem;
}

.trial-desc {
  font-size: 15px;
  color: rgba(245,240,232,0.65);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.trial-price {
  margin-bottom: 1.75rem;
}

.price-free {
  display: block;
  font-size: 34px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.price-after {
  font-size: 14px;
  color: rgba(245,240,232,0.4);
}

/* ── BOTÃO PRINCIPAL ── */
.btn-cta {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--gold);
  color: var(--navy3);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, transform .1s;
}

.btn-cta:hover {
  background: #d4b155;
  transform: translateY(-1px);
}

.btn-cta:active {
  transform: scale(0.99);
}

/* ── BOTÃO OUTLINE ── */
.btn-outline {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: 0.5px solid rgba(201,168,76,0.4);
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
  transition: all .15s;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.07);
}

.land-footer {
  padding: 1rem 1.5rem 2rem;
  text-align: center;
  font-size: 13px;
  color: rgba(245,240,232,0.3);
  line-height: 1.7;
}

/* ══════════════════════════════
   FORMULÁRIO (CADASTRO)
══════════════════════════════ */
.form-screen {
  padding: 1.75rem 1.5rem;
}

.form-step-label {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-sub {
  font-size: 15px;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245,240,232,0.28);
}

.field select option {
  background: var(--navy2);
  color: var(--cream);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pwd-field {
  position: relative;
}

.pwd-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(245,240,232,0.4);
  font-size: 16px;
  padding: 0;
  line-height: 1;
}

.terms {
  font-size: 13px;
  color: rgba(245,240,232,0.3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

/* ══════════════════════════════
   DIAGNÓSTICO
══════════════════════════════ */
.diag-screen {
  padding: 1.75rem 1.5rem;
}

.diag-intro {
  background: rgba(201,168,76,0.08);
  border: 0.5px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 15px;
  color: rgba(245,240,232,0.8);
  line-height: 1.7;
}

.diag-intro strong {
  color: var(--gold);
}

.eixo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.eixo-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.eixo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
}

.pergunta {
  margin-bottom: 1.5rem;
}

.pergunta-label {
  font-size: 15px;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: .875rem;
}

.pergunta-label strong {
  color: var(--gold);
}

.scale-row {
  display: flex;
  gap: 7px;
  align-items: center;
}

.scale-label {
  font-size: 12px;
  color: rgba(245,240,232,0.4);
  white-space: nowrap;
}

.scale-btn {
  flex: 1;
  height: 44px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  color: rgba(245,240,232,0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: all .15s;
}

.scale-btn:hover {
  border-color: rgba(201,168,76,0.6);
  color: var(--cream);
}

.scale-btn.sel {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 600;
}

.open-answer {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  outline: none;
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
  transition: border-color .15s;
}

.open-answer:focus {
  border-color: rgba(201,168,76,0.6);
}

.open-answer::placeholder {
  color: rgba(245,240,232,0.22);
}

.eixo-divider {
  border: none;
  border-top: 0.5px solid rgba(201,168,76,0.15);
  margin: 1.75rem 0;
}

.bifurcacao {
  margin-bottom: 1.25rem;
}

.bif-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: all .15s;
  margin-bottom: 10px;
  text-align: left;
}

.bif-btn:hover {
  border-color: rgba(201,168,76,0.5);
}

.bif-btn.sel {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.bif-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
  display: inline-block;
}

.bif-btn.sel .bif-dot {
  background: var(--gold);
  border-color: var(--gold);
}

/* ══════════════════════════════
   RESULTADO
══════════════════════════════ */
.result-screen {
  padding: 1.75rem 1.5rem;
}

.perfil-hero {
  text-align: center;
  padding: 1.5rem 1rem;
  margin-bottom: 1.5rem;
}

.perfil-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.1rem;
}

.perfil-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: .625rem;
  line-height: 1.2;
}

.perfil-tagline {
  font-size: 16px;
  color: rgba(245,240,232,0.65);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
}

.scores-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 1.5rem;
}

.score-card {
  background: rgba(201,168,76,0.06);
  border: 0.5px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.score-eixo {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.score-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--cream);
}

.score-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 7px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--gold);
  transition: width .6s ease;
}

.desc-box {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.25rem;
  border-radius: 0 10px 10px 0;
  margin-bottom: 1.25rem;
}

.desc-box p {
  font-size: 15px;
  color: rgba(245,240,232,0.82);
  line-height: 1.75;
}

.perigo-box {
  background: rgba(192,57,43,0.1);
  border: 0.5px solid rgba(192,57,43,0.4);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin: 1rem 0;
  font-size: 14px;
  color: rgba(245,240,232,0.7);
  line-height: 1.6;
  font-style: italic;
}

.perigo-box strong {
  color: #e74c3c;
}

.passos-title {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .875rem;
  font-weight: 600;
}

.passo-item {
  display: flex;
  gap: 12px;
  margin-bottom: .875rem;
  align-items: flex-start;
}

.passo-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 0.5px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.passo-text {
  font-size: 15px;
  color: rgba(245,240,232,0.8);
  line-height: 1.65;
}

.cta-section {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.75rem;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: .625rem;
}

.cta-desc {
  font-size: 15px;
  color: rgba(245,240,232,0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.cta-desc strong {
  color: var(--gold);
}

/* ══════════════════════════════
   PLANO 90 DIAS
══════════════════════════════ */
.plano-screen {
  padding: 1.75rem 1.5rem;
}

.plano-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.plano-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1.2;
}

.plano-app-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: rgba(201,168,76,0.6);
  font-style: italic;
  margin-bottom: 1rem;
}

.plano-sub {
  font-size: 15px;
  color: rgba(245,240,232,0.62);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.trial-alert {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.trial-days {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--gold);
  display: block;
  margin-bottom: 5px;
  line-height: 1;
}

.trial-msg {
  font-size: 15px;
  color: rgba(245,240,232,0.65);
  line-height: 1.6;
}

.trial-msg strong {
  color: var(--gold);
}

.ancara-box {
  background: rgba(201,168,76,0.08);
  border: 0.5px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.ancara-label {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.ancara-text {
  font-size: 16px;
  color: var(--cream);
  font-style: italic;
  line-height: 1.65;
}

.fase-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.fase-tab {
  flex: 1;
  padding: 10px 4px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  color: rgba(245,240,232,0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all .15s;
  line-height: 1.4;
}

.fase-tab small {
  font-size: 11px;
  opacity: .7;
  display: block;
}

.fase-tab.active {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.fase-content { display: none; }
.fase-content.active { display: block; }

.fase-periodo {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.fase-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 5px;
}

.fase-verso {
  font-size: 13px;
  color: rgba(245,240,232,0.42);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.passo-card {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 12px;
}

.passo-card-num {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.passo-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 5px;
}

.passo-card-desc {
  font-size: 14px;
  color: rgba(245,240,232,0.62);
  line-height: 1.65;
  margin-bottom: 10px;
}

.passo-meta {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.meta-tag {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 5px;
  background: rgba(201,168,76,0.1);
  border: 0.5px solid rgba(201,168,76,0.25);
  color: rgba(245,240,232,0.6);
}

.assinatura-box {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: var(--navy3);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 12px;
  text-align: center;
}

.ass-app-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: .5rem;
}

.ass-label {
  font-size: 14px;
  color: rgba(245,240,232,0.55);
  margin-bottom: .75rem;
  line-height: 1.6;
}

.ass-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--gold);
  margin-bottom: .25rem;
  line-height: 1;
}

.ass-detalhe {
  font-size: 13px;
  color: rgba(245,240,232,0.35);
  margin-bottom: 1.25rem;
}

.rodape {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 13px;
  color: rgba(245,240,232,0.2);
  font-style: italic;
  padding-bottom: 2rem;
}

/* ══════════════════════════════
   RESPONSIVO MOBILE
══════════════════════════════ */
@media (max-width: 480px) {
  .land-title { font-size: 34px; }
  .pilares { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .pilar { padding: .75rem .5rem; }
  .pilar-title { font-size: 11px; }
  .pilar-desc { font-size: 11px; }
  .field-row { grid-template-columns: 1fr; }
  .scores-row { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
}
