
footer {
    background-color: #338C33;
    color: white;
    padding: 1rem;
    text-align: center;
    width: 100%;
}

/* Contenido del footer */
.fila-footer-1 {
    padding: 1rem;
    max-width: 80%;
    margin: 0 auto;
    text-align: -webkit-center;
}

.fila-footer-1 h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.fila-footer-1 p {
    font-size: 0.8rem;
    font-weight: normal;
    line-height: 1.5;
    max-width: 550px;
}

.fila-footer-2 img {
    max-height: 50px;
    margin-top: 1rem;
}


/* Tablets */
@media (max-width: 992px) {
    .fila-footer-1 {
        max-width: 90%;
    }

    .fila-footer-1 h3 {
        font-size: 1.3rem;
    }

    .fila-footer-1 p {
        font-size: 0.75rem;
    }

    .fila-footer-2 img {
        max-height: 40px;
    }
}

/* Móviles */
@media (max-width: 576px) {
    footer {
        padding: 0.5rem;
    }

    .fila-footer-1 {
        max-width: 100%;
        padding: 0.5rem;
    }

    .fila-footer-1 h3 {
        font-size: 1.1rem;
    }

    .fila-footer-1 p {
        font-size: 0.7rem;
        padding: 0 10px;
    }

    .fila-footer-2 img {
        max-height: 35px;
        margin-top: 0.5rem;
    }
}