﻿/* ================================================
   TELLA MARKETING DIGITAL — STYLE SYSTEM
   Ultra-modern dark/futuristic aesthetic
   ================================================ */

/* --- RESET & ROOT TOKENS --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color palette */
  --bg: #04050a;
  --bg-alt: #070a12;
  --cyan: #00FFD2;
  --blue: #0066FF;
  --neon-green: #39FF14;
  --white: #F0F6FF;
  --muted: #7A90B0;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(0, 255, 210, 0.12);
  --glass-glow: rgba(0, 255, 210, 0.06);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  /* Sizes */
  --nav-h: 76px;
  --radius-card: 20px;
  --radius-btn: 50px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================================
   GLOBAL PARTICLE CANVAS
   ============================================================ */
#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--neon-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary,
.btn-ghost,
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--bg);
  padding: 14px 32px;
  box-shadow: 0 0 30px rgba(0, 255, 210, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  box-shadow: 0 0 60px rgba(0, 255, 210, 0.5), 0 0 120px rgba(0, 102, 255, 0.2);
  transform: translateY(-2px);
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 255, 210, 0.15);
  transform: translateY(-2px);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 255, 210, 0.25);
  transition: all 0.3s var(--ease);
}

.btn-nav:hover {
  box-shadow: 0 0 40px rgba(0, 255, 210, 0.5);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.card-cta {
  color: var(--cyan);
  font-size: 0.9rem;
  padding: 10px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.card-cta:hover {
  border-bottom-color: var(--cyan);
  gap: 12px;
}

.card-cta-featured {
  color: var(--neon-green);
}

.card-cta-featured:hover {
  border-bottom-color: var(--neon-green);
}

/* ============================================================
   SECTION TAGS
   ============================================================ */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 16px;
  background: rgba(0, 255, 210, 0.07);
  border: 1px solid rgba(0, 255, 210, 0.2);
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

#navbar.scrolled {
  background: rgba(4, 5, 10, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0, 255, 210, 0.1);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 0;
}

.logo-t {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.logo-rest {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) 2rem 6rem;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_neural.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: -1;
  animation: heroShift 20s ease-in-out infinite alternate;
}

@keyframes heroShift {
  from {
    transform: scale(1) translateY(0);
  }

  to {
    transform: scale(1.06) translateY(-20px);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 40%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 255, 210, 0.08) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(4, 5, 10, 0.2) 0%, rgba(4, 5, 10, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease-spring) forwards;
}

#hero h1 {
  opacity: 0;
  animation: fadeUp 0.9s 0.4s var(--ease-spring) forwards;
}

.hero-sub {
  max-width: 600px;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease-spring) forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s var(--ease-spring) forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1s var(--ease-spring) forwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

.hero-stat .stat-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .stat-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(0, 255, 210, 0.3), transparent);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollLine 1.6s ease-in-out infinite;
}

.hero-scroll-hint p {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ============================================================
   PARTICLE DIVIDERS
   ============================================================ */
.particle-divider {
  position: relative;
  z-index: 1;
  line-height: 0;
  margin: -1px 0;
}

.particle-divider.flip {
  transform: scaleY(-1);
}

.particle-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ============================================================
   METODOLOGIA TELLA 360 — PILARES
   ============================================================ */
#servicos {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 7rem;
  background: rgba(5, 8, 20, 0.55);
}

/* 2x3 grid */
.pilares-grid {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pilar-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  cursor: default;
}

/* Top accent line animated on hover */
.pilar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.pilar-card:hover::before {
  transform: scaleX(1);
}

.pilar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 210, 0.08);
  border-color: rgba(0, 255, 210, 0.25);
}

/* Número accent */
.pilar-num {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(0, 255, 210, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.35s;
}

.pilar-card:hover .pilar-num {
  color: rgba(0, 255, 210, 0.12);
}

/* Ícone SVG */
.pilar-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 210, 0.07);
  border: 1px solid rgba(0, 255, 210, 0.15);
  border-radius: 14px;
  margin-bottom: 1.2rem;
  color: var(--cyan);
  transition: background 0.3s, box-shadow 0.3s;
}

.pilar-card:hover .pilar-icon {
  background: rgba(0, 255, 210, 0.13);
  box-shadow: 0 0 20px rgba(0, 255, 210, 0.15);
}

/* Título */
.pilar-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

/* Descrição */
.pilar-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Link "Como fazemos" — aparece no hover como gancho de curiosidade */
.pilar-lock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: transparent;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
  cursor: pointer;
}

.pilar-card:hover .pilar-lock,
.pilar-lock:focus {
  color: var(--cyan);
  border-color: var(--cyan);
}

