@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*,
::before,
::after {
    margin: 0;
    box-sizing: border-box;
}

:root{
    --color-primario: #6B8E8D;
    --color-secundario: #ffffff00;
    --gray-color: #F3F3F3;
    --padding-container: 80px 0;
}

/** Foooter **/

.footer {
    width: 100%;
    background-color: var(--color-secundario);
    position: fixed; /* Fijo al fondo */
    left: 0;
    right: 0;
    transition: transform 0.3s ease-in-out;
    z-index: 1000; /* Asegura que esté encima del contenido */
}

.footer.visible {
    transform: translateY(0); /* Visible cuando se llega al final */
}
.footer__content {
    width: min(100%, 1200px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    background-color: #012c6d;
}

.footer__main {
    display: flex;
    gap: 1.5rem;
    justify-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    grid-template-columns: 1fr 55% 1fr;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer__link {
    color: white;
    text-decoration: none;
}

.footer__link:hover {
    text-decoration: underline;
}

.footer__copy {
    justify-self: center;
    background-color: var(--color-primario);
    color: var(--color-secundario);
    font-weight: 500;
    padding: 4px;
    border-radius: 6px;
}

.footer__contact {
    max-width: 250px;
    gap: 1.3rem;
    color: white;
    text-align: center;
    padding-top: 40px;
}

.footer__email {
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 0 1.5rem;
    background-color: transparent;
    color: white;
}


.footer__social {
    display: grid;
    grid-auto-flow: column;
    gap: 1rem;
}

.footer__copyright {
    
    border-top: 2px solid #f4a024;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.footer__copyright-text {
    text-align: center;
    color: white;
}
.footer__logo-link{
    text-decoration: none;
    font-size: 70px;
}

.al {
    font-family: 'Great Vibes', cursive;
    color: #FF9F80; /* Rojo burdeos */
    
}

.hau {
    font-family: 'Great Vibes', cursive;
    color: #6B8E8D; /* Gris oscuro */
    
}


