/* 
 * MÉTODO RAIZ
 * Cliente: Ana Laura Andrade
 * Descrição: Landing Page responsiva em Dark Mode Premium (Glassmorphism, Neon Glow & Grid Fluido)
 * Desenvolvedor: Max Dias
 * Email: maxdias@imaxsi.com
 * WhatsApp: +5534988632487
 */

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

/* ==========================================================================
   DESIGN TOKENS (CSS VARIABLES)
   ========================================================================== */
:root {
  /* Cores Principais baseadas na logo Método Raiz */
  --color-green: #8cc63f;        /* Verde Folha (Árvore) */
  --color-green-rgb: 140, 198, 63;
  --color-purple: #7b2cb1;       /* Roxo Cérebro */
  --color-purple-rgb: 123, 44, 177;
  --color-cyan: #00aeef;         /* Azul Celeste */
  --color-cyan-rgb: 0, 174, 239;
  
  /* Variações e Paleta Escura */
  --color-bg-deep: #07030e;      /* Fundo ultra escuro obsidian */
  --color-bg-card: rgba(20, 13, 35, 0.45); /* Card roxo translúcido */
  --color-border-card: rgba(140, 198, 63, 0.15); /* Borda verde suave por padrão */
  --color-border-cyan: rgba(0, 174, 239, 0.2);
  --color-border-purple: rgba(123, 44, 177, 0.25);
  
  /* Textos */
  --color-text-light: #ffffff;
  --color-text-muted: #b6b1cc;   /* Texto secundário em tom roxo-acinzentado */
  --color-text-dark: #000010;
  
  /* Fontes */
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'REM', sans-serif;
  
  /* Efeitos */
  --glass-blur: blur(16px);
  --shadow-neon-green: 0 0 15px rgba(140, 198, 63, 0.35);
  --shadow-neon-purple: 0 0 20px rgba(123, 44, 177, 0.4);
  --shadow-neon-cyan: 0 0 15px rgba(0, 174, 239, 0.35);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-lg: 16px;
  --border-radius-md: 8px;
}

/* ==========================================================================
   RESET & ESTILOS GLOBAIS
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 10px; /* Facilita rem (1rem = 10px) */
  font-family: var(--font-body);
  scroll-behavior: smooth;
  background-color: var(--color-bg-deep);
  color: var(--color-text-light);
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  min-height: 100vh;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(123, 44, 177, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 174, 239, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(140, 198, 63, 0.06) 0%, transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(140, 198, 63, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(140, 198, 63, 0.6);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   CLASSES UTILITÁRIAS & LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.4rem;
}

.glow-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}
.glow-orb-purple {
  background: var(--color-purple);
  top: 15%;
  left: -100px;
}
.glow-orb-cyan {
  background: var(--color-cyan);
  bottom: 25%;
  right: -100px;
}
.glow-orb-green {
  background: var(--color-green);
  top: 60%;
  left: 30%;
  opacity: 0.25;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-text-light) 30%, var(--color-green) 100%);
  -webkit-background-clip: text;
  background-clip: text; /* Added standard property */
  -webkit-text-fill-color: transparent;
}
.text-gradient-purple-cyan {
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text; /* Added standard property */
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  background: rgba(140, 198, 63, 0.1);
  border: 1px solid rgba(140, 198, 63, 0.3);
  color: var(--color-green);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-neon-green);
}
.badge-purple {
  background: rgba(123, 44, 177, 0.1);
  border: 1px solid rgba(123, 44, 177, 0.3);
  color: #c084fc;
  box-shadow: var(--shadow-neon-purple);
}

/* Glassmorphism Card standard */
.glass-card {
  background: var(--color-bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-border-card);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  transition: var(--transition-smooth);
}
.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(140, 198, 63, 0.35);
  box-shadow: 0 10px 30px rgba(140, 198, 63, 0.08);
}

.glass-card-purple {
  border-color: var(--color-border-purple);
}
.glass-card-purple:hover {
  border-color: rgba(123, 44, 177, 0.5);
  box-shadow: 0 10px 30px rgba(123, 44, 177, 0.12);
}

.glass-card-cyan {
  border-color: var(--color-border-cyan);
}
.glass-card-cyan:hover {
  border-color: rgba(0, 174, 239, 0.5);
  box-shadow: 0 10px 30px rgba(0, 174, 239, 0.12);
}

