/* =========================================
   FOOTER
========================================= */

.footer {
    position: relative;

    background:
        linear-gradient(
            to bottom,
            var(--navy),
            #080808
        );

    padding-top: 80px;

    overflow: hidden;
}


/* DETALLE DECORATIVO SUPERIOR */

.footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 180px;
    height: 2px;

    background:
        linear-gradient(
            to right,
            transparent,
            #d4af37,
            transparent
        );
}


/* CONTENEDOR */

.footer-container {
    width: 90%;
    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));

    gap: 3rem;

    padding-bottom: 60px;
}


/* BRAND */

.footer-brand h3 {
    font-family: 'Great Vibes', cursive;

    font-size: 2.4rem;

    color: #d4af37;

    margin-bottom: 1rem;

    font-weight: 400;
}


.footer-brand p {
    color: rgba(255,255,255,0.68);

    line-height: 1.8;

    max-width: 320px;
}


/* LINKS */

.footer-links,
.footer-social {
    display: flex;

    flex-direction: column;

    gap: 1rem;
}


/* TÍTULOS */

.footer-links-title,
.footer-social-title {
    color: white;

    font-size: 1.1rem;

    font-weight: 600;

    margin-bottom: 0.5rem;
}


/* ENLACES */

.footer-links a,
.footer-social a {
    width: fit-content;

    color: rgba(255,255,255,0.68);

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* HOVER */

.footer-links a:hover,
.footer-social a:hover {
    color: #d4af37;

    transform: translateX(5px);
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top:
        1px solid rgba(255,255,255,0.08);

    padding: 25px 20px;

    text-align: center;

    color: rgba(255,255,255,0.5);

    font-size: 0.9rem;

    letter-spacing: 0.5px;
}


/* ADMIN LINK */

.footer-admin {
    margin-top: 1.5rem;
}


.footer-admin a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    background:
        rgba(212,175,55,0.08);

    border:
        1px solid rgba(212,175,55,0.15);

    color: #d4af37;

    text-decoration: none;

    opacity: 0.45;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}


.footer-admin a:hover {
    opacity: 1;

    transform: translateY(-3px);

    background:
        rgba(212,175,55,0.15);
}

.footer-logo {
    font-family: 'Great Vibes', cursive;
}

/* ÍCONO */

.footer-admin svg {
    width: 16px;
    height: 16px;

    fill: #d4af37;
}




/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .footer {
        padding-top: 60px;
    }

    .footer-container {
        gap: 2.5rem;

        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links,
    .footer-social {
        align-items: center;
    }

    .footer-links a:hover,
    .footer-social a:hover {
        transform: none;
    }

}