/* CTA wrap abaixo da grade */
.pilares-cta-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--glass-bg);
  border: 1px solid rgba(0, 255, 210, 0.15);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
}

.pilares-cta-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 255, 210, 0.05), transparent 60%);
  pointer-events: none;
}

.pilares-cta-text {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 440px;
}

.pilares-cta-text strong {
  color: var(--white);
}

/* Responsive */
@media (max-width: 900px) {
  .pilares-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .pilares-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CHART UTILITIES (kept for data-streams / other uses)
   ============================================================ */
/* Horizontal bars */
.chart-bars.horizontal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: auto;
}

.h-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.h-bar-row>span {
  font-size: 0.72rem;
  color: var(--muted);
  width: 80px;
  flex-shrink: 0;
}

.h-bar {
  position: relative;
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  overflow: hidden;
}

.h-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 50px;
  animation: hBarFill 1.2s var(--ease-spring) both;
}

@keyframes hBarFill {
  from {
    width: 0;
  }

  to {
    width: var(--w);
  }
}

.h-bar span {
  position: absolute;
  right: 4px;
  top: -14px;
  font-size: 0.65rem;
  color: var(--cyan);
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.5rem;
}

.card-features li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}

.card-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

/* ============================================================
   BALCONISTA IA
   ============================================================ */
#balconista {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem;
  background: transparent;
}

.balconista-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.balconista-visual {
  position: relative;
}

.balconista-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.balconista-img-wrap img {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(0, 255, 210, 0.25));
}

/* Pulsing rings */
.bal-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--cyan);
  animation: ringPulse 3s ease-out infinite;
  z-index: 1;
}

.bal-ring-1 {
  width: 200px;
  height: 200px;
  animation-delay: 0s;
  opacity: 0.15;
}

.bal-ring-2 {
  width: 320px;
  height: 320px;
  animation-delay: 0.8s;
  opacity: 0.1;
}

.bal-ring-3 {
  width: 450px;
  height: 450px;
  animation-delay: 1.6s;
  opacity: 0.05;
}

@keyframes ringPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.3;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}

/* Data stream chips */
.data-streams {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.ds {
  position: absolute;
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 500;
  background: rgba(0, 10, 24, 0.85);
  border: 1px solid rgba(0, 255, 210, 0.3);
  color: var(--cyan);
  padding: 5px 10px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  animation: dsFloat 4s ease-in-out infinite;
}

.ds1 {
  top: 10%;
  left: -20%;
  animation-delay: 0s;
}

.ds2 {
  top: 30%;
  right: -18%;
  animation-delay: 0.7s;
}

.ds3 {
  bottom: 25%;
  left: -15%;
  animation-delay: 1.4s;
}

.ds4 {
  bottom: 10%;
  right: -12%;
  animation-delay: 2.1s;
}

@keyframes dsFloat {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

.balconista-content .section-sub {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  color: var(--muted);
}

/* Garante contraste do h2 em seções com fundo transparente */
#balconista h2,
#servicos h2,
#sobre h2,
#resultados h2,
#canais-digitais h2,
#contato h2 {
  color: var(--white);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 210, 0.07);
  border: 1px solid rgba(0, 255, 210, 0.15);
  border-radius: 12px;
}

.feature-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.88rem;
}

.bal-quote {
  position: relative;
  margin: 0 0 2.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--cyan);
  background: rgba(0, 255, 210, 0.04);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--neon-green);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.6;
}

.bal-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.6rem;
  left: 1rem;
  font-size: 3.5rem;
  color: var(--cyan);
  opacity: 0.2;
  font-family: var(--font-display);
  line-height: 1;
}


/* ============================================================
   CANAIS DIGITAIS (Infográfico Isométrico)
   ============================================================ */
#canais-digitais {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem 4rem;
  background: var(--bg);
  overflow: hidden;
}

#canais-digitais::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(57, 255, 20, 0.04), transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(0, 255, 210, 0.04), transparent 60%);
  pointer-events: none;
}

.canais-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: center;
}

/* ---- Info box (esquerda) ---- */
.canais-info-box {
  background: var(--glass-bg);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: var(--radius-card);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.canais-info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-green), transparent);
}

.canais-info-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-green);
  border: 1px solid rgba(57, 255, 20, 0.25);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.canais-info-question {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.canais-info-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.canais-info-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(57, 255, 20, 0.07);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.canais-info-pct {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--neon-green);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.canais-info-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.canais-fonte {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.75rem;
}

.canais-fonte strong {
  color: var(--white);
}

/* ---- Chart area (direita) ---- */
.canais-chart-wrap {
  width: 100%;
}

.canais-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.35;
  margin-bottom: 3rem;
  max-width: 560px;
}

