.footer {
    margin-top: 0px;
    background-color: #000;
    color: #FFDD00;
    padding: 1rem 3rem;
    position: relative;
    z-index: 1;
}
.logo-footer {
    width: 200px; /* Ajusta el tamaño del logo */
    height: 80px; /* Ajusta el tamaño del logo */
    object-fit: contain; /* Mantiene la proporción de la imagen */
} 
.footer-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.footer-menu-items a{
    color: #fff;
    font-size: 18px;
    font-weight: 300;

    margin: 0 15px 0 0;
}
.footer-menu-items a:hover {
    color: #FFDD00;
    transition: 0.5s;
    text-shadow: 0px 0px 15px #FFDD00;
}

@media (max-width: 830px) {
    .footer-menu {
        flex-direction: column;
    }
}

.underline-from-left {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    z-index: 1;
}

.underline-from-left::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    height: 3px;
    background: #3498db;
    z-index: -1;
    transition: right 0.3s ease-out;
}

.underline-from-left:hover::before,
.underline-from-left:focus::before,
.underline-from-left:active::before {
    right: 0;
}

  

.btn-sweep-to-right {
    /* display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 300;
    border-radius: 30px;
    color: #fff; */

    position: relative;
    transition-property: color;
    transition-duration: 0.3s;
    z-index: 1;
    overflow: hidden;
}
.btn-sweep-to-right::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3498db;
    transform: scaleX(0);
    transform-origin: 0% 50%;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}
.btn-sweep-to-right:hover,
.btn-sweep-to-right:focus,
.btn-sweep-to-right:active {
    color: white;
}
.btn-sweep-to-right:hover::before,
.btn-sweep-to-right:focus::before,
.btn-sweep-to-right:active::before {
    transform: scaleX(1);
}
.footer-items {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #fff ;
}
.footer-contactos {
    display: flex;
    justify-content: end;
    align-items: center;
}
.contacto {
    padding: 0px 5px;
}
.footer-condiciones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);    
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 20px 0;
    text-decoration: none; */
}
.footer-condiciones h5{
    font-size: 15px;
    text-align: center;
    color: #fff;
}
.footer-condiciones h5:hover {
    color: #FFDD00;
    transition: 0.5s;
    text-shadow: 0px 0px 15px #FFDD00;
}
.copyright {
    color: #fff;
}

@media (max-width: 768px) {
    /* Footer */
    .footer-figure {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer-menu {
        padding-bottom: 5px;
    }
    .footer-menu-items {
        /* display: flex; */
        flex-direction: column;
    }
    .footer-items {
        flex-direction: column;
        justify-content: space-between;
    }
    .footer-contactos {
        justify-content: end;
    }
    .footer-condiciones {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }
    .copyright {
        padding-top: 20px;
    }

}

/* Media queries para pantallas aún más pequeñas (por ejemplo, teléfonos muy pequeños) */
@media (max-width: 480px) {
    p {
        font-size: 14px;
    }
    .p {
        text-align: center;
    }

    .footer-menu {
        display: flex;
        flex-direction: row;
    }
    .footer-menu-items {
        display: flex;
        flex-direction: column;
    }
    .footer-contactos {
        display: flex;
        flex-direction: column;
    }
    .copyright {
        color: #fff;
        text-align: center;
        font-size: 10px;
    }
}