/* RESET E BASE */
:root {
  --bg-color: #021324; /* Navy quase preto da Ascendyn */
  --surface-color: rgba(255, 255, 255, 0.03);
  --border-color: rgba(18, 155, 245, 0.15); /* Tom suave do azul da marca */
  
  --text-primary: #FFFFFF;
  --text-dimmed: rgba(255, 255, 255, 0.6); /* E9EDF0 mas com opacidade */
  --text-dark: #021324;
  
  --accent-light: #129BF5; /* Azul claro */
  --accent-main: #20A4F5; /* Azul médio CTA */
  
  --font-heading: 'Satoshi', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --container-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  background-color: #01080e;
  width: 100%;
  height: 100%;
}

body.theme-apple-dark {
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body.theme-apple-dark::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 0%, var(--bg-color) 0%, #01080e 100%);
  z-index: -3;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* BACKGROUND (Noise + Mesh Gradients) */
.bg-noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  z-index: -1;
  pointer-events: none;
}

.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: floatOrb 20s infinite ease-in-out alternate;
}

.orb-1 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(18,155,245,0.15) 0%, rgba(2,19,36,0) 70%);
  top: -20%;
  left: -10%;
}

.orb-2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(32,164,245,0.1) 0%, rgba(2,19,36,0) 70%);
  bottom: -10%;
  right: -10%;
  animation-delay: -5s;
}

.orb-3 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(2,19,36,0) 70%);
  top: 40%;
  left: 40%;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, 5%) scale(1.1); }
}

