
/* Hero Banner con Three.js */
.hero-banner {
    min-height: 600px;
    height: 80vh;
    background: linear-gradient(135deg, #1a0e0e 0%, #2d1810 50%, #1a0e0e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5),
                 0 0 40px rgba(255, 107, 53, 0.3),
                 0 4px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.5rem;
    color: #f4f4f4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4),
                0 0 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6),
                0 0 30px rgba(255, 107, 53, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.5),
                     0 0 40px rgba(255, 107, 53, 0.3),
                     0 4px 8px rgba(0, 0, 0, 0.8);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.8),
                     0 0 60px rgba(255, 107, 53, 0.5),
                     0 4px 8px rgba(0, 0, 0, 0.8);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}
