/* Body */
body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    background-color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 15px;
    margin-top: auto;
    box-sizing: border-box;
    text-align: center;
    background: transparent;
    overflow: hidden; /* Para prevenir el desbordamiento */
    position: relative;
    margin-top: 90px;
        margin-left: -390px; /* Ajusta este valor según cuánto lo quieras mover */

}

/* Eliminar cualquier margen o relleno adicional de los elementos dentro del footer */
footer > * {
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
}

/* Social Icons */
footer .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -20px;
    width: 100%;
}

footer .icon-elem {
    list-style: none;
}

footer .icon {
    color: black;
    font-size: 32px;
    margin: 0 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

footer .icon:hover {
    transform: translateY(-5px);
    color: #0073e6;
}

/* Menu */
footer .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
}

footer .menu-elem {
    list-style: none;
}

footer .menu-icon {
    color: black;
    font-size: 19px;
    text-decoration: none;
    margin: 5px 10px;
    opacity: 0.8;
    transition: all 0.5s ease;
}

footer .menu-icon:hover {
    opacity: 1;
    text-shadow: 0px 0px 30px rgba(122, 68, 68, 20); /* Sombra intensa y menos difusa */
}


/* Footer Text */
footer .footer-text {
    color: black;
    text-align: center;
    font-size: 18px;
    margin-top: 15px;
}

/* Media Queries */
@media (max-width: 320px) {
    footer {
        padding: 10px;
    }

    footer .icon {
        font-size: 22px;
    }

    footer .menu-icon {
        font-size: 16px;
    }

    footer .footer-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 15px;
    }

    footer .icon {
        font-size: 24px;
    }

    footer .menu-icon {
        font-size: 18px;
    }

    footer .footer-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 20px;
    }

    footer .icon {
        font-size: 28px;
    }

    footer .menu-icon {
        font-size: 20px;
    }

    footer .footer-text {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    footer {
        padding: 25px;
    }

    footer .icon {
        font-size: 30px;
    }

    footer .menu-icon {
        font-size: 22px;
    }

    footer .footer-text {
        font-size: 14px;
    }
}
