:root {
            --azul-primario: #003366;
            --naranja-acento: #FF9900;
            --gris-oscuro: #444444;
            --gris-claro: #F5F5F5;
            --blanco: #FFFFFF;
            --sombra: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            color: var(--gris-oscuro);
            line-height: 1.6;
            background-color: var(--blanco);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header y Navegación */
        header {
            background-color: var(--azul-primario);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--sombra);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--naranja-acento);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-weight: bold;
            color: var(--azul-primario);
        }
        
        .logo-icon-wb {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--azul-primario);
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: var(--blanco);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--blanco);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            cursor: pointer;
        }
        
        nav ul li a:hover {
            color: var(--naranja-acento);
        }
        
        /* Slider Hero */
        .hero-slider {
            position: relative;
            height: 100vh;
            max-height: 700px;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-content {
            max-width: 600px;
            padding: 40px;
            background: rgba(0, 51, 102, 0.85);
            border-radius: 10px;
            margin-left: 10%;
            color: var(--blanco);
            animation: fadeIn 1s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .slide h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .slide p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--naranja-acento);
            color: var(--blanco);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #e58900;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .slider-dot.active {
            background: var(--naranja-acento);
        }
        
        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }
        
        .arrow {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blanco);
            font-size: 1.5rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .arrow:hover {
            background: var(--naranja-acento);
        }
        
        /* Beneficios */
        .benefits {
            padding: 80px 0;
            background-color: var(--gris-claro);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--azul-primario);
            font-size: 2.2rem;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .benefit-card {
            background: var(--blanco);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--sombra);
            transition: transform 0.3s;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
        }
        
        .benefit-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 153, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--naranja-acento);
            font-size: 28px;
        }
        
        .benefit-card h3 {
            margin-bottom: 15px;
            color: var(--azul-primario);
        }
        
        /* Cómo funciona */
        .how-it-works {
            padding: 80px 0;
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .step {
            flex: 0 0 calc(25% - 30px);
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--azul-primario);
            color: var(--blanco);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .step:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 25px;
            right: -15%;
            width: 30%;
            height: 2px;
            background: var(--azul-primario);
        }
        
        /* Galería con Carrusel */
        .gallery {
            padding: 80px 0;
            background-color: var(--gris-claro);
        }
        
        .gallery-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: var(--sombra);
        }
        
        .gallery-slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .gallery-slide {
            min-width: 100%;
            position: relative;
        }
        
        .gallery-slide img {
            width: 100%;
            display: block;
            height: 500px;
            object-fit: cover;
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 51, 102, 0.85);
            color: var(--blanco);
            padding: 20px;
            text-align: center;
        }
        
        .gallery-caption h3 {
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .gallery-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .gallery-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--azul-primario);
            opacity: 0.5;
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .gallery-dot.active {
            opacity: 1;
            transform: scale(1.2);
        }
        
        .gallery-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
        }
        
        /* Formulario */
        .contact {
            padding: 80px 0;
            background: linear-gradient(to bottom, var(--azul-primario) 50%, var(--gris-claro) 50%);
        }
        
        .form-container {
            background: var(--blanco);
            border-radius: 10px;
            padding: 40px;
            box-shadow: var(--sombra);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 30px;
            color: var(--azul-primario);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        /* Testimonios */
        .testimonials {
            padding: 80px 0;
            background-color: var(--gris-claro);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: var(--blanco);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--sombra);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding-left: 30px;
        }
        
        .testimonial-text::before {
            content: """;
            position: absolute;
            left: 0;
            top: -20px;
            font-size: 60px;
            color: var(--naranja-acento);
            font-family: Arial;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--azul-primario);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blanco);
            font-weight: bold;
            margin-right: 15px;
        }
        
        /* Footer */
        footer {
            background-color: var(--azul-primario);
            color: var(--blanco);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--blanco);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .footer-column ul li a:hover {
            opacity: 1;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blanco);
            text-decoration: none;
            transition: background 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--naranja-acento);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.8;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            nav ul li {
                margin: 10px;
            }
            
            .slide-content {
                margin: 0 auto;
                text-align: center;
                width: 90%;
            }
            
            .slide h1 {
                font-size: 2rem;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .step {
                flex: 0 0 100%;
                margin-bottom: 40px;
            }
            
            .step:not(:last-child)::after {
                display: none;
            }
            
            .slider-arrows {
                display: none;
            }
            
            .gallery-slide img {
                height: 300px;
            }
        }