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

:root {
  --blue: #00c6ff;
  --cyan: #00f5d4;
  --dark: #050a14;
  --dark2: #0a1528;
  --gray: #8fa3bf;
  --white: #f0f8ff
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--dark)
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 4px
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  transition: background .4s
}

nav.scrolled {
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 198, 255, 0.12);
  padding: 14px 60px; /* Encolhe levemente ao rolar */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
  nav.scrolled {
    padding: 12px 20px;
  }
}

/* Remove o estilo antigo de texto e coloca a imagem */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  /* altura da logo — ajuste conforme o arquivo */
  width: auto;
  object-fit: contain;
  display: block;
  /* filtro para dar o brilho neon azul igual ao estilo da página */
  filter: brightness(1) drop-shadow(0 0 8px rgba(0, 198, 255, 0.5));
  transition: filter 0.3s, transform 0.3s;
}

.logo-img:hover {
  filter: brightness(1.1) drop-shadow(0 0 14px rgba(0, 198, 255, 0.8));
  transform: scale(1.03);
}

/* Quando o nav scrollar e ficar escuro, a logo mantém visibilidade */
nav.scrolled .logo-img {
  filter: brightness(1) drop-shadow(0 0 10px rgba(0, 198, 255, 0.6));
}

/* Mobile: logo um pouco menor */
@media (max-width: 900px) {
  .logo-img {
    height: 36px;
  }
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .3s
}

.nav-links a:hover {
  color: var(--blue)
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: none;
  color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 10px 28px;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: opacity .3s, transform .3s;
  text-transform: uppercase
}

.nav-cta:hover {
  opacity: .85;
  transform: scale(1.04)
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 198, 255, .12) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 245, 212, .08) 0%, transparent 60%), var(--dark)
}

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

.orb1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 198, 255, .12);
  top: -100px;
  left: -100px
}

.orb2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 245, 212, .08);
  bottom: -80px;
  right: -80px;
  animation-delay: -3s
}

.orb3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 100, 255, .08);
  top: 50%;
  right: 20%;
  animation-delay: -5s
}

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

  33% {
    transform: translate(30px, -40px) scale(1.05)
  }

  66% {
    transform: translate(-20px, 20px) scale(.97)
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 198, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 198, 255, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, .6) 0%, transparent 75%)
}

.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  animation: particleDrift linear infinite;
  opacity: 0
}

@keyframes particleDrift {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0
  }

  10% {
    opacity: .6
  }

  90% {
    opacity: .4
  }

  100% {
    transform: translateY(-10vh) translateX(60px);
    opacity: 0
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  padding: 120px 60px 80px
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s .3s forwards
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--blue)
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 10vw, 120px);
  line-height: .9;
  letter-spacing: -2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp .8s .5s forwards
}

.hero-title .line-accent {
  /* display: block; */
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-subtitle {
  margin-top: 28px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
  max-width: 440px;
  opacity: 0;
  animation: fadeUp .8s .7s forwards
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp .8s .9s forwards
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: none;
  color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 3px;
  padding: 16px 40px;
  cursor: pointer;
  text-transform: uppercase;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .2);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform .4s
}

.btn-primary:hover::before {
  transform: translateX(150%) skewX(-15deg)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 198, 255, .4)
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(0, 198, 255, .3);
  color: var(--blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 3px;
  padding: 15px 36px;
  cursor: pointer;
  text-transform: uppercase;
  transition: border-color .3s, background .3s;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--blue);
  background: rgba(0, 198, 255, .08)
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s .6s forwards
}

.can-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center
}

.neon-ring {
  position: absolute;
  width: 220px;
  height: 400px;
  border-radius: 50% / 20%;
  pointer-events: none;
  z-index: 6
}

.neon-ring::before, .neon-ring::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid transparent
}

.neon-ring::before {
  border-color: rgba(0, 198, 255, .9);
  box-shadow: 0 0 8px 2px rgba(0, 198, 255, .8), 0 0 20px 6px rgba(0, 198, 255, .5), 0 0 50px 15px rgba(0, 198, 255, .25), inset 0 0 20px rgba(0, 198, 255, .1);
  animation: neonFlicker 3s ease-in-out infinite
}

.neon-ring::after {
  inset: -16px;
  border-color: rgba(0, 245, 212, .4);
  box-shadow: 0 0 30px 10px rgba(0, 245, 212, .2), 0 0 80px 30px rgba(0, 198, 255, .1);
  animation: neonFlicker 3s ease-in-out infinite reverse
}

