.footer-site {
    padding: 60px 40px;
    background-color: var(--c-gris);
    border-top: 2px solid var(--c-primario);
}

.footer-site .footer-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1500px;
    margin: auto;
}

.footer-site .footer-wrapper .footer-image,
.footer-site .footer-wrapper .footer-col  {
    width: 50%;
    flex: 0 0 50%;
}

.footer-site .footer-wrapper .footer-col {
    text-align: right;
}

.footer-site .footer-logo {
    max-width: 250px;
}

.footer-site .footer-rrss {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.footer-site .footer-rrss a {
    color: transparent !important;
}

.footer-site .footer-rrss .ico-tiktok svg {
    width: 37px;
    height: 37px;
    margin-left: -5px;
}

.footer-site .footer-rrss svg path {
    fill: var(--c-primario);
    transition: all 0.4s ease;
}

.footer-site .footer-rrss a:hover svg path {
    fill: var(--c-secundario);
}

.footer-site .copy-footer a:hover {
    color: var(--c-secundario);
}


/* BOTONES FLOTANTES */
.c-btn-float {
    position: relative;
}

.c-btn-float .btn-float:first-child {
    position: fixed;
    bottom: 120px;
    right: 40px;
    font-family: var(--f-primaria);  
    color: var(--c-blanco) !important;
    padding: 20px 30px;
    margin: 0px;
    border-radius: 500px;
    background: var(--deg-azul) !important;
    border: 1px solid var(--c-primario);
    text-transform: uppercase;
    font-size: 1rem !important;
    font-weight: 600;
    letter-spacing: 0.05rem;
    display: inline-block;
    z-index: 1;
    min-width: 300px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.c-btn-float .btn-float:last-child {
    position: fixed;
    bottom: 40px;
    right: 40px;
    font-family: var(--f-primaria);  
    color: var(--c-primario) !important;
    padding: 20px 30px;
    margin: 0px;
    border-radius: 500px;
    background: var(--c-blanco) !important;
    border: 1px solid var(--c-primario);
    text-transform: uppercase;
    font-size: 1rem !important;
    font-weight: 600;
    letter-spacing: 0.05rem;
    display: inline-block;
    z-index: 1;
    min-width: 300px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.c-btn-float .btn-float:first-child::after {
    content: "";
    background: var(--c-secundario) !important;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 500px;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.c-btn-float .btn-float:last-child::after {
    content: "";
    background: var(--c-primario) !important;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 500px;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.c-btn-float .btn-float:first-child:hover,
.c-btn-float .btn-float:last-child:hover {
    color: var(--c-blanco) !important;
}

.c-btn-float .btn-float:first-child:hover::after,
.c-btn-float .btn-float:last-child:hover::after {
    opacity: 1;
}

/* LOGOS KIT DIGITAL */
.site-info .inside-site-info {
    padding: 40px;
}

.logos-kit-digital {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.logos-kit-digital img {
    display: block;
    max-width: 37%;
    padding: 0 20px;
}

.logos-kit-digital>img:last-child {
    max-width: 26%;
}