/* ══════════════════════════════════════════════
   MAIA FOR BUSINESS — V2 IMMERSIVE
   Design interativo, bento grid, scroll animations
   ══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ── Variables ── */
:root {
  --bg: #050508;
  --bg-card: #0c0c12;
  --bg-card-hover: #111118;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(78,205,196,0.2);

  --teal: #4ecdc4;
  --teal-dim: #3ba99c;
  --teal-glow: rgba(78,205,196,0.15);
  --teal-glow-strong: rgba(78,205,196,0.4);
  --coral: #ff6b6b;
  --green: #25d366;

  --text-1: #f0f0f0;
  --text-2: #8a8a9a;
  --text-3: #55556a;

  --font-h: 'Outfit', system-ui, sans-serif;
  --font-b: 'Plus Jakarta Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), #c084fc);
  z-index: 9999;
  width: 0%;
  transition: none;
}

/* ── Mouse glow ── */
.mouse-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

body:hover .mouse-glow { opacity: 1; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; position: relative; }

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.15; }
h1 { font-size: clamp(32px, 6vw, 64px); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(26px, 4vw, 48px); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(18px, 2.5vw, 28px); font-weight: 600; }
p { color: var(--text-2); line-height: 1.75; }
strong { color: var(--text-1); }

.text-gradient {
  background: linear-gradient(135deg, var(--teal) 0%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 16px;
}

.label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--teal);
}

/* ── Animations base ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal[data-d="1"] { transition-delay: 0.1s; }
.reveal[data-d="2"] { transition-delay: 0.2s; }
.reveal[data-d="3"] { transition-delay: 0.3s; }
.reveal[data-d="4"] { transition-delay: 0.4s; }
.reveal[data-d="5"] { transition-delay: 0.5s; }
.reveal[data-d="6"] { transition-delay: 0.6s; }

/* ── CTA ── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.cta--primary {
  background: var(--teal);
  color: var(--bg);
}

.cta--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta--primary:hover::before { opacity: 1; }
.cta--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--teal-glow-strong); }

.cta--outline {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border);
}

.cta--outline:hover { border-color: var(--teal); color: var(--teal); }

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

.cta:hover .cta-arrow { transform: translateX(4px); }

@media (max-width: 767px) {
  .cta { width: 100%; justify-content: center; padding: 16px 24px; }
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0 24px;
}

#header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

#header.scrolled {
  background: rgba(5,5,8,0.8);
  backdrop-filter: blur(20px) saturate(1.5);
}

#header.scrolled .header-inner {
  border-bottom-color: var(--border);
}

.header-logo { display: flex; align-items: center; gap: 12px; }
.header-logo img { height: 28px; }
.header-logo-text {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ══════════════════════════════════════
   HERO — Split layout
   ══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-bg-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--teal-glow);
  top: 10%;
  right: -10%;
}

.hero-bg-orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(192,132,252,0.1);
  bottom: 10%;
  left: -5%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1025px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(78,205,196,0.08);
  border: 1px solid rgba(78,205,196,0.15);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 24px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-h1 { margin-bottom: 24px; }
.hero-sub { font-size: 17px; margin-bottom: 32px; max-width: 520px; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-3);
}


/* ══════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════ */
#marquee {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}

.marquee-track span {
  font-family: var(--font-h);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255,255,255,0.04);
  padding: 0 20px;
  flex-shrink: 0;
}

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

/* ══════════════════════════════════════
   PROCESSO — Horizontal scroll cards
   ══════════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.step-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.step-card::before {
  content: attr(data-num);
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: var(--font-h);
  font-size: 140px;
  font-weight: 900;
  color: rgba(78,205,196,0.04);
  line-height: 1;
  pointer-events: none;
}

.step-card-num {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 800;
  color: var(--bg);
  background: var(--teal);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* ══════════════════════════════════════
   PROBLEMAS — Cards with animated border
   ══════════════════════════════════════ */
/* ── Problems — 3 column layout ── */
.problems-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .problems-cols { grid-template-columns: repeat(3, 1fr); }
}

.problem-col {
  text-align: center;
}

.problem-col-tag {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 24px;
}

.problem-col-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  height: 160px;
}

.problem-col-icon svg {
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 0 30px rgba(255,107,107,0.2));
}

.problem-col-items {
  text-align: left;
}

