:root {
  --bg: #020509;
  --bg2: #030810;
  --surface: #05091a;
  --card: #070d1e;
  --border: rgba(255, 255, 255, 0.06);
  --accent: #4a9dff;
  --accent2: #2d7ee8;
  --green: #27c97b;
  --red: #ff4a6e;
  --gold: #f5c842;
  --white: #eef2ff;
  --dim: #8896b3;
  --muted: #3d4a65;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Jost', sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --easeb: cubic-bezier(.34, 1.56, .64, 1);
}

/* LIGHT MODE */
body.light {
  --bg: #f0f4ff;
  --bg2: #e8edf8;
  --surface: #e2e8f5;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.09);
  --white: #0f172a;
  --dim: #4a5568;
  --muted: #94a3b8;
}

body.light nav.on {
  background: rgba(240, 244, 255, .92)
}

body.light .hglow {
  background: radial-gradient(circle, rgba(74, 157, 255, .13) 0%, transparent 65%)
}

body.light .svis-bg {
  filter: invert(1) opacity(.06)
}

body.light .fg input,
body.light .fg textarea,
body.light .fg select {
  color: #0f172a
}

body.light .fg select option {
  background: #e8edf8;
  color: #0f172a
}

/* THEME TOGGLE BUTTON */
.thbtn {
  width: 44px;
  height: 26px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--card);
  position: relative;
  cursor: pointer;
  transition: background .35s, border-color .35s;
  flex-shrink: 0;
}

.thbtn::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform .35s var(--easeb), background .35s;
  box-shadow: 0 2px 6px rgba(74, 157, 255, .4);
}

body.light .thbtn::after {
  transform: translateX(18px);
  background: #f5c842;
  box-shadow: 0 2px 6px rgba(245, 200, 66, .5)
}

.thico {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: .65rem;
  pointer-events: none;
  transition: opacity .3s
}

.thico.moon {
  left: 5px;
  opacity: 1
}

.thico.sun {
  right: 5px;
  opacity: .4
}

body.light .thico.moon {
  opacity: .4
}

body.light .thico.sun {
  opacity: 1
}

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

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fb);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* LOGO IMG */
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain
}

.logo-img-ft {
  height: 52px;
  width: auto;
  object-fit: contain
}

body.light .logo-img {
  filter: none
}

body.light .logo-img-ft {
  filter: none
}



/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 500;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .5s, border-color .5s
}

nav.on {
  background: rgba(2, 5, 9, .9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--border)
}

.logo {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px
}

.lsq {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 20px rgba(74, 157, 255, .35);
  flex-shrink: 0
}

.nul {
  display: flex;
  gap: 2rem;
  list-style: none
}

.nul a {
  text-decoration: none;
  color: var(--dim);
  font-size: .84rem;
  font-weight: 500;
  transition: color .2s
}

.nul a:hover {
  color: var(--white)
}

.ncta {
  background: var(--accent);
  color: #fff;
  padding: .45rem 1.2rem;
  border-radius: 100px;
  font-family: var(--fb);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s var(--easeb)
}

.ncta:hover {
  transform: scale(1.06);
  box-shadow: 0 0 24px rgba(74, 157, 255, .4)
}

.hbg {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 9px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px
}

.hbg span {
  width: 19px;
  height: 1.5px;
  background: var(--white);
  display: block
}

.mnav {
  display: none;
  position: fixed;
  inset: 0;
  top: 70px;
  background: rgba(2, 5, 9, .97);
  backdrop-filter: blur(30px);
  z-index: 400;
  padding: 3rem 5%;
  flex-direction: column;
  gap: 2rem
}

.mnav.open {
  display: flex
}

.mnav a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  font-family: var(--fd)
}

.mnav .ncta {
  width: fit-content;
  font-size: 1rem;
  padding: .7rem 2rem;
  border-radius: 12px
}

body.light .mnav {
  background: rgba(240, 244, 255, .97)
}

body.light .mnav a {
  color: #0f172a
}

body.light .mnav a:hover {
  color: var(--accent)
}

/* HERO */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 70% at 50% 30%, #061428 0%, #020509 60%, #010306 100%);
}

/* Animated grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(74, 157, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 157, 255, .08) 1px, transparent 1px),
    linear-gradient(rgba(74, 157, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 157, 255, .03) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
  animation: gridmove 25s linear infinite;
}

@keyframes gridmove {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0
  }

  to {
    background-position: 0 80px, 80px 0, 0 20px, 20px 0
  }
}

/* Glow blobs */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 45% at 15% 60%, rgba(74, 157, 255, .12) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 85% 25%, rgba(45, 126, 232, .1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 55% 80%, rgba(74, 157, 255, .07) 0%, transparent 50%);
  animation: blobshift 14s ease-in-out infinite alternate;
}

