:root {
  --bg: #061a31;
  --bg-2: #08233f;
  --ink: #071e36;
  --text: #eaf8ff;
  --muted: #a8c2d5;
  --white: #ffffff;
  --cyan: #0dd5ff;
  --cyan-2: #75eaff;
  --blue: #1b68ff;
  --card: rgba(255, 255, 255, 0.94);
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 12%, rgba(13, 213, 255, .14), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(27, 104, 255, .18), transparent 32%),
    linear-gradient(180deg, #031021 0%, #061a31 42%, #ffffff 42%, #ffffff 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #031021;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  width: 72vw;
  height: 72vw;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .25;
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.site-bg::before {
  left: -20vw;
  top: -32vw;
  background: #0dd5ff;
}

.site-bg::after {
  right: -24vw;
  top: 12vw;
  background: #1b68ff;
  animation-delay: -4s;
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(4vw, 3vw, 0) scale(1.12);
  }
}

.topbar {
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(3, 16, 33, .72);
  backdrop-filter: blur(18px);
  color: var(--muted);
  font-size: .9rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
}

.topbar__links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar a,
.email-link {
  color: #d8f6ff;
  cursor: pointer;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(3, 16, 33, .74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  width: 190px;
  max-height: 62px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #d8f6ff;
  font-weight: 700;
  font-size: .98rem;
}

.nav a {
  position: relative;
  padding-block: 10px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--cyan);
  transition: width .24s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: white;
  display: block;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 99px;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.btn {
  --btn-bg: var(--cyan);
  --btn-color: #031021;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--btn-color);
  background: var(--btn-bg);
  border: 1px solid transparent;
  box-shadow: 0 14px 34px rgba(13, 213, 255, .24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(13, 213, 255, .32);
}

.btn--ghost {
  --btn-bg: rgba(255,255,255,.06);
  --btn-color: var(--white);
  border-color: rgba(255,255,255,.22);
  box-shadow: none;
}

.btn--small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: .92rem;
}

.hero {
  position: relative;
  padding: clamp(46px, 6vw, 72px) 0 clamp(56px, 7vw, 82px);
  overflow: hidden;
  min-height: calc(100vh - 126px);
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: -80px;
  height: 240px;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(13, 213, 255, .28), transparent 34%),
    linear-gradient(90deg, transparent, rgba(13, 213, 255, .2), transparent);
  clip-path: polygon(0 66%, 12% 48%, 25% 64%, 40% 38%, 55% 58%, 70% 35%, 84% 54%, 100% 26%, 100% 100%, 0 100%);
  opacity: .7;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(330px, .92fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-2);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .83rem;
  letter-spacing: .12em;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--cyan);
  border-radius: 99px;
}

.hero h1 {
  margin: 16px 0 22px;
  font-size: clamp(2.65rem, 5.7vw, 5.65rem);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 950;
  max-width: 720px;
  text-wrap: balance;
}

.hero h1 .line {
  display: block;
}

.hero h1 .accent {
  display: block;
  color: var(--cyan);
  font-size: 1.14em;
  line-height: .82;
  letter-spacing: -.085em;
  text-shadow: 0 0 30px rgba(13, 213, 255, .23);
}

.hero h1 .accent--support {
  font-size: 1.08em;
}

.hero h1 .small-line {
  font-size: .78em;
  line-height: .96;
  letter-spacing: -.07em;
}

.hero__lead {
  max-width: 650px;
  color: #c9dfeb;
  font-size: clamp(.98rem, 1.26vw, 1.1rem);
  line-height: 1.65;
  margin: 0 0 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__visual {
  position: relative;
}

.hero__visual-card {
  padding: 16px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: var(--shadow);
}

.hero__visual-card img {
  width: 100%;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,.34));
}

.floating-card {
  position: absolute;
  left: -22px;
  bottom: 44px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-radius: 22px;
  padding: 18px 20px;
  min-width: 210px;
  box-shadow: 0 24px 54px rgba(0,0,0,.24);
  border: 1px solid rgba(13, 213, 255, .24);
}

.floating-card strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  color: #071e36;
}

