/* --- ESTILOS HERO SECTION --- */
.hero-section {
    width: 100%;
    height: 190px; /* Ajustable según necesidad */
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background-color: #ffffff;
    padding: 20px 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 100px;
}

.hero-content h1 {
    margin: 0;
    font-family: 'Playfair Display', serif; /* Tipografía elegante para el título */
    font-size: 48px;
    color: #1a2b3c;
    font-weight: 400;
    
}

/* --- RESPONSIVIDAD --- */
@media (max-width: 992px) {
    .nav-list {
        justify-content: flex-start; /* Alinea al inicio para scroll lateral */
        padding-left: 10px;
    }
    
    .hero-content {
        padding: 15px 40px;
        margin-top: 140px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 200px;
        
    }
    
    .hero-content {
        width: 80%;
        text-align: center;
        padding: 10px 20px;
        margin-top: 160px;
    }
}