@keyframes neonFlicker {
  0%, 100% {
    opacity: 1
  }

  92% {
    opacity: 1
  }

  93% {
    opacity: .6
  }

  94% {
    opacity: 1
  }

  96% {
    opacity: .7
  }

  97% {
    opacity: 1
  }
}

.neon-floor {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0, 198, 255, .5) 0%, transparent 70%);
  filter: blur(8px);
  animation: neonFlicker 3s ease-in-out infinite;
  z-index: 4
}

.can-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 198, 255, .2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 3s ease-in-out infinite
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: .8
  }

  50% {
    transform: scale(1.15);
    opacity: 1
  }
}

.can-ring {
  position: absolute;
  border: 1px solid rgba(0, 198, 255, .12);
  border-radius: 50%;
  animation: expandRing 3s ease-out infinite
}

.can-ring:nth-child(1) {
  width: 320px;
  height: 320px;
  animation-delay: 0s
}

.can-ring:nth-child(2) {
  width: 420px;
  height: 420px;
  animation-delay: 1s
}

.can-ring:nth-child(3) {
  width: 520px;
  height: 520px;
  animation-delay: 2s
}

@keyframes expandRing {
  0% {
    opacity: .5;
    transform: scale(.9)
  }

  100% {
    opacity: 0;
    transform: scale(1.1)
  }
}

.can-placeholder {
  position: relative;
  z-index: 5;
  animation: floatCan 4s ease-in-out infinite
}

@keyframes floatCan {
  0%, 100% {
    transform: translateY(0) rotate(-2deg)
  }

  50% {
    transform: translateY(-20px) rotate(2deg)
  }
}

.can-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 60px rgba(0, 198, 255, .6)) drop-shadow(0 0 20px rgba(0, 198, 255, .4))
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 60px;
  right: 60px;
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: fadeUp .8s 1.2s forwards
}

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

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1
}

.stat-number span {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 198, 255, .2);
  align-self: center
}

section {
  position: relative;
  overflow: hidden
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--blue)
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 6vw, 60px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1px
}

#benefits {
  padding: 120px 60px;
  background: var(--dark2)
}

.benefits-header {
  text-align: center;
  margin-bottom: 80px
}

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

.benefit-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(0, 198, 255, .08);
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: border-color .4s, transform .4s, background .4s;
  cursor: default
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s
}

.benefit-card:hover {
  border-color: rgba(0, 198, 255, .25);
  background: rgba(0, 198, 255, .04);
  transform: translateY(-4px)
}

.benefit-card:hover::before {
  transform: scaleX(1)
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block
}

.benefit-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--white)
}

.benefit-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300
}

.benefit-card.featured {
  background: linear-gradient(135deg, rgba(0, 198, 255, .08), rgba(0, 245, 212, .04));
  border-color: rgba(0, 198, 255, .2);
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.benefit-card.featured::before {
  transform: scaleX(1)
}

#parallax-strip {
  height: 400px;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.parallax-bg {
  position: absolute;
  inset: -100px;
  background: radial-gradient(ellipse 100% 60% at 30% 50%, rgba(0, 198, 255, .15) 0%, transparent 60%), radial-gradient(ellipse 80% 60% at 80% 50%, rgba(0, 245, 212, .1) 0%, transparent 60%), var(--dark);
  will-change: transform
}

.parallax-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 40px
}

.parallax-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.0
}

.parallax-quote em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.marquee-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 198, 255, .1);
  padding: 14px 0;
  background: rgba(0, 0, 0, .3)
}

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

.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0, 198, 255, .5);
  padding: 0 40px;
  flex-shrink: 0
}

.marquee-item span {
  color: var(--cyan);
  margin: 0 8px
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

#testimonials {
  padding: 120px 60px;
  background: var(--dark)
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto
}

.testimonial-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(0, 198, 255, .08);
  padding: 36px;
  position: relative;
  transition: border-color .3s, transform .3s
}

.testimonial-card:hover {
  border-color: rgba(0, 198, 255, .2);
  transform: translateY(-4px)
}

.testimonial-quote-icon {
  font-size: 48px;
  line-height: 1;
  color: var(--blue);
  opacity: .3;
  font-family: Georgia, serif;
  margin-bottom: 16px;
  display: block
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 28px;
  font-style: italic
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
  flex-shrink: 0
}

