/* ==========================================
   NAVBAR - ESTILOS DESKTOP
   Archivo independiente para el navbar
   ========================================== */

/* Solo aplicar en desktop */
@media (min-width: 768px) {
    
    .navbar {
        position: fixed;
        top: 20px; /* Reducido de 40px a 20px */
        left: 40px;
        right: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        margin: 0;
        padding: 0;
        background: transparent;
    }
    
    .logo {
        color: white;
        font-size: 24px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Logo de WordPress */
    .logo .custom-logo-link {
        display: flex;
        align-items: center;
        text-decoration: none;
    }
    
    .logo .custom-logo {
        height: 40px; /* Altura del logo */
        width: auto;
        max-width: 200px;
    }
    
    .logo-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        font-weight: 900;
    }
    
    .nav-links {
        display: flex;
        background: transparent;
        padding: 10px;
        border-radius: 0;
        list-style: none;
        gap: 12px;
        margin: 0;
        position: relative;
    }
    
    .nav-links li {
        color: #ffffff; /* Texto blanco por defecto */
        font-size: 13px;
        font-weight: 600;
        padding: 12px 28px;
        cursor: pointer;
        border-radius: 50px;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
        list-style: none;
        position: relative;
        
        /* Glassmorphism por defecto */
        background: rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    /* Hover simple - fondo blanco, texto negro */
    .nav-links li:hover {
        background: #ffffff;
        color: #1a1a1a;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .nav-links li:hover a {
        color: #1a1a1a;
    }
    
    .nav-links a {
        color: inherit;
        text-decoration: none;
    }
    
    /* Ocultar botón de contacto dentro del menú en desktop */
    .nav-links li.nav-actions {
        display: none;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .btn-contact {
        background: white;
        border: none;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        transition: transform 0.3s ease;
        text-decoration: none;
        color: #000;
        font-size: 14px;
    }
    
    .btn-contact:hover {
        transform: scale(1.05);
    }
    
    .phone-icon {
        font-size: 16px;
    }
    
}