.floating-card span {
  color: #45637a;
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.section--light {
  background: #fff;
  color: var(--ink);
}

.section--soft {
  background: #f4f8fb;
  color: var(--ink);
}

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

.section__head h2,
.split h2 {
  margin: 12px 0 0;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.section__head p {
  color: #527087;
  line-height: 1.7;
  font-size: 1.07rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid #dbeaf2;
  box-shadow: 0 18px 48px rgba(7, 30, 54, .08);
  border-radius: 24px;
  padding: 28px 22px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(7, 30, 54, .13);
  border-color: rgba(13, 213, 255, .55);
}

.service-card__icon,
.benefit__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #009cc3;
  background: linear-gradient(145deg, rgba(13, 213, 255, .13), rgba(27, 104, 255, .06));
  border: 1px solid rgba(13, 213, 255, .24);
}

.service-card svg,
.benefit svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.service-card p {
  margin: 0;
  color: #536e82;
  line-height: 1.55;
  font-weight: 600;
  font-size: .95rem;
}

.benefits {
  background:
    radial-gradient(circle at 10% 20%, rgba(13, 213, 255, .22), transparent 26%),
    radial-gradient(circle at 90% 0%, rgba(27, 104, 255, .25), transparent 28%),
    linear-gradient(135deg, #031021, #08233f);
  color: var(--white);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.11);
  border-radius: 28px;
  overflow: hidden;
}

.benefit {
  padding: 34px 28px;
  background: rgba(3, 16, 33, .72);
}

.benefit h3 {
  margin: 18px 0 8px;
  font-size: 1.2rem;
}

.benefit p {
  color: #b9d1df;
  line-height: 1.6;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 58px;
  align-items: center;
}

.split p {
  color: #527087;
  line-height: 1.8;
  font-size: 1.05rem;
}

.checks {
  display: grid;
  gap: 13px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  color: #27445a;
  font-weight: 800;
}

.checks li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checks li::before {
  content: "✓";
  width: 26px;
  height: 26px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  background: rgba(13, 213, 255, .16);
  color: #009cc3;
  font-weight: 950;
}

.about-image {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(7, 30, 54, .22);
  border: 1px solid rgba(7, 30, 54, .12);
}

.testimonial {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #dbeaf2;
  border-radius: 30px;
  box-shadow: 0 22px 58px rgba(7, 30, 54, .1);
  padding: 34px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: center;
}

.testimonial__logo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  font-size: 1.28rem;
  background: radial-gradient(circle at 30% 28%, #0dd5ff, #08233f 58%, #031021);
  border: 4px solid #eef7fb;
}

.testimonial blockquote {
  margin: 0;
  color: #27445a;
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 650;
}

.testimonial cite {
  margin-top: 16px;
  display: block;
  font-style: normal;
  color: #071e36;
  font-weight: 950;
}

.cta {
  background:
    radial-gradient(circle at 15% 20%, rgba(13, 213, 255, .22), transparent 28%),
    linear-gradient(135deg, #031021, #08233f);
  color: #fff;
  padding: 78px 0;
}

.cta__box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.13);
}

.cta h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.cta p {
  margin: 0;
  color: #c9dfeb;
  font-size: 1.08rem;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 28px;
  color: #d8f6ff;
  font-weight: 800;
}