@keyframes blobshift {
  from {
    background-position: 0% 0%
  }

  to {
    background-position: 3% 5%
  }
}

body.light .hero {
  background: radial-gradient(ellipse 90% 70% at 50% 30%, #c8deff 0%, #e8f0ff 60%, #f0f4ff 100%)
}

body.light .hero::before {
  background-image: linear-gradient(rgba(74, 157, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 157, 255, .1) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px
}

body.light .hero::after {
  background: radial-gradient(ellipse 55% 45% at 15% 60%, rgba(74, 157, 255, .15) 0%, transparent 60%), radial-gradient(ellipse 45% 55% at 85% 25%, rgba(45, 126, 232, .12) 0%, transparent 55%)
}

canvas {
  position: absolute;
  inset: 0;
  z-index: 2
}

.btn-catalogo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #FFB703;
  color: #0D1B2A;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(255,183,3,0.3);
}
.btn-catalogo:hover {
  background: #E09F00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,183,3,0.4);
}

.hglow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 157, 255, .11) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
  z-index: 3;
  animation: breathe 8s ease-in-out infinite alternate
}

@keyframes breathe {
  from {
    transform: translate(-50%, -55%) scale(1)
  }

  to {
    transform: translate(-50%, -50%) scale(1.12)
  }
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1
}

.orb1 {
  width: 600px;
  height: 600px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(74, 157, 255, .09) 0%, transparent 65%);
  animation: of1 16s ease-in-out infinite alternate
}

.orb2 {
  width: 450px;
  height: 450px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(45, 126, 232, .08) 0%, transparent 65%);
  animation: of2 20s ease-in-out infinite alternate
}

.orb3 {
  width: 350px;
  height: 350px;
  top: 35%;
  right: 12%;
  background: radial-gradient(circle, rgba(74, 157, 255, .06) 0%, transparent 65%);
  animation: of1 12s ease-in-out infinite alternate-reverse
}

@keyframes of1 {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(-40px, 50px)
  }
}

@keyframes of2 {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(50px, -40px)
  }
}

.hc {
  position: relative;
  z-index: 4;
  max-width: 860px;
  width: 100%
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 157, 255, .07);
  border: 1px solid rgba(74, 157, 255, .2);
  border-radius: 100px;
  padding: .38rem 1.1rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(18px);
  animation: fup .8s var(--ease) .2s forwards
}

.ldot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: relative
}

.ldot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: lping 1.6s ease-out infinite
}

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

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

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

.hero h1 {
  font-family: var(--fd);
  font-size: clamp(3.2rem, 8.5vw, 8rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 2rem
}

.hero h1 .ln {
  display: block;
  overflow: hidden
}

.hero h1 .ln span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  filter: blur(15px);
  will-change: transform, opacity, filter;
  animation: lup 1s var(--ease) forwards
}

.hero h1 .ln:nth-child(1) span {
  animation-delay: .35s
}

.hero h1 .ln:nth-child(2) span {
  animation-delay: .5s
}

.hero h1 .ln:nth-child(3) span {
  animation-delay: .65s
}

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

.hero h1 i {
  font-style: italic;
  color: var(--accent)
}

.hp {
  font-size: clamp(.95rem, 1.7vw, 1.15rem);
  color: var(--dim);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 300;
  opacity: 0;
  animation: fup .8s var(--ease) 1s forwards
}

.hbtns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fup .8s var(--ease) 1.2s forwards
}

.bw {
  background: var(--white);
  color: var(--bg);
  padding: .88rem 2.2rem;
  border-radius: 100px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: all .35s var(--easeb)
}

.bw:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 60px rgba(255, 255, 255, .12)
}

.bg {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--white);
  padding: .88rem 2.2rem;
  border-radius: 100px;
  font-family: var(--fb);
  font-weight: 400;
  font-size: .92rem;
  text-decoration: none;
  transition: all .3s
}

.bg:hover {
  border-color: rgba(255, 255, 255, .5)
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 4;
  opacity: 0;
  animation: fup .8s var(--ease) 1.5s forwards
}

.si {
  padding: 2.2rem 3.5rem;
  border-right: 1px solid var(--border);
  text-align: center
}

