      /* --- VARIABLES --- */
      :root {
        --bg-dark: #1d1d2a;
        --bg-card: #343440;
        --accent: #59cbe8;
        --text-light: #f4f4f4;
        --text-gray: #b0b0b0;
        --radius-lg: 30px;
        --radius-btn: 50px;
      }

      /* --- RESET --- */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Poppins", sans-serif;
        background-color: var(--bg-dark);
        color: var(--text-light);
        line-height: 1.6;
        overflow-x: hidden;
      }
      h1,
      h2,
      h3 {
        color: var(--accent);
        margin-bottom: 1rem;
      }
      p {
        color: var(--text-gray);
        margin-bottom: 1rem;
      }
      a {
        text-decoration: none;
        transition: 0.3s;
      }
      ul {
        list-style: none;
      }

      /* --- UTILIDADES --- */
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .btn {
        display: inline-block;
        background-color: var(--accent);
        color: var(--bg-dark);
        padding: 12px 30px;
        font-weight: 700;
        border-radius: var(--radius-btn);
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(89, 203, 232, 0.3);
        cursor: pointer;
        border: none;
        outline: none;
      }
      .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(89, 203, 232, 0.5);
        background-color: #fff;
      }

      .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        position: relative;
      }
      .section-title::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: var(--accent);
        margin: 10px auto 0;
        border-radius: 2px;
      }

      /* --- ANIMACIONES --- */
      .reveal {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-out;
      }
      .reveal.active {
        opacity: 1;
        transform: translateY(0);
      }

      /* --- HEADER & NAVBAR MEJORADO --- */
      header {
        background-color: rgba(29, 29, 42, 0.98);
        padding: 15px 0;
        position: fixed;
        width: 100%;
        z-index: 1000;
        border-bottom: 1px solid rgba(89, 203, 232, 0.1);
      }
      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      /* Logo Estilo Tech */
      .logo-area {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .logo-icon {
        font-size: 1.8rem;
        color: var(--accent);
      }
      .logo-text {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        line-height: 1;
      }
      .logo-text span {
        color: var(--accent);
        font-size: 0.9rem;
        display: block;
        font-weight: 400;
        letter-spacing: 2px;
      }

      .nav-links {
        display: flex;
        gap: 30px;
        align-items: center;
      }
      .nav-links a {
        color: #fff;
        font-weight: 500;
        font-size: 0.95rem;
      }
      .nav-links a:hover {
        color: var(--accent);
      }

      /* Hamburger Menu Icon (Oculto en PC) */
      .hamburger {
        display: none;
        cursor: pointer;
        color: var(--accent);
        font-size: 1.8rem;
      }

      /* --- HERO --- */
      .hero {
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        margin-top: 0;
      }
      .video-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        opacity: 0.6;
      }
      .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(29, 29, 42, 0.7);
        z-index: -1;
      }
      .hero-content {
        z-index: 1;
        padding: 0 20px;
        padding-top: 60px;
      }
      .hero-content h1 {
        font-size: 3.5rem;
        color: #fff;
        line-height: 1.2;
        text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
      }
      .hero-content span {
        color: var(--accent);
      }

      /* --- SECCIONES COMUNES --- */
      .section-padding {
        padding: 100px 0;
      }

      /* Estilos de About, Services, Values identicos a la version anterior pero compactados */
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
      }
      .about-img img {
        width: 100%;
        border-radius: var(--radius-lg);
        border: 2px solid var(--bg-card);
      }

      .values{
        background-color: var(--bg-dark);
        padding: 100px 0;
      }

      .services-grid,
      .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .service-card,
      .value-card {
        background-color: var(--bg-card);
        border-radius: var(--radius-lg);
        padding: 40px;
        transition: 0.3s;
        position: relative;
        overflow: hidden;
      }
      .service-card:hover,
      .value-card:hover {
        transform: translateY(-10px);
      }
      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--accent);
      }

      .service-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
        font-size: 0.9rem;
      }
      .service-list li::before {
        content: "•";
        color: var(--accent);
        position: absolute;
        left: 0;
        font-weight: bold;
      }
      .icon-box {
        color: var(--accent);
        font-size: 2.5rem;
        margin-bottom: 20px;
        text-align: center;
      }
      .value-card {
        text-align: center;
      }

      /* --- CARRUSEL --- */
      .carousel-section {
        background-color: var(--bg-card);
        padding: 80px 0;
      }
      .carousel-container {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      }
      .carousel-slide {
        display: none;
        width: 100%;
        height: 500px;
        position: relative;
      }
      .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .slide-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(
          to top,
          rgba(29, 29, 42, 0.95),
          transparent
        );
        padding: 40px 20px 20px;
      }
      .prev,
      .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -22px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        background-color: rgba(0, 0, 0, 0.4);
      }
      .next {
        right: 0;
        border-radius: 3px 0 0 3px;
      }
      .prev:hover,
      .next:hover {
        background-color: var(--accent);
        color: var(--bg-dark);
      }
      .fade {
        animation-name: fade;
        animation-duration: 1.5s;
      }
      @keyframes fade {
        from {
          opacity: 0.4;
        }
        to {
          opacity: 1;
        }
      }

      /* --- CONTACTO & FORMULARIO --- */
      .contact-section {
        background: var(--bg-dark);
        padding: 100px 0;
      }
      .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        background: var(--bg-card);
        padding: 50px;
        border-radius: var(--radius-lg);
      }

      .contact-info h3 {
        font-size: 1.8rem;
        color: #fff;
      }
      .info-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        gap: 15px;
      }
      .info-item i {
        color: var(--accent);
        font-size: 1.2rem;
      }

      .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #444;
        background: #252530;
        color: #fff;
        font-family: "Poppins", sans-serif;
        transition: 0.3s;
      }
      .form-group input:focus,
      .form-group textarea:focus {
        border-color: var(--accent);
        outline: none;
        box-shadow: 0 0 10px rgba(89, 203, 232, 0.2);
      }
      .form-group textarea {
        height: 150px;
        resize: none;
      }

      /* --- FOOTER --- */
      footer {
        background-color: #11111a;
        padding: 50px 0 20px;
        text-align: center;
        border-top: 1px solid #333;
      }
      .social-links a {
        color: #fff;
        font-size: 1.5rem;
        margin: 0 10px;
      }

      /* --- RESPONSIVE MEDIA QUERIES --- */
      @media (max-width: 768px) {
        .hamburger {
          display: block;
          z-index: 1001;
        }

        /* Menú móvil */
        .nav-links {
          position: fixed;
          top: 0;
          right: -100%; /* Oculto a la derecha */
          height: 100vh;
          width: 70%;
          background-color: var(--bg-card);
          flex-direction: column;
          justify-content: center;
          align-items: center;
          transition: 0.4s ease;
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        }

        .nav-links.active {
          right: 0;
        } /* Mostrar menú */
        .nav-links li {
          margin: 20px 0;
        }
        .nav-links .btn {
          margin-top: 10px;
        }

        /* Ajustes generales */
        .hero-content h1 {
          font-size: 2.2rem;
        }
        .about-grid,
        .contact-wrapper {
          grid-template-columns: 1fr;
        }
        .carousel-slide {
          height: 300px;
        }
        .contact-wrapper {
          padding: 30px 20px;
        }
      }