/* ==========================================================================
   BOTÕES PREMIUM
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 3.6rem;
  border-radius: 12px;
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-green) 0%, #76ab2f 100%);
  color: var(--color-text-dark);
  box-shadow: var(--shadow-neon-green);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-green) 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}
.btn-primary:hover {
  transform: scale(1.03);
  color: var(--color-text-light);
  box-shadow: 0 0 25px rgba(0, 174, 239, 0.6);
}
.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid var(--color-green);
  box-shadow: inset 0 0 10px rgba(140, 198, 63, 0.1);
}
.btn-outline:hover {
  background: var(--color-green);
  color: var(--color-text-dark);
  box-shadow: var(--shadow-neon-green);
  transform: scale(1.03);
}

.btn-purple-outline {
  border-color: var(--color-purple);
  box-shadow: inset 0 0 10px rgba(123, 44, 177, 0.1);
}
.btn-purple-outline:hover {
  background: var(--color-purple);
  color: var(--color-text-light);
  box-shadow: var(--shadow-neon-purple);
  transform: scale(1.03);
}

/* ==========================================================================
   SEÇÕES DA PÁGINA
   ========================================================================== */

/* 1. Header */
header {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  height: 39rem; 
}
header .logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* 2. Hero Section */
.hero {
  padding: 10rem 0 8rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: var(--font-headings);
  font-size: 4.8rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 2.5rem;
}
.hero h1 span.highlight {
  color: var(--color-green);
  text-shadow: 0 0 10px rgba(140, 198, 63, 0.2);
}
.hero h1 span.brain-text {
  color: #c084fc;
}
.hero p.lead {
  font-size: 2.2rem;
  color: var(--color-text-muted);
  max-width: 90rem;
  margin: 0 auto 4rem;
  font-weight: 300;
}
.hero .cta-wrapper {
  margin-bottom: 2rem;
}
.hero .cta-subtitle {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: var(--color-cyan);
  font-weight: 600;
  margin-top: 1.5rem;
}
.hero .cta-benefits {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}
.hero .cta-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  color: var(--color-text-muted);
}
.hero .cta-benefit-item svg {
  color: var(--color-green);
  width: 1.8rem;
  height: 1.8rem;
}

/* Stats Highlight Grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 8rem;
}
.stat-box {
  text-align: center;
  position: relative;
}
.stat-box::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.stat-box:last-child::after {
  display: none;
}
.stat-number {
  font-family: var(--font-headings);
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--color-text-light);
  margin-bottom: 0.8rem;
}
.stat-box:nth-child(1) .stat-number { color: var(--color-green); }
.stat-box:nth-child(2) .stat-number { color: var(--color-purple); }
.stat-box:nth-child(3) .stat-number { color: var(--color-cyan); }
.stat-desc {
  font-size: 1.6rem;
  color: var(--color-text-muted);
  max-width: 25rem;
  margin: 0 auto;
}

/* 2.5 Section: Quem está por trás (Expert) */
.expert {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}
.expert-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
  align-items: center;
}

