/* =========================================
   NAVBAR EXPLORA TRAVEL - ESTILOS
   ========================================= */

:root {
    --primary-blue: #003366;
    --accent-blue: #0056b3;
    --light-blue: #eef4ff;
    --secondary-yellow: #FFC107;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --white: #ffffff;
    --footer-bg: #002347;
}

/* === SMART HEADER === */
.explora-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 3%;
    max-width: 100%;
    position: relative;
}

.logo-link img {
    height: 65px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    font-size: 0.95em;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-blue);
    transform: translateY(-2px);
}

/* Botón Hamburguesa Móvil */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    z-index: 1001;
}

.cta-button-nav {
    background-color: var(--secondary-yellow);
    color: var(--primary-blue) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85em;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
    text-align: center;
}

/* === DIVISA FLOTANTE === */
#currency-floater {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    z-index: 999;
    padding: 15px 20px;
    border-radius: 0 15px 15px 0;
    box-shadow: 5px 5px 15px rgba(0, 51, 102, 0.15);
    border: 2px solid var(--primary-blue);
    border-left: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: transform 0.3s ease;
}

#currency-floater:hover {
    transform: translateY(-50%) translateX(5px);
}

.divisa-header {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divisa-value {
    font-size: 1.3rem;
    font-weight: 900;
    color: #28a745;
    margin: 0;
}

.divisa-footer {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 850px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        clip-path: circle(0% at 100% 0%);
        transition: clip-path 0.5s ease-in-out;
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0%);
    }

    .nav-links a {
        width: 90%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .cta-button-nav {
        width: 80%;
        border-bottom: none;
    }

    /* Divisa más pequeña en móvil */
    #currency-floater {
        padding: 10px 12px;
    }

    .divisa-value {
        font-size: 1rem;
    }

    .divisa-header {
        font-size: 0.65rem;
    }
}