/* Estilos generales */
footer {
    background-image: url('fondos/patron.jpg');
    background-size: cover;
    color: white;
}

.contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 0;
    gap: 20px;
}

.footer-contenedor {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
    margin: 10px;
}

.footer-contenedor h3 {
    font-size: 25px;
    margin-bottom: 15px;
    color: white;
}

.footer-contenedor img {
    width: 200px;
    margin-top: 15px;
}

.contactanos li, .social-icons li {
    font-size: 16px;
    line-height: 1.9;
    color: white;
    list-style: none;
    padding: 5px 0;
}

.social-icons li {
    display: inline-block;
}

.social-icons i {
    color: white;
    font-size: 25px;
    padding: 10px;
    transition: background 0.3s;
    border-radius: 50%;
}

.social-icons i:hover {
    background: #f18930;
}

.libro a {
    background: #e0af60;
    padding: 10px 30px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: background 0.2s;
}

.libro a:hover {
    background: #b48538;
}

.botton-bar {
    background: #f18930;
    text-align: center;
    padding: 10px 0;
}

.botton-bar p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.reclamaciones{
    text-align: center;
    margin: 40px 0;
}

.reclamaciones img{
    width: 200px;
}

.reclamaciones a{
    background: none;
    padding: 0;
}

.reclamaciones a:hover{
    background: none;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-contenedor {
        max-width: 100%;
    }

    .social-icons i {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .contenedor {
        flex-direction: column;
        text-align: center;
        padding: 30px 10px;
    }

    .footer-contenedor h3 {
        font-size: 22px;
    }

    .footer-contenedor img {
        width: 150px;
    }

    .contactanos li, .social-icons li {
        font-size: 14px;
    }

    .libro a {
        font-size: 20px;
        padding: 8px 20px;
    }

    .botton-bar p {
        font-size: 14px;
    }
}
