.hero-banner {
    position: relative;
    min-height: 100vh;
    background-image: url("../images/background-heroBanner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center; 
    text-align: center; 
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 107, 63, 0.92) 0%, rgba(0, 107, 63, 0.85) 50%, rgba(0, 150, 90, 0.75) 100%);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 80px 20px;
    color: white;
    text-align: center; 
    margin: 0 auto; 
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center; 
}

.hero-title span {
    color: #a8e6cf;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
    text-align: center; 
    margin-left: auto; 
    margin-right: auto; 
}

.btn-light-benecoop {
    background: white;
    color: #006b3f;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-light-benecoop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
    color: #006b3f;
}

.btn-outline-benecoop {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-benecoop:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center; 
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center; 
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #a8e6cf;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-banner {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 60px 15px;
    }
}