@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Cores HSL Premium */
  --bg-dark: hsl(222, 47%, 5%);
  --bg-card: hsl(222, 40%, 9%);
  --bg-card-hover: hsl(222, 40%, 12%);
  
  --text-light: hsl(210, 40%, 98%);
  --text-muted: hsl(215, 20%, 65%);
  --text-dim: hsl(215, 12%, 45%);
  
  --accent-bronze: hsl(36, 40%, 60%);
  --accent-bronze-glow: hsla(36, 40%, 60%, 0.15);
  --accent-bronze-dark: hsl(36, 40%, 20%);
  
  --accent-emerald: hsl(142, 60%, 45%);
  --accent-emerald-bg: hsl(142, 70%, 6%);
  --accent-emerald-border: hsla(142, 60%, 45%, 0.2);
  
  --accent-crimson: hsl(355, 65%, 50%);
  --accent-crimson-bg: hsl(355, 60%, 8%);
  --accent-crimson-border: hsla(355, 65%, 50%, 0.15);

  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  
  --shadow-lg: 0 15px 50px -15px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 40px hsla(36, 40%, 60%, 0.25);
  --shadow-glow-emerald: 0 0 40px hsla(142, 60%, 45%, 0.15);
  
  --border-radius-sm: 6px;
  --border-radius-md: 14px;
  --border-radius-lg: 24px;
}

/* Reset Geral */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* Efeito de Malha Quadriculada e Iluminação Interativa */
.grid-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(197, 168, 128, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 168, 128, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}

/* Spots Luminosos Abstratos de Fundo */
.ambient-glow-1 {
  position: absolute;
  top: 5%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsla(36, 40%, 60%, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -2;
  animation: pulse-glow-1 15s ease-in-out infinite alternate;
}

.ambient-glow-2 {
  position: absolute;
  top: 25%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsla(222, 65%, 20%, 0.4) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: -2;
  animation: pulse-glow-2 22s ease-in-out infinite alternate;
}

.ambient-glow-3 {
  position: absolute;
  top: 60%;
  right: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, hsla(142, 60%, 15%, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -2;
  animation: pulse-glow-3 18s ease-in-out infinite alternate;
}

@keyframes pulse-glow-1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(50px, -30px) scale(1.15); opacity: 1; }
}

@keyframes pulse-glow-2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(-40px, 40px) scale(1.1); opacity: 0.8; }
}

@keyframes pulse-glow-3 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(30px, 30px) scale(1.15); opacity: 1; }
}

/* Tipografia */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  font-size: 1.85rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

strong {
  color: var(--text-light);
  font-weight: 600;
}

/* Botões Premium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.25rem 2.25rem;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(222, 47%, 4%);
  background: linear-gradient(135deg, hsl(36, 55%, 65%) 0%, hsl(36, 50%, 50%) 100%);
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  filter: brightness(1.15);
}

.btn:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-bronze);
  border: 1px solid var(--accent-bronze);
}

.btn-secondary:hover {
  background: var(--accent-bronze-glow);
  color: var(--text-light);
}

/* Divisor */
.divider {
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-bronze), transparent);
  margin: 1.5rem auto;
}

/* Layout Geral & Seções */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 7.5rem 0;
  }
}

/* ALERT BAR */
.alert-bar {
  background-color: var(--accent-emerald-bg);
  border-bottom: 1px solid var(--accent-emerald-border);
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-emerald);
}

.hero {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.hero-bg-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' stroke='%23c5a880' stroke-width='0.4' fill='none' opacity='0.25'/%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23c5a880' stroke-width='0.2' stroke-dasharray='2,2' fill='none' opacity='0.15'/%3E%3Cpath d='M50 5 L53 47 L95 50 L53 53 L50 95 L47 53 L5 50 L47 47 Z' fill='none' stroke='%23c5a880' stroke-width='0.6' opacity='0.3'/%3E%3Cpath d='M50 15 L52 48 L85 50 L52 52 L50 85 L48 52 L15 50 L48 48 Z' fill='none' stroke='%23c5a880' stroke-width='0.4' stroke-dasharray='1,1' opacity='0.2'/%3E%3Cpolygon points='50,5 50,50 53,47' fill='%23c5a880' opacity='0.2'/%3E%3Cpolygon points='50,95 50,50 47,53' fill='%23c5a880' opacity='0.2'/%3E%3Cpolygon points='95,50 50,50 53,53' fill='%23c5a880' opacity='0.2'/%3E%3Cpolygon points='5,50 50,50 47,47' fill='%23c5a880' opacity='0.2'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  animation: slow-rotate 160s linear infinite;
}

