.container-footer {
    /* background-color: #000;
    background-image: url(../img/fondo-footer.webp); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 70px 40px 40px 40px;
    margin-top: -5px;
}

.container-footer-or {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 70px 40px 40px 40px;
    margin-top: -5px;
}



.footer-fila {
    width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-fila1 {
    width: 17%;
    height: 265px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
}

.logo-fbs-footer {
    width: 400px;
    height: 155px;
    margin-bottom: 20px;
   /*  z-index: 1; */
}

.text-blanco-footer {
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    /* text-shadow: 2px 2px 6px #008507; */
    font-family: "Anton SC", sans-serif;
    text-align: justify;
}

.container-redes {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    gap: 15px;
}

.container-logo-text {
    width: 200px;
    gap: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}

.icono-redes-fo {
    width: 40px;
    height: 40px;
}

.icono-maps {
    width: 19px;
    height: 25px;
    margin-right: 10px;
}

.maps-posicion {
    display: flex;
    flex-direction: row;
    gap: 9px;
}

.container-logo-text2 {
    width: 292px;
    gap: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    text-align: justify;
    margin-bottom: 20px;
}


.container-celu-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.enlace-instagram {
    pointer-events: auto;
    text-decoration: none;
}

.numero{
    font-size: 20px;
}

.icono-telefono{
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}

.text-blanco-footer-2 {
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    /* text-shadow: 2px 2px 6px #008507; */
    margin-bottom: 15px;
    width: 87%;
    text-align: justify;

}

.container-servicios-2025 {
    margin-top: 15px;
}

.container-ubi {
    margin-top: 20px;
    width: 100%;
}

/* acordeon */

.accordion {
    background-color: #000;
    padding-bottom: 40px;
    display: none;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    color: white;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    padding: 0;
    max-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #000;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.show {
    padding: 15px;
    max-height: 500px;
    /* Ajusta según el contenido */
}

.accordion-icon::after {
    content: "+";
    font-size: 20px;
}

.accordion-header.active .accordion-icon::after {
    content: "−";
}

.btn-wha {
    position: fixed;
    bottom: 20px;
    /* distancia desde el borde inferior */
    right: 20px;
    /* distancia desde el borde derecho */
    width: 120px;
    height: 120px;
    z-index: 9999;
    /* asegura que esté por encima de otros elementos */
    animation: parpadeo 1s infinite ease-in-out;
}

/* Animación de parpadeo */
@keyframes parpadeo {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}



@media (max-width:500px) {

    .container-footer {
        flex-direction: column;
        padding: 40px;
    }

    .logo-fbs-footer {
        width: 260px;
        height: 115px;
        margin-left: 0px;
    }

    .footer-fila1 {
        width: 100%;
        height: auto;
        border-top: 3px solid #000;
        border-bottom: 3px solid #000;
        border-left: 0px;
        border-right: 0px;
        margin: 0px;
        padding-top: 20px;
    }

    .container-celu-footer {
        justify-content: flex-start;
        align-items: flex-start;
        width: 90%;
    }

    .footer-fila {
        width: 100%;
        align-items: center;
    }

    .container-servicios-2025 {
        text-align: center;
        width: 100%;
        margin-top: 0px;
    }

    .text-blanco-footer-2 {
        width: 100%;
        text-align: center;
        font-size: 13px;
    }

    .text-blanco-footer {
        text-align: center;
        width: 100%;
    }

    .container-redes {
        justify-content: center;
        margin-top: 10px;
    }

    .text-blanco-footer {
        font-size: 18px;
    }

    .container-footer {
        background-image: none;
        background-color: #000;
    }

    .icono-redes-fo {
        width: 45px;
        height: 45px;
    }

    .footer-fila1 {
        display: none;
    }

    .accordion {
        display: block;
    }

    .btn-wha {
        bottom: 8px;
        width: 80px;
        height: 77px;
        right: 5px;
    }


}