
.site .site-footer {
    background-color: #fff;
    max-width: 100%;
    padding: 30px 0 0 0;
}
.site .site-footer .site-info {
    display: none;
}

.site .site-footer .servicios-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 20px;
}
.site .site-footer .servicios-footer .servicios-dep {
    flex: 0 0 49%;
    display: flex;
    flex-direction: column;
}
.site .site-footer .servicios-footer .servicios-dep .servicios-logotipo {
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.site .site-footer .servicios-footer .servicios-dep .servicios-logotipo img {
    max-height: 90%;
    width: auto;
}
.site .site-footer .servicios-footer .servicios-dep .servicios-logotipo div {
    font-weight: bold;
    line-height: 1;
    text-align: center;
}
.site .site-footer .servicios-footer .servicios-dep .servicios-contactos .contacto {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    gap: 20px;
    margin: 20px 0;
    padding-left: 10%;
}
.site .site-footer .servicios-footer .servicios-dep .servicios-redes {
    margin-top: auto;
    padding-top: 20px;
    padding-right: 40px;
    text-align: right;
}
.site .site-footer .servicios-footer .servicios-dep .servicios-redes img {
    transition:
            transform 0.25s ease,
            filter 0.25s ease;
}
.site .site-footer .servicios-footer .servicios-dep .servicios-redes a:hover img {
    transform: scale(1.15);
}

.site .site-footer .servicios-footer .servicios-dep .servicios-redes a {
    text-decoration: none;
}


.site .site-footer .audio-naturaleza {
    position: fixed;
    right: 20px;
    bottom: 130px;
    z-index: 9999;
}
.site .site-footer #audioNaturaleza {
    display: none;
}
.site .site-footer #toggleAudio {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background:
            rgba(110,90,159,0.82);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow:
            0 10px 25px rgba(0,0,0,0.18);
    transition:
            transform 0.25s ease,
            background 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    padding: 0;
}

.site .site-footer #toggleAudio:hover {
    transform: scale(1.08);
    background:
            rgba(96,71,158,0.95);
}


.site .site-footer #btn-volver-arriba {
    position: fixed;
    right: 20px;
    bottom: 65px;
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: rgba(253,123,14,.62);
    color: var(--color-verde-titulo);
    cursor: pointer;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
            opacity .3s ease,
            transform .3s ease,
            box-shadow .2s ease;
}

.site .site-footer #btn-volver-arriba.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site .site-footer #btn-volver-arriba:hover {
    transform:
            translateY(-4px)
            scale(1.05);
    box-shadow:
            0 12px 30px rgba(0,0,0,.25);
}

.site .site-footer #btn-volver-arriba svg {
    width: 40px;
    height: 40px;
    display: block;
    flex-shrink: 0;
    filter:
            drop-shadow(0 2px 4px rgba(0,0,0,.25));
}


@media (max-width: 980px) {
    .site .site-footer .servicios-footer .servicios-dep .servicios-contactos .contacto {
        gap:5px
    }
    .site .site-footer .servicios-footer .servicios-dep .servicios-contactos .contacto .contacto-dir {
        overflow-wrap: break-word;
    }
}

@media (max-width: 696px) {
    .site .site-footer .servicios-footer {
        flex-direction: column;
        gap: 70px;
        padding: 10px;
    }
    .site .site-footer .servicios-footer .servicios-dep .servicios-contactos .contacto {
        gap:20px
    }

}
@media (max-width: 550px) {
    .site .site-footer .servicios-footer .servicios-dep .servicios-contactos .contacto {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 0;
    }
    .site .site-footer .servicios-footer .servicios-dep .servicios-contactos .contacto .contacto-dir {
        text-align: center;
    }
    .site .site-footer .servicios-footer .servicios-dep .servicios-redes img {
        width: 47px;
        height: auto;
    }
}
