/* Hero Section - Versión Corregida */
.hero {
    background: 
        linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 85% 60%, rgba(229, 57, 53, 0.25) 0%, transparent 60%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 45%;
    height: 100%;
    background: url('https://i.ibb.co/RpRsXBZY/download.png') no-repeat bottom right;
    background-size: contain;
    z-index: 2;
    animation: professionalFloat 8s ease-in-out infinite;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.hero-text {
    text-align: left;
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
    color: white;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.mobile-hero-image {
    display: none;
}

/* RESPONSIVE - CORREGIDO */
@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 0;
        flex-direction: column;
        text-align: center;
    }
    
    .hero::after {
        display: none;
    }
    
    .hero-content {
        justify-content: flex-start;
        padding-top: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
        margin-bottom: 30px;
        padding-top: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        justify-content: center;
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .mobile-hero-image {
        display: block;
        width: 100%;
        height: 35vh;
        min-height: 250px;
        background: url('https://i.ibb.co/RpRsXBZY/download.png') no-repeat center bottom;
        background-size: contain;
        animation: professionalFloat 8s ease-in-out infinite;
        margin-top: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 0 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .mobile-hero-image {
        height: 30vh;
        min-height: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 0;
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .mobile-hero-image {
        height: 25vh;
        min-height: 180px;
    }
    
    .cta-buttons {
        gap: 10px;
    }
}