/* Expert Visual (Left Column) */
.expert-visual {
  text-align: center;
}
.expert-img-wrapper {
  position: relative;
  margin-bottom: 3rem;
  display: inline-block;
}
.expert-img-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--color-border-purple);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.5;
}
.expert-img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: grayscale(0.2) contrast(1.1);
  transition: var(--transition-smooth);
}
.expert-img:hover {
  filter: grayscale(0) contrast(1.1);
  transform: scale(1.02);
}
.expert-bio-badge {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background: rgba(12, 8, 23, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 2rem;
  border-radius: 50px;
  display: block; /* Mudei para block para ocupar a largura ou centralizar melhor */
  max-width: fit-content;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Expert Content (Right Column) */
.expert-content h2 {
  font-family: var(--font-headings);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #fff 0%, #b6b1cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.expert-text p {
  font-size: 1.8rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.expert-list {
  list-style: none;
  margin: 2.5rem 0;
  padding-left: 0;
}
.expert-list li {
  font-size: 1.7rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  position: relative;
}
.expert-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 800;
}

/* Icons Grid */
.expert-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.expert-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.expert-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 12px;
  background: rgba(140, 198, 63, 0.1);
  border: 1px solid rgba(140, 198, 63, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
  transition: var(--transition-smooth);
}
.expert-icon-item:nth-child(2) .expert-icon {
  background: rgba(123, 44, 177, 0.1);
  border-color: rgba(123, 44, 177, 0.2);
  color: #c084fc;
}
.expert-icon-item:nth-child(3) .expert-icon {
  background: rgba(0, 174, 239, 0.1);
  border-color: rgba(0, 174, 239, 0.2);
  color: var(--color-cyan);
}
.expert-icon-item span {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-text-muted);
}
.expert-icon-item:hover .expert-icon {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Responsividade */
@media (max-width: 992px) {
  .expert-grid {
    grid-template-columns: 1fr;
    gap: 6rem;
    text-align: center;
  }
  .expert-visual {
    order: 2;
  }
  .expert-content {
    order: 1;
  }
  .expert-list li {
    text-align: left;
  }
  .expert-icons {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .expert-icons {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .expert-content h2 {
    font-size: 2.8rem;
  }
}

/* 3. Section: O que é a Mentoria */
.about {
  padding: 8rem 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 6rem;
}
.section-header h2 {
  font-family: var(--font-headings);
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.section-header p {
  font-size: 1.8rem;
  color: var(--color-text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.pillar-card {
  display: flex;
  gap: 2.5rem;
}
.pillar-icon {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
}
.pillar-card:nth-child(1) .pillar-icon {
  background: rgba(140, 198, 63, 0.1);
  border: 1px solid var(--color-green);
  color: var(--color-green);
  box-shadow: var(--shadow-neon-green);
}
.pillar-card:nth-child(2) .pillar-icon {
  background: rgba(123, 44, 177, 0.1);
  border: 1px solid var(--color-purple);
  color: #c084fc;
  box-shadow: var(--shadow-neon-purple);
}
.pillar-card:nth-child(3) .pillar-icon {
  background: rgba(0, 174, 239, 0.1);
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
  box-shadow: var(--shadow-neon-cyan);
}
.pillar-card:nth-child(4) .pillar-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-text-light);
}
.pillar-body h3 {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--color-text-light);
}
.pillar-body h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-cyan);
  margin-bottom: 0.8rem;
}
.pillar-body p {
  font-size: 1.6rem;
  color: var(--color-text-muted);
}

/* 4. Section: Resultados Reais (Mentores e Numeros) */
.results {
  padding: 10rem 0;
  background: rgba(12, 8, 23, 0.5);
  position: relative;
}
.results-container {
  display: flex;
  align-items: center;
  gap: 8rem;
}
.results-info {
  flex: 1;
}
.results-info h2 {
  font-family: var(--font-headings);
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.results-info p.lead {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: 2rem;
}
.results-info p.desc {
  font-size: 1.8rem;
  color: var(--color-text-muted);
  margin-bottom: 4rem;
}

.results-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  flex: 1.2;
}
.result-stat-card {
  padding: 4rem 3rem;
  text-align: left;
}
.result-stat-number {
  font-family: var(--font-headings);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--color-green);
  margin-bottom: 1.2rem;
}
.result-stat-card:nth-child(2) .result-stat-number {
  color: var(--color-purple);
}
.result-stat-card:nth-child(3) .result-stat-number {
  color: var(--color-cyan);
}
.result-stat-card h4 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.result-stat-card p {
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

/* 5. Section: Como Funciona o Acompanhamento (Os 4 passos) */
.steps {
  padding: 8rem 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 6rem;
}
.step-card {
  height: 100%;
}
.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.step-num {
  font-family: var(--font-headings);
  font-size: 4.8rem;
  font-weight: 800;
  color: rgba(140, 198, 63, 0.15);
  transition: var(--transition-smooth);
}
.step-card:hover .step-num {
  color: var(--color-green);
  transform: scale(1.1);
}
.step-card:nth-child(2):hover .step-num { color: var(--color-purple); }
.step-card:nth-child(3):hover .step-num { color: var(--color-cyan); }
.step-header h3 {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text-light);
  max-width: 80%;
}
.step-item {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0 0;
  margin-top: 2rem;
}
.step-item:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.step-item h4 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 0.8rem;
}
.step-card:nth-child(2) .step-item h4 { color: var(--color-purple); }
.step-card:nth-child(3) .step-item h4 { color: var(--color-cyan); }
.step-item p {
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

/* Video Section Wrapper (Simulating the greatpages video) */
.video-section {
  grid-column: span 2;
  margin-top: 4rem;
  text-align: center;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  top: -60px; /* Hide title bar */
  left: 0;
  width: 100%;
  height: calc(100% + 60px); /* Adjust height to maintain aspect ratio and keep controls visible */
  border: 0;
}

/* 6. Section: Pra quem é / Não é */
.target {
  padding: 8rem 0;
  background: rgba(12, 8, 23, 0.3);
}
.target-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  margin-top: 6rem;
}
.target-col h3 {
  font-family: var(--font-headings);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.target-col:nth-child(1) h3 {
  color: var(--color-green);
}
.target-col:nth-child(2) h3 {
  color: #c084fc;
}
.target-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.target-item {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
}
.target-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.target-col:nth-child(1) .target-icon {
  background: rgba(140, 198, 63, 0.15);
  color: var(--color-green);
}
.target-col:nth-child(2) .target-icon {
  background: rgba(123, 44, 177, 0.2);
  color: #c084fc;
}
.target-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}
.target-item p {
  font-size: 1.7rem;
  color: var(--color-text-muted);
}