.si:last-child {
  border-right: none
}

.sn {
  font-family: var(--fd);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1;
  letter-spacing: -.02em
}

.sl {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: .4rem;
  display: block
}

.scue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  z-index: 4;
  opacity: 0;
  animation: fup .8s var(--ease) 2s forwards
}

.sline {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrl 2.2s ease-in-out infinite
}

@keyframes scrl {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* TICKER */
.ticker {
  padding: 2.8rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface)
}

.ttrack {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: tmove 60s linear infinite
}

.ttrack:hover {
  animation-play-state: paused
}

@keyframes tmove {
  from {
    transform: translateX(0)
  }

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

.titem {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 3rem;
  font-family: var(--fd);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent);
  flex-shrink: 0;
  letter-spacing: .01em;
  opacity: .85;
  transition: opacity .3s
}

.titem:hover {
  opacity: 1
}

.tsep {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .7;
  flex-shrink: 0
}

body.light .titem {
  color: var(--accent2)
}

body.light .tsep {
  background: var(--accent2)
}

/* REVEAL */
.rv {
  opacity: 0;
  will-change: transform, opacity;
}

.rvl {
  opacity: 0;
  will-change: transform, opacity;
}

.rvr {
  opacity: 0;
  will-change: transform, opacity;
}

.rv.vis,
.rvl.vis,
.rvr.vis {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .16s
}

.d3 {
  transition-delay: .24s
}

.d4 {
  transition-delay: .32s
}

.d5 {
  transition-delay: .4s
}

.d6 {
  transition-delay: .48s
}

.d7 {
  transition-delay: .56s
}

.d8 {
  transition-delay: .64s
}

/* COMMONS */
.tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem
}

.h2 {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.02em
}

.h2 i {
  font-style: italic;
  color: var(--accent)
}

.sub {
  color: var(--dim);
  line-height: 1.8;
  font-size: 1.02rem;
  font-weight: 300;
  max-width: 540px
}

/* SERVICES */
.services {
  padding: 10rem 5%;
  position: relative;
  z-index: 1
}

.shd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 5rem
}

.sgrid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}

.scard {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  cursor: default;
  transition: border-color .4s, box-shadow .5s, background .4s;
  display: flex;
  flex-direction: column
}

.scard:hover {
  border-color: rgba(74, 157, 255, .3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5)
}

@media(min-width: 769px) {
  .scard:hover {
    transform: translateY(-8px);
  }
}

/* Service visual area - CSS only, no images */
.svis {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.svis::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(74, 157, 255, .12), transparent 70%)
}

.svis-icon {
  font-size: 4rem;
  position: relative;
  z-index: 1;
  transition: transform .5s var(--easeb)
}

.scard:hover .svis-icon {
  transform: scale(1.15)
}

/* Animated grid bg for each card */
.svis-bg {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(rgba(74, 157, 255, .5) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 157, 255, .5) 1px, transparent 1px);
  background-size: 30px 30px
}

/* Logos de marcas con fondo negro — visibles en ambos modos */
.bc-logo-img {
  height: 22px;
  width: auto;
  vertical-align: middle;
  margin-right: 6px;
  display: inline-block;
}

/* Color accent bar at top */
.sbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform .5s var(--ease)
}

/* Service images */
.svis-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
  transition: transform .8s var(--ease), opacity .5s, filter .5s;
  filter: grayscale(100%) brightness(0.7);
}

.scard:hover .svis-img {
  transform: scale(1.1);
  opacity: .8;
  filter: grayscale(0%) brightness(1);
}

.scard:hover .svis-icon {
  transform: scale(1.2) rotate(5deg);
  transition: transform .5s var(--easeb);
}

.scard:hover .sbar {
  transform: scaleX(1)
}

/* Badge */
.sbadge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(2, 5, 9, .75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 157, 255, .25);
  border-radius: 8px;
  padding: .3rem .7rem;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600
}

.sstatus {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green)
}

.sstatus::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--green);
  animation: sping 2s ease-out infinite
}

@keyframes sping {
  0% {
    transform: scale(1);
    opacity: .7
  }

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

.sbody {
  padding: 1.6rem 1.8rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column
}

.sbody h3 {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .6rem;
  line-height: 1.2;
  transition: color .3s
}

.scard:hover .sbody h3 {
  color: var(--accent)
}

.sbody p {
  color: var(--dim);
  font-size: .84rem;
  line-height: 1.72;
  font-weight: 300;
  flex: 1
}

.sarr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .3s
}

