﻿/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--vino-800) 0%, var(--vino-900) 100%);
    border-bottom: none !important;
    transition: background 0.3s, box-shadow 0.3s;
    opacity: 1 !important;
    visibility: visible !important;
}

    .navbar.scrolled {
        background: linear-gradient(135deg, var(--vino-900) 0%, var(--vino-950) 100%);
        box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    }

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar-logo-img {
    height: 34px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

    .navbar-links a {
        color: rgba(255,255,255,0.85);
        font-size: 14px;
        font-weight: 400;
        padding: 7px 16px;
        border-radius: var(--radius-sm);
        transition: background 0.2s, color 0.2s;
        white-space: nowrap;
        cursor: pointer;
    }

        .navbar-links a.active {
            color: var(--gold) !important;
            font-weight: 700;
        }

        .navbar-links a:hover {
            background: rgba(255,255,255,0.12);
            color: var(--white);
        }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: rgba(255,255,255,0.85);
        border-radius: 2px;
        transition: all 0.3s;
    }

@media (max-width: 700px) {
    .hamburger {
        display: flex;
    }

    .navbar-logo-img {
        height: 28px;
    }

    .navbar-links {
        display: none;
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        background: var(--vino-950);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 20px;
        gap: 2px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

        .navbar-links.open {
            display: flex;
        }

        .navbar-links a {
            padding: 12px 16px;
        }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: linear-gradient(135deg, var(--vino-900) 0%, var(--vino-950) 100%);
    color: rgba(255,255,255,0.6);
    padding: 52px 0 0;
    font-size: 14px;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 36px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-brand-text p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.45);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 720px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: var(--white);
    }

.footer-col p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-bottom: 14px;
}

    .footer-col p a {
        color: rgba(255,255,255,0.7);
    }

.social-list {
    display: flex;
    gap: 10px;
    list-style: none;
    flex-direction: row !important;
}

    .social-list a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        color: rgba(255,255,255,0.6);
        font-size: 14px;
        transition: background 0.2s, color 0.2s;
    }

        .social-list a:hover {
            background: var(--vino-800);
            color: var(--white);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

    .footer-bottom p {
        font-size: 12px;
        color: rgba(255,255,255,0.3);
    }

.gobmx-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
}

.gobmx-flag {
    width: 22px;
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
    background: linear-gradient(to right, #006847 0%,#006847 33%,#fff 33%,#fff 66%,#ce1126 66%,#ce1126 100%);
}