.author-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white)
}

.author-role {
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px
}

.star {
  color: var(--cyan);
  font-size: 14px
}

#cta {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0
}

.sky-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../images/bg-skywalk.jpg') center/cover no-repeat;
  opacity: .6;
}

.stars-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden
}

.star-dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: starTwinkle ease-in-out infinite
}

@keyframes starTwinkle {
  0%, 100% {
    opacity: .15;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.5)
  }
}

.sky-cloud {
  position: absolute;
  border-radius: 60px;
  background: rgba(255, 255, 255, .055);
  filter: blur(22px);
  z-index: 2;
  animation: cloudDrift linear infinite
}

@keyframes cloudDrift {
  0% {
    transform: translateX(-300px)
  }

  100% {
    transform: translateX(calc(100vw + 300px))
  }
}

.sky-horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(0deg, rgba(0, 198, 255, .18) 0%, rgba(0, 198, 255, .05) 45%, transparent 100%);
  z-index: 2;
  filter: blur(10px)
}

.hang-glider-wrap {
  position: absolute;
  z-index: 10;
  top: 18%;
  animation: gliderFly 20s linear infinite
}

@keyframes gliderFly {
  0% {
    left: -220px;
    transform: translateY(0) rotate(-3deg)
  }

  15% {
    transform: translateY(-28px) rotate(-1deg)
  }

  35% {
    transform: translateY(12px) rotate(-4deg)
  }

  55% {
    transform: translateY(-18px) rotate(-2deg)
  }

  75% {
    transform: translateY(6px) rotate(-3deg)
  }

  100% {
    left: calc(100% + 220px);
    transform: translateY(-10px) rotate(-2deg)
  }
}

.hang-glider-wrap-2 {
  position: absolute;
  z-index: 9;
  top: 44%;
  animation: gliderFly2 32s linear infinite;
  animation-delay: -16s
}

@keyframes gliderFly2 {
  0% {
    left: -150px;
    transform: translateY(0) rotate(-2deg) scale(.55);
    opacity: .55
  }

  50% {
    transform: translateY(-14px) rotate(-3deg) scale(.55);
    opacity: .55
  }

  100% {
    left: calc(100% + 150px);
    transform: translateY(4px) rotate(-1deg) scale(.55);
    opacity: .55
  }
}

.glider-svg {
  width: 210px;
  filter: drop-shadow(0 4px 18px rgba(0, 198, 255, .65)) drop-shadow(0 0 38px rgba(0, 198, 255, .3))
}

.glider-trail {
  position: absolute;
  top: 48%;
  right: 100%;
  height: 2px;
  width: 90px;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 212, .55));
  border-radius: 2px;
  transform: translateY(-50%)
}

.cta-inner {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 140px 60px;
  width: 100%
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px
}

.cta-label::before, .cta-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--blue)
}

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 8vw, 90px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 28px
}

.cta-title .accent {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, .7);
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.7
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap
}

.btn-large {
  padding: 20px 56px;
  font-size: 18px;
  letter-spacing: 4px
}

footer {
  background: #02060f;
  border-top: 1px solid rgba(0, 198, 255, .08);
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 4px;
  background: linear-gradient(90deg, #fff, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 4px
}

.footer-brand {
  font-size: 13px;
  color: var(--gray)
}

.footer-brand strong {
  color: var(--blue)
}

.footer-right {
  text-align: right
}

/* ══════════════════════════════
   SUB-FOOTER SOCIAL
══════════════════════════════ */
#sub-footer {
  background: linear-gradient(135deg, #008691, #00d2f4);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

#sub-footer i{
  font-size: 28px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background .3s, transform .3s, box-shadow .3s;
}

.social-link:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s, transform .7s
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@media(max-width:900px) {
  nav {
    padding: 16px 24px
  }

  .nav-links {
    display: none
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 100px 24px 80px;
    text-align: center
  }

  .hero-text {
    order: 2
  }

  .hero-visual {
    order: 1
  }

  .hero-subtitle {
    margin: 20px auto 0
  }

  .hero-actions {
    justify-content: center
  }

  .hero-stats {
    position: static;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap
  }

  .benefits-grid {
    grid-template-columns: 1fr
  }

  .benefit-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }

  #benefits, #parallax-strip, #testimonials {
    padding: 80px 24px
  }
  /* ── BENEFIT ICON ── */