.scard:hover .sarr {
  color: var(--accent)
}

.aico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(74, 157, 255, .08);
  border: 1px solid rgba(74, 157, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: transform .35s var(--easeb)
}

.scard:hover .aico {
  transform: translate(3px, -3px)
}

/* Unique color tints per service */
.s1 .svis {
  background: linear-gradient(135deg, #07101e, #0a1628)
}

.s2 .svis {
  background: linear-gradient(135deg, #070f1a, #0b1a2e)
}

.s3 .svis {
  background: linear-gradient(135deg, #070e1a, #0d1a28)
}

.s4 .svis {
  background: linear-gradient(135deg, #06101e, #091828)
}

.s5 .svis {
  background: linear-gradient(135deg, #060e1c, #0a1626)
}

.s6 .svis {
  background: linear-gradient(135deg, #180a0e, #1a0710)
}

.s7 .svis {
  background: linear-gradient(135deg, #07101c, #0c1a2c)
}

.s8 .svis {
  background: linear-gradient(135deg, #080e1a, #0c1624)
}

.s6 .svis::before {
  background: radial-gradient(circle at 50% 60%, rgba(255, 74, 110, .12), transparent 70%)
}

.s6 .sstatus {
  background: var(--red);
  box-shadow: 0 0 8px var(--red)
}

.s6 .sstatus::after {
  border-color: var(--red)
}

/* BRANDS */
.brands {
  padding: 7rem 5%;
  z-index: 1;
  position: relative
}

/* Fix logos en ticker de marcas */
.bc img {
  height: 26px;
  width: auto;
  vertical-align: middle;
  mix-blend-mode: screen;
}

.brin {
  max-width: 1240px;
  margin: 0 auto
}

.brhd {
  text-align: center;
  margin-bottom: 4rem
}

.mqw {
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, black 6%, black 94%, transparent)
}

.mqt {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: mqsc 55s linear infinite
}

.mqt:hover {
  animation-play-state: paused
}

@keyframes mqsc {
  from {
    transform: translateX(0)
  }

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

.bc {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dim);
  flex-shrink: 0;
  white-space: nowrap;
  transition: .3s;
  letter-spacing: .01em
}

.bc:hover {
  border-color: rgba(74, 157, 255, .3);
  color: var(--white);
  transform: translateY(-2px)
}

/* BENTO */
.why {
  padding: 7rem 5%;
  z-index: 1;
  position: relative
}

.wyin {
  max-width: 1240px;
  margin: 0 auto
}

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

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem
}

.bcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.4rem;
  position: relative;
  overflow: hidden;
  transition: border-color .4s, box-shadow .45s, background .4s;
}

.bcard:hover {
  border-color: rgba(74, 157, 255, .25);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4)
}

.bw2 {
  grid-column: span 2
}

.bico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(74, 157, 255, .08);
  border: 1px solid rgba(74, 157, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.6rem
}

.bcard h3 {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .7rem
}

.bcard p {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.78
}

.bnum {
  font-family: var(--fd);
  font-size: 5.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: .5rem
}

.bnum span {
  color: var(--accent)
}

.bbg {
  position: absolute;
  right: -5px;
  bottom: -10px;
  font-size: 8rem;
  opacity: .04;
  line-height: 1;
  pointer-events: none
}

/* TESTIMONIALS */
.testi {
  padding: 7rem 5%;
  z-index: 1;
  position: relative
}

.testin {
  max-width: 1240px;
  margin: 0 auto
}

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

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem
}

.tc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.4rem;
  transition: border-color .4s, transform .45s var(--ease)
}

.tc:hover {
  border-color: rgba(74, 157, 255, .25);
  transform: translateY(-6px)
}

.stars {
  color: var(--gold);
  font-size: .88rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem
}

.tq {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.85;
  color: var(--dim);
  margin-bottom: 2rem
}

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

.av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fb);
  font-weight: 700;
  font-size: .82rem;
  color: var(--bg)
}

.an {
  font-size: .9rem;
  font-weight: 600;
  display: block
}

.ar {
  font-size: .76rem;
  color: var(--muted)
}

/* FAQ */
.faq {
  padding: 7rem 5%;
  z-index: 1;
  position: relative
}

.faqin {
  max-width: 780px;
  margin: 0 auto
}

.faqhd {
  text-align: center;
  margin-bottom: 4rem
}

.fi {
  border-bottom: 1px solid var(--border)
}

.fq {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--fb);
  font-size: .97rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left;
  gap: 1.5rem;
  transition: color .2s
}

