#banner-section {
    width: 100%;
    overflow: hidden; /* Importante para que el zoom no desborde */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Sombra suave */
}

.banner-container {
    width: 100%;
    /* En escritorio, mantenemos la proporción original o una altura fija */
    height: auto;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    /* En escritorio se ve completa */
    object-fit: contain;
}
/* --- Contenedor Principal --- */
#informacion {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.inf-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    gap: 2rem;
    perspective: 1000px; /* Para que las animaciones tengan profundidad */
}

/* --- Tarjetas Estilizadas --- */
.inf-card1, .inf-card2 {
    background: white;
    flex: 1;
    padding: 2.5rem;
    border-radius: 15px;
    border-top: 5px solid #1E3A8A; /* Acento institucional arriba */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.inf-card1:hover, .inf-card2:hover {
    transform: translateY(-5px);
}

.titulo-tarjeta {
    font-size: clamp(22px, 2vw, 28px);
    color: #1E3A8A;
    font-weight: 800;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.dato-contacto {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
}

.email-link {
    color: #1976D2;
    font-weight: bold;
}

/* --- Lista de Leyes --- */
.lista-normativa {
    list-style: none;
    padding: 0;
}

.lista-normativa li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
    color: #555;
}

.lista-normativa li::before {
    content: "⚖️"; /* Icono legal sutil */
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* --- Botones de Enlace (El cambio grande) --- */
.link-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.links {
    background: linear-gradient(135deg, #1E3A8A, #1976D2);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px; /* Estilo píldora moderna */
    color: white;
    font-weight: 700;
    font-size: 1.1rem; /* Tamaño legible */
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.links:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
    filter: brightness(1.1);
}

/* --- RESPONSIVO --- */
@media (max-width: 900px) {
    .inf-container {
        flex-direction: column;
    }

    .links {
        width: 100%;
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .banner-container {
        /* Definimos una altura fija para el móvil.
           Ajusta este valor (200px-300px) según qué tan grande
           necesites que se vea el texto del centro. */
        height: 250px;
        width: 100%;
        overflow: hidden;
    }

    .banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;

}