 .hero {
            background: linear-gradient(135deg, rgba(0, 8, 17, 0.9) 0%, rgba(0, 14, 34, 0.842) 100%), 
                        url('https://plus.unsplash.com/premium_photo-1661872817492-fd0c30404d74?q=80&w=1487&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 8%;
            position: relative;
            overflow: hidden;
        }
        
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        
        .hero-content {
            max-width: 600px;
            color: white;
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2.5rem;
            animation: fadeInUp 1s ease-out 0.4s forwards;
            opacity: 0;
        }
        
        .btn {
            padding: 14px 28px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary {
            background-color: rgb(0, 12, 31);
            color: var(--primary);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.329);
            background-color: rgba(0, 12, 31, 0.308);
        }
        
        .btn-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        /* Efecto de esquina decorativa */
        .corner-effect {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            z-index: 1;
        }
        
        .corner-effect.top-right {
            top: -50px;
            right: -50px;
            border-left: none;
            border-bottom: none;
        }
        
        .corner-effect.bottom-left {
            bottom: -50px;
            left: -50px;
            border-right: none;
            border-top: none;
        }
        
        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero {
                padding: 0 5%;
                text-align: center;
            }
            
            .hero-content {
                max-width: 100%;
            }
            
            .cta-buttons {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .corner-effect {
                display: none;
            }
        }