.canais-chart {
  display: flex;
  align-items: flex-end;
  gap: 1.4rem;
  height: 260px;
  padding-bottom: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

/* ---- Coluna individual ---- */
.canal-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.canal-bar-wrap {
  width: 100%;
  /* --bar-val = px height */
  height: calc(var(--bar-val) * 1px);
  min-height: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* Isometric perspective */
  perspective: 600px;
}

/* 3D isometric bar */
.canal-bar {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: barRise 1.1s var(--ease-spring) both;
  transform-origin: bottom center;
}

@keyframes barRise {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Faces do paralelepípedo */
.canal-bar-front {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 255, 210, 0.6), rgba(0, 102, 255, 0.5));
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  border: 1px solid rgba(0, 255, 210, 0.3);
  border-bottom: none;
}

.canal-bar-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  background: rgba(0, 255, 210, 0.75);
  border-radius: 4px 4px 0 0;
  transform: skewX(-30deg) translateY(-10px);
  transform-origin: bottom;
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  z-index: 2;
}

.canal-bar-side {
  position: absolute;
  top: 0;
  right: -10px;
  width: 10px;
  height: 100%;
  background: rgba(0, 80, 180, 0.45);
  transform: skewY(-15deg) translateY(7px);
  transform-origin: top;
  border-radius: 0 4px 0 0;
  z-index: 1;
}

/* Destaque WhatsApp */
.canal-destaque .canal-bar-front {
  background: linear-gradient(to bottom, rgba(57, 255, 20, 0.85), rgba(0, 200, 100, 0.6));
  border-color: rgba(57, 255, 20, 0.5);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.canal-destaque .canal-bar-top {
  background: rgba(57, 255, 20, 0.9);
}

.canal-destaque .canal-bar-side {
  background: rgba(0, 140, 60, 0.5);
}

.canal-destaque .canal-pct {
  color: var(--bg);
  font-weight: 800;
}

.canal-pct {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Label abaixo */
.canal-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  text-align: center;
  transition: color 0.25s;
}

.canal-label svg {
  opacity: 0.7;
}

.canal-destaque .canal-label {
  color: var(--neon-green);
}

.canal-destaque .canal-label svg {
  opacity: 1;
  color: var(--neon-green);
}

/* Delay escalonado nas animações */
.canal-col:nth-child(1) .canal-bar {
  animation-delay: 0.1s;
}

.canal-col:nth-child(2) .canal-bar {
  animation-delay: 0.25s;
}

.canal-col:nth-child(3) .canal-bar {
  animation-delay: 0.4s;
}

.canal-col:nth-child(4) .canal-bar {
  animation-delay: 0.55s;
}

.canal-col:nth-child(5) .canal-bar {
  animation-delay: 0.7s;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .canais-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .canais-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }

  /* Use clip rect so bars don't escape above the chart area */
  .canais-chart-wrap {
    overflow: hidden;
    padding-top: 1rem;
    border-radius: 8px;
  }

  .canais-chart {
    height: 160px;
    gap: 0.6rem;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .canais-chart {
    gap: 0.4rem;
    height: 140px;
  }

  /* Hide floating pct labels on mobile — they overflow on top of the title */
  .canal-pct {
    display: none;
  }

  .canal-label {
    font-size: 0.6rem;
  }

  .canal-label svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================================
   RESULTS / SOCIAL PROOF
   ============================================================ */
#resultados {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem;
  background: rgba(5, 8, 20, 0.55);
}

.results-wrapper {
  max-width: 1200px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.brazil-map-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brazil-map-wrap img {
  width: 100%;
  max-width: 500px;
  opacity: 0.85;
  filter: drop-shadow(0 0 30px rgba(0, 255, 210, 0.2)) drop-shadow(0 0 60px rgba(0, 102, 255, 0.15));
  animation: mapFloat 6s ease-in-out infinite;
}

@keyframes mapFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Pulse dots on map */
.map-pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.map-pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  animation: pulseDot 2s ease-out infinite;
}

@keyframes pulseDot {
  from {
    transform: scale(0.5);
    opacity: 0.8;
  }

  to {
    transform: scale(2);
    opacity: 0;
  }
}

.mp1 {
  top: 30%;
  left: 42%;
  animation-delay: 0s;
}

.mp2 {
  top: 45%;
  left: 38%;
  animation-delay: 0.4s;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}

.mp2::after {
  border-color: var(--blue);
}

.mp3 {
  top: 55%;
  left: 55%;
  animation-delay: 0.8s;
}

.mp4 {
  top: 25%;
  left: 55%;
  animation-delay: 1.2s;
  background: var(--neon-green);
  box-shadow: 0 0 12px var(--neon-green);
}

.mp4::after {
  border-color: var(--neon-green);
}

.mp5 {
  top: 65%;
  left: 35%;
  animation-delay: 1.6s;
}

.counters-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.counter-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.counter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.counter-card:hover {
  border-color: rgba(0, 255, 210, 0.3);
  box-shadow: 0 10px 40px rgba(0, 255, 210, 0.07);
  transform: translateY(-4px);
}

.counter-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

.counter-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

.count-sfx {
  font-size: 1.4rem;
}

.counter-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ---- Testimonials Carousel ---- */
.testimonials-carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.test-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-card);
}

