    @font-face {
      font-family: 'Font Awesome 6 Free';
      font-style: normal;
      font-weight: 900;
      font-display: swap;
      src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Font Awesome 6 Brands';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2');
    }
    /* ==========================================================================
       VARIABLES & DESIGN SYSTEM
       ========================================================================== */
    :root {
      --bg-deep: #030008;       /* Deep Obsidian */
      --bg-space: #070314;      /* Obsidian/Space dark */
      --bg-card: rgba(14, 8, 32, 0.65); /* Indigo card glass */
      --text-white: #ffffff;
      --text-gray: #a5a1b8;
      
      /* Cyberpunk/Sci-Fi Theme Palette */
      --cyan: #00f0ff;          /* Neon Cyan */
      --orange: #00dfd8;        /* Neon Turquoise */
      --neon-pink: #00e5ff;     /* Lighter Turquoise */
      --indigo: #0088cc;        /* Tech Blue */
      --gold: #00f0ff;          /* Neon Cyan */
      --flame-red: #00a8cc;     /* Deep Tech Blue */
      
      --gradient-flame: linear-gradient(135deg, var(--orange), var(--cyan), #ffffff);
      --gradient-cyan-purple: linear-gradient(135deg, var(--cyan), var(--indigo), var(--orange));
      --gradient-dark: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-space) 100%);
      --gradient-cta: linear-gradient(135deg, var(--cyan), var(--orange));
      
      --border-glass: rgba(255, 255, 255, 0.08);
      --border-cyan-glow: rgba(0, 240, 255, 0.35);
      --border-orange-glow: rgba(0, 223, 216, 0.35);
      
      --shadow-cyan: 0 0 20px rgba(0, 240, 255, 0.45);
      --shadow-orange: 0 0 20px rgba(0, 223, 216, 0.45);
      --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.85);
      
      --font-display: 'Orbitron', sans-serif;
      --font-body: 'Inter', sans-serif;
      --font-title: 'Outfit', sans-serif;
    }

    .font-display {
      font-family: var(--font-display) !important;
    }

    /* ==========================================================================
       RESET & BASE STYLES
       ========================================================================== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
        background: #030008 !important;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    body {
      background: transparent !important;
      color: var(--text-white);
      font-family: var(--font-body);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    body.intro-playing {
      height: 100vh;
      overflow: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, video {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button {
      background: none;
      border: none;
      color: inherit;
      cursor: pointer;
      font-family: inherit;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: var(--bg-deep);
    }
    ::-webkit-scrollbar-thumb {
      background: var(--cyan);
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: var(--neon-pink);
    }

    /* Utilities */
    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .container-narrow {
      width: 100%;
      max-width: 860px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .text-center { text-align: center; }
    .mx-auto { margin-left: auto !important; margin-right: auto !important; }

    /* Margin Utility Classes */
    .mt-4 { margin-top: 0.5rem !important; }
    .mt-6 { margin-top: 0.75rem !important; }
    .mt-8 { margin-top: 1rem !important; }
    .mt-12 { margin-top: 1.5rem !important; }
    .mb-8 { margin-bottom: 0.75rem !important; }
    .mb-10 { margin-bottom: 1rem !important; }
    .mb-12 { margin-bottom: 1.25rem !important; }
    .w-full { width: 100% !important; }
    .gradient-text-flame {
      background: var(--gradient-flame);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .gradient-text-cyan {
      background: var(--gradient-cyan-purple);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* ==========================================================================
       BACKGROUND DE ESTRELLAS DINÃMICAS (PARALLAX & GLOW)
       ========================================================================== */
    #canvas-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
      background-color: var(--bg-deep) !important;
    }
    #canvas-wrapper canvas {
      display: block;
      width: 100% !important;
      height: 100% !important;
      opacity: 0.8;
    }

    #intro-rocket-flyer {
      position: fixed;
      left: 50%;
      bottom: -180px;
      transform: translateX(-50%);
      font-size: 100px;
      color: var(--cyan);
      filter: drop-shadow(0 0 20px var(--cyan)) drop-shadow(0 15px 10px rgba(0, 240, 255, 0.4));
      z-index: 105;
      pointer-events: none;
    }

    #intro-rocket-flyer.rocket-launching {
      animation: rocketFlyUp 1.8s cubic-bezier(0.15, 0.85, 0.35, 1) forwards;
    }

    @keyframes rocketFlyUp {
      0% { bottom: -180px; transform: translateX(-50%) scale(0.8); opacity: 0.5; }
      20% { opacity: 1; }
      100% { bottom: 110vh; transform: translateX(-50%) scale(1.2); opacity: 0; }
    }

    /* ==========================================================================
       CINEMATIC INTRO (MOBILE-FIRST stages)
       ========================================================================== */
    .intro-gate {
      position: fixed;
      inset: 0;
      background: transparent !important;
      z-index: 100;
      display: none !important;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      user-select: none;
      overflow: hidden;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    .intro-gate::before, .stage-translucent::before {
      content: "";
      position: absolute;
      width: 250vw;
      height: 250vh;
      top: -75vh;
      left: -75vw;
      border-radius: 50%;
      background: 
        radial-gradient(circle at 40% 40%, rgba(0, 250, 217, 0.09) 0%, transparent 60%),
        radial-gradient(circle at 60% 60%, rgba(0, 223, 216, 0.06) 0%, transparent 60%),
        radial-gradient(1.5px 1.5px at 20% 30%, rgba(255, 255, 255, 0.6) 50%, transparent 100%),
        radial-gradient(2px 2px at 80% 45%, rgba(0, 250, 217, 0.5) 50%, transparent 100%),
        radial-gradient(1px 1px at 35% 70%, rgba(255, 255, 255, 0.4) 50%, transparent 100%),
        radial-gradient(2px 2px at 65% 80%, rgba(0, 223, 216, 0.5) 50%, transparent 100%),
        radial-gradient(1.5px 1.5px at 50% 25%, rgba(255, 255, 255, 0.5) 50%, transparent 100%),
        radial-gradient(circle at center, rgba(11, 22, 44, 0.8) 0%, #02060f 100%);
      animation: spaceGlowPulse 35s linear infinite;
      z-index: -1;
      pointer-events: none;
    }

    .intro-gate.gate-fading {
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
    }

    .gate-inner {
      position: relative;
      z-index: 2;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 2.5rem;
      animation: gatePopIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    @keyframes spaceGlowPulse {
      0% { transform: rotate(0deg) scale(1); }
      50% { transform: rotate(180deg) scale(1.1); }
      100% { transform: rotate(360deg) scale(1); }
    }

    @keyframes gatePopIn {
      0% { opacity: 0; transform: scale(0.92) translateY(20px); }
      100% { opacity: 1; transform: scale(1) translateY(0); }
    }

    .gate-eyebrow {
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(0, 223, 216, 0.08);
      border: 1px solid rgba(0, 223, 216, 0.45);
      border-radius: 99px;
      padding: 0.4rem 1.1rem;
      margin-bottom: 1.75rem;
      box-shadow: 0 0 15px rgba(0, 223, 216, 0.15);
    }

    .gate-text {
      font-family: var(--font-display);
      font-size: clamp(1.2rem, 4.5vw, 1.8rem);
      font-weight: 900;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-white);
      text-shadow: 0 0 25px rgba(0, 223, 216, 0.6);
      margin-bottom: 2rem;
    }

    .gate-pulse {
      width: 72px;
      height: 72px;
      border: 2px solid rgba(0, 223, 216, 0.95);
      border-radius: 50%;
      position: relative;
      box-shadow: var(--shadow-orange), inset 0 0 20px rgba(0, 223, 216, 0.4);
      display: flex;
      justify-content: center;
      align-items: center;
      transition: transform 0.3s;
    }

    .gate-pulse::before, .gate-pulse::after {
      content: "";
      position: absolute;
      inset: -2px;
      border: 2px solid rgba(0, 223, 216, 0.7);
      border-radius: 50%;
      animation: ripple 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    }

    .gate-pulse::after {
      animation-delay: 1s;
    }

    .gate-pulse i {
      font-size: 1.5rem;
      color: var(--gold);
      animation: arrowRightPulse 1.5s infinite;
    }

    @keyframes ripple {
      0% { opacity: 1; transform: scale(1); }
      100% { opacity: 0; transform: scale(2.2); }
    }

    @keyframes arrowRightPulse {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(5px); }
    }

    .gate-hint {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 1.75rem;
    }

    .intro-gate:hover .gate-pulse {
      transform: scale(1.08);
      box-shadow: 0 0 35px rgba(0, 223, 216, 0.8), inset 0 0 25px rgba(0, 223, 216, 0.6);
    }


    /* Stages general */
    .stage {
      position: fixed;
      inset: 0;
      z-index: 90;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 2rem;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.5s ease, visibility 0.5s ease;
      overflow: hidden;
    }

    .stage.stage-active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .stage-blackout {
      background: #000000;
    }

    .stage-translucent {
      background: transparent !important;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .stage-video {
      padding: 0;
      background: #000000;
    }

    /* Logo pop stage */
    .hero-logo {
      width: min(50vw, 240px);
      height: min(50vw, 240px);
      filter: drop-shadow(0 15px 45px rgba(0, 223, 216, 0.7));
      animation: logoEntrance 2s cubic-bezier(0.18, 0.89, 0.32, 1.1) forwards;
      transform: scale(0.5);
      opacity: 0;
    }

    #stage-logo::after {
      content: "";
      position: absolute;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(0, 210, 255, 0.3) 0%, rgba(123, 44, 191, 0.15) 50%, transparent 70%);
      border-radius: 50%;
      filter: blur(40px);
      animation: logoBackdropPulse 4s ease-in-out infinite alternate;
      z-index: -1;
    }

    .logo-container-glow {
      display: flex;
      justify-content: center;
      align-items: center;
      width: min(80vw, 480px);
      height: min(80vw, 480px);
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      padding: 4.5rem;
      box-sizing: border-box;
    }

    .hero-logo-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 4px 15px rgba(0, 210, 255, 0.35));
    }

    .logo-circle-glow {
      border-radius: 50%;
      aspect-ratio: 1/1;
      border: 4px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 0 30px rgba(0, 210, 255, 0.6), 
                  0 0 60px rgba(123, 44, 191, 0.4), 
                  inset 0 0 20px rgba(0, 210, 255, 0.5);
      animation: logoEntrance 2s cubic-bezier(0.18, 0.89, 0.32, 1.1) forwards,
                 logoPulseGlow 3s ease-in-out infinite alternate 2s;
    }

    @keyframes logoBackdropPulse {
      0% {
        transform: scale(0.85);
        opacity: 0.6;
      }
      100% {
        transform: scale(1.35);
        opacity: 1.0;
        background: radial-gradient(circle, rgba(0, 223, 216, 0.35) 0%, rgba(230, 57, 70, 0.2) 50%, transparent 70%);
      }
    }

    @keyframes logoPulseGlow {
      0% {
        border-color: var(--aqua);
        box-shadow: 0 0 30px rgba(0, 250, 217, 0.85), 
                    0 0 60px rgba(123, 44, 191, 0.55), 
                    inset 0 0 20px rgba(0, 250, 217, 0.6);
        transform: scale(1);
      }
      100% {
        border-color: var(--orange);
        box-shadow: 0 0 35px rgba(0, 223, 216, 0.9), 
                    0 0 70px rgba(230, 57, 70, 0.6), 
                    inset 0 0 25px rgba(0, 223, 216, 0.7);
        transform: scale(1.05);
      }
    }

    @keyframes logoEntrance {
      0% { opacity: 0; transform: scale(0.5) rotate(-5deg); }
      40% { opacity: 1; transform: scale(1.05) rotate(0deg); }
      70% { opacity: 1; transform: scale(1); }
      100% { opacity: 1; transform: scale(1); }
    }

    /* Typewriter Stage */
    .hero-typewriter {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 6.5vw, 3.5rem);
      font-weight: 900;
      line-height: 1.25;
      text-align: center;
      max-width: 780px;
      white-space: pre-wrap;
      color: var(--text-white);
    }

    .hero-typewriter span.tw-flame {
      background: var(--gradient-flame);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .caret {
      display: inline-block;
      width: 3px;
      height: 1em;
      background-color: var(--gold);
      margin-left: 5px;
      vertical-align: middle;
      animation: caretBlink 1s step-end infinite;
      box-shadow: 0 0 10px var(--gold);
    }

    @keyframes caretBlink {
      50% { opacity: 0; }
    }

    /* Countdown Stage */
    .hero-count {
      font-family: var(--font-display);
      font-size: clamp(6rem, 42vw, 15rem);
      font-weight: 900;
      color: var(--gold);
      text-shadow: 0 0 45px rgba(0, 223, 216, 0.8), 0 0 90px rgba(230, 57, 70, 0.4);
      position: absolute;
      opacity: 0;
      transform: scale(0.4);
      user-select: none;
    }

    .hero-count.count-in {
      animation: countInAnimation 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    .hero-count.count-out {
      animation: countOutAnimation 0.4s ease-in forwards;
    }

    @keyframes countInAnimation {
      0% { opacity: 0; transform: scale(0.4); }
      100% { opacity: 1; transform: scale(1); }
    }

    @keyframes countOutAnimation {
      0% { opacity: 1; transform: scale(1); }
      100% { opacity: 0; transform: scale(1.5); }
    }

    .hero-count-ignition {
      font-size: clamp(2.5rem, 12vw, 6.5rem);
      letter-spacing: 0.05em;
      background: var(--gradient-flame);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: none;
      filter: drop-shadow(0 0 35px rgba(0, 223, 216, 0.8));
    }

    /* Full screen video / animation */
    .hero-video-full {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ignition-flash {
      position: fixed;
      inset: 0;
      z-index: 110;
      background: radial-gradient(circle, #ffffff 0%, rgba(255, 182, 39, 0.9) 30%, rgba(0, 0, 0, 0) 80%);
      opacity: 0;
      pointer-events: none;
    }

    .ignition-flash.flash-fire {
      animation: flashAnimation 1.1s cubic-bezier(0.1, 0.8, 0.1, 1) forwards;
    }

    @keyframes flashAnimation {
      0% { opacity: 0; }
      10% { opacity: 1; }
      100% { opacity: 0; }
    }

    /* ==========================================================================
       HERO FINAL STATIC
       ========================================================================== */
    .hero-static {
      position: relative;
      min-height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 2rem 1.5rem 0.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 1.2s ease;
      z-index: 10;
    }

    .hero-static.static-show {
      opacity: 1;
      pointer-events: auto;
    }

    .hero-static-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-center: center;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
    }

    .hero-logo-final {
      width: min(40vw, 150px);
      filter: drop-shadow(0 8px 25px rgba(0, 223, 216, 0.5));
      margin-bottom: 1.5rem;
    }

    .heading-hero {
      font-family: var(--font-title);
      font-size: clamp(2.2rem, 6.5vw, 4.2rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 2rem;
      text-align: center;
    }

    .hero-bridge {
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-style: italic;
      color: rgba(255, 255, 255, 0.85);
      max-width: 620px;
      margin: 0.5rem auto 2.5rem;
      text-align: center;
      line-height: 1.6;
    }

    /* Video Grid in Hero */
    .hero-video-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      width: 100%;
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .hero-video-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 820px;
      }
    }

    .hero-video-wrap {
      aspect-ratio: 16/9;
      border: 3px solid var(--aqua) !important;
      border-radius: 20px !important;
      overflow: hidden;
      position: relative;
      box-shadow: 0 8px 32px rgba(0, 250, 217, 0.25) !important;
      background: #000;
      transition: all 0.4s ease;
    }
    .hero-video-wrap:hover {
      transform: scale(1.02);
      border-color: var(--cyan) !important;
      box-shadow: 0 0 25px rgba(0, 210, 255, 0.5) !important;
    }

    .hero-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-video-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(to top, rgba(5, 13, 26, 0.7), transparent 60%);
    }

    /* CTAs Buttons */
    .hero-ctas {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 0.75rem;
      width: 100%;
      margin-top: 1rem;
    }
    .btn-text-desktop {
      display: inline;
    }

    /* ==========================================================================
       BUTTON STYLES
       ========================================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0.85rem 2rem;
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      border: none !important;
      background: var(--cyan); /* The border color */
      color: var(--cyan);
      clip-path: polygon(
        0 10px, 10px 0,
        calc(100% - 10px) 0, 100% 10px,
        100% calc(100% - 10px), calc(100% - 10px) 100%,
        10px 100%, 0 calc(100% - 10px)
      );
      filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.2));
      z-index: 1;
    }

    .btn::before {
      content: "";
      position: absolute;
      inset: 3px; /* Thicker button border (3px) */
      background: rgba(3, 10, 24, 0.95);
      z-index: -1;
      clip-path: polygon(
        0 7px, 7px 0,
        calc(100% - 7px) 0, 100% 7px,
        100% calc(100% - 7px), calc(100% - 7px) 100%,
        7px 100%, 0 calc(100% - 7px)
      );
      transition: all 0.3s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      color: #030008;
      filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.5));
    }

    .btn:hover::before {
      background: var(--cyan); /* Turns solid cyan/turquoise on hover */
    }

    .btn:active {
      transform: translateY(-1px);
    }

    /* Subclasses adapt backdrops & hover states */
    .btn-cyber-solid {
      background: var(--cyan);
      color: #030008;
    }
    .btn-cyber-solid::before {
      background: var(--cyan);
    }
    .btn-cyber-solid:hover {
      color: #030008;
      filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    }
    .btn-cyber-solid:hover::before {
      background: #ffffff;
    }

    .btn-whatsapp {
      background: #25d366;
      color: #25d366;
      filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.2));
    }
    .btn-whatsapp::before {
      background: rgba(3, 10, 24, 0.95);
    }
    .btn-whatsapp:hover {
      color: #02060f;
      filter: drop-shadow(0 0 12px rgba(37, 211, 102, 0.5));
    }
    .btn-whatsapp:hover::before {
      background: #25d366;
    }

    .btn-primary {
      background: var(--cyan);
      color: var(--cyan);
    }
    .btn-primary::before {
      background: rgba(3, 10, 24, 0.95);
    }
    .btn-primary:hover {
      color: #02060f;
    }
    .btn-primary:hover::before {
      background: var(--cyan);
    }

    .btn-coming-soon {
      background: rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.4);
      cursor: not-allowed;
      filter: none;
    }
    .btn-coming-soon::before {
      background: rgba(10, 10, 15, 0.98);
    }
    .btn-coming-soon:hover {
      transform: none;
      color: rgba(255, 255, 255, 0.4);
      filter: none;
    }
    .btn-coming-soon:hover::before {
      background: rgba(10, 10, 15, 0.98);
    }

    .btn-coming-soon-tag {
      background: rgba(255, 255, 255, 0.08);
      font-size: 0.65rem;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ==========================================================================
       SECTIONS GENERAL STYLES
       ========================================================================== */
    section {
      padding: 2.2rem 0 !important; /* Increased padding to allow detailed HUD side ornaments to breathe */
      position: relative;
      z-index: 10;
    }

    .section-tight {
      padding: 1.5rem 0 !important;
      position: relative;
      z-index: 10;
    }

    .eyebrow {
      font-family: var(--font-display);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.75rem;
    }

    .heading-display {
      font-family: var(--font-title);
      font-size: clamp(1.8rem, 4.5vw, 2.75rem);
      font-weight: 800;
      line-height: 1.2;
      color: var(--text-white);
      max-width: 760px;
      margin: 0 auto;
    }

    /* Scroll Reveal Animation Classes */
    [data-reveal] {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    }

    [data-reveal].revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* ==========================================================================
       SECTION: QUE ES
       ========================================================================== */
    .yt-wrap {
      aspect-ratio: 16/9;
      border: 3px solid var(--aqua) !important;
      border-radius: 24px !important;
      overflow: hidden;
      position: relative;
      box-shadow: 0 8px 32px rgba(0, 250, 217, 0.3) !important;
      max-width: 820px;
      transition: all 0.4s ease;
    }
    .yt-wrap:hover {
      border-color: var(--cyan) !important;
      box-shadow: 0 0 25px rgba(0, 210, 255, 0.5) !important;
    }

    .yt-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .yt-click-shield {
      position: absolute;
      inset: 0;
      z-index: 5;
    }

    .yt-controls {
      position: absolute;
      bottom: 1.25rem;
      right: 1.25rem;
      z-index: 10;
      display: flex;
      gap: 0.75rem;
    }

    .yt-ctrl-btn {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: rgba(5, 13, 26, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .yt-ctrl-btn:hover {
      background: var(--orange);
      color: #02060f;
      border-color: var(--orange);
    }

    .yt-mute-btn[data-muted="true"] .ic-unmuted { display: none; }
    .yt-mute-btn[data-muted="false"] .ic-muted { display: none; }

    /* Stats */
    .parc-stats {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 4rem;
    }

    @media (min-width: 640px) {
      .parc-stats {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .parc-stat {
      padding: 1.5rem 1.25rem;
    }

    .parc-stat-num {
      font-family: var(--font-display);
      font-size: 3.2rem;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }

    .parc-stat-label {
      font-family: var(--font-title);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-gray);
    }

    /* ==========================================================================
       SECTION: COMO PARTICIPAR (Stepper)
       ========================================================================== */
    .stepper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      margin-top: 3.5rem;
      position: relative;
    }

    @media (min-width: 768px) {
      .stepper {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
      .stepper::before {
        content: "";
        position: absolute;
        top: 76px;
        left: 10%;
        right: 10%;
        height: 4px;
        background: repeating-linear-gradient(90deg, var(--cyan), var(--cyan) 10px, transparent 10px, transparent 20px);
        z-index: 1;
        opacity: 0.4;
      }
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 2;
      background: rgba(4, 15, 38, 0.75) !important;
      border: 3px solid var(--aqua) !important;
      border-radius: 24px !important;
      padding: 2.5rem 1.5rem !important;
      box-shadow: 0 8px 32px rgba(0, 250, 217, 0.25) !important;
      backdrop-filter: blur(12px) !important;
      transition: all 0.4s ease !important;
    }

    .step:hover {
      transform: translateY(-8px) scale(1.03) !important;
      border-color: var(--cyan) !important;
      box-shadow: 0 0 25px rgba(0, 210, 255, 0.5) !important;
    }

    .step-number {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--aqua) 0%, var(--bg-deep) 100%) !important;
      border: 3px solid var(--aqua) !important;
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 900;
      color: var(--aqua);
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 1.5rem;
      box-shadow: 0 0 20px rgba(0, 250, 217, 0.4), inset 0 0 15px rgba(0, 250, 217, 0.25);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .step:hover .step-number {
      transform: scale(1.15) rotate(360deg);
      border-color: var(--gold) !important;
      color: var(--gold) !important;
      box-shadow: 0 0 30px rgba(255, 182, 39, 0.8), inset 0 0 15px rgba(255, 182, 39, 0.5);
    }

    /* ==========================================================================
       SECTION: EL RETO TECNICO
       ========================================================================== */
    .grid-three {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1.25rem;
      margin-top: 2rem;
      padding: 0.5rem 0.5rem 1.5rem 0.5rem;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }
    .grid-three::-webkit-scrollbar {
      height: 6px;
    }
    .grid-three::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 3px;
    }
    .grid-three::-webkit-scrollbar-thumb {
      background: var(--cyan);
      border-radius: 3px;
    }
    .grid-three .card-feature {
      flex: 0 0 85% !important;
      scroll-snap-align: center !important;
      box-sizing: border-box !important;
      padding: 2rem 1.5rem !important;
    }

    @media (min-width: 768px) {
      .grid-three {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
        padding: 0 !important;
        margin-top: 3.5rem !important;
      }
      .grid-three .card-feature {
        flex: none !important;
        width: auto !important;
        padding: 3rem 2rem !important;
      }
    }

    .card-feature {
      background: rgba(4, 15, 38, 0.75) !important;
      border: 3px solid var(--aqua) !important;
      border-radius: 24px !important;
      backdrop-filter: blur(12px) !important;
      box-shadow: 0 8px 32px rgba(0, 250, 217, 0.25) !important;
      transition: all 0.4s ease !important;
    }

    .card-feature:hover {
      transform: translateY(-8px) scale(1.03) !important;
      border-color: var(--orange) !important;
      box-shadow: 0 0 25px rgba(0, 223, 216, 0.5) !important;
    }

    .card-feature-title {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }

    /* ==========================================================================
       SECTION: VENUE / DÃ“NDE Y CUÃNDO
       ========================================================================== */
    .venue-card {
      background: radial-gradient(circle at top left, rgba(5, 13, 26, 0.7) 0%, rgba(2, 6, 15, 0.9) 100%);
      border: 1px solid var(--border-glass);
      border-radius: 24px;
      padding: 3.5rem 2rem;
      text-align: center;
      margin-top: 3rem;
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(12px);
    }

    .venue-card::before {
      content: "";
      position: absolute;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(0, 223, 216, 0.1) 0%, transparent 70%);
      top: -125px;
      right: -125px;
      border-radius: 50%;
    }

    .venue-eyebrow {
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--text-gray);
      margin-bottom: 0.5rem;
    }

    .venue-city {
      font-family: var(--font-title);
      font-size: clamp(2.5rem, 8vw, 4.5rem);
      font-weight: 800;
      margin-bottom: 0.25rem;
      letter-spacing: -0.03em;
    }

    .venue-country {
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 2rem;
    }

    .venue-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
      margin-bottom: 2rem;
    }

    .venue-meta {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 640px) {
      .venue-meta {
        grid-template-columns: 1fr 1fr;
      }
    }

    .venue-meta-block {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .eyebrow-muted {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--text-gray);
      margin-bottom: 0.5rem;
    }

    .venue-meta-value {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1.1;
      margin-bottom: 0.25rem;
    }

    .venue-meta-sub {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ==========================================================================
       SECTION: HISTORIA / PEDRO PAULET
       ========================================================================== */
    .grid-split {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .grid-split {
        grid-template-columns: 2fr 3fr;
      }
    }

    .paulet-img-wrap {
      aspect-ratio: 3/4;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      border: 3px solid var(--aqua) !important;
      box-shadow: 0 8px 32px rgba(0, 250, 217, 0.35) !important;
      transition: all 0.4s ease;
    }
    .paulet-img-wrap:hover {
      transform: scale(1.02);
      border-color: var(--cyan) !important;
      box-shadow: 0 0 25px rgba(0, 210, 255, 0.5) !important;
    }

    .paulet-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .paulet-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--bg-deep) 0%, rgba(5, 13, 26, 0.4) 50%, transparent 100%);
    }

    .paulet-year-badge {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
    }

    .paulet-year {
      font-family: var(--font-display);
      font-size: 4rem;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .paulet-place {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: rgba(255, 255, 255, 0.5);
    }

    .paulet-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .heading-1 {
      font-family: var(--font-title);
      font-size: clamp(2rem, 5vw, 2.6rem);
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 1.5rem;
    }

    .body-lg {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 1.5rem;
    }

    /* ==========================================================================
       SECTION: CIERRE
       ========================================================================== */
    .gradient-section-cierre {
      background: radial-gradient(circle at center, rgba(0, 250, 217, 0.12) 0%, rgba(5, 13, 26, 0.8) 100%) !important;
      border-top: 3px solid var(--aqua) !important;
      border-bottom: 3px solid var(--aqua) !important;
      text-align: center;
      padding: 7rem 0;
      box-shadow: 0 0 35px rgba(0, 250, 217, 0.25) !important;
    }

    .cierre-heading {
      font-family: var(--font-title);
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      color: var(--text-white);
      max-width: 800px;
      margin: 0 auto 1.5rem;
      line-height: 1.2;
    }

    /* ==========================================================================
       SECTION: ALIADOS & SPONSORS
       ========================================================================== */
    .aliados-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 3rem;
      margin-top: 2.5rem;
    }

    .aliado-item {
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.65;
      transition: opacity 0.3s, transform 0.3s;
    }

    .aliado-item:hover {
      opacity: 1;
      transform: scale(1.05);
    }

    .aliado-item img {
      max-height: 100%;
      object-fit: contain;
      filter: grayscale(1) brightness(2);
    }

    .aliados-cta {
      background: rgba(4, 15, 38, 0.7) !important;
      border: 3px solid var(--aqua) !important;
      border-radius: 24px !important;
      padding: 3.5rem 2rem;
      text-align: center;
      margin-top: 5rem;
      box-shadow: 0 8px 32px rgba(0, 250, 217, 0.25) !important;
      backdrop-filter: blur(12px) !important;
      transition: all 0.4s ease;
    }
    .aliados-cta:hover {
      border-color: var(--cyan) !important;
      box-shadow: 0 0 25px rgba(0, 210, 255, 0.5) !important;
    }

    .aliados-cta-heading {
      font-family: var(--font-title);
      font-size: 1.8rem;
      font-weight: 800;
    }

    .aliados-cta-text {
      color: var(--text-gray);
      max-width: 600px;
      margin: 1rem auto 2.5rem;
    }

    /* ==========================================================================
       SECTION: FAQ
       ========================================================================== */
    .faq-accordion {
      margin-top: 3.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .faq-accordion details {
      background: rgba(4, 15, 38, 0.7) !important;
      border: 3px solid var(--aqua) !important;
      border-radius: 20px !important;
      overflow: hidden;
      backdrop-filter: blur(12px) !important;
      box-shadow: 0 8px 32px rgba(0, 250, 217, 0.25) !important;
      transition: all 0.3s;
    }
    .faq-accordion details:hover {
      border-color: var(--cyan) !important;
      box-shadow: 0 0 20px rgba(0, 210, 255, 0.4) !important;
    }
    .faq-accordion details[open] {
      border-color: var(--orange) !important;
      box-shadow: 0 0 25px rgba(0, 223, 216, 0.5) !important;
    }

    .faq-accordion summary {
      padding: 1.4rem 2rem;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-white);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      outline: none;
    }

    .faq-accordion summary::-webkit-details-marker {
      display: none;
    }

    .faq-accordion summary::after {
      content: "\f067";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 0.9rem;
      color: var(--cyan);
      transition: transform 0.3s;
    }

    .faq-accordion details[open] summary::after {
      content: "\f068";
      transform: rotate(180deg);
      color: var(--orange);
    }

    .faq-body {
      padding: 0 2rem 1.6rem;
      color: var(--text-gray);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .faq-body a {
      color: var(--cyan);
      font-weight: 600;
    }

    .faq-body a:hover {
      text-decoration: underline;
    }

    /* ==========================================================================
       HEADER & NAVIGATION
       ========================================================================== */
    header.header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 1.5rem 0;
      z-index: 50;
      border-bottom: 1px solid rgba(255, 255, 255, 0.03);
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    body.intro-playing header.header {
      opacity: 0 !important;
      pointer-events: none !important;
      visibility: hidden !important;
    }

    .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-img {
      height: 42px;
      width: auto;
      filter: drop-shadow(0 0 10px rgba(0, 223, 216, 0.4));
    }

    .logo-text {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-btn {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-white);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 0.5rem 1.25rem;
      border-radius: 50px;
      transition: all 0.3s;
      background: rgba(255, 255, 255, 0.03);
    }

    .nav-btn:hover {
      border-color: var(--orange);
      color: var(--orange);
      background: rgba(0, 223, 216, 0.05);
    }

    /* ==========================================================================
       FOOTER
       ========================================================================== */
    footer {
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding: 5rem 0 3rem;
      background: #01040a;
      z-index: 10;
      position: relative;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
      }
    }

    .footer-brand p {
      color: var(--text-gray);
      font-size: 0.95rem;
      max-width: 380px;
      margin-top: 1.25rem;
    }

    .footer-title {
      font-family: var(--font-title);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--orange);
      margin-bottom: 1.5rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .footer-links a {
      font-size: 0.92rem;
      color: var(--text-gray);
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--orange);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
    }

    @media (min-width: 640px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }

    .footer-bottom p {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.45);
    }

    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.45);
    }

    .footer-bottom-links a:hover {
      color: var(--orange);
    }

    /* Footer Socials Styling */
    .footer-socials {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    .footer-socials .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--text-gray);
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }
    .footer-socials .social-link:hover {
      color: #fff;
      background: var(--cyan);
      border-color: var(--cyan);
      box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
      transform: translateY(-2px);
    }

    /* Floating WhatsApp Button */
    .whatsapp-floating-btn {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      color: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2rem;
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.5);
      z-index: 999;
      transition: all 0.3s ease;
      animation: wa-pulse 2s infinite;
    }
    .whatsapp-floating-btn:hover {
      background-color: #20ba5a;
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }
    @keyframes wa-pulse {
      0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.5);
      }
      70% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0);
      }
    }

    @media (max-width: 768px) {
      .footer {
        padding: 3rem 0 2rem !important;
      }
      .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-brand-text {
        display: none !important;
      }
      .footer-socials {
        justify-content: center;
        margin-top: 1rem;
      }
      .footer-col-taller,
      .footer-col-contacto,
      .footer-bottom {
        display: none !important;
      }
      .footer-grid {
        margin-bottom: 0 !important;
        gap: 0 !important;
      }
      .whatsapp-floating-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
      }
    }

    /* ==========================================================================
       AMBASSADOR TOAST FLOATING BANNER
       ========================================================================== */
    .embassador-toast {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 80;
      width: calc(100vw - 4rem);
      max-width: 360px;
      background: radial-gradient(circle at top right, rgba(16, 28, 52, 0.95), rgba(5, 12, 24, 0.98));
      border: 1px solid rgba(0, 210, 255, 0.25);
      border-radius: 20px;
      padding: 1.75rem;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--shadow-cyan);
      backdrop-filter: blur(15px);
      transform: translateX(120%);
      transition: transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
      display: flex;
      flex-direction: column;
    }

    .embassador-toast.toast-show {
      transform: translateX(0);
    }

    .emb-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.45);
      transition: color 0.3s, transform 0.2s;
    }

    .emb-close:hover {
      color: var(--text-white);
      transform: scale(1.1);
    }

    .emb-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(0, 210, 255, 0.1);
      color: var(--cyan);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.4rem;
      margin-bottom: 1.25rem;
      box-shadow: inset 0 0 10px rgba(0, 210, 255, 0.2);
    }

    .emb-eyebrow {
      font-family: var(--font-display);
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 0.5rem;
    }

    .emb-title {
      font-family: var(--font-title);
      font-size: 1.15rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }

    .emb-text {
      font-size: 0.85rem;
      color: var(--text-gray);
      margin-bottom: 1.5rem;
      line-height: 1.5;
    }

    /* ==========================================================================
       REDESIGN: HIGH-TECH CYBERPUNK / SCI-FI STYLES (TURQUOISE THEME)
       ========================================================================== */
    .cyber-panel {
      position: relative;
      background: transparent;
      padding: 2rem 1.6rem;
      margin: 0.5rem auto;
      width: 100%;
      z-index: 2;
      overflow: visible; /* Allow detached outer corner ornaments to show */
    }
    
    /* Main Notched Glowing Border with fiber-optic active trace (Thicker 4.5px border) */
    .cyber-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--cyan), rgba(0, 240, 255, 0.3), var(--cyan), rgba(0, 240, 255, 0.3), var(--cyan));
      background-size: 300% 300%;
      background-position: 0% 0%;
      z-index: -2;
      clip-path: polygon(
        0 24px, 24px 0, 
        calc(100% - 24px) 0, 100% 24px, 
        100% calc(100% - 24px), calc(100% - 24px) 100%, 
        24px 100%, 0 calc(100% - 24px)
      );
      filter: drop-shadow(0 0 16px rgba(0, 240, 255, 0.55));
      pointer-events: none;
      animation: borderTrace 6s linear infinite;
    }
    
    @keyframes borderTrace {
      0% { background-position: 0% 0%; }
      50% { background-position: 100% 100%; }
      100% { background-position: 0% 0%; }
    }

    .cyber-panel::after {
      content: "";
      position: absolute;
      inset: 7px; /* Increased from 4.5px to 7px for stronger technology styling */
      background-image: 
        /* 1. Laser scanning line sweep */
        linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.4) 45%, rgba(0, 240, 255, 0.8) 50%, rgba(0, 240, 255, 0.4) 55%, transparent),
        /* 2. Radial center glow */
        radial-gradient(circle at center, rgba(0, 240, 255, 0.08) 0%, transparent 75%),
        /* 3. Grid lines */
        linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px),
        /* 4. CRT scanline textures */
        repeating-linear-gradient(transparent 0px, transparent 2px, rgba(0, 240, 255, 0.012) 2px, rgba(0, 240, 255, 0.012) 4px);
      background-color: rgba(2, 6, 16, 0.97);
      background-size: 100% 200px, 100% 100%, 20px 20px, 20px 20px, 100% 100%;
      background-repeat: no-repeat, no-repeat, repeat, repeat, repeat;
      background-position: 0% -200px, center, 0 0, 0 0, 0 0;
      z-index: -1;
      clip-path: polygon(
        0 17px, 17px 0, 
        calc(100% - 17px) 0, 100% 17px, 
        100% calc(100% - 17px), calc(100% - 17px) 100%, 
        17px 100%, 0 calc(100% - 17px)
      );
      box-shadow: 
        inset 0 0 25px rgba(0, 240, 255, 0.18), 
        inset 0 0 4px rgba(0, 240, 255, 0.45),
        0 8px 32px rgba(0, 0, 0, 0.9);
      pointer-events: none;
      animation: cyberScan 10s linear infinite;
    }
    @keyframes cyberScan {
      0% { background-position: 0% -200px, center, 0 0, 0 0, 0 0; }
      50% { background-position: 0% calc(100% + 200px), center, 0 0, 0 0, 0 0; }
      100% { background-position: 0% calc(100% + 200px), center, 0 0, 0 0, 0 0; }
    }
    
    /* Detached Corner & Side Accents - Base Positioning */
    .cyber-corner {
      display: block !important;
      position: absolute;
      pointer-events: none;
      z-index: 5;
      filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.7));
    }
    
    .cyber-corner.top-left {
      top: -12px; bottom: -12px; left: -12px;
      width: 80px; height: auto;
    }
    .cyber-corner.top-right {
      top: -12px; left: -12px; right: -12px;
      height: 80px; width: auto;
    }
    .cyber-corner.bottom-right {
      top: -12px; bottom: -12px; right: -12px;
      width: 80px; height: auto;
    }
    .cyber-corner.bottom-left {
      bottom: -12px; left: -12px; right: -12px;
      height: 80px; width: auto;
    }

    /* =========================================================
       VARIANT 1: PANEL STYLE (Angular & Chevron)
       ========================================================= */
    .panel-v1 .cyber-corner::before {
      content: "";
      position: absolute;
      background: linear-gradient(135deg, #ffffff, var(--cyan) 30%, rgba(0, 240, 255, 0.4));
      animation: cornerPulse 4s infinite alternate ease-in-out;
    }
    .panel-v1 .cyber-corner::after {
      content: "";
      position: absolute;
      opacity: 0.85;
      animation: cornerFlash 2.5s infinite alternate step-end;
    }
    /* Top-Left: 7px thick angular bracket */
    .panel-v1 .cyber-corner.top-left::before {
      left: 0; top: 0;
      width: 80px; height: 80px;
      clip-path: polygon(0 0, 60px 0, 60px 7px, 20px 7px, 7px 20px, 7px 60px, 0 60px);
    }
    /* Left-Center: Heavy vertical tech bar with double dots */
    .panel-v1 .cyber-corner.top-left::after {
      left: 4px; top: 50%;
      transform: translateY(-50%);
      width: 14px; height: 140px;
      background: linear-gradient(180deg, var(--cyan), #ffffff 50%, var(--cyan));
      clip-path: polygon(0 0, 14px 0, 14px 45px, 8px 55px, 8px 85px, 14px 95px, 14px 140px, 0 140px, 0 95px, 6px 85px, 6px 55px, 0 45px);
    }
    /* Top-Right: 7px thick bracket */
    .panel-v1 .cyber-corner.top-right::before {
      right: 0; top: 0;
      width: 80px; height: 80px;
      background: linear-gradient(225deg, #ffffff, var(--cyan) 30%, rgba(0, 240, 255, 0.4));
      clip-path: polygon(100% 0, 20px 0, 20px 7px, 73px 7px, 93px 27px, 93px 60px, 100% 60px);
    }
    /* Top-Center: Horizontal bar with a central trapezoid notch */
    .panel-v1 .cyber-corner.top-right::after {
      left: 50%; top: 4px;
      transform: translateX(-50%);
      width: 160px; height: 14px;
      background: linear-gradient(90deg, rgba(0,240,255,0.2), var(--cyan), #ffffff, var(--cyan), rgba(0,240,255,0.2));
      clip-path: polygon(0 5px, 35px 5px, 45px 0, 115px 0, 125px 5px, 160px 5px, 160px 14px, 125px 14px, 115px 9px, 45px 9px, 35px 14px, 0 14px);
    }
    /* Bottom-Right: 7px thick bracket */
    .panel-v1 .cyber-corner.bottom-right::before {
      right: 0; bottom: 0;
      width: 80px; height: 80px;
      background: linear-gradient(315deg, #ffffff, var(--cyan) 30%, rgba(0, 240, 255, 0.4));
      clip-path: polygon(100% 100%, 20px 100%, 20px 93px, 73px 93px, 93px 73px, 93px 20px, 100% 20px);
    }
    /* Right-Center: Vertical chevron arrow array */
    .panel-v1 .cyber-corner.bottom-right::after {
      right: 4px; top: 50%;
      transform: translateY(-50%);
      width: 16px; height: 150px;
      background: linear-gradient(0deg, var(--cyan), #ffffff, var(--cyan));
      clip-path: polygon(0 0, 16px 0, 16px 40px, 6px 50px, 16px 60px, 16px 90px, 6px 100px, 16px 110px, 16px 150px, 0 150px, 0 110px, 10px 100px, 0 90px, 0 60px, 10px 50px, 0 40px);
    }
    /* Bottom-Left: 7px thick bracket */
    .panel-v1 .cyber-corner.bottom-left::before {
      left: 0; bottom: 0;
      width: 80px; height: 80px;
      background: linear-gradient(45deg, #ffffff, var(--cyan) 30%, rgba(0, 240, 255, 0.4));
      clip-path: polygon(0 100%, 60px 100%, 60px 73px, 20px 73px, 7px 60px, 7px 20px, 0 20px);
    }
    /* Bottom-Center: Dual horizontal line with tick marks */
    .panel-v1 .cyber-corner.bottom-left::after {
      left: 50%; bottom: 4px;
      transform: translateX(-50%);
      width: 200px; height: 14px;
      background-image: 
        linear-gradient(90deg, transparent, var(--cyan), #ffffff, var(--cyan), transparent),
        linear-gradient(90deg, transparent, var(--cyan), transparent);
      background-size: 200px 5px, 140px 3px;
      background-repeat: no-repeat, no-repeat;
      background-position: center top, center bottom;
    }

    /* =========================================================
       VARIANT 2: PANEL STYLE (Hexagonal & Altimeter)
       ========================================================= */
    .panel-v2 .cyber-corner::before {
      content: "";
      position: absolute;
      background: linear-gradient(135deg, #ffffff, var(--cyan) 40%, rgba(0, 240, 255, 0.2));
      animation: cornerPulse 4.5s infinite alternate ease-in-out;
    }
    .panel-v2 .cyber-corner::after {
      content: "";
      position: absolute;
      opacity: 0.8;
      animation: cornerFlash 2s infinite alternate step-end;
    }
    /* Top-Left: Triple-ring tech bracket */
    .panel-v2 .cyber-corner.top-left::before {
      left: 0; top: 0;
      width: 80px; height: 80px;
      clip-path: polygon(0 0, 40px 0, 40px 8px, 15px 8px, 8px 15px, 8px 40px, 0 40px);
    }
    /* Left-Center: Status node block */
    .panel-v2 .cyber-corner.top-left::after {
      left: 6px; top: 50%;
      transform: translateY(-50%);
      width: 20px; height: 110px;
      background: linear-gradient(180deg, rgba(0,240,255,0.4), #ffffff, rgba(0,240,255,0.4));
      clip-path: polygon(5px 0, 15px 0, 20px 15px, 20px 95px, 15px 110px, 5px 110px, 0 95px, 0 15px);
    }
    /* Top-Right: Triple-ring tech bracket */
    .panel-v2 .cyber-corner.top-right::before {
      right: 0; top: 0;
      width: 80px; height: 80px;
      background: linear-gradient(225deg, #ffffff, var(--cyan) 40%, rgba(0, 240, 255, 0.2));
      clip-path: polygon(100% 0, 60px 0, 60px 8px, 85px 8px, 92px 15px, 92px 40px, 100% 40px);
    }
    /* Top-Center: Twin micro-panels / cooling-vent grilles */
    .panel-v2 .cyber-corner.top-right::after {
      left: 50%; top: 5px;
      transform: translateX(-50%);
      width: 150px; height: 16px;
      background: repeating-linear-gradient(90deg, var(--cyan), var(--cyan) 6px, transparent 6px, transparent 12px);
    }
    /* Bottom-Right: Triple-ring tech bracket */
    .panel-v2 .cyber-corner.bottom-right::before {
      right: 0; bottom: 0;
      width: 80px; height: 80px;
      background: linear-gradient(315deg, #ffffff, var(--cyan) 40%, rgba(0, 240, 255, 0.2));
      clip-path: polygon(100% 100%, 60px 100%, 60px 92px, 85px 92px, 92px 85px, 92px 60px, 100% 60px);
    }
    /* Right-Center: Slide-scale altimeter scale */
    .panel-v2 .cyber-corner.bottom-right::after {
      right: 6px; top: 50%;
      transform: translateY(-50%);
      width: 16px; height: 160px;
      background-image: linear-gradient(90deg, var(--cyan) 40%, transparent 40%);
      background-size: 16px 8px;
    }
    /* Bottom-Left: Triple-ring tech bracket */
    .panel-v2 .cyber-corner.bottom-left::before {
      left: 0; bottom: 0;
      width: 80px; height: 80px;
      background: linear-gradient(45deg, #ffffff, var(--cyan) 40%, rgba(0, 240, 255, 0.2));
      clip-path: polygon(0 100%, 40px 100%, 40px 92px, 15px 92px, 8px 85px, 8px 60px, 0 60px);
    }
    /* Bottom-Center: Segmented triple trapezoids */
    .panel-v2 .cyber-corner.bottom-left::after {
      left: 50%; bottom: 5px;
      transform: translateX(-50%);
      width: 200px; height: 12px;
      background: var(--cyan);
      clip-path: polygon(0 0, 45px 0, 50px 12px, 95px 12px, 100px 0, 145px 0, 150px 12px, 195px 12px, 200px 0, 200px 6px, 195px 12px, 150px 12px, 145px 6px, 100px 6px, 95px 12px, 50px 12px, 45px 6px, 0 6px);
    }

    /* =========================================================
       VARIANT 3: PANEL STYLE (Target Scope & Telemetry)
       ========================================================= */
    .panel-v3 .cyber-corner::before {
      content: "";
      position: absolute;
      background: linear-gradient(135deg, #ffffff, var(--cyan) 30%, rgba(0, 240, 255, 0.3));
      animation: cornerPulse 5s infinite alternate ease-in-out;
    }
    .panel-v3 .cyber-corner::after {
      content: "";
      position: absolute;
      opacity: 0.85;
      animation: cornerFlash 3s infinite alternate step-end;
    }
    /* Top-Left: Diagonal bracket with a square status dot */
    .panel-v3 .cyber-corner.top-left::before {
      left: 0; top: 0;
      width: 80px; height: 80px;
      clip-path: polygon(0 0, 30px 0, 30px 6px, 6px 30px, 6px 60px, 0 60px);
    }
    /* Left-Center: Warning stripe status code */
    .panel-v3 .cyber-corner.top-left::after {
      left: 6px; top: 50%;
      transform: translateY(-50%);
      width: 14px; height: 130px;
      background: repeating-linear-gradient(45deg, var(--cyan), var(--cyan) 8px, transparent 8px, transparent 16px);
    }
    /* Top-Right: Diagonal bracket */
    .panel-v3 .cyber-corner.top-right::before {
      right: 0; top: 0;
      width: 80px; height: 80px;
      background: linear-gradient(225deg, #ffffff, var(--cyan) 30%, rgba(0, 240, 255, 0.3));
      clip-path: polygon(100% 0, 70px 0, 70px 6px, 94px 30px, 94px 60px, 100% 60px);
    }
    /* Top-Center: Target crosshair scope */
    .panel-v3 .cyber-corner.top-right::after {
      left: 50%; top: 5px;
      transform: translateX(-50%);
      width: 130px; height: 16px;
      background: radial-gradient(circle, var(--cyan) 15%, transparent 20%), linear-gradient(90deg, transparent 45%, var(--cyan) 45%, var(--cyan) 55%, transparent 55%);
    }
    /* Bottom-Right: Diagonal bracket */
    .panel-v3 .cyber-corner.bottom-right::before {
      right: 0; bottom: 0;
      width: 80px; height: 80px;
      background: linear-gradient(315deg, #ffffff, var(--cyan) 30%, rgba(0, 240, 255, 0.3));
      clip-path: polygon(100% 100%, 70px 100%, 70px 94px, 94px 70px, 94px 20px, 100% 20px);
    }
    /* Right-Center: Digital bar graph */
    .panel-v3 .cyber-corner.bottom-right::after {
      right: 6px; top: 50%;
      transform: translateY(-50%);
      width: 16px; height: 140px;
      background: repeating-linear-gradient(180deg, var(--cyan) 0px, var(--cyan) 12px, transparent 12px, transparent 20px);
    }
    /* Bottom-Left: Diagonal bracket */
    .panel-v3 .cyber-corner.bottom-left::before {
      left: 0; bottom: 0;
      width: 80px; height: 80px;
      background: linear-gradient(45deg, #ffffff, var(--cyan) 30%, rgba(0, 240, 255, 0.3));
      clip-path: polygon(0 100%, 30px 100%, 30px 94px, 6px 70px, 6px 20px, 0 20px);
    }
    /* Bottom-Center: Wide tech support bracket with simulated telemetry */
    .panel-v3 .cyber-corner.bottom-left::after {
      left: 50%; bottom: 5px;
      transform: translateX(-50%);
      width: 250px; height: 12px;
      background: linear-gradient(90deg, var(--cyan), transparent 30%, transparent 70%, var(--cyan));
      border-bottom: 2px solid var(--cyan);
    }

    @keyframes cornerPulse {
      0% { opacity: 0.5; filter: drop-shadow(0 0 3px var(--cyan)); }
      100% { opacity: 1; filter: drop-shadow(0 0 8px var(--cyan)); }
    }
    
    @keyframes cornerFlash {
      0%, 90% { opacity: 1; }
      95% { opacity: 0.3; }
      100% { opacity: 1; }
    }

    /* ==========================================================================
       HIGH-TECH CYBER CARDS (NOTCHED BORDERS)
       ========================================================================== */
    .parc-stat, .cyber-step-card, .blog-card, .testimonial-card, .reels-card, .cyber-frame {
      position: relative;
      background: transparent !important;
      border: none !important;
      box-shadow: none !important;
      z-index: 2;
      clip-path: polygon(
        0 14px, 14px 0, 
        calc(100% - 14px) 0, 100% 14px, 
        100% calc(100% - 14px), calc(100% - 14px) 100%, 
        14px 100%, 0 calc(100% - 14px)
      );
      filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.12));
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    }

    .parc-stat::before, .cyber-step-card::before, .blog-card::before, .testimonial-card::before, .reels-card::before, .cyber-frame::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 240, 255, 0.45) 0%, rgba(0, 240, 255, 0.1) 50%, rgba(0, 240, 255, 0.45) 100%);
      z-index: -2;
      transition: background 0.3s ease;
      animation: cardBorderPulse 4s infinite alternate ease-in-out;
    }

    .parc-stat::after, .cyber-step-card::after, .blog-card::after, .testimonial-card::after, .reels-card::after, .cyber-frame::after {
      content: "";
      position: absolute;
      inset: 3.5px; /* Thicker border (3.5px) */
      background: rgba(5, 14, 28, 0.8);
      z-index: -1;
      clip-path: polygon(
        0 10.5px, 10.5px 0, 
        calc(100% - 10.5px) 0, 100% 10.5px, 
        100% calc(100% - 10.5px), calc(100% - 10.5px) 100%, 
        10.5px 100%, 0 calc(100% - 10.5px)
      );
      box-shadow: 
        inset 0 0 12px rgba(0, 240, 255, 0.12), 
        inset 0 0 3px rgba(0, 240, 255, 0.3);
      transition: background 0.3s ease;
    }

    /* Hover states for all tech cards */
    .parc-stat:hover, .cyber-step-card:hover, .blog-card:hover, .testimonial-card:hover, .reels-card:hover, .cyber-frame:hover {
      transform: translateY(-4px) scale(1.02) !important;
      filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.55));
    }

    .parc-stat:hover::before, .cyber-step-card:hover::before, .blog-card:hover::before, .testimonial-card:hover::before, .reels-card:hover::before, .cyber-frame:hover::before {
      background: linear-gradient(135deg, var(--cyan), #ffffff, var(--cyan), #ffffff, var(--cyan));
      background-size: 300% 300%;
      animation: borderTrace 3s linear infinite !important;
    }

    @keyframes cardBorderPulse {
      0% { opacity: 0.65; }
      100% { opacity: 1; }
    }

    /* Ambient Tech Glows / Destellos */
    .ambient-glows {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }
    .glow-spark {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
      filter: blur(25px);
      animation: sparkPulse 8s infinite alternate ease-in-out;
    }
    .glow-spark:nth-child(1) {
      top: 15%; left: 10%; width: 250px; height: 250px;
      animation-duration: 6s;
    }
    .glow-spark:nth-child(2) {
      top: 45%; right: 5%; width: 300px; height: 300px;
      animation-duration: 10s;
      animation-delay: 2s;
    }
    .glow-spark:nth-child(3) {
      top: 75%; left: 8%; width: 280px; height: 280px;
      animation-duration: 8s;
      animation-delay: 1s;
    }
    .glow-spark:nth-child(4) {
      bottom: 5%; right: 12%; width: 260px; height: 260px;
      animation-duration: 7s;
      animation-delay: 3s;
    }

    @keyframes sparkPulse {
      0% { transform: scale(0.9) translate(0, 0); opacity: 0.4; }
      50% { opacity: 0.85; }
      100% { transform: scale(1.2) translate(15px, -15px); opacity: 0.5; }
    }
    .cyber-section-label {
      font-family: var(--font-display);
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--cyan);
      text-align: center;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      text-shadow: 0 0 8px rgba(0, 240, 255, 0.55);
    }
    .cyber-section-label::before {
      content: '\25aa  \2500\2500\2500\2500\2500\2500\2500\2500';
      font-size: 0.55rem;
      color: var(--cyan);
      letter-spacing: normal;
      text-shadow: 0 0 5px var(--cyan);
      animation: blinkDot 1.5s infinite step-end;
    }
    .cyber-section-label::after {
      content: '\2500\2500\2500\2500\2500\2500\2500\2500  \25aa';
      font-size: 0.55rem;
      color: var(--cyan);
      letter-spacing: normal;
      text-shadow: 0 0 5px var(--cyan);
      animation: blinkDot 1.5s infinite step-end;
    }
    @keyframes blinkDot {
      0%, 100% { opacity: 0.25; }
      50% { opacity: 1; }
    }
    
    /* Cyber Frame for Images */
    .cyber-frame {
      padding: 6px;
    }
    .cyber-frame img, .cyber-frame video {
      border-radius: 8px;
    }

    /* Cyber Buttons */
    .btn-cyber-outline {
      border: 1px solid rgba(0, 240, 255, 0.5);
      background: rgba(3, 10, 20, 0.5);
      color: var(--cyan);
      box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
    }
    .btn-cyber-outline:hover {
      background: var(--cyan);
      color: #030008;
      box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    }
    .btn-cyber-solid {
      background: var(--cyan);
      color: #030008;
      box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    }
    .btn-cyber-solid:hover {
      background: #ffffff;
      color: #030008;
      box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    }

    /* Steps Stepper redesign */
    .cyber-steps {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }
    @media (max-width: 580px) {
      .cyber-steps {
        grid-template-columns: 1fr;
      }
    }
    .cyber-step-card {
      padding: 1.5rem 1.25rem;
      text-align: center;
    }
    .cyber-step-img-wrapper {
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid rgba(0, 240, 255, 0.2);
      box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
      margin-bottom: 1.25rem;
      transition: all 0.3s ease;
      position: relative;
    }
    .cyber-step-img-wrapper:hover {
      border-color: var(--cyan);
      box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
    }
    .cyber-step-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }
    .cyber-step-img-wrapper:hover .cyber-step-img {
      transform: scale(1.05);
    }
    .cyber-step-number {
      position: relative;
      width: 52px;
      height: 52px;
      border: 2px solid var(--cyan);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--cyan);
      margin: 0 auto 1.25rem;
      box-shadow: 0 0 15px rgba(0, 240, 255, 0.35), inset 0 0 8px rgba(0, 240, 255, 0.2);
      background: rgba(3, 10, 20, 0.9);
      z-index: 5;
    }
    .cyber-step-number::before {
      content: "";
      position: absolute;
      top: -6px; bottom: -6px;
      left: 50%; width: 2px;
      background: linear-gradient(to bottom, var(--cyan), transparent 20%, transparent 80%, var(--cyan));
      transform: translateX(-50%);
      pointer-events: none;
    }
    .cyber-step-number::after {
      content: "";
      position: absolute;
      left: -6px; right: -6px;
      top: 50%; height: 2px;
      background: linear-gradient(to right, var(--cyan), transparent 20%, transparent 80%, var(--cyan));
      transform: translateY(-50%);
      pointer-events: none;
    }
    
    /* Photo Gallery */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-top: 2rem;
    }
    @media (min-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    .gallery-item {
      aspect-ratio: 4/3;
      position: relative;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .gallery-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(0deg, rgba(3, 10, 20, 0.95), transparent);
      padding: 1rem 0.5rem 0.5rem;
      text-align: center;
    }
    .gallery-label .stem-text {
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 900;
      color: var(--cyan);
      letter-spacing: 0.1em;
    }
    .gallery-label .stem-sub {
      font-size: 0.55rem;
      color: var(--text-gray);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Reels Section */
    .reels-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      width: 100%;
    }
    .reels-controls {
      display: flex;
      gap: 0.75rem;
    }
    .reels-ctrl-btn {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(0, 240, 255, 0.3);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--cyan);
      transition: all 0.3s;
      cursor: pointer;
    }
    .reels-ctrl-btn:hover {
      background: var(--cyan);
      color: #030008;
      box-shadow: 0 0 10px var(--cyan);
    }
    .reels-grid {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1.5rem;
      scroll-behavior: smooth;
      scrollbar-width: none; /* Firefox */
      -webkit-overflow-scrolling: touch;
      padding-bottom: 0.5rem;
    }
    .reels-grid::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }
    .reels-card {
      aspect-ratio: 9/16;
      overflow: hidden;
      position: relative;
      flex: 0 0 calc(100% - 2rem);
      scroll-snap-align: start;
    }
    @media (min-width: 768px) {
      .reels-card {
        flex: 0 0 calc(33.333% - 1rem);
      }
    }
    .reels-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.75;
    }
    .reels-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(3, 10, 20, 0.95) 0%, rgba(3, 10, 20, 0.3) 50%, transparent 100%);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: #fff;
    }
    .reels-logo {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.2rem;
      border: 1px solid rgba(255,255,255,0.15);
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    .reels-logo i.fa-brands.fa-whatsapp {
      color: #25D366;
    }
    .reels-logo i.fa-brands.fa-instagram {
      color: #E1306C;
    }
    .reels-tag {
      align-self: flex-start;
      background: linear-gradient(135deg, #ff007f, #7b2cb7);
      font-size: 0.65rem;
      font-weight: 800;
      padding: 0.25rem 0.6rem;
      border-radius: 99px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      box-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
    }
    .reels-text {
      font-size: 0.85rem;
      font-weight: 600;
      line-height: 1.4;
      margin-bottom: 0.5rem;
      color: #ffffff;
      text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    }

    /* Blog Section */
    .blog-grid {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 1.5rem;
      margin-top: 2rem;
      padding-bottom: 1rem;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
    }
    .blog-grid .cyber-panel {
      flex: 0 0 85%;
      scroll-snap-align: start;
      max-width: 320px;
    }
    @media (min-width: 768px) {
      .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        overflow-x: visible;
        padding-bottom: 0;
      }
      .blog-grid .cyber-panel {
        flex: none;
        max-width: none;
      }
    }
    .blog-card {
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .blog-img-wrap {
      aspect-ratio: 16/10;
      width: 100%;
      overflow: hidden;
      background: #000;
    }
    .blog-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .blog-card:hover .blog-img-wrap img {
      transform: scale(1.05);
    }
    .blog-content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .blog-category {
      font-family: var(--font-display);
      font-size: 0.65rem;
      font-weight: 800;
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 0.5rem;
    }
    .blog-title {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.4;
      color: #ffffff;
      margin-bottom: 0.75rem;
    }
    .blog-text {
      font-size: 0.8rem;
      color: var(--text-gray);
      line-height: 1.5;
      margin-bottom: 1.25rem;
      flex-grow: 1;
    }
    .blog-link {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--cyan);
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: color 0.3s;
    }
    .blog-link:hover {
      color: #fff;
    }

    /* Testimonials Redesign (Horizontal Carousel on Mobile, Grid on Desktop) */
    .testimonials-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1.25rem;
      margin-top: 2.25rem;
      padding: 0.5rem 0.5rem 1.5rem 0.5rem; /* padding for hover scale and scrollbar space */
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }
    .testimonials-grid::-webkit-scrollbar,
    .blog-grid::-webkit-scrollbar,
    .reels-grid::-webkit-scrollbar {
      height: 6px;
    }
    .testimonials-grid::-webkit-scrollbar-track,
    .blog-grid::-webkit-scrollbar-track,
    .reels-grid::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 3px;
    }
    .testimonials-grid::-webkit-scrollbar-thumb,
    .blog-grid::-webkit-scrollbar-thumb,
    .reels-grid::-webkit-scrollbar-thumb {
      background: var(--cyan);
      border-radius: 3px;
    }
    .testimonials-grid .testimonial-card {
      flex: 0 0 85%;
      scroll-snap-align: center;
      box-sizing: border-box;
    }
    @media (min-width: 768px) {
      .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 0;
      }
      .testimonials-grid .testimonial-card {
        flex: none;
        width: auto;
      }
    }
    .testimonial-card {
      padding: 1.5rem;
      position: relative;
    }
    .testimonial-stars {
      color: var(--cyan);
      font-size: 0.75rem;
      margin-bottom: 0.75rem;
      display: flex;
      gap: 3px;
    }
    .testimonial-quote {
      font-size: 0.82rem;
      font-style: italic;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.5;
      margin-bottom: 1rem;
    }
    .testimonial-author {
      font-family: var(--font-display);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--cyan);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Video Section Redesign */
    .video-mockup-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
      background: transparent;
      overflow: hidden;
      cursor: pointer;
      display: block; /* Ensure block so margin auto centers it */
      margin: 0 auto;
      z-index: 2;
      clip-path: polygon(
        0 20px, 20px 0, 
        calc(100% - 20px) 0, 100% 20px, 
        100% calc(100% - 20px), calc(100% - 20px) 100%, 
        20px 100%, 0 calc(100% - 20px)
      );
      filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.2));
      transition: all 0.3s ease;
    }
    .video-mockup-wrapper::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 240, 255, 0.5) 0%, rgba(0, 240, 255, 0.15) 50%, rgba(0, 240, 255, 0.5) 100%);
      z-index: -2;
    }
    .video-mockup-wrapper::after {
      content: "";
      position: absolute;
      inset: 5px; /* Thicker video border (5px) */
      background: #000;
      z-index: -1;
      clip-path: polygon(
        0 15px, 15px 0, 
        calc(100% - 15px) 0, 100% 15px, 
        100% calc(100% - 15px), calc(100% - 15px) 100%, 
        15px 100%, 0 calc(100% - 15px)
      );
    }
    .video-mockup-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.85;
      transition: transform 0.5s;
    }
    .video-mockup-wrapper:hover .video-mockup-img {
      transform: scale(1.03);
    }
    .video-mockup-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(3, 10, 20, 0.85);
      border: 2px solid #ff3366; /* Red play button in mockup */
      color: #ff3366;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.85rem;
      box-shadow: 0 0 20px rgba(255, 51, 102, 0.6), inset 0 0 15px rgba(255, 51, 102, 0.4);
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      z-index: 5;
    }
    .video-mockup-play-btn::before {
      content: "";
      position: absolute;
      inset: -8px;
      border: 1.5px dashed rgba(255, 51, 102, 0.4);
      border-radius: 50%;
      animation: rotateReticle 15s linear infinite;
    }
    @keyframes rotateReticle {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .video-mockup-wrapper:hover .video-mockup-play-btn {
      transform: translate(-50%, -50%) scale(1.1);
      border-color: #ffffff;
      color: #ffffff;
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.5);
    }
    .video-mockup-wrapper:hover .video-mockup-play-btn::before {
      border-color: rgba(255, 255, 255, 0.6);
      inset: -12px;
    }

    /* Modal / Lightbox for Youtube Video */
    .video-lightbox {
      position: fixed;
      inset: 0;
      background: rgba(2, 5, 12, 0.95);
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }
    .video-lightbox.active {
      opacity: 1;
      visibility: visible;
    }
    .video-lightbox-content {
      width: 90%;
      max-width: 900px;
      aspect-ratio: 16/9;
      background: #000;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--cyan);
      box-shadow: 0 0 45px rgba(0, 240, 255, 0.4);
      position: relative;
    }
    .video-lightbox-close {
      position: absolute;
      top: -45px;
      right: 0;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      font-family: var(--font-display);
      font-weight: 600;
      letter-spacing: 0.1em;
    }
    .video-lightbox-close:hover {
      color: var(--cyan);
    }
    
    /* Layout Spacing Adjustments (Revision 7) */
    .hero-static {
      padding: 1.8rem 1.5rem 0px !important; /* Balanced space at the top */
    }
    #que-es {
      padding-top: 0px !important; /* Restored clean spacing to avoid crowding */
    }
    #galeria, #reels, #blog, #testimonios, #faq {
      padding: 3.2rem 0 !important; /* Separate lower sections to let HUD elements breathe */
    }

    /* Mini Cyber Panels for Images and Videos to give HUD cockpit alignment with depth */
    .panel-mini {
      padding: 10px !important;
      background: rgba(3, 10, 20, 0.45) !important;
      margin: 0 auto;
    }
    .panel-mini::after {
      inset: 5px !important; /* Thick borders for mini panels */
      clip-path: polygon(
        0 15px, 15px 0, 
        calc(100% - 15px) 0, 100% 15px, 
        100% calc(100% - 15px), calc(100% - 15px) 100%, 
        15px 100%, 0 calc(100% - 15px)
      ) !important;
    }
    /* Extend corner brackets outward to create pronounced depth spacing */
    .panel-mini .cyber-corner.top-left {
      left: -16px; top: -16px; bottom: -16px;
    }
    .panel-mini .cyber-corner.top-right {
      right: -16px; top: -16px; left: -16px;
    }
    .panel-mini .cyber-corner.bottom-right {
      right: -16px; bottom: -16px; top: -16px;
    }
    .panel-mini .cyber-corner.bottom-left {
      left: -16px; bottom: -16px; right: -16px;
    }

    /* Technology Circuit Background Pattern for "Nuestra Esencia" */
    .tech-circuit-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
      opacity: 0.38;
      pointer-events: none;
      background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Cpath d='M-50,200 L150,200 L250,300 L450,300 L500,250 L650,250 L700,300 L900,300 M100,100 L300,100 L380,180 L550,180 M200,450 L350,450 L420,380 L600,380 L670,450 M150,550 L250,450 L500,450' fill='none' stroke='%2300f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.7'/%3E%3Ccircle cx='150' cy='200' r='5' fill='%23ffffff' stroke='%2300f0ff' stroke-width='2'/%3E%3Ccircle cx='450' cy='300' r='5' fill='%2300f0ff'/%3E%3Ccircle cx='650' cy='250' r='5' fill='%23ffffff' stroke='%2300f0ff' stroke-width='2'/%3E%3Ccircle cx='300' cy='100' r='5' fill='%2300f0ff'/%3E%3Ccircle cx='550' cy='180' r='5' fill='%23ffffff' stroke='%2300f0ff' stroke-width='2'/%3E%3Ccircle cx='350' cy='450' r='5' fill='%2300f0ff'/%3E%3Ccircle cx='600' cy='380' r='5' fill='%23ffffff' stroke='%2300f0ff' stroke-width='2'/%3E%3C/svg%3E");
      background-position: center;
      background-repeat: repeat-x;
      background-size: auto 100%;
      animation: circuitGlowPulse 8s infinite alternate ease-in-out;
    }
    @keyframes circuitGlowPulse {
      0% { opacity: 0.28; filter: drop-shadow(0 0 2px rgba(0, 240, 255, 0.2)); }
      100% { opacity: 0.42; filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.5)); }
    }
    
    /* Blog Grid Independent Panel Adjustments */
    .blog-grid .cyber-panel {
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .blog-grid .cyber-panel:hover {
      transform: translateY(-4px) scale(1.02);
      filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.55));
    }
    .blog-grid .cyber-panel .blog-card {
      transform: none !important;
      filter: none !important;
      transition: none !important;
    }
    .cyber-panel.panel-v2 > .blog-card::before,
    .cyber-panel.panel-v2 > .blog-card::after {
      display: none !important;
    }

    /* ==========================================================================
       RESPONSIVE MOBILE STYLES (OVERLOADS & CORRECTIONS)
       ========================================================================== */
    .hero-image-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      width: 100%;
      max-width: 680px;
      margin: 1.5rem auto;
      overflow: visible;
    }
    @media (min-width: 640px) {
      .hero-image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.2rem;
      }
    }

    @media (max-width: 768px) {
      /* Section and Container adjustments */
      section {
        padding: 1.5rem 0 !important;
      }
      .hero-static {
        display: block !important;
        padding: 1.5rem 0 0px !important;
      }
      #que-es {
        padding-top: 0px !important;
      }
      #galeria-reels, #blog, #testimonios, #faq {
        padding: 1.75rem 0 !important;
      }
      .heading-display {
        font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
      }
      .heading-hero {
        font-size: clamp(1.5rem, 5.5vw, 2.2rem) !important;
      }

      /* Cyber Panel responsive corrections */
      .cyber-panel {
        padding: 1.25rem 1rem !important;
        margin: 0.25rem auto !important;
      }
      .cyber-panel::before {
        clip-path: polygon(
          0 16px, 16px 0, 
          calc(100% - 16px) 0, 100% 16px, 
          100% calc(100% - 16px), calc(100% - 16px) 100%, 
          16px 100%, 0 calc(100% - 16px)
        ) !important;
      }
      .cyber-panel::after {
        inset: 4px !important;
        clip-path: polygon(
          0 12px, 12px 0, 
          calc(100% - 12px) 0, 100% 12px, 
          100% calc(100% - 12px), calc(100% - 12px) 100%, 
          12px 100%, 0 calc(100% - 12px)
        ) !important;
      }

      /* Decorative corners mobile scale and safe positioning (prevents overflow-x) */
      .cyber-corner {
        width: 50px !important;
        height: 50px !important;
      }
      .cyber-corner::before {
        transform: scale(0.62) !important;
      }
      .cyber-corner::after {
        display: none !important; /* Hide side bars/crosshairs/graphs on mobile to avoid overcrowding */
      }

      .cyber-corner.top-left {
        top: -6px !important;
        left: -6px !important;
        bottom: auto !important;
      }
      .cyber-corner.top-left::before {
        transform-origin: top left !important;
      }

      .cyber-corner.top-right {
        top: -6px !important;
        right: -6px !important;
        left: auto !important;
        height: 50px !important;
      }
      .cyber-corner.top-right::before {
        transform-origin: top right !important;
      }

      .cyber-corner.bottom-right {
        bottom: -6px !important;
        right: -6px !important;
        top: auto !important;
      }
      .cyber-corner.bottom-right::before {
        transform-origin: bottom right !important;
      }

      .cyber-corner.bottom-left {
        bottom: -6px !important;
        left: -6px !important;
        right: auto !important;
        height: 50px !important;
      }
      .cyber-corner.bottom-left::before {
        transform-origin: bottom left !important;
      }

      /* Mini Panels (inside grids/hero) */
      .panel-mini {
        padding: 6px !important;
      }
      .panel-mini .cyber-corner.top-left {
        left: -4px !important; top: -4px !important;
      }
      .panel-mini .cyber-corner.top-right {
        right: -4px !important; top: -4px !important;
      }
      .panel-mini .cyber-corner.bottom-right {
        right: -4px !important; bottom: -4px !important;
      }
      .panel-mini .cyber-corner.bottom-left {
        left: -4px !important; bottom: -4px !important;
      }

      /* Card frames and stats */
      .parc-stat, .cyber-step-card, .blog-card, .testimonial-card, .reels-card, .cyber-frame {
        clip-path: polygon(
          0 10px, 10px 0, 
          calc(100% - 10px) 0, 100% 10px, 
          100% calc(100% - 10px), calc(100% - 10px) 100%, 
          10px 100%, 0 calc(100% - 10px)
        ) !important;
      }
      .parc-stat::after, .cyber-step-card::after, .blog-card::after, .testimonial-card::after, .reels-card::after, .cyber-frame::after {
        inset: 2px !important;
        clip-path: polygon(
          0 8px, 8px 0, 
          calc(100% - 8px) 0, 100% 8px, 
          100% calc(100% - 8px), calc(100% - 8px) 100%, 
          8px 100%, 0 calc(100% - 8px)
        ) !important;
      }
      .parc-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.4rem !important;
        margin-top: 1.5rem !important;
      }
      .parc-stat {
        padding: 0.6rem 0.4rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
      }
      .parc-stat-num {
        font-size: 1.25rem !important;
        margin-bottom: 0.2rem !important;
      }
      .parc-stat-label {
        font-size: 0.54rem !important;
        letter-spacing: 0.02em !important;
        line-height: 1.25 !important;
      }
      .parc-stat-icon {
        font-size: 1.1rem !important;
        margin-bottom: 0.2rem !important;
      }

      /* Video Mockup notch adjust */
      .cyber-panel.panel-mini {
        margin-bottom: 1.25rem !important;
      }
      .video-mockup-wrapper {
        clip-path: polygon(
          0 12px, 12px 0, 
          calc(100% - 12px) 0, 100% 12px, 
          100% calc(100% - 12px), calc(100% - 12px) 100%, 
          12px 100%, 0 calc(100% - 12px)
        ) !important;
      }
      .video-mockup-wrapper::after {
        inset: 3px !important;
        clip-path: polygon(
          0 9px, 9px 0, 
          calc(100% - 9px) 0, 100% 9px, 
          100% calc(100% - 9px), calc(100% - 9px) 100%, 
          9px 100%, 0 calc(100% - 9px)
        ) !important;
      }
      .video-mockup-play-btn {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.4rem !important;
      }


      .reels-text {
        font-size: 0.68rem !important;
        line-height: 1.3 !important;
      }
      .reels-logo {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
      }
      .reels-overlay {
        padding: 0.6rem !important;
      }

      /* Ambassador Floating Banner adjustment */
      .embassador-toast {
        bottom: 1rem !important;
        right: 1rem !important;
        width: calc(100% - 2rem) !important;
        padding: 1.25rem !important;
      }

      /* Video Lightbox close button positioning helper */
      .video-lightbox-close {
        top: 10px !important;
        right: 10px !important;
        background: rgba(0, 0, 0, 0.7) !important;
        padding: 5px 10px !important;
        border-radius: 4px !important;
        font-size: 0.85rem !important;
        z-index: 1001 !important;
      }

      /* Spacing and helper overrides for specific cards */
      .aliados-cta {
        padding: 2rem 1.25rem !important;
        margin-top: 2.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
      }
      .aliados-cta .btn {
        display: inline-flex !important;
        margin: 0.5rem auto 0 !important;
        padding: 0.8rem 1.25rem !important;
        font-size: 0.8rem !important;
        white-space: normal !important;
        text-align: center !important;
        max-width: 100% !important;
      }
      .venue-card {
        padding: 2rem 1.25rem !important;
        margin-top: 1.5rem !important;
      }
      .venue-meta-value {
        font-size: 1.6rem !important;
      }
      .aliados-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
        margin-top: 1.5rem !important;
        align-items: center !important;
        justify-items: center !important;
      }
      .aliado-item {
        height: auto !important;
        width: 100% !important;
        max-width: 130px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 0.8 !important;
      }
      .aliado-item img {
        width: 100% !important;
        height: auto !important;
        max-height: 30px !important;
        object-fit: contain !important;
      }
      .btn-text-desktop {
        display: none !important;
      }
      .hero-ctas {
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
      }
      .hero-ctas .btn {
        padding: 0.8rem 1rem !important;
        font-size: 0.8rem !important;
        flex: 1 1 auto !important;
      }
      .logo-mobile {
        display: inline-block !important;
      }
      .logo-desktop {
        display: none !important;
      }
      .btn-whatsapp-hero {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.8rem !important;
        width: 100% !important;
      }
      .btn-coming-soon {
        white-space: normal !important;
        font-size: 0.75rem !important;
        padding: 0.8rem 1.25rem !important;
        line-height: 1.4 !important;
        width: 100% !important;
      }
      /* TikTok/Reels Horizontal Swiper layout in Mobile */
      .reels-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1rem !important;
        padding-bottom: 1rem !important;
        -webkit-overflow-scrolling: touch !important;
      }
      .reels-card {
        flex: 0 0 240px !important;
        scroll-snap-align: start !important;
        aspect-ratio: 9/16 !important;
        height: auto !important;
      }
    }

    /* Logo Desktop/Mobile helpers */
    .logo-mobile {
      display: none !important;
    }
    .logo-desktop {
      display: inline-block !important;
    }

    /* WhatsApp CTA Button in Hero */
    .hero-whatsapp-container {
      margin-top: 1.5rem;
      text-align: center;
      width: 100%;
      display: flex;
      justify-content: center;
    }
    .btn-whatsapp-hero {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0.8rem 1.8rem;
      font-family: var(--font-display);
      font-size: 0.9rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #25d366;
      background: rgba(37, 211, 102, 0.05);
      border: 2px solid #25d366 !important;
      border-radius: 50px;
      box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      cursor: pointer;
    }
    .btn-whatsapp-hero:hover {
      background: #25d366;
      color: #030008;
      box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
      transform: translateY(-2px);
    }

    /* Reels TikTok Play Button style */
    .reels-overlay::before {
      content: "\f04b";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 2.2rem;
      color: rgba(255, 255, 255, 0.85);
      z-index: 3;
      pointer-events: none;
      text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
      transition: all 0.3s;
    }
    .reels-card:hover .reels-overlay::before {
      transform: translate(-50%, -50%) scale(1.15);
      color: var(--cyan);
    }

    /* Image Lightbox Modal */
    .image-lightbox {
      position: fixed;
      inset: 0;
      background: rgba(2, 5, 12, 0.96);
      z-index: 2000;
      display: none;
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      cursor: pointer;
    }
    .image-lightbox.active {
      display: flex;
    }
    .image-lightbox img {
      max-width: 96%;
      max-height: 92vh;
      object-fit: contain;
      border: 2px solid var(--cyan);
      border-radius: 8px;
      box-shadow: 0 0 35px rgba(0, 240, 255, 0.5);
      animation: zoomInLight 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    @keyframes zoomInLight {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    .image-lightbox-close {
      position: absolute;
      top: 25px;
      right: 25px;
      background: rgba(0, 0, 0, 0.6);
      border: none;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    .image-lightbox-close:hover {
      color: var(--cyan);
      background: rgba(0, 240, 255, 0.15);
    }

    /* Ignition Spark Particles */
    .ignition-spark {
      position: fixed;
      border-radius: 50%;
      z-index: 120;
      pointer-events: none;
    }

    /* Mobile Sticky Header */
    .mobile-sticky-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background: rgba(3, 0, 8, 0.82);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-bottom: 1px solid rgba(0, 240, 255, 0.25);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 240, 255, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 999;
      transform: translateY(-100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
      opacity: 0;
      pointer-events: none;
    }

    .mobile-sticky-header.visible {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-sticky-header .header-logo {
      height: 30px;
      width: auto;
      filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.45));
      display: block;
      transition: transform 0.3s ease;
    }

    .mobile-sticky-header .header-logo:active {
      transform: scale(0.95);
    }

    @media (min-width: 1024px) {
      .mobile-sticky-header {
        display: none !important;
      }
    }

    /* Mobile Hamburger Menu Button */
    .mobile-hamburger {
      position: absolute;
      right: 1.5rem;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.4rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.3s, transform 0.2s;
    }
    .mobile-hamburger:hover {
      color: var(--cyan);
    }

    /* Mobile Sidebar Menu Drawer */
    .mobile-sidebar {
      position: fixed;
      top: 0;
      right: 0;
      width: min(80vw, 300px);
      height: 100vh;
      background: rgba(3, 0, 8, 0.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-left: 1px solid rgba(0, 240, 255, 0.25);
      box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8), -5px 0 15px rgba(0, 240, 255, 0.1);
      z-index: 1001;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      padding: 2.5rem 1.5rem;
      box-sizing: border-box;
    }
    .mobile-sidebar.open {
      transform: translateX(0);
    }
    .mobile-sidebar-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .mobile-sidebar-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }
    .mobile-sidebar-close {
      align-self: flex-end;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
      margin-bottom: 2rem;
      transition: color 0.3s;
    }
    .mobile-sidebar-close:hover {
      color: var(--cyan);
    }
    .mobile-sidebar-links {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .mobile-sidebar-link {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: color 0.3s, padding-left 0.3s;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding-bottom: 0.5rem;
    }
    .mobile-sidebar-link:hover {
      color: var(--cyan);
      padding-left: 8px;
    }

    /* Sedes Section Styles (Horizontal Carousel on Mobile, Grid on Desktop) */
    .sedes-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1.5rem;
      margin-top: 2rem;
      padding: 0.5rem 0.5rem 1.5rem 0.5rem; /* padding for scrollbar and shadow */
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }
    .sedes-grid::-webkit-scrollbar {
      height: 6px;
    }
    .sedes-grid::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 3px;
    }
    .sedes-grid::-webkit-scrollbar-thumb {
      background: var(--cyan);
      border-radius: 3px;
    }
    .sedes-grid .sede-card {
      flex: 0 0 85%;
      scroll-snap-align: center;
      box-sizing: border-box;
    }
    @media (min-width: 768px) {
      .sedes-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
        margin: 2rem auto 0 auto;
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 0;
      }
      .sedes-grid .sede-card {
        flex: none;
        width: auto;
      }
    }
    .sede-card {
      padding: 2rem 1.5rem !important;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: rgba(14, 8, 32, 0.45) !important;
      border: 1px solid rgba(255, 255, 255, 0.08) !important;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .sede-card:hover {
      transform: translateY(-5px);
      border-color: var(--cyan) !important;
      box-shadow: 0 10px 30px rgba(0, 240, 255, 0.25);
    }
    .sede-icon-wrapper {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(0, 240, 255, 0.1);
      color: var(--cyan);
      border: 1px solid rgba(0, 240, 255, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
      filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
    }
    .sede-name {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.5rem;
      letter-spacing: 0.02em;
    }
    .sede-address {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .sede-address i {
      color: var(--cyan);
    }
    .sede-details {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 2rem;
      align-items: center;
      width: 100%;
    }
    .sede-details span {
      font-size: 0.8rem;
      color: var(--text-gray);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .sede-details i {
      color: var(--cyan);
    }

    /* Registration Modal Styles */
    .registration-modal {
      position: fixed;
      inset: 0;
      z-index: 2500;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }
    .registration-modal.active {
      display: flex;
    }
    .registration-modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(2, 5, 12, 0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .registration-modal-content {
      position: relative;
      z-index: 5;
      width: 100%;
      max-width: 580px;
      background: radial-gradient(circle at top right, rgba(16, 28, 52, 0.98), rgba(5, 12, 24, 0.99)) !important;
      border: 2px solid rgba(0, 240, 255, 0.75) !important;
      box-shadow: 0 0 35px rgba(0, 240, 255, 0.3) !important;
      padding: 2.25rem 1.5rem 2.25rem 2rem !important;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
    }
    .registration-modal-inner {
      overflow-y: auto;
      padding-right: 0.75rem;
      padding-bottom: 1.5rem;
    }
    .registration-modal-inner::-webkit-scrollbar {
      width: 6px;
    }
    .registration-modal-inner::-webkit-scrollbar-track {
      background: rgba(2, 5, 12, 0.3);
      border-radius: 3px;
    }
    .registration-modal-inner::-webkit-scrollbar-thumb {
      background: var(--cyan);
      border-radius: 3px;
      box-shadow: 0 0 5px var(--cyan);
    }
    .registration-modal-close {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      background: transparent;
      border: none;
      color: var(--text-gray);
      font-size: 1.3rem;
      cursor: pointer;
      transition: color 0.3s;
      z-index: 10;
    }
    .registration-modal-close:hover {
      color: #fff;
    }
    .modal-heading {
      font-size: 1.6rem;
      color: #fff;
      margin-bottom: 1.5rem;
    }
    .registration-form .form-grid {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }
    .registration-form .form-group-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .registration-form .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .registration-form label {
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-align: left;
    }
    .registration-form label .req {
      color: var(--cyan);
    }
    .registration-form .antispam-group {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 1rem !important;
      margin-top: 0.25rem;
    }
    .registration-form .antispam-group label {
      margin-bottom: 0 !important;
      flex-shrink: 0;
    }
    .registration-form .antispam-group input {
      max-width: 130px !important;
      text-align: center !important;
    }
    .registration-form input[type="text"],
    .registration-form input[type="email"],
    .registration-form input[type="tel"],
    .registration-form select,
    .registration-form textarea {
      width: 100%;
      background: rgba(2, 5, 12, 0.7) !important;
      border: 1px solid rgba(255, 255, 255, 0.1) !important;
      border-radius: 4px !important;
      padding: 0.65rem 0.85rem !important;
      color: #fff !important;
      font-size: 0.85rem !important;
      transition: all 0.3s ease !important;
      font-family: inherit !important;
    }
    .registration-form input:focus,
    .registration-form select:focus,
    .registration-form textarea:focus {
      outline: none !important;
      border-color: var(--cyan) !important;
      box-shadow: 0 0 10px rgba(0, 240, 255, 0.3) !important;
      background: rgba(2, 5, 12, 0.9) !important;
    }
    .registration-form select option {
      background: #02050c;
      color: #fff;
    }
    .modal-messages {
      margin-bottom: 1.25rem;
      width: 100%;
    }
    .mensajes.error {
      background: rgba(255, 50, 50, 0.1) !important;
      border: 1px solid rgba(255, 50, 50, 0.3) !important;
      color: #ff5555 !important;
      padding: 0.65rem 1rem !important;
      border-radius: 4px !important;
      font-size: 0.82rem !important;
      text-align: center !important;
      font-weight: 600 !important;
    }
    .mensajes.exito {
      background: rgba(0, 240, 255, 0.1) !important;
      border: 1px solid rgba(0, 240, 255, 0.3) !important;
      color: var(--cyan) !important;
      padding: 0.8rem 1rem !important;
      border-radius: 4px !important;
      font-size: 0.85rem !important;
      text-align: center !important;
      font-weight: 700 !important;
      letter-spacing: 0.05em !important;
    }

    @media (max-width: 580px) {
      .registration-modal {
        padding: 0.5rem !important;
      }
      .registration-modal-content {
        padding: 1.5rem 0.5rem 1.5rem 1rem !important;
        margin: 0 auto !important;
        max-height: 95vh;
        border-width: 1.5px !important;
      }
      .registration-modal-inner {
        padding-right: 0.5rem;
        padding-bottom: 2rem;
      }
      .registration-form .form-group-split {
        grid-template-columns: 1fr;
        gap: 0.9rem;
      }
      .modal-heading {
        font-size: 1.25rem;
      }
    }