.hero .container {
  position: relative;
  z-index: 1;
}

@keyframes slow-rotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-tag {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-bronze);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid var(--accent-bronze-glow);
  background: rgba(197, 168, 128, 0.03);
  border-radius: 50px;
}

.hero-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
  color: var(--text-light);
}

.hero-title span {
  background: linear-gradient(135deg, hsl(36, 55%, 75%) 0%, hsl(36, 45%, 55%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Destaque "Não é sobre ganhar mais" */
.emphasis-box {
  background: var(--bg-card);
  border: 1px solid var(--accent-crimson-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(219, 48, 37, 0.05);
  border-radius: var(--border-radius-md);
  padding: 1.25rem 2rem;
  max-width: 550px;
  margin: 0 auto 3rem;
  text-align: center;
  position: relative;
}

.emphasis-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(219, 48, 37, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.emphasis-box h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent-crimson);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-cta-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.micro-copy {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* HISTÓRIA E DOR DO MARCOS (Caminho da Virada) */
.story-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid hsla(222, 20%, 20%, 0.2);
  border-bottom: 1px solid hsla(222, 20%, 20%, 0.2);
  padding: 6rem 0;
}

/* Background Esmaecido com Efeito Parallax */
.story-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(180deg, var(--bg-dark) 0%, transparent 15%, transparent 85%, var(--bg-dark) 100%),
    url('compass_direction.png');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.06; /* Imagem de fundo bem esmaecida */
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 991px) {
  .story-bg-overlay {
    background-attachment: scroll; /* Fallback para melhor performance em mobile */
  }
}

.story-section .container {
  position: relative;
  z-index: 1; /* Garante que o conteúdo fique sobre o background */
}

/* Caminho de Linha do Tempo Conectada */
.timeline-container {
  position: relative;
  max-width: 780px;
  margin: 4rem auto 0;
  padding-left: 2.5rem;
}

.timeline-line {
  position: absolute;
  left: 9px;
  top: 10px;
  bottom: 15px;
  width: 2px;
  background: linear-gradient(180deg, 
    rgba(197, 168, 128, 0.1) 0%, 
    rgba(197, 168, 128, 0.5) 50%, 
    var(--accent-emerald) 100%
  );
  z-index: 1;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Ponto / Nó no Caminho */
.timeline-node {
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 3px solid rgba(197, 168, 128, 0.35);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-item:hover .timeline-node {
  background: var(--accent-bronze);
  border-color: var(--accent-bronze);
  box-shadow: 0 0 12px var(--accent-bronze);
  transform: scale(1.3);
}

/* Caixa de Conteúdo de cada ponto */
.timeline-content {
  background: rgba(13, 20, 35, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.02);
  padding: 1.25rem 1.75rem;
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-item:hover .timeline-content {
  background: rgba(13, 20, 35, 0.75);
  border-color: rgba(197, 168, 128, 0.15);
  transform: translateX(6px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.timeline-content p {
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.timeline-item:hover .timeline-content p {
  color: var(--text-light);
}

/* Ponto Final - Destaque (A Virada) */
.timeline-item.highlight .timeline-node {
  border-color: var(--accent-emerald-border);
  background: var(--bg-dark);
}

.timeline-item.highlight:hover .timeline-node {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
  box-shadow: 0 0 15px var(--accent-emerald);
}

.timeline-item.highlight .timeline-content {
  border-color: var(--accent-emerald-border);
  background: rgba(16, 185, 129, 0.03);
}

.timeline-item.highlight:hover .timeline-content {
  background: rgba(16, 185, 129, 0.08);
  border-color: var(--accent-emerald);
  box-shadow: 0 5px 20px rgba(16, 185, 129, 0.05);
}

.timeline-item.highlight .timeline-content p {
  color: var(--text-light);
  font-weight: 400;
}

/* BLOCO DE PROMESSAS (O que vai descobrir) */
.discover-section {
  background-color: hsl(222, 47%, 3%);
}

.discover-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3.5rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.discover-card {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid hsla(222, 20%, 20%, 0.3);
  border-radius: var(--border-radius-md);
  padding: 1.75rem 2rem;
  transition: all 0.3s ease;
}

.discover-card:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 168, 128, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.discover-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
}

.discover-card p {
  margin-bottom: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}

.discover-card p strong {
  color: var(--text-light);
}

/* BLOCO DE FILTRAGEM (Para quem é) */
.filter-section {
  background: linear-gradient(180deg, hsl(222, 47%, 3%) 0%, var(--bg-dark) 100%);
}

.filter-intro {
  text-align: center;
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.filter-profiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .filter-profiles-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.profile-card {
  background: var(--bg-card);
  border: 1px solid hsla(222, 20%, 20%, 0.3);
  border-radius: var(--border-radius-md);
  padding: 2.25rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 168, 128, 0.2);
  box-shadow: var(--shadow-lg);
}

.profile-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.25);
  color: var(--accent-bronze);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 2px;
}

/* QUEM SERÁ SEU PROFESSOR */
.bio-section {
  background-color: hsl(222, 47%, 4%);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .bio-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.bio-photo-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.bio-photo-frame {
  width: 270px;
  height: 330px;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--accent-bronze);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.bio-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--bg-card);
}

.bio-photo-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.bio-tag {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-bronze);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.bio-content h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.bio-content p {
  font-size: 1.15rem;
  line-height: 1.75;
}

/* FAQ / QUEBRA DE OBJEÇÕES */
.faq-section {
  background: linear-gradient(180deg, hsl(222, 47%, 4%) 0%, var(--bg-dark) 100%);
}

.faq-list {
  max-width: 750px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid hsla(222, 20%, 20%, 0.3);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem;
  text-align: left;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-bronze);
  transition: transform 0.3s ease;
}

.faq-item.active {
  border-color: rgba(197, 168, 128, 0.2);
  background: var(--bg-card-hover);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA FINAL */
.final-cta {
  background-color: var(--bg-dark);
  text-align: center;
  padding-bottom: 7rem;
}

.final-cta h2 {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.25;
}

.final-cta p {
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

/* RODAPÉ */
.footer {
  background-color: hsl(222, 47%, 3%);
  border-top: 1px solid hsla(222, 20%, 20%, 0.3);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* MODAL DE CADASTRO */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 9, 15, 0.88);
  backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 1rem;
}

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

.modal-box {
  background: var(--bg-card);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: var(--border-radius-lg);
  max-width: 480px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  position: relative;
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 3rem 2.5rem;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h3 {
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.modal-header p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* FORMULÁRIO */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 1.1rem 1.35rem;
  background-color: hsl(222, 47%, 5%);
  border: 1px solid hsla(222, 20%, 30%, 0.4);
  border-radius: var(--border-radius-sm);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-bronze);
  background-color: hsl(222, 47%, 8%);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.15);
}

/* Validação Interativa */
.form-input:user-invalid {
  border-color: var(--accent-crimson);
  background-color: var(--accent-crimson-bg);
}

.form-input:user-valid {
  border-color: var(--accent-emerald);
  background-color: var(--accent-emerald-bg);
}

.form-error-msg {
  display: none;
  color: var(--accent-crimson);
  font-size: 0.8rem;
  margin-top: 0.4rem;
  font-weight: 600;
}

.form-input:user-invalid + .form-error-msg {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 1.5rem;
}

.form-secure-badge svg {
  color: var(--accent-emerald);
}

/* Tela de Sucesso / Transição */
.modal-success-screen {
  display: none;
  text-align: center;
  padding: 1.5rem 0;
}

.modal-success-screen.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  border: 2px solid var(--accent-emerald);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glow-emerald);
}

.success-icon svg {
  width: 32px;
  height: 32px;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.success-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.success-loading {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-bronze);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(197, 168, 128, 0.2);
  border-top-color: var(--accent-bronze);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Animações de Entrada (Scroll Reveal) */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