.contact-strip a,
.contact-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer {
  background: #020b16;
  color: #c9dfeb;
  padding: 54px 0 26px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .75fr .9fr .75fr;
  gap: 42px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.footer img {
  width: 180px;
  max-height: 68px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer p,
.footer a {
  color: #a8c2d5;
}

.footer h3 {
  color: #fff;
  font-size: .94rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 16px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.12);
}

.footer__bottom {
  padding-top: 22px;
  text-align: center;
  color: #82a0b5;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: var(--cyan);
  color: #031021;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(13, 213, 255, .25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

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

@media (max-width: 1180px) {
  .hero h1 {
    font-size: clamp(2.5rem, 5.4vw, 5.2rem);
  }
}

@media (max-width: 1060px) {
  .services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    max-width: 720px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 74px;
  }

  .nav {
    position: fixed;
    inset: 74px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(3,16,33,.98);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(0,0,0,.4);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 16px;
    border-radius: 16px;
  }

  .nav a:hover {
    background: rgba(255,255,255,.07);
  }

  .header__actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 13.2vw, 5.2rem);
  }

  .hero h1 .accent {
    font-size: 1.08em;
  }

  .hero h1 .accent--support {
    font-size: 1.04em;
  }

  .hero h1 .small-line {
    font-size: .76em;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .testimonial {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial__logo {
    margin: 0 auto;
  }

  .cta__box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .logo img {
    width: 162px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .floating-card {
    position: static;
    margin-top: -12px;
  }

  .section {
    padding: 66px 0;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 58px 0;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

/* Ajuste v4: hero más horizontal, fuerte y limpio */
.hero {
  min-height: auto;
  padding: clamp(42px, 5vw, 62px) 0 clamp(54px, 6vw, 74px);
}

.hero__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .82fr);
  gap: clamp(26px, 4vw, 44px);
  align-items: center;
}

.hero__content {
  max-width: 760px;
}

.hero h1.hero-title {
  max-width: 980px;
  margin: 14px 0 18px;
  font-size: clamp(2.15rem, 3.4vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -.06em;
  font-weight: 900;
  color: var(--white);
  text-wrap: balance;
}

.hero h1.hero-title .accent-inline {
  display: inline;
  color: var(--cyan);
  font-weight: 900;
  white-space: normal;
  text-shadow: 0 0 26px rgba(13, 213, 255, .16);
}

.hero__lead {
  max-width: 820px;
  font-size: clamp(.98rem, 1.03vw, 1.08rem);
  line-height: 1.52;
  margin: 0 0 24px;
  color: #d4e7f2;
}

.hero__actions {
  gap: 12px;
}

.hero__visual {
  max-width: 520px;
  justify-self: end;
}

.hero__visual-card {
  padding: 12px;
  border-radius: 30px;
}

.hero__visual-card img {
  max-height: 390px;
  object-fit: contain;
}

.floating-card {
  bottom: 24px;
  left: -10px;
  transform: scale(.88);
  transform-origin: left bottom;
}

@media (max-width: 1180px) {
  .hero h1.hero-title {
    font-size: clamp(2.1rem, 4vw, 3.7rem);
  }

  .hero__visual {
    max-width: 470px;
  }
}

@media (max-width: 1060px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero h1.hero-title {
    max-width: 100%;
    font-size: clamp(2.15rem, 6.6vw, 4.3rem);
    line-height: 1.05;
  }

  .hero__lead {
    max-width: 100%;
  }

  .hero__visual {
    max-width: 620px;
    justify-self: start;
  }

  .hero__visual-card img {
    max-height: 360px;
  }
}

@media (max-width: 840px) {
  .hero {
    padding-top: 34px;
  }

  .hero h1.hero-title {
    font-size: clamp(2.05rem, 8.8vw, 3.45rem);
    line-height: 1.06;
  }
}

@media (max-width: 520px) {
  .hero h1.hero-title {
    font-size: clamp(1.95rem, 9.6vw, 2.8rem);
    letter-spacing: -.05em;
  }

  .hero__lead {
    font-size: .98rem;
    line-height: 1.55;
  }

  .hero__visual {
    max-width: 100%;
  }

  .hero__visual-card img {
    max-height: 300px;
  }

  .floating-card {
    position: static;
    margin-top: -10px;
    transform: scale(1);
  }
}


/* Ajuste v7: iconos de servicios realmente más grandes, estilo mockup */
#servicios .services {
  align-items: stretch;
}

#servicios .service-card {
  padding: 28px 24px 30px !important;
  gap: 18px !important;
  border-radius: 22px;
}

#servicios .service-card__icon {
  width: 102px !important;
  height: 102px !important;
  min-width: 102px !important;
  min-height: 102px !important;
  border-radius: 24px !important;
  margin-bottom: 2px !important;
  box-shadow: 0 16px 34px rgba(13, 213, 255, .10);
  background: linear-gradient(145deg, rgba(13, 213, 255, .12), rgba(27, 104, 255, .05));
}

#servicios .service-card svg {
  width: 56px !important;
  height: 56px !important;
}

