/* ========================================
   EMPRESA HERO SECTION
======================================== */
.empresa-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.empresa-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.empresa-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.empresa-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(88, 155, 210, 0.8) 0%, 
        rgba(51, 63, 80, 0.9) 100%);
    z-index: 2;
}

.empresa-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.empresa-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.empresa-hero-description {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.empresa-hero-btn {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--color-green);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid transparent;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.empresa-hero-btn:hover {
    background-color: var(--color-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* ========================================
   RESPONSIVE EMPRESA HERO
======================================== */
@media (max-width: 1024px) {
    .empresa-hero {
        height: 500px;
    }
    
    .empresa-hero-title {
        font-size: 42px;
    }
    
    .empresa-hero-description {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .empresa-hero {
        height: 450px;
    }
    
    .empresa-hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .empresa-hero-description {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .empresa-hero-btn {
        padding: 14px 35px;
        font-size: 16px;
    }
    
    .empresa-hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .empresa-hero {
        height: 400px;
    }
    
    .empresa-hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .empresa-hero-description {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .empresa-hero-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .empresa-hero-overlay {
        background: linear-gradient(135deg, 
            rgba(88, 155, 210, 0.85) 0%, 
            rgba(51, 63, 80, 0.95) 100%);
    }
}

@media (max-width: 360px) {
    .empresa-hero {
        height: 350px;
    }
    
    .empresa-hero-title {
        font-size: 24px;
    }
    
    .empresa-hero-description {
        font-size: 15px;
    }
    
    .empresa-hero-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}