/* ===== ESTILOS PARA LA PÁGINA DE TIPOS DE DISCAPACIDAD ===== */
.titulo {
    text-align: center;
    color: #0056b3;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contenido1,
.contenido2 {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: justify;
}

.contenido1 img,
.contenido2 img {
    width: 100%;
    max-width: 600px;
    margin: 1.5rem auto;
    display: block;
    border-radius: 8px;
}

.contenido2 h2 {
    color: #0056b3;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.contenido2 h3 {
    color: #e91e63;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.contenido2 ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.contenido2 li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contenedor {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contenido3,
.contenido4,
.contenido5,
.contenido6 {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: justify;
}

.contenido3 img,
.contenido4 img,
.contenido5 img,
.contenido6 img {
    width: 100%;
    margin: 1rem 0;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .titulo {
        font-size: 2rem;
    }

    .contenido1,
    .contenido2 {
        padding: 1rem;
        
    }

    .contenedor {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}