/* --- Estilos base --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Se adapta mejor a distintos dispositivos */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), 
                url("../img/fondo11.jpg") center/cover no-repeat fixed;
    padding: 2rem;
}

.containerr {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 700px;
    color: #ffffff;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    text-wrap: balance; /* Equilibra visualmente las líneas del título */
    gap: 4px;
}

.hero-title span {
    display: block;
}

/* Forzamos que Gestión Turística se mantenga en una sola línea */
.hero-title .turismo-line {
    white-space: nowrap;
}




.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
        opacity: 0.9;
}

/* --- Botón mejorado --- */
.botoon2 {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #0056B3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4);
}

.botoon2:hover {
    background-color: #004494;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 86, 179, 0.5);
}

/* --- Responsive inteligente --- */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll; /* Mejora rendimiento en móviles */
        text-align: center;
        min-height: 600px;
    }

    .hero-content {
        margin: 0 auto;
    }
}