    @font-face {
      font-family: 'Magneto';
      src: url('../fonts/Magneto-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
    }

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

    :root {
      --color-primary: #1e40af;
      --color-secondary: #1e3a8a;
      --color-accent: #3b82f6;
      --color-light-blue: #dbeafe;
      --color-dark-blue: #1e3a8a;
      --color-denim: #4f46e5;
      --color-dark: #0f172a;
      --color-light: #f8fafc;
      --color-gray: #64748b;
      --gradient-primary: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
      --gradient-denim: linear-gradient(135deg, #3b82f6 0%, #1e40af 50%, #1e3a8a 100%);
      --gradient-hero: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(30, 58, 138, 0.8) 100%);
      --font-magneto: 'Magneto', cursive; 
    }

    body {
      font-family: 'Open Sans', sans-serif;
      line-height: 1.6;
      color: var(--color-dark);
      overflow-x: hidden;
    }

    /* Navbar moderna con glassmorphism */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(59, 130, 246, 0.2);
      padding: 1rem 0;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 8px 32px rgba(30, 64, 175, 0.15);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 2rem;
    }

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

    .logo {
      height: 50px;
      width: auto;
      border-radius: 10px;
      transition: transform 0.3s ease;
      filter: drop-shadow(0 4px 8px rgba(30, 64, 175, 0.3));
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .brand-text {
      font-family: var(--font-magneto);
      font-weight: 700;
      font-size: 1.8rem;
      background: var(--gradient-denim);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 2px 4px rgba(30, 64, 175, 0.3);
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }

    .nav-menu a {
      text-decoration: none;
      color: var(--color-dark);
      font-weight: 600;
      font-size: 0.95rem;
      position: relative;
      transition: all 0.3s ease;
      padding: 0.5rem 1rem;
      border-radius: 25px;
    }

    .nav-menu a:hover {
      color: var(--color-primary);
      background: rgba(59, 130, 246, 0.1);
      transform: translateY(-1px);
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-menu a:hover::after {
      width: 80%;
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 1001;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--color-primary);
      margin: 3px 0;
      transition: 0.3s;
      border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .nav-menu {
        position: fixed;
        left: -100%;
        top: 82px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(30, 64, 175, 0.2);
        padding: 2rem 0;
        gap: 1rem;
        border-top: 1px solid rgba(59, 130, 246, 0.2);
        height: calc(100vh - 82px);
      }

      .nav-menu.active {
        left: 0;
      }

      .nav-menu li {
        padding: 0.5rem 0;
      }

      .nav-menu a {
        font-size: 1.1rem;
        display: block;
        padding: 1rem 2rem;
        color: var(--color-dark);
        border-radius: 10px;
        margin: 0 1rem;
        transition: all 0.3s ease;
      }

      .nav-menu a:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--color-primary);
        transform: translateY(-2px);
      }

      .brand-text {
        font-size: 1.4rem;
      }
    }

    /* Hero section moderna */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--gradient-denim);
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient-hero);
      z-index: 1;
    }

    .hero-slider {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .hero-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      filter: sepia(0.3) saturate(1.2) hue-rotate(200deg);
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: white;
      max-width: 800px;
      padding: 0 2rem;
    }

    .hero-title {
      font-family: var(--font-magneto);
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-shadow:
        -2px -2px 0 rgba(0, 0, 0, 0.8),
        2px -2px 0 rgba(0, 0, 0, 0.8),
        -2px 2px 0 rgba(0, 0, 0, 0.8),
        2px 2px 0 rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 1s ease-out;
    }

    .hero-subtitle {
      font-size: 1.4rem;
      margin-bottom: 2rem;
      font-weight: 300;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 1s ease-out 0.2s both;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      background: var(--gradient-primary);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 0 8px 32px rgba(30, 64, 175, 0.4);
      transition: all 0.3s ease;
      animation: fadeInUp 1s ease-out 0.4s both;
    }

    .hero-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(30, 64, 175, 0.5);
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      animation: bounce 2s infinite;
    }

    .scroll-indicator::before {
      content: '↓';
      color: white;
      font-size: 2rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    /* Sección de empresa moderna */
    .company-section {
      padding: 8rem 0;
      background: linear-gradient(135deg, var(--color-light) 0%, #f1f5f9 100%);
      position: relative;
    }

    .company-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to bottom, transparent, rgba(248, 250, 252, 0.8));
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .company-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .company-text h2 {
      font-family: var(--font-magneto);
      font-size: 3rem;
      font-weight: 700;
      color: var(--color-primary);
      margin-bottom: 1.5rem;
      line-height: 1.2;
      text-shadow:
        -1px -1px 0 rgba(255, 255, 255, 0.8),
        1px -1px 0 rgba(255, 255, 255, 0.8),
        -1px 1px 0 rgba(255, 255, 255, 0.8),
        1px 1px 0 rgba(255, 255, 255, 0.8);
    }

    .company-text p {
      font-size: 1.2rem;
      color: var(--color-gray);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.5rem;
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
      transition: all 0.3s ease;
      border: 1px solid rgba(59, 130, 246, 0.1);
    }

    .feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 32px rgba(30, 64, 175, 0.2);
      border-color: var(--color-accent);
    }

    .feature-icon {
      background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
      color: white;
      padding: 0.5rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
    }

    .company-image {
      position: relative;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2);
    }

    .company-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      transition: transform 0.5s ease;
      filter: saturate(1.1) contrast(1.1);
    }

    .company-image:hover img {
      transform: scale(1.05);
    }

    .company-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(30, 64, 175, 0.1), transparent);
      z-index: 1;
    }

    /* Sección de testimonios moderna */
    .testimonials-section {
      padding: 8rem 0;
      background: linear-gradient(135deg, var(--color-dark) 0%, #1e293b 100%);
      color: white;
    }

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

    .testimonials-header h2 {
      font-family: var(--font-magneto);
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--color-accent);
      text-shadow:
        -1px -1px 0 rgba(255, 255, 255, 0.1),
        1px -1px 0 rgba(255, 255, 255, 0.1),
        -1px 1px 0 rgba(255, 255, 255, 0.1),
        1px 1px 0 rgba(255, 255, 255, 0.1);
    }

    .testimonials-header p {
      font-size: 1.2rem;
      color: #94a3b8;
    }

    .testimonials-slider {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      height: 400px;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .testimonial-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.8s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .testimonial-slide.active {
      opacity: 1;
    }

    .testimonial-slide img,
    .testimonial-slide video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
      filter: saturate(1.2) contrast(1.1);
    }

    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(59, 130, 246, 0.3);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(59, 130, 246, 0.2);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .slider-nav:hover {
      background: var(--color-primary);
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
    }

    .slider-nav.prev {
      left: 20px;
    }

    .slider-nav.next {
      right: 20px;
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
      border: 1px solid rgba(59, 130, 246, 0.3);
    }

    .dot.active {
      background: var(--color-accent);
      transform: scale(1.2);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5);
    }

    /* Animaciones */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

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

    @keyframes bounce {
      0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      40%, 43% {
        transform: translateX(-50%) translateY(-10px);
      }
      70% {
        transform: translateX(-50%) translateY(-5px);
      }
      90% {
        transform: translateX(-50%) translateY(-2px);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.5rem;
      }

      .hero-subtitle {
        font-size: 1.1rem;
      }

      .company-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

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

      .company-text h2 {
        font-size: 2rem;
      }

      .testimonials-slider {
        height: 300px;
      }

      .testimonials-header h2 {
        font-size: 2rem;
      }
    }