.test-track {
  display: flex;
  /* gap and transform set by JS */
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  /* width, flex-shrink, min-width set by JS carousel */
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.testimonial-card:hover {
  border-color: rgba(0, 255, 210, 0.25);
  box-shadow: 0 20px 60px rgba(0, 255, 210, 0.07);
}

.test-text {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.test-text::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--cyan);
  opacity: 0.15;
  line-height: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ---- Nav buttons & dots ---- */
.test-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.test-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 210, 0.25);
  background: var(--glass-bg);
  color: var(--cyan);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}

.test-btn:hover {
  background: rgba(0, 255, 210, 0.1);
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 255, 210, 0.2);
}

.test-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.test-dots {
  display: flex;
  gap: 0.5rem;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.test-dot.active {
  background: var(--cyan);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 255, 210, 0.5);
}

/* ---- Mobile: 1 card — gap overridden by JS ---- */
@media (max-width: 768px) {
  .test-track {
    gap: 0 !important;
  }
}


/* ============================================================
   SOBRE (DE DONO PARA DONO)
   ============================================================ */
#sobre {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem;
  background: rgba(5, 8, 20, 0.55);
}

.sobre-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-content h2 {
  margin-bottom: 1.5rem;
}

.sobre-lead {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.sobre-lead strong {
  color: var(--cyan);
}

.sobre-content>p {
  margin-bottom: 0.75rem;
}

.sobre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.pill {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(0, 255, 210, 0.06);
  border: 1px solid rgba(0, 255, 210, 0.2);
  border-radius: 50px;
  color: var(--white);
  transition: all 0.25s;
}

.pill:hover {
  background: rgba(0, 255, 210, 0.12);
  border-color: var(--cyan);
  color: var(--cyan);
}

.sobre-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Foto do Marcos ---- */
.marcos-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.marcos-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  display: block;
  border: 1px solid rgba(0, 255, 210, 0.18);
  box-shadow:
    0 0 60px rgba(0, 255, 210, 0.1),
    0 24px 60px rgba(0, 0, 0, 0.6);
}

/* Badge flutuante */
.marcos-badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid rgba(0, 255, 210, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 100px;
  padding: 0.6rem 1.2rem 0.6rem 0.8rem;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.marcos-badge-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.marcos-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.marcos-badge span {
  font-size: 0.72rem;
  color: var(--cyan);
  line-height: 1;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .marcos-photo {
    aspect-ratio: 4 / 3;
  }

  .marcos-badge {
    font-size: 0.8rem;
  }
}


/* ============================================================
   INVESTIMENTO
   ============================================================ */
#investimento {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem;
  background: transparent;
}

.invest-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.invest-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  backdrop-filter: blur(16px);
  transition: border-color 0.3s;
}

.invest-main {
  border-color: rgba(0, 255, 210, 0.25);
  background: linear-gradient(135deg, rgba(0, 255, 210, 0.05), rgba(0, 102, 255, 0.03));
  position: relative;
  overflow: hidden;
}

.invest-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.invest-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  border: 1px solid rgba(0, 255, 210, 0.25);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.invest-tag-blue {
  color: var(--blue);
  border-color: rgba(0, 102, 255, 0.3);
}

.invest-tag-green {
  color: var(--neon-green);
  border-color: rgba(57, 255, 20, 0.3);
}

.invest-sub {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.invest-sub strong {
  color: var(--white);
}

.invest-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 1.5rem 0;
}

.invest-currency {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cyan);
}

.invest-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

.invest-period {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
}

.invest-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
}

.invest-list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 0.25rem;
}

.invest-list li::first-letter {
  color: var(--cyan);
  font-weight: 700;
}

.invest-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.invest-note strong {
  color: var(--cyan);
}

.invest-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.invest-midia-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.midia-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem;
}

.midia-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.midia-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.midia-item span {
  font-size: 0.82rem;
  color: var(--muted);
}