/* NAVBAR (Glassmorphism) */
.nav-glass {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(2, 19, 36, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 26px; /* Mantém a logo proporcional e elegante na barra de 60px */
  width: auto;
  max-width: 150px; /* Garante que fique dentro do tamanho sugerido no guia */
}

.btn-nav {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-nav:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* HERO DOMINANTE */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 2rem 4rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Floating Badge */
.floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 99px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(18,155,245,0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(18,155,245,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(18,155,245,0); }
  100% { box-shadow: 0 0 0 0 rgba(18,155,245,0); }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-dimmed {
  color: var(--text-dimmed);
}

.hero-subheadline {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 99px;
  background: linear-gradient(135deg, rgba(32,164,245,0.4) 0%, rgba(18,155,245,0.1) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(32,164,245,0.4);
  box-shadow: 0 8px 32px rgba(2,19,36,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(32,164,245,0.5) 0%, rgba(18,155,245,0.2) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(32,164,245,0.4), inset 0 0 0 1px rgba(255,255,255,0.2);
}

.icon-arrow {
  transition: transform 0.3s ease;
}

.btn-primary:hover .icon-arrow {
  transform: translateX(4px);
}

/* PRIMEIRA SEÇÃO - BENTO BOX */
.bento-section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 5rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.glass-panel {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px; /* Design guide says 8-12px for cards */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.glass-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(2,19,36,0.4), inset 0 0 0 1px rgba(18,155,245,0.25);
}

.bento-card.bento-small {
  height: 400px;
}

.bento-card.bento-large {
  grid-column: 1 / -1;
  flex-direction: row;
  height: 400px; 
}

.bento-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}

.large-content {
  justify-content: center;
  max-width: 50%;
}

.bento-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.accent-color {
  color: var(--accent-light);
}

.bento-headline {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.bento-text {
  font-size: 1.125rem; 
  line-height: 1.6;
}

/* VISUAL COMPONENTS FOR BENTO CARDS */
.bento-visual {
  height: 160px; 
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(18,155,245,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.bento-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.3;
}

.bento-visual-large {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at left, rgba(18,155,245,0.08) 0%, transparent 70%);
  border-right: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.bento-visual-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.3;
}

/* Abstract Funnel (Larger) */
.abstract-funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.funnel-level {
  height: 16px;
  border-radius: 8px;
  background: var(--text-dimmed);
  opacity: 0.5;
}

.level-1 { width: 200px; }
.level-2 { width: 120px; }
.level-3 { 
  width: 60px; 
  background: var(--accent-light); 
  opacity: 1; 
  box-shadow: 0 0 20px rgba(18,155,245,0.6); 
}

/* Abstract Nodes (Larger) */
.abstract-nodes {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.node {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--text-dimmed);
  opacity: 0.3;
}

.node.active {
  background: var(--accent-main);
  opacity: 1;
  box-shadow: 0 0 20px rgba(32,164,245,0.8);
}

.node-line {
  width: 60px;
  height: 3px;
  background: var(--text-dimmed);
  opacity: 0.2;
}

/* Glowing Pipeline (Animated properly) */
.glowing-pipeline {
  width: 80%;
  height: 3px;
  background: rgba(255,255,255,0.1);
  position: relative;
  border-radius: 2px;
  z-index: 1;
}

.pipeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-light) 0%, var(--accent-main) 100%);
  box-shadow: 0 0 20px rgba(18,155,245,0.6);
  border-radius: 2px;
  animation: flowProgress 4s ease-in-out infinite;
}

@keyframes flowProgress {
  0% { width: 0%; opacity: 1; }
  80% { width: 100%; opacity: 1; }
  90% { width: 100%; opacity: 0; }
  100% { width: 0%; opacity: 0; }
}

.pipeline-stage {
  position: absolute;
  top: -7px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pipeline-stage span {
  font-size: 0.85rem;
  color: var(--text-dimmed);
  position: absolute;
  top: -30px;
  white-space: nowrap;
}

.pipeline-stage .dot {
  width: 18px;
  height: 18px;
  background: var(--bg-color);
  border: 2px solid var(--text-dimmed);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Sequenced lighting animation */
.pipeline-stage.p-1 .dot { animation: lightUp 4s infinite; animation-delay: 0s; }
.pipeline-stage.p-2 .dot { animation: lightUp 4s infinite; animation-delay: 1.6s; }
.pipeline-stage.p-3 .dot { animation: lightUp 4s infinite; animation-delay: 3.2s; }

@keyframes lightUp {
  0%, 100% { 
    background: var(--bg-color); 
    border-color: var(--text-dimmed); 
    box-shadow: none; 
  }
  10%, 80% { 
    background: var(--accent-light); 
    border-color: var(--accent-light); 
    box-shadow: 0 0 15px var(--accent-light); 
  }
}

.pipeline-stage.p-1 span { animation: textLightUp 4s infinite; animation-delay: 0s; }
.pipeline-stage.p-2 span { animation: textLightUp 4s infinite; animation-delay: 1.6s; }
.pipeline-stage.p-3 span { animation: textLightUp 4s infinite; animation-delay: 3.2s; }

@keyframes textLightUp {
  0%, 100% { color: var(--text-dimmed); }
  10%, 80% { color: var(--text-primary); }
}

.mobile-break { display: none; }

/* RESPONSIVO */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card.bento-large, .bento-card.bento-small {
    flex-direction: column;
    height: auto;
  }
  .bento-visual-large {
    width: 100%;
    height: 160px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  .bento-visual {
    height: 140px;
  }
  .large-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .mobile-break { display: block; }
  .glowing-pipeline { width: 65%; }
  .bento-headline { font-size: 2rem; }
  .hero { padding: 100px 1.5rem 3rem; }
  .hero-headline { font-size: 3rem; }
  .bento-section { padding: 5rem 0; }
  .section-title { margin-bottom: 3rem; }
  .nav-container { padding: 0 1rem; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .btn-primary { width: 100%; justify-content: center; }
}

/* ========================================= */
/* SEÇÃO 3: O MÉTODO ÁPICE */
/* ========================================= */
.method-section {
  padding: 160px 0;
  position: relative;
}

.method-container {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.method-header {
  width: 30%;
  position: relative;
  height: 100%;
}

.sticky-content {
  position: sticky;
  top: 160px;
}

.method-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.method-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-dimmed);
}

.method-timeline-wrapper {
  width: 70%;
  position: relative;
  padding-left: 56px;
}

.timeline-line-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.timeline-line-progress {
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 0%;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent-main) 100%);
  box-shadow: 0 0 15px rgba(18,155,245,0.5);
  z-index: 2;
}

.method-phases {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 3;
}

.phase-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phase-node {
  position: absolute;
  left: -43px;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: var(--bg-color);
  transition: all 0.5s ease;
}

.phase-item.aos-animate .phase-node {
  border-color: var(--accent-light);
  background: var(--accent-light);
  box-shadow: 0 0 15px rgba(18,155,245,0.6);
}

.phase-number {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
}

.phase-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
}

.phase-text {
  font-size: 1.125rem;
  line-height: 1.6;
}

/* ========================================= */
/* SEÇÃO 4: PARA QUEM É */
/* ========================================= */
.target-section {
  padding: 140px 0;
  position: relative;
}

.target-container {
  display: flex;
  gap: 4rem;
}

.target-header {
  width: 40%;
}

.target-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  position: sticky;
  top: 140px;
}