.problem-bullet {
  display: flex;
  gap: 10px;
  color: var(--text-2);
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.65;
}

.problem-bullet:last-child { margin-bottom: 0; }

.problem-x {
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 15px;
}

.quote-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.quote-text {
  font-family: var(--font-h);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  color: var(--text-1);
  position: relative;
}

.quote-mark {
  color: var(--teal);
  opacity: 0.3;
  font-size: 1.5em;
  font-style: normal;
}

.transition-text {
  text-align: center;
  max-width: 660px;
  margin: 48px auto 0;
}

.transition-text p + p { margin-top: 14px; }

/* ══════════════════════════════════════
   CREDIBILIDADE
   ══════════════════════════════════════ */
.cred-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.85;
}

.cred-text p + p { margin-top: 20px; }

/* ══════════════════════════════════════
   BENEFÍCIOS — Bento Grid
   ══════════════════════════════════════ */
.bento-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.bento-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .bento-item { flex-direction: column; }
}

.bento-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.bento-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-glow-strong), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-item:hover::before { opacity: 1; }

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(78,205,196,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.bento-title {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-copy { font-size: 15px; color: var(--text-2); line-height: 1.65; }

/* ══════════════════════════════════════
   MÉTODO — Timeline horizontal
   ══════════════════════════════════════ */
/* ── Quote box (Tallis Gomes) ── */
.quote-box {
  max-width: 760px;
  margin: 0 auto 48px;
}

.quote-box-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.quote-box-photo {
  flex-shrink: 0;
}

.quote-box-photo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
}

.quote-box-text {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-1);
  margin-bottom: 8px;
}

.quote-box-author {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 600;
}

@media (max-width: 767px) {
  .quote-box-inner {
    flex-direction: column;
    text-align: center;
  }
}

.method-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.method-intro p + p { margin-top: 14px; }

.h-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .h-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.ht-step {
  position: relative;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .ht-step { padding-top: 48px; }

  /* Horizontal line */
  .h-timeline::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), #c084fc);
    opacity: 0.3;
  }

  .ht-step::before {
    content: attr(data-step);
    position: absolute;
    top: 0;
    left: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--teal);
    color: var(--teal);
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
}

.ht-num {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 8px;
}

@media (min-width: 768px) { .ht-num { display: none; } }

.ht-title {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
}

.ht-items { display: flex; flex-direction: column; gap: 6px; }

.ht-item {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}

.ht-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.5;
}

/* ══════════════════════════════════════
   PLATAFORMA
   ══════════════════════════════════════ */