#servicios .service-card h3 {
  font-size: 1.1rem !important;
  line-height: 1.05 !important;
  letter-spacing: -.03em;
  max-width: 180px;
}

#servicios .service-card p {
  font-size: .96rem !important;
  line-height: 1.58 !important;
  max-width: 195px;
}

@media (max-width: 1180px) {
  #servicios .service-card__icon {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
  }

  #servicios .service-card svg {
    width: 52px !important;
    height: 52px !important;
  }
}

@media (max-width: 840px) {
  #servicios .service-card {
    padding: 24px 20px 26px !important;
  }

  #servicios .service-card__icon {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    min-height: 88px !important;
    border-radius: 22px !important;
  }

  #servicios .service-card svg {
    width: 48px !important;
    height: 48px !important;
  }
}

@media (max-width: 520px) {
  #servicios .service-card__icon {
    width: 82px !important;
    height: 82px !important;
    min-width: 82px !important;
    min-height: 82px !important;
    border-radius: 20px !important;
  }

  #servicios .service-card svg {
    width: 44px !important;
    height: 44px !important;
  }
}


/* Ajuste v10: corrección icono streaming cortado */
#servicios .service-card__icon {
  overflow: visible;
}

#servicios .service-card__icon svg {
  overflow: visible;
}

#servicios .service-card:nth-child(3) .service-card__icon {
  padding: 10px;
}

#servicios .service-card:nth-child(3) svg {
  width: 48px !important;
  height: 48px !important;
}

@media (max-width: 1180px) {
  #servicios .service-card:nth-child(3) svg {
    width: 46px !important;
    height: 46px !important;
  }
}

@media (max-width: 520px) {
  #servicios .service-card:nth-child(3) svg {
    width: 42px !important;
    height: 42px !important;
  }
}


/* Ajuste v11: animación suave en el fondo del hero */
.hero {
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(13, 213, 255, .16), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(27, 104, 255, .18), transparent 28%),
    linear-gradient(110deg, transparent 0%, rgba(13, 213, 255, .10) 42%, transparent 62%),
    repeating-linear-gradient(
      115deg,
      rgba(117, 234, 255, .00) 0px,
      rgba(117, 234, 255, .00) 28px,
      rgba(117, 234, 255, .07) 29px,
      rgba(117, 234, 255, .00) 31px
    );
  background-size: 100% 100%, 100% 100%, 220% 220%, 180px 180px;
  opacity: .74;
  transform: translate3d(0, 0, 0);
  animation: heroBackgroundFlow 16s ease-in-out infinite alternate;
}

.hero::after {
  z-index: 1;
  animation: heroWaveMove 13s ease-in-out infinite alternate;
}

.hero__grid {
  position: relative;
  z-index: 2;
}

@keyframes heroBackgroundFlow {
  0% {
    background-position: 0% 0%, 100% 0%, 0% 50%, 0 0;
    filter: brightness(1);
  }

  50% {
    background-position: 6% 4%, 94% 8%, 68% 48%, 44px 22px;
    filter: brightness(1.08);
  }

  100% {
    background-position: 2% 9%, 88% 2%, 100% 52%, 88px 44px;
    filter: brightness(1.02);
  }
}

@keyframes heroWaveMove {
  0% {
    transform: translate3d(-2vw, 0, 0) scaleX(1);
    opacity: .58;
  }

  100% {
    transform: translate3d(2vw, -10px, 0) scaleX(1.04);
    opacity: .78;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after {
    animation: none !important;
  }
}


/* Ajuste v12: fondo tecnológico inspirado en streaming */
.stream-tech {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.stream-tech__badge {
  position: absolute;
  top: 18%;
  right: 21%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 49, 74, .88);
  color: #fff;
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .09em;
  box-shadow: 0 0 26px rgba(255, 49, 74, .32);
  animation: livePulse 2.1s ease-in-out infinite;
}

.stream-tech__orbit {
  position: absolute;
  right: 15%;
  top: 30%;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 1px solid rgba(13, 213, 255, .18);
  opacity: .65;
  transform: translate(50%, -50%);
  animation: streamOrbit 7s ease-in-out infinite;
}

.stream-tech__orbit--two {
  width: 460px;
  height: 460px;
  animation-duration: 9s;
  animation-delay: -2s;
  opacity: .42;
}

.stream-tech__orbit--three {
  width: 610px;
  height: 610px;
  animation-duration: 12s;
  animation-delay: -4s;
  opacity: .28;
}

.stream-tech__signal {
  position: absolute;
  height: 2px;
  width: 240px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(13, 213, 255, .9), transparent);
  opacity: .0;
  filter: drop-shadow(0 0 12px rgba(13, 213, 255, .65));
  animation: dataSignal 5.8s linear infinite;
}