.target-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.target-glass-card {
  padding: 32px;
  background: rgba(255,255,255,0.02);
  border-left: 2px solid transparent;
  border-radius: 0 16px 16px 0;
  transition: all 0.4s ease;
}

.target-glass-card p {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  transition: color 0.4s ease;
}

.target-glass-card:hover {
  background: rgba(255,255,255,0.04);
  border-left-color: rgba(18,155,245,0.3);
}

.target-glass-card:hover p {
  color: #FFFFFF;
}

/* ========================================= */
/* SEÇÃO 5: PROVA SOCIAL */
/* ========================================= */
.proof-section {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.proof-marquee-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
}

.track-left {
  animation: scrollLeft 40s linear infinite;
}

.track-right {
  animation: scrollRight 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  padding: 0 1rem;
}

.proof-card {
  width: 400px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.proof-card.img-card {
  padding: 12px;
  width: 360px;
  min-height: auto;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proof-card.img-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.proof-card.img-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.proof-text {
  font-size: 1.125rem;
  line-height: 1.6;
  font-style: italic;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.proof-author {
  display: flex;
  flex-direction: column;
}

.proof-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
}

.proof-role {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--accent-light);
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ========================================= */
/* SEÇÃO 6: FAQ */
/* ========================================= */
.faq-section {
  padding: 140px 0;
}

.faq-container {
  max-width: 800px;
}

.faq-main-title {
  margin-bottom: 4rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-bottom-color: rgba(18,155,245,0.4);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-left: 16px;
}

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

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  padding-top: 12px;
  padding-bottom: 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* ========================================= */
/* SEÇÃO 7: CTA FINAL */
/* ========================================= */
.cta-section {
  padding: 160px 0 100px;
  position: relative;
  text-align: center;
}

.cta-background-spotlight {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 600px;
  background: radial-gradient(ellipse at bottom, rgba(32,164,245,0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.btn-pulse {
  position: relative;
}

.btn-pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 12px;
  border: 2px solid rgba(32,164,245,0.4);
  opacity: 0;
  animation: btnPulse 2s infinite;
  pointer-events: none;
}

@keyframes btnPulse {
  0% { transform: scale(0.95); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0; }
}

/* RESPONSIVO COMPLEMENTAR PARA NOVAS SEÇÕES */
@media (max-width: 900px) {
  .target-container {
    flex-direction: column;
    gap: 2rem;
  }
  .target-header, .target-content {
    width: 100%;
  }
  .target-title {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .method-section, .target-section, .faq-section { padding: 80px 0; }
  .method-container {
    flex-direction: column;
    gap: 3rem;
  }
  .method-header {
    width: 100%;
  }
  .sticky-content {
    position: relative;
    top: 0;
  }
  .method-timeline-wrapper {
    width: 100%;
    padding-left: 40px;
  }
  .timeline-line-bg, .timeline-line-progress {
    left: 8px;
  }
  .phase-node {
    left: -39px;
  }
  .proof-card {
    width: 300px;
    padding: 24px;
  }
  .proof-card.img-card {
    width: 320px;
  }
  .target-item {
    padding: 1.5rem;
  }
  .cta-section {
    padding: 4rem 1rem;
  }
  .cta-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .proof-card { width: 280px; padding: 20px; }
  .proof-card.img-card { width: 280px; }
  .cta-title { font-size: 2rem; }
}

/* ========================================= */
/* LIGHTBOX MODAL */
/* ========================================= */
.lightbox-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(2, 19, 36, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

/* ========================================= */
/* FOOTER */
/* ========================================= */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer p {
  font-size: 0.875rem;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-links a {
  color: var(--text-dimmed);
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
}

.social-links a:hover {
  color: var(--accent-light);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