.midia-item em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
}

.invest-flexible {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(0, 255, 210, 0.04);
  border: 1px solid rgba(0, 255, 210, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.invest-flexible span {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.invest-flexible p {
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

.invest-flexible p strong {
  color: var(--cyan);
}

.invest-garantia {
  border-color: rgba(57, 255, 20, 0.15);
}

.garantia-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neon-green);
  background: rgba(57, 255, 20, 0.07);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 50px;
  padding: 6px 14px;
  margin-top: 1rem;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}

.test-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.test-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   CTA WHATSAPP
   ============================================================ */
#contato {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem;
  overflow: hidden;
  background: transparent;
}

.cta-wa-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* Background glow dramático */
.cta-wa-bg {
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(57, 255, 20, 0.12), transparent 55%),
    radial-gradient(ellipse at 30% 40%, rgba(0, 255, 210, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.cta-wa-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-wa-content .section-tag {
  margin-bottom: 0;
}

.cta-wa-content h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  max-width: 700px;
}

.cta-wa-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* Botão WhatsApp */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25d366, #128c48);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.1rem 2.4rem;
  border-radius: 100px;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.3), 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Pulso animado */
.btn-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  background: rgba(37, 211, 102, 0.25);
  animation: waPulse 2.2s ease-in-out infinite;
  z-index: -1;
}

@keyframes waPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.08);
    opacity: 0;
  }
}

.btn-wa:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 60px rgba(37, 211, 102, 0.45), 0 16px 40px rgba(0, 0, 0, 0.5);
}

.btn-wa:active {
  transform: translateY(-1px) scale(0.99);
}

.cta-wa-note {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}


/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #020305;
  border-top: 1px solid rgba(0, 255, 210, 0.08);
  padding: 5rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
  margin-top: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.25s;
}

.social-links a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 255, 210, 0.2);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(122, 144, 176, 0.5);
}

/* ============================================================
   ANIMATIONS - shared
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-spring), transform 0.9s var(--ease-spring);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-spring), transform 0.9s var(--ease-spring);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .balconista-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .results-wrapper {
    grid-template-columns: 1fr;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .invest-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr 1fr;
  }

  @supports (display: grid) {
    .testimonials {
      grid-template-columns: 1fr 1fr;
    }

    .testimonials .testimonial-card:nth-child(n) {
      grid-column: auto;
    }
  }

  .balconista-visual {
    order: -1;
  }

  .ds1,
  .ds2,
  .ds3,
  .ds4 {
    font-size: 0.62rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(4, 5, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 210, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  @supports (display: grid) {
    .testimonials {
      grid-template-columns: 1fr;
    }

    .testimonials .testimonial-card:nth-child(n) {
      grid-column: auto;
    }
  }

  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .invest-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-divider {
    height: 40px;
  }

  .counters-col {
    grid-template-columns: 1fr 1fr;
  }

  .ds1,
  .ds2,
  .ds3,
  .ds4 {
    display: none;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .counters-col {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 255, 210, 0.3), transparent);
  }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--cyan), var(--blue));
  border-radius: 3px;
}

/* ============================================================
   CLIENTES — Logo Marquee / Ticker
   ============================================================ */
#clientes {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
  background: rgba(5, 8, 20, 0.55);
  overflow: hidden;
}

#clientes .section-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  text-align: center;
}

/* Fade edges */
.logos-marquee-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logos-marquee-wrap::before,
.logos-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.logos-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.logos-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

/* Infinite scroll animation via CSS */
.logos-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: logoScroll 32s linear infinite;
}

.logos-marquee-wrap:hover .logos-track {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.logo-item:hover {
  border-color: rgba(0, 255, 210, 0.3);
  box-shadow: 0 0 24px rgba(0, 255, 210, 0.1);
  transform: translateY(-3px);
}

.logo-item img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8);
  opacity: 0.75;
  transition: filter 0.3s, opacity 0.3s;
}

.logo-item:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

@media (max-width: 768px) {
  .logo-item {
    width: 120px;
    height: 64px;
  }

  .logo-item img {
    max-height: 42px;
  }

  .logos-marquee-wrap::before,
  .logos-marquee-wrap::after {
    width: 60px;
  }
}




/* ---- Logo image (nav + footer) ---- */
.nav-logo-img,
.footer-logo-img {
  display: block;
  width: auto;
  object-fit: contain;
  /* preserve legibility on dark bg */
  filter: brightness(1) drop-shadow(0 0 0 transparent);
  transition: opacity 0.2s;
}

.nav-logo:hover .nav-logo-img,
.nav-logo:hover .footer-logo-img {
  opacity: 0.85;
}