@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap');

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: #141414;
      color: #ffffff;
      overflow-x: hidden;
      font-family: 'Inter', sans-serif;
    }

    .brand-title,
    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 1px;
    }

    .navbar-scrolled {
      background: rgba(20, 20, 20, 0.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.65);
    }

    .hero-wrapper {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      isolation: isolate;
    }

    .hero-background {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      background: #141414;
    }

    .hero-bg-layer {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      opacity: 0;
      transform: scale(1.035);
      transition:
        opacity 1.5s ease-in-out,
        transform 6s ease;
      filter: saturate(0.82) brightness(0.82) grayscale(8%);
      will-change: opacity, transform;
    }

    .hero-bg-layer.active {
      opacity: 1;
      transform: scale(1.02);
    }

    .hero-gradient {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(
          to top,
          #141414 0%,
          rgba(20, 20, 20, 0.96) 14%,
          rgba(20, 20, 20, 0.72) 42%,
          rgba(20, 20, 20, 0.22) 76%,
          rgba(20, 20, 20, 0.60) 100%
        ),
        linear-gradient(
          to right,
          rgba(20, 20, 20, 0.96) 0%,
          rgba(20, 20, 20, 0.66) 38%,
          rgba(20, 20, 20, 0.18) 78%,
          rgba(20, 20, 20, 0.04) 100%
        );
    }

    .hero-content {
      position: relative;
      z-index: 5;
    }

    .hero-copy {
      animation: heroTextIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
      will-change: opacity, transform;
    }

    .hero-copy.is-changing {
      animation: none;
      opacity: 0;
      transform: translateY(26px);
    }

    @keyframes heroTextIn {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

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

    .hero-title-size {
      font-size: clamp(2.25rem, 5.6vw, 3rem);
      line-height: 0.96;
    }

    @media (min-width: 768px) {
      .hero-title-size {
        font-size: clamp(3rem, 4.75vw, 4.75rem);
      }
    }

    .hero-description {
      color: #e5e7eb;
      font-size: 1.05rem;
      line-height: 1.7;
      margin-top: 1.35rem;
      max-width: 42rem;
      text-shadow: 0 3px 22px rgba(0, 0, 0, 0.9);
    }

    @media (min-width: 768px) {
      .hero-description {
        font-size: 1.2rem;
      }
    }

    .hero-indicators {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 28px;
    }

    .hero-indicator {
      width: 34px;
      height: 3px;
      border: none;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.32);
      cursor: pointer;
      overflow: hidden;
      padding: 0;
      transition:
        background 0.3s ease,
        width 0.3s ease;
    }

    .hero-indicator.active {
      width: 52px;
      background: #ffffff;
    }

    .netflix-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

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

    @media (min-width: 1180px) {
      .netflix-row {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 16px;
      }
    }

    .netflix-thumb {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      background: #181818;
      cursor: pointer;
      aspect-ratio: 16 / 9;
      transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        z-index 0.35s ease;
    }

    .netflix-thumb::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.64) 32%,
        rgba(0, 0, 0, 0.20) 66%,
        transparent 100%
      );
      pointer-events: none;
    }

    .netflix-thumb:hover {
      transform: scale(1.08);
      z-index: 30;
      box-shadow: 0 24px 55px rgba(0, 0, 0, 0.75);
    }

    .netflix-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.8) brightness(0.9) grayscale(20%);
      transition:
        transform 0.4s ease,
        filter 0.4s ease;
    }

    .netflix-thumb:hover img {
      transform: scale(1.1);
      filter: saturate(0.95) brightness(0.96) grayscale(0%);
    }

    .thumb-content {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 3;
      padding: 14px;
      transform: translateY(4px);
      transition:
        transform 0.35s ease,
        opacity 0.35s ease;
    }

    .netflix-thumb:hover .thumb-content {
      transform: translateY(0);
    }

    .thumb-title {
      font-size: 14px;
      line-height: 1.1;
      font-weight: 800;
      color: #ffffff;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
    }

    .thumb-description {
      margin-top: 5px;
      font-size: 11px;
      line-height: 1.35;
      color: #d1d5db;
      opacity: 0.92;
    }

    .section-title {
      font-size: 1.22rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 100;
      background: rgba(0, 0, 0, 0.84);
      backdrop-filter: blur(10px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 22px;
    }

    .modal-backdrop.active {
      display: flex;
    }

    .modal-box {
      width: min(1080px, 100%);
      max-height: 92vh;
      overflow: auto;
      background: #181818;
      border-radius: 6px;
      box-shadow: 0 35px 100px rgba(0, 0, 0, 0.85);
      position: relative;
    }

    .modal-hero {
      position: relative;
      min-height: 430px;
      overflow: hidden;
    }

    .modal-hero img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.82) brightness(0.76);
    }

    .modal-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          to top,
          #181818 0%,
          rgba(24, 24, 24, 0.74) 34%,
          rgba(24, 24, 24, 0.25) 70%,
          transparent 100%
        ),
        linear-gradient(
          to right,
          rgba(24, 24, 24, 0.96) 0%,
          rgba(24, 24, 24, 0.60) 48%,
          rgba(24, 24, 24, 0.10) 100%
        );
    }

    .modal-content {
      position: relative;
      z-index: 2;
      min-height: 430px;
      max-width: 690px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 42px;
    }

    .modal-title-size {
      font-size: clamp(2.65rem, 5vw, 5.25rem);
      line-height: 0.95;
    }

    .modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 5;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.72);
      color: white;
      border: none;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: 0.25s ease;
    }

    .modal-close:hover {
      background: white;
      color: black;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 14px;
      padding: 26px;
    }

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

    .feature-card {
      background: #222;
      border-radius: 4px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .feature-card strong {
      display: block;
      color: white;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .feature-card span {
      color: #b3b3b3;
      font-size: 12px;
      line-height: 1.45;
    }

    @media (max-width: 768px) {
      .hero-wrapper {
        min-height: 88vh;
        padding-bottom: 5.5rem;
      }

      .hero-title-size {
        font-size: clamp(2.35rem, 11vw, 3.65rem);
      }

      .hero-description {
        font-size: 1rem;
        line-height: 1.55;
      }

      .hero-indicator {
        width: 24px;
      }

      .hero-indicator.active {
        width: 38px;
      }

      .netflix-thumb:hover {
        transform: scale(1.03);
      }

      .thumb-content {
        padding: 10px;
      }

      .thumb-title {
        font-size: 12px;
      }

      .thumb-description {
        display: none;
      }

      .modal-content {
        padding: 28px;
      }
    }



    .hero-progress {
      width: min(420px, 100%);
      height: 4px;
      margin-top: 18px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.18);
    }

    .hero-progress span {
      display: block;
      width: 0%;
      height: 100%;
      border-radius: inherit;
      background: #E50914;
      transform-origin: left center;
    }

    .hero-progress span.is-running {
      animation: heroProgress 6s linear forwards;
    }

    @keyframes heroProgress {
      from { width: 0%; }
      to { width: 100%; }
    }

    .smart-button {
      transform: translateY(0) scale(1);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    }

    .smart-button:hover {
      transform: translateY(-2px) scale(1.025);
      box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42);
    }

    .netflix-thumb.active-service {
      outline: 2px solid #E50914;
      outline-offset: 3px;
      box-shadow: 0 18px 45px rgba(229, 9, 20, 0.22);
    }

    .netflix-thumb.active-service::before {
      content: "En portada";
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 4;
      background: #E50914;
      color: #fff;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 5px 8px;
      border-radius: 999px;
    }

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

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

    .benefit-card,
    .testimonial-card,
    .lead-form-card {
      background: linear-gradient(145deg, #202020 0%, #161616 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      padding: 22px;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    }

    .benefit-card i {
      color: #E50914;
      margin-bottom: 14px;
    }

    .benefit-card h4,
    .testimonial-card h4 {
      font-size: 1rem;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .benefit-card p,
    .testimonial-card p {
      color: #b3b3b3;
      font-size: 0.92rem;
      line-height: 1.55;
    }

    .lead-form-card input,
    .lead-form-card select,
    .lead-form-card textarea {
      width: 100%;
      background: #0f0f0f;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 4px;
      color: #fff;
      padding: 13px 14px;
      outline: none;
      transition: border 0.25s ease, box-shadow 0.25s ease;
    }

    .lead-form-card input:focus,
    .lead-form-card select:focus,
    .lead-form-card textarea:focus {
      border-color: #E50914;
      box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.16);
    }

    .floating-whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 80;
      width: 58px;
      height: 58px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: #25D366;
      color: #081c10;
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .floating-whatsapp:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 26px 50px rgba(0, 0, 0, 0.55);
    }


    .sia-top-banner {
      width: 100%;
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 8px 18px;
      background:
        linear-gradient(90deg, rgba(229, 9, 20, 0.98), rgba(125, 8, 15, 0.96));
      color: #fff;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.01em;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .sia-top-banner a {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 3px;
      font-weight: 950;
      white-space: nowrap;
    }

    .sia-sim-links {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .sia-sim-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 9px;
      border-radius: 999px;
      background: rgba(0,0,0,.22);
      border: 1px solid rgba(255,255,255,.16);
      text-decoration: none !important;
      transition: transform .22s ease, background .22s ease;
    }

    .sia-sim-pill:hover {
      transform: translateY(-1px);
      background: rgba(0,0,0,.36);
    }

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

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

    @media (min-width: 1180px) {
      .simulator-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    .simulator-card {
      position: relative;
      min-height: 245px;
      overflow: hidden;
      border-radius: 8px;
      background: #191919;
      border: 1px solid rgba(255,255,255,.09);
      box-shadow: 0 24px 55px rgba(0,0,0,.35);
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    }

    .simulator-card:hover {
      transform: translateY(-6px) scale(1.015);
      border-color: rgba(229,9,20,.58);
      box-shadow: 0 34px 80px rgba(0,0,0,.55);
    }

    .simulator-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(.82) brightness(.70);
      transform: scale(1.02);
      transition: transform .45s ease, filter .45s ease;
    }

    .simulator-card:hover img {
      transform: scale(1.1);
      filter: saturate(.95) brightness(.82);
    }

    .simulator-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.48) 48%, rgba(0,0,0,.16)),
        linear-gradient(to right, rgba(0,0,0,.78), transparent 72%);
      z-index: 1;
    }

    .simulator-card-content {
      position: relative;
      z-index: 2;
      min-height: 245px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 18px;
    }

    .simulator-card-content .tag {
      width: fit-content;
      background: #E50914;
      color: #fff;
      border-radius: 999px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 950;
      padding: 6px 9px;
      margin-bottom: 10px;
    }

    .simulator-card-content h4 {
      font-size: 1.25rem;
      line-height: 1.1;
      font-weight: 950;
      margin: 0;
    }

    .simulator-card-content p {
      color: #d1d5db;
      font-size: .88rem;
      line-height: 1.45;
      margin: 8px 0 14px;
    }

    .simulator-card-content .enter {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 8px;
      color: #fff;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 4px;
      padding: 10px 12px;
      font-weight: 950;
      font-size: .86rem;
      backdrop-filter: blur(8px);
    }

    .team-credit {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      margin-top: 22px;
      color: #c9c9c9;
      font-size: .92rem;
    }

    .team-credit strong {
      color: #fff;
    }

    @media (max-width: 768px) {
      .sia-top-banner {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        font-size: .75rem;
        padding: 9px 14px;
      }

      .sia-sim-links {
        justify-content: flex-start;
      }

      header nav {
        padding-top: .85rem !important;
        padding-bottom: .85rem !important;
      }

      .hero-wrapper {
        padding-top: 7.8rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-bg-layer,
      .hero-copy,
      .netflix-thumb,
      .netflix-thumb img,
      .thumb-content {
        transition: none !important;
        animation: none !important;
      }
    }