.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 198, 255, 0.08);
  border: 1px solid rgba(0, 198, 255, 0.2);
  margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.benefit-icon i {
  font-size: 22px;
  color: var(--blue);
  filter: drop-shadow(0 0 6px rgba(0, 198, 255, 0.6));
  transition: transform 0.3s, filter 0.3s;
}

/* Hover no card acende o ícone */
.benefit-card:hover .benefit-icon {
  background: rgba(0, 198, 255, 0.14);
  border-color: rgba(0, 198, 255, 0.5);
  transform: scale(1.05);
}

.benefit-card:hover .benefit-icon i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.9));
}

/* Card featured — ícones dos dois blocos internos */
.benefit-card.featured .benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

.benefit-card.featured .benefit-icon i {
  font-size: 18px;
}

  .cta-inner {
    padding: 80px 24px
  }

  .glider-svg {
    width: 130px
  }

  footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 40px 24px
  }

  .footer-right {
    text-align: center
  }
}

.counters-section {
  position: relative;
  z-index: 10;
  width: 100%;
  background: rgba(5, 10, 20, 0.7);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 198, 255, 0.1);
  border-bottom: 1px solid rgba(0, 198, 255, 0.1);
  padding: 48px 60px;
  display: flex;
  justify-content: center;
  gap: 0;
}

.counter-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  position: relative;
}

.counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(0, 198, 255, 0.15);
}

/* SVG ring */
.ring-wrap {
  position: relative;
  width: 210px;
  height: 210px;
  flex-shrink: 0;
}

.ring-svg {
  width: 210px;
  height: 210px;
  transform: rotate(-90deg);
}

/* Trilha de fundo */
.ring-track {
  fill: none;
  stroke: rgba(0, 198, 255, 0.08);
  stroke-width: 5;
}

/* Arco animado */
.ring-fill {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 283;
  /* 2π × r = 2π × 45 ≈ 283 */
  stroke-dashoffset: 283;
  /* começa invisível */
  transition: stroke-dashoffset 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ring-fill.blue {
  stroke: url(#ringGradBlue);
}

.ring-fill.cyan {
  stroke: url(#ringGradCyan);
}

.ring-fill.white {
  stroke: url(#ringGradWhite);
}

.ring-fill.multi {
  stroke: url(#ringGradMulti);
}

/* Glow no arco */
.ring-fill {
  filter: drop-shadow(0 0 6px rgba(0, 198, 255, 0.6));
}

/* Ponto luminoso na ponta do arco */
.ring-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00f5d4;
  box-shadow: 0 0 10px 3px rgba(0, 245, 212, 0.7);
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  /* posição inicial no topo do círculo (raio=55, cx=cy=55) */
  margin-top: -50px;
  margin-left: -5px;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Valor central */
.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.counter-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  background: linear-gradient(90deg, #00c6ff, #00f5d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.counter-unit {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(0, 198, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Legenda abaixo */
.counter-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 700px) {
  .counters-section {
    flex-wrap: wrap;
    padding: 40px 20px;
    gap: 32px;
  }

  .counter-item {
    flex: 0 0 calc(50% - 16px);
    padding: 0;
  }

  .counter-item::after {
    display: none;
  }
}

/* ── WRAPPER ── */
.counters-wrapper {
  width: 100%;
  /* padding: 50px 0;
  background: rgba(0, 198, 255, 0.02); */
  border-top: 1px solid rgba(0, 198, 255, 0.08);
  border-bottom: 1px solid rgba(0, 198, 255, 0.08);
}

/* ── CONTAINER ── */
.counters-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── GRID DOS 4 COUNTERS NA MESMA LINHA ── */
.counters-section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;        /* força tudo na mesma linha */
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
}



/* ── DIVISOR VERTICAL ── */
.counter-divider {
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(0,198,255,0.2), transparent);
  flex-shrink: 0;
}



.counter-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  filter: drop-shadow(0 0 6px rgba(0,198,255,0.7));
}

.counter-brand-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── LABEL ── */
.counter-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
}

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  .counters-wrapper .container {
    padding: 0 20px;
  }

  .counters-section {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  .counter-divider { display: none; }

  .counter-item {
    flex: 0 0 calc(50% - 16px);
    padding: 0;
  }
}

@media (max-width: 480px) {
  .counter-item {
    flex: 0 0 100%;
  }
}

/* ── NAV RIGHT ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.desktop-only {
  display: block;
}

/* ── HAMBURGUER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(0, 198, 255, 0.06);
  border: 1px solid rgba(0, 198, 255, 0.2);
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(0, 198, 255, 0.12);
  border-color: rgba(0, 198, 255, 0.5);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s,
    width 0.35s;
}

/* Hamburguer → X */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── OVERLAY ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

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

/* ── DRAWER ── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: #050e1e;
  border-left: 1px solid rgba(0, 198, 255, 0.15);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

/* Linha neon lateral */
.mobile-drawer::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 0;
  width: 2px;
  height: 80%;
  background: linear-gradient(180deg, transparent, var(--blue), var(--cyan), transparent);
  opacity: 0.4;
}