/* 7. Section: FAQ / Antes que você pense... */
.faq {
  padding: 8rem 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 6rem;
}
.faq-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.faq-card h3 {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-text-light);
  line-height: 1.3;
}
.faq-card p {
  font-size: 1.6rem;
  color: var(--color-text-muted);
}

/* 8. Garantia Block */
.warranty-section {
  padding: 6rem 0 10rem;
}
.warranty-card {
  max-width: 96rem;
  margin: 0 auto;
  padding: 5rem;
  display: flex;
  align-items: center;
  gap: 5rem;
  border-left: 4px solid var(--color-green);
}
.warranty-badge-img {
  width: 15rem;
  height: 15rem;
  background: linear-gradient(135deg, rgba(140, 198, 63, 0.1) 0%, rgba(0, 174, 239, 0.05) 100%);
  border: 1px dashed var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-neon-green);
}
.warranty-badge-img svg {
  width: 7.5rem;
  height: 7.5rem;
  color: var(--color-green);
}
.warranty-content h3 {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}
.warranty-content p {
  font-size: 1.7rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
.warranty-requirements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
}
.warranty-req-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  color: var(--color-text-muted);
}
.warranty-req-item svg {
  color: var(--color-green);
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}

/* 9. Timeline de Aplicação */
.timeline-section {
  padding: 8rem 0;
  background: rgba(12, 8, 23, 0.4);
}
.timeline-header {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 6rem;
}
.timeline-header h2 {
  font-family: var(--font-headings);
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--color-text-light);
}
.timeline-header h2 span {
  color: #ff3366; /* Alerta vermelho/rosa para IMPORTANTE */
  text-shadow: 0 0 10px rgba(255, 51, 102, 0.2);
}
.timeline-header p {
  font-size: 1.8rem;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
}
.timeline-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.timeline-step-badge {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  background: rgba(0, 174, 239, 0.1);
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-neon-cyan);
  transition: var(--transition-smooth);
}
.timeline-card:hover .timeline-step-badge {
  background: var(--color-cyan);
  color: var(--color-text-dark);
}
.timeline-card h3 {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
  line-height: 1.3;
}
.timeline-card p {
  font-size: 1.5rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
.timeline-meta {
  margin-top: auto;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}
.timeline-card:nth-child(1) .timeline-meta { color: var(--color-green); }
.timeline-card:nth-child(2) .timeline-meta { color: var(--color-purple); }
.timeline-card:nth-child(3) .timeline-meta { color: var(--color-cyan); }
.timeline-card:nth-child(4) .timeline-meta { color: var(--color-green); }

/* Taxa de Aplicação FAQ */
.fee-faq {
  max-width: 80rem;
  margin: 6rem auto 0;
}
.fee-faq h4 {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--color-green);
}
.fee-faq p {
  font-size: 1.6rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.6;
}