.fq:hover {
  color: var(--accent)
}

.fai {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(74, 157, 255, .08);
  border: 1px solid rgba(74, 157, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--accent);
  transition: transform .4s var(--easeb), background .3s
}

.fi.open .fai {
  transform: rotate(45deg);
  background: rgba(74, 157, 255, .18)
}

.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, padding .3s
}

.fi.open .fa {
  max-height: 300px;
  padding-bottom: 1.5rem
}

.fa p {
  color: var(--dim);
  font-size: .9rem;
  line-height: 1.85;
  font-weight: 300
}

/* CONTACT */
.contact {
  padding: 8rem 5%;
  z-index: 1;
  position: relative
}

.conin {
  max-width: 1240px;
  margin: 0 auto
}

.congrid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 6rem;
  align-items: start
}

.conl h2 {
  margin: 1rem 0 1.5rem
}

.conl p {
  color: var(--dim);
  line-height: 1.85;
  margin-bottom: 3rem;
  font-weight: 300
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem
}

.cii {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(74, 157, 255, .07);
  border: 1px solid rgba(74, 157, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem
}

.ci strong {
  display: block;
  font-size: .9rem;
  color: var(--white);
  margin-bottom: .2rem
}

.ci span {
  font-size: .78rem;
  color: var(--muted)
}

.fbox {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem
}

.fg {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.2rem
}

.fg label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600
}

.fg input,
.fg textarea,
.fg select {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--white);
  padding: .88rem 1.1rem;
  border-radius: 12px;
  font-family: var(--fb);
  font-size: .91rem;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 157, 255, .1)
}

.fg textarea {
  resize: vertical;
  min-height: 108px
}

.fg select option {
  background: #07091c
}

.bsend {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-family: var(--fb);
  font-size: .98rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .35s var(--easeb);
  margin-top: .4rem
}

.bsend:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(74, 157, 255, .35)
}

/* FOOTER */
footer {
  padding: 4rem 5% 3rem;
  border-top: 1px solid var(--border);
  z-index: 1;
  position: relative
}

.ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem
}

.ftl {
  display: flex;
  gap: 2rem
}

.ftl a {
  font-size: .83rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s
}

.ftl a:hover {
  color: var(--white)
}

.fb2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border)
}

.fb2 span {
  font-size: .78rem;
  color: var(--muted)
}

/* WHATSAPP */
.wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 600;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .35s var(--easeb);
  box-shadow: 0 4px 24px rgba(37, 211, 102, .4)
}

.wa:hover {
  transform: scale(1.12)
}

.wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wap 2.2s ease-out infinite
}

@keyframes wap {
  0% {
    transform: scale(1);
    opacity: .6
  }

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

.wa svg {
  width: 28px;
  height: 28px;
  fill: white;
  position: relative;
  z-index: 1
}

.wt {
  position: absolute;
  right: 68px;
  background: rgba(37, 211, 102, .95);
  color: #fff;
  padding: .38rem .9rem;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none
}

.wa:hover .wt {
  opacity: 1
}

/* RESPONSIVE */
@media(max-width:1100px) {
  .sgrid {
    grid-template-columns: repeat(2, 1fr)
  }

  .tgrid {
    grid-template-columns: repeat(2, 1fr)
  }

  .bento {
    grid-template-columns: repeat(2, 1fr)
  }

  .bw2 {
    grid-column: span 2
  }

  .shd {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }
}

@media(max-width:900px) {
  .congrid {
    grid-template-columns: 1fr;
    gap: 4rem
  }

  .stats {
    flex-wrap: wrap
  }

  .si {
    flex: 1 0 40%;
    border-right: none;
    border-bottom: 1px solid var(--border)
  }

  .si:last-child,
  .si:nth-last-child(-n+2) {
    border-bottom: none
  }

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

@media(max-width:650px) {
  .sgrid {
    grid-template-columns: 1fr
  }

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

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

  .bw2 {
    grid-column: span 1
  }

  .nul,
  .ncta {
    display: none
  }

  .hbg {
    display: flex
  }

  .hero h1 {
    font-size: clamp(3rem, 11vw, 4.5rem)
  }

  .si {
    padding: 1.5rem 2rem
  }

  .ftl {
    display: none
  }

  .hbtns {
    flex-direction: column;
    align-items: center
  }

  .bw,
  .bg {
    width: 100%;
    max-width: 300px;
    text-align: center
  }

  .fbox {
    padding: 1.8rem
  }
}
