/* Reset de márgenes y paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ENCABEZADO */
.header {
    text-align: center;
    background: linear-gradient(to right, #8ba1c7, hsl(244, 43%, 37%));
    color: white;
    padding: 60px 20px;
}

/* SECCIÓN SOBRE NOSOTROS */
.about {
    text-align: center;
    padding: 40px;
    background: #f4f4f4;
}

/* SECCIÓN MISIÓN Y VISIÓN */
.mision-vision {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    background: #fff;
}

.card {
    background: #ffecb3;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

/* SECCIÓN PROGRAMAS */
.programs {
    text-align: center;
    padding: 40px;
    background: #f4f4f4;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.program-card {
    background: #4caf50;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* SECCIÓN CÓMO AYUDAR */
.help {
    text-align: center;
    padding: 40px;
    background: #ffffff;
}

.help-card {
    background: #f44336;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ===================
   PIE DE PÁGINA
   =================== */
   footer {
    background: #2c2c2c;
    color: white;
    padding: 40px 0;
    text-align: left;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    max-width: 300px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section p, .footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

/* Íconos de redes sociales */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a img {
    width: 32px;
    height: 32px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid gray;
    padding-top: 10px;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mision-vision {
        flex-direction: column;
        align-items: center;
    }
}