.platform-section {
  background: linear-gradient(180deg, var(--bg) 0%, #0a0a14 100%);
}

.platform-text {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.platform-text p + p { margin-top: 14px; }

.platform-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .platform-features { grid-template-columns: repeat(3, 1fr); }
}

.pf-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.pf-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.pf-icon { font-size: 36px; margin-bottom: 16px; }
.pf-title { font-family: var(--font-h); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pf-copy { font-size: 14px; color: var(--text-2); line-height: 1.65; }

.platform-closing {
  text-align: center;
  font-family: var(--font-h);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin-top: 48px;
}

/* ══════════════════════════════════════
   DADOS — Big number counters
   ══════════════════════════════════════ */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .data-grid { grid-template-columns: repeat(4, 1fr); }
  .data-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.data-item {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.4s var(--ease);
}

.data-item:hover { border-color: var(--border-hover); }

.data-num {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}

.data-desc { font-size: 13px; color: var(--text-2); line-height: 1.55; }

/* ══════════════════════════════════════
   DEPOIMENTOS — Stacked cards
   ══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.4s var(--ease);
}

.test-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.test-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }

.test-text {
  font-size: 15px;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.test-author { display: flex; align-items: center; gap: 12px; }

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), #c084fc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--bg);
}

.test-name { font-weight: 700; font-size: 14px; }
.test-role { font-size: 12px; color: var(--text-3); }

/* ══════════════════════════════════════
   QUALIFICAÇÃO — Side by side
   ══════════════════════════════════════ */
.qual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.qual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.qual-card--yes { border-color: rgba(37,211,102,0.2); }
.qual-card--no { border-color: rgba(255,107,107,0.2); }

.qual-head {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.qual-card--yes .qual-head { color: var(--green); }
.qual-card--no .qual-head { color: var(--coral); }

.qual-item {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}

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

.qual-card--yes .qual-item::before { content: '→'; color: var(--green); flex-shrink: 0; }
.qual-card--no .qual-item::before { content: '→'; color: var(--coral); flex-shrink: 0; }

/* ══════════════════════════════════════
   ENTREGAS
   ══════════════════════════════════════ */
.delivery-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.delivery-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  transition: all 0.3s var(--ease);
}

.delivery-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.delivery-check {
  color: var(--teal);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════
   GARANTIA — Gradient border card
   ══════════════════════════════════════ */
.guarantee-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--teal), #c084fc);
}

.guarantee-inner {
  background: var(--bg-card);
  border-radius: 22px;
  padding: 48px 36px;
  text-align: center;
}

.guarantee-icon { font-size: 48px; margin-bottom: 20px; }
.guarantee-title { margin-bottom: 24px; }
.guarantee-text { color: var(--text-2); line-height: 1.75; font-size: 16px; }
.guarantee-text p + p { margin-top: 14px; }

/* ══════════════════════════════════════
   SOBRE — Counters
   ══════════════════════════════════════ */
.about-text {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.about-text p + p { margin-top: 16px; }

.counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .counters { grid-template-columns: repeat(3, 1fr); }
}

.counter-box {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.counter-val {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
}

.counter-label { font-size: 13px; color: var(--text-3); margin-top: 4px; }

/* ══════════════════════════════════════
   LOGOS
   ══════════════════════════════════════ */
.logos-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.logo-box {
  width: 120px;
  height: 52px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-3);
  flex-shrink: 0;
  margin: 0 12px;
  transition: all 0.3s ease;
}

.logo-box:hover { border-color: var(--border-hover); color: var(--text-2); }

/* ══════════════════════════════════════
   FAQ — Modern accordion
   ══════════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover { border-color: rgba(255,255,255,0.1); }
.faq-item.active { border-color: var(--border-hover); }

.faq-q {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text-1);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(78,205,196,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--teal);
  font-size: 18px;
}

.faq-item.active .faq-icon {
  background: var(--teal);
  color: var(--bg);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a-inner {
  padding: 0 24px 20px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════ */
#cta-final {
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-final-notes {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--text-3);
}

.cta-final-notes span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
#footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 6px; }
.footer-logo img { height: 22px; }
.footer-tag { color: var(--text-3); font-size: 13px; margin-bottom: 20px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 14px; }
.footer-links a { color: var(--text-3); font-size: 13px; transition: color 0.3s; }
.footer-links a:hover { color: var(--teal); }
.footer-legal { color: var(--text-3); font-size: 12px; line-height: 1.6; }

/* ══════════════════════════════════════
   SECTION HEADERS — Centered
   ══════════════════════════════════════ */
.sec-header {
  text-align: center;
  margin-bottom: 48px;
}

.sec-header h2 { margin-bottom: 12px; }
.sec-header p { max-width: 600px; margin: 0 auto; }

.cta-row {
  text-align: center;
  margin-top: 48px;
}

/* ══════════════════════════════════════
   MODAL DIAGNÓSTICO
   ══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #111113;
  border-radius: 0;
  padding: 48px 40px;
  max-width: 540px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease);
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--text-3);
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--text-1);
}

.modal-logo {
  text-align: center;
  margin-bottom: 32px;
}

.modal-logo img {
  height: 56px;
  margin: 0 auto;
}

.modal-title {
  font-family: var(--font-h);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-1);
}

.modal-highlight {
  color: var(--teal);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-form input,
.modal-form select {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 0;
  padding: 18px 20px;
  color: var(--text-1);
  font-family: var(--font-b);
  font-size: 16px;
  transition: border-color 0.3s ease;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.modal-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%238a8a9a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.modal-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.modal-form input:focus,
.modal-form select:focus {
  border-color: var(--teal);
}

.modal-submit {
  margin-top: 6px;
  width: 100%;
  padding: 20px;
  background: #b9ff66;
  color: #000;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.modal-submit:hover {
  background: #a8f050;
  transform: translateY(-2px);
}

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

.modal-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #b9ff66;
  color: #000;
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-success h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-success p {
  color: var(--text-2);
  font-size: 15px;
}

@media (max-width: 480px) {
  .modal-box {
    padding: 36px 20px;
  }
}