/* ── DRAWER HEADER ── */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 198, 255, 0.08);
}

.drawer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(1) drop-shadow(0 0 6px rgba(0, 198, 255, 0.4));
}

.drawer-close {
  background: transparent;
  border: 1px solid rgba(0, 198, 255, 0.2);
  color: var(--blue);
  width: 36px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.drawer-close:hover {
  background: rgba(0, 198, 255, 0.1);
  border-color: var(--blue);
}

/* ── DRAWER LINKS ── */
.drawer-links {
  list-style: none;
  padding: 24px 0;
  flex: 1;
}

.drawer-links li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s, transform 0.3s;
}

.mobile-drawer.open .drawer-links li:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.mobile-drawer.open .drawer-links li:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.18s;
}

.mobile-drawer.open .drawer-links li:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.26s;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  border-left: 3px solid transparent;
  transition: color 0.3s, border-color 0.3s, background 0.3s, padding-left 0.3s;
}

.drawer-link::before {
  content: '//';
  font-size: 13px;
  color: var(--blue);
  opacity: 0;
  transition: opacity 0.3s;
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--white);
  border-left-color: var(--blue);
  background: rgba(0, 198, 255, 0.04);
  padding-left: 36px;
}

.drawer-link:hover::before {
  opacity: 1;
}

/* ── DRAWER CTA ── */
.drawer-cta {
  margin: 0 24px;
  width: calc(100% - 48px);
  padding: 16px;
  text-align: center;
  font-size: 15px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

/* ── DRAWER FOOTER ── */
.drawer-footer {
  margin-top: 24px;
  padding: 0 28px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 198, 255, 0.3);
}

/* ── RESPONSIVE: mostra hamburguer ── */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  nav {
    padding: 16px 20px;
  }
}

/* ── FOOTER LOGO ── */
.footer-logo-link {
  display: inline-block;
  /* Para que a imagem se comporte como um bloco mas respeite o texto ao redor */
  margin-bottom: 8px;
  /* Espaçamento entre a logo e o tagline */
}

.footer-logo-img {
  height: 40px;
  /* Altura da logo no rodapé, ajuste se necessário */
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1) drop-shadow(0 0 6px rgba(0, 198, 255, 0.4));
  /* Brilho neon sutil */
  transition: filter 0.3s, transform 0.3s;
}

.footer-logo-img:hover {
  filter: brightness(1.1) drop-shadow(0 0 10px rgba(0, 198, 255, 0.6));
  transform: scale(1.02);
}

/* Ajuste para mobile */
@media (max-width: 900px) {
  .footer-logo-img {
    height: 32px;
    /* Logo um pouco menor no mobile */
  }
}

.lightning-video-bg {
  animation: videoFadeLoop 15s linear infinite;
  /* Use a duração do seu vídeo aqui */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Garante que o vídeo cubra toda a área */
  z-index: 1;
  /* Abaixo do conteúdo, mas acima do hero-bg */
  opacity: 0.3;
  /* Ajuste a opacidade para não competir com o conteúdo */
  filter: brightness(1.2) contrast(1.1);
  /* Ajustes visuais */
  pointer-events: none;
  /* Não interfere com cliques */
}

/* Adicione esta animação ao seu bloco <style> */
@keyframes videoFadeLoop {
  0% {
    opacity: 0.2;
  }

  99% {
    opacity: 0.6;
  }

  100% {
    opacity: 0.01;
  }

  /* Quase invisível por um instante */
}