.stream-tech__signal--one {
  top: 27%;
  left: -18%;
}

.stream-tech__signal--two {
  top: 48%;
  left: -25%;
  width: 310px;
  animation-delay: -2s;
  animation-duration: 6.9s;
}

.stream-tech__signal--three {
  top: 68%;
  left: -20%;
  width: 270px;
  animation-delay: -4s;
  animation-duration: 7.6s;
}

.stream-tech__dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(13, 213, 255, .9);
  opacity: .72;
  animation: nodeBlink 3.4s ease-in-out infinite;
}

.stream-tech__dot--one {
  top: 24%;
  left: 54%;
}

.stream-tech__dot--two {
  top: 62%;
  left: 46%;
  animation-delay: -1.2s;
}

.stream-tech__dot--three {
  top: 38%;
  right: 8%;
  animation-delay: -2.1s;
}

.stream-tech__equalizer {
  position: absolute;
  right: 8%;
  bottom: 18%;
  display: inline-flex;
  align-items: end;
  gap: 7px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(3, 16, 33, .36);
  border: 1px solid rgba(117, 234, 255, .16);
  backdrop-filter: blur(8px);
  opacity: .68;
}

.stream-tech__equalizer i {
  display: block;
  width: 7px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), rgba(117, 234, 255, .24));
  animation: eqMove 1.25s ease-in-out infinite;
}

.stream-tech__equalizer i:nth-child(2) {
  animation-delay: -.35s;
}

.stream-tech__equalizer i:nth-child(3) {
  animation-delay: -.7s;
}

.stream-tech__equalizer i:nth-child(4) {
  animation-delay: -.2s;
}

.stream-tech__equalizer i:nth-child(5) {
  animation-delay: -.55s;
}

@keyframes streamOrbit {
  0%, 100% {
    transform: translate(50%, -50%) scale(.92);
    opacity: .25;
  }

  50% {
    transform: translate(50%, -50%) scale(1.08);
    opacity: .68;
  }
}

@keyframes dataSignal {
  0% {
    transform: translateX(0) skewX(-12deg);
    opacity: 0;
  }

  12% {
    opacity: .75;
  }

  82% {
    opacity: .55;
  }

  100% {
    transform: translateX(150vw) skewX(-12deg);
    opacity: 0;
  }
}

@keyframes nodeBlink {
  0%, 100% {
    transform: scale(.7);
    opacity: .28;
  }

  50% {
    transform: scale(1.35);
    opacity: .88;
  }
}

@keyframes eqMove {
  0%, 100% {
    height: 16px;
    opacity: .55;
  }

  50% {
    height: 44px;
    opacity: 1;
  }
}

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

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

@media (max-width: 1060px) {
  .stream-tech__badge,
  .stream-tech__equalizer {
    display: none;
  }

  .stream-tech__orbit {
    right: 0%;
    top: 48%;
  }

  .stream-tech__dot--three {
    right: 14%;
  }
}

@media (max-width: 640px) {
  .stream-tech {
    opacity: .55;
  }

  .stream-tech__orbit {
    width: 260px;
    height: 260px;
  }

  .stream-tech__orbit--two {
    width: 360px;
    height: 360px;
  }

  .stream-tech__orbit--three {
    width: 470px;
    height: 470px;
  }

  .stream-tech__signal {
    width: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stream-tech *,
  .stream-tech__signal,
  .stream-tech__orbit,
  .stream-tech__dot,
  .stream-tech__equalizer i,
  .stream-tech__badge {
    animation: none !important;
  }
}


/* Ajuste v13: quitar rayas verticales del hero */
.hero::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(13, 213, 255, .16), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(27, 104, 255, .18), transparent 28%),
    linear-gradient(110deg, transparent 0%, rgba(13, 213, 255, .10) 42%, transparent 62%);
  background-size: 100% 100%, 100% 100%, 220% 220%;
  opacity: .72;
}

