/* Estilos del Mini-footer para la ubicación */
.mini-footer {
    background-color: #008F72;
    color: #fff;
    padding: 10px;
    text-align: left;
    font-size: 14px;
}

.mini-footer p {
    margin-bottom: 5px;
}

.mini-footer iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* Estilos del Footer principal */
footer {
    background-color: #ffffff;
    color: #004B54;
    padding: 10px 20px;
    text-align: center;
    font-size: 12px;
}

footer .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1700px;
    margin: 0 auto;
}

footer .footer-column {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

footer .footer-column h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
}

footer .footer-column p, footer .footer-column a {
    font-size: 1em;
    line-height: 1.6;
    margin: 10px 0;
    color: #004B54;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-column a:hover {
    color: #F79B22;
}

footer .footer-column .social-icons a {
    margin: 0 10px;
    display: inline-block;
}

footer .footer-column .social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

footer .footer-column .social-icons img:hover {
    transform: scale(1.2);
}

footer .footer-column .logo-container img {
    max-width: 80px;
    height: auto;
    display: block;
    margin: 10px auto;
}

footer .footer-bottom {
    border-top: 1px solid #007e6d;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.8em;
}

footer .footer-bottom p {
    margin: 0;
}

/* Media queries para pantallas pequeñas */
@media (max-width: 768px) {
    footer .footer-container {
        flex-direction: column;
        align-items: center;
    }

    footer .footer-column {
        margin: 20px 0;
    }
}

.logo-image {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 10px auto;
}

/* Estilos específicos para el footer */
footer .footer-column.contacto:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}

footer .footer-column.contacto:hover p,
footer .footer-column.contacto:hover a {
    font-weight: bold;
}

footer .footer-column.contacto p {
    cursor: pointer;
}

/* Estilos para los iconos sociales en el footer */
footer .footer-column .social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

footer .footer-column .social-icons img:hover {
    transform: scale(1.2);
}

/* Footer Apoyanos*/
.apoyanos {
    position: relative;
    text-align: center;
    color: #012226;
    padding: 20px 20px;
}

.apoyanos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/imagenes/caridad.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(7px); /* Ajusta el valor de blur según el efecto deseado */
    z-index: -1;
}

.apoyanos-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative; /* Añade posición relativa para que los elementos internos no se vean afectados por el z-index */
    z-index: 1; /* Asegura que el contenido esté por encima del fondo difuminado */
}

.apoyanos h2 {
    font-size: 1em;
    margin-bottom: 10px;
}

.apoyanos .ayuda-grande {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.apoyanos p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.apoyanos .botones {
    display: flex;
    justify-content: center;
}

.apoyanos .botones .btn {
    display: inline-block;
    background-color: #00AD8C;
    color: #fff;
    padding: 12px 25px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.apoyanos .botones .btn:hover {
    background-color: #008f72;
}