/* 10. CTA Final & Footer */
.final-cta {
  padding: 12rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-family: var(--font-headings);
  font-size: 4.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.final-cta h2 span {
  color: var(--color-green);
}
.final-cta p {
  font-size: 2rem;
  color: var(--color-text-muted);
  max-width: 70rem;
  margin: 0 auto 4rem;
}
.final-cta .btn {
  margin-bottom: 1.5rem;
}
.final-cta span.meta-text {
  display: block;
  font-size: 1.3rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

footer {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #04010a;
  font-size: 1.4rem;
  color: var(--color-text-muted);
}
footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
footer .footer-logo img {
  height: 50rem;
  width: auto;
  object-fit: contain;
}
footer .footer-links {
  display: flex;
  gap: 3rem;
}
footer .footer-links a:hover {
  color: var(--color-green);
}
footer .footer-info {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 3rem;
  text-align: center;
  opacity: 0.6;
}

/* ==========================================================================
   MODAL INTERATIVO (FORMULÁRIO DE APLICAÇÃO)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 2, 8, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  width: 100%;
  max-width: 500px;
  background: rgba(22, 14, 38, 0.95);
  border: 1px solid var(--color-border-card);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-neon-purple);
}
.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-smooth);
}
.modal-close:hover {
  color: var(--color-green);
  transform: rotate(90deg);
}
.modal-close svg {
  width: 2.2rem;
  height: 2.2rem;
}

.modal-header {
  text-align: center;
  margin-bottom: 3rem;
}
.modal-header h3 {
  font-family: var(--font-headings);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}
.modal-header p {
  font-size: 1.4rem;
  color: var(--color-text-muted);
}

/* Estilos de Formulário */
.form-group {
  margin-bottom: 2rem;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.8rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.2rem 1.6rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 10px rgba(140, 198, 63, 0.2);
  background: rgba(0, 0, 0, 0.5);
}
.form-group textarea {
  resize: vertical;
  height: 10rem;
}

.form-step {
  display: none;
}
.form-step.active {
  display: block;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  gap: 1.5rem;
}
.form-navigation .btn {
  padding: 1.4rem 2.8rem;
  font-size: 1.5rem;
  flex: 1;
}

/* Success State inside modal */
.form-success-state {
  text-align: center;
  padding: 2rem 0;
}
.form-success-icon {
  width: 7.5rem;
  height: 7.5rem;
  background: rgba(140, 198, 63, 0.1);
  border: 1px solid var(--color-green);
  color: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  box-shadow: var(--shadow-neon-green);
}
.form-success-icon svg {
  width: 4rem;
  height: 4rem;
}
.form-success-state h4 {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--color-text-light);
}
.form-success-state p {
  font-size: 1.6rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 3rem;
}

/* Scroll Reveal base animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE FLUIDA)
   ========================================================================== */
@media all and (max-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }
  .results-container {
    flex-direction: column;
    gap: 5rem;
  }
  .results-info, .results-stats-grid {
    width: 100%;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .video-section {
    grid-column: span 1;
  }
}

@media all and (max-width: 768px) {
  html {
    font-size: 9px; /* Escala tudo ligeiramente menor no tablet/mobile */
  }
  .hero h1 {
    font-size: 3.4rem;
  }
  .hero p.lead {
    font-size: 1.8rem;
  }
  .section-header h2, .final-cta h2, .warranty-content h3, .timeline-header h2 {
    font-size: 3rem;
  }
  .target-col h3 {
    font-size: 2.2rem;
  }
  .glass-card {
    padding: 2rem;
  }
  .results-stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 6rem;
  }
  .stat-box::after {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .target-columns {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .warranty-card {
    flex-direction: column;
    padding: 3rem;
    text-align: center;
  }
  .warranty-requirements {
    grid-template-columns: 1fr;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
  footer .footer-links {
    justify-content: center;
  }
}

@media all and (max-width: 480px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero .cta-benefits {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  header .container {
    flex-direction: column;
    gap: 1.2rem;
  }
  header .logo {
    height: 195px;
  }
  header .btn {
    width: auto;
    font-size: 1.3rem;
    padding: 1.2rem 2rem;
  }
  .section-header h2, .final-cta h2, .warranty-content h3, .timeline-header h2 {
    font-size: 2.6rem;
  }
  .btn {
    width: 100%;
    padding: 1.6rem 2.4rem;
  }
  /* Evitar que header .btn herde 100% de width logo acima ou reforce aqui se necessário, mas a especificidade header .btn já cuida disso acima */
  .modal-container {
    padding: 3rem 2rem;
  }
}
/* 11. Infographic Section */
.infographic-section {
  padding: 8rem 0;
  text-align: center;
  background: rgba(12, 8, 23, 0.2);
}

.infographic-container {
  max-width: 110rem;
  margin: 0 auto;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.infographic-img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsividade para o Infográfico */
@media all and (max-width: 768px) {
  .infographic-section {
    padding: 5rem 0;
  }
  .infographic-container {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   FLOATING BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 7rem;
  height: 7rem;
  background: var(--color-bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-border-card);
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: var(--transition-smooth), transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-neon-green);
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem) scale(0.8);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.back-to-top:hover {
  transform: translateY(-0.5rem) scale(1.1);
  border-color: var(--color-green);
  box-shadow: 0 0 30px rgba(140, 198, 63, 0.5);
}

.back-to-top:active {
  transform: scale(0.95);
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.back-to-top.visible {
  animation: float 3s ease-in-out infinite;
}

/* Pause animation on hover */
.back-to-top:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 2rem;
    right: 2rem;
    width: 6rem;
    height: 6rem;
  }
}