@keyframes heroBackgroundFlow {
  0% {
    background-position: 0% 0%, 100% 0%, 0% 50%;
    filter: brightness(1);
  }

  50% {
    background-position: 6% 4%, 94% 8%, 68% 48%;
    filter: brightness(1.08);
  }

  100% {
    background-position: 2% 9%, 88% 2%, 100% 52%;
    filter: brightness(1.02);
  }
}


/* Ajuste v15: rojo corporativo en sección beneficios */
.benefits .eyebrow {
  color: #ff5a73;
}

.benefits .eyebrow::before {
  background: #E60023;
  box-shadow: 0 0 16px rgba(230, 0, 35, .28);
}

.benefits .section__head h2 {
  color: #ffffff;
}

.benefits .benefit__icon {
  color: #E60023;
  background: linear-gradient(145deg, rgba(230, 0, 35, .16), rgba(230, 0, 35, .06));
  border: 1px solid rgba(230, 0, 35, .34);
  box-shadow: 0 14px 34px rgba(230, 0, 35, .10);
}

.benefits .benefit__icon svg {
  color: #E60023;
}

.benefits .benefit h3 {
  color: #ffffff;
}

.benefits .benefit:hover .benefit__icon {
  background: linear-gradient(145deg, rgba(230, 0, 35, .22), rgba(230, 0, 35, .10));
  border-color: rgba(255, 90, 115, .55);
  box-shadow: 0 18px 42px rgba(230, 0, 35, .16);
}


/* Ajuste v16: reforzar animación del hero sin rayas verticales */
.hero::before {
  opacity: .92;
  background:
    radial-gradient(circle at 16% 30%, rgba(13, 213, 255, .22), transparent 26%),
    radial-gradient(circle at 80% 16%, rgba(27, 104, 255, .24), transparent 30%),
    radial-gradient(circle at 66% 58%, rgba(230, 0, 35, .07), transparent 28%),
    linear-gradient(110deg, transparent 0%, rgba(13, 213, 255, .16) 42%, transparent 64%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 220% 220%;
}

.stream-tech {
  opacity: 1;
  mix-blend-mode: screen;
}

.stream-tech__orbit {
  border-color: rgba(13, 213, 255, .32);
  box-shadow: 0 0 34px rgba(13, 213, 255, .10);
}

.stream-tech__orbit--two {
  border-color: rgba(117, 234, 255, .22);
}

.stream-tech__orbit--three {
  border-color: rgba(27, 104, 255, .20);
}

.stream-tech__signal {
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(13, 213, 255, 1), rgba(117, 234, 255, .82), transparent);
  filter: drop-shadow(0 0 16px rgba(13, 213, 255, .78));
}

.stream-tech__dot {
  width: 11px;
  height: 11px;
  opacity: .9;
}

.stream-tech__badge {
  background: rgba(230, 0, 35, .92);
  box-shadow: 0 0 28px rgba(230, 0, 35, .40);
}

.stream-tech__equalizer {
  opacity: .86;
  border-color: rgba(13, 213, 255, .24);
  background: rgba(3, 16, 33, .50);
}

.stream-tech__equalizer i {
  background: linear-gradient(180deg, #0dd5ff, rgba(117, 234, 255, .36));
}

@media (max-width: 1060px) {
  .stream-tech__badge {
    display: inline-flex;
    top: 16%;
    right: 9%;
    transform: scale(.88);
  }

  .stream-tech__equalizer {
    display: inline-flex;
    right: 7%;
    bottom: 12%;
    transform: scale(.85);
  }
}

@media (max-width: 640px) {
  .stream-tech {
    opacity: .72;
  }

  .stream-tech__badge,
  .stream-tech__equalizer {
    display: none;
  }
}

