/* Barra superior de contacto */
/* Barra superior de contacto */
.top-bar {
    background: linear-gradient(135deg, #00B8A9 0%, #0A2342 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-left {
    text-align: left;
}

.top-bar-right {
	text-align: right;
    flex: 1;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.top-bar a:hover {
    color: #FFC857;
}

/* RESPONSIVE MÓVIL */
@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        font-size: 0.75rem;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        padding: 0 10px;
    }
    
    .top-bar a {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 6px 0;
        font-size: 11px !important;
    }
    
    .top-bar-content {
        gap: 3px;
        padding: 0 5px;
    }
    
    .top-bar a {
        font-size: 11px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        max-width: 100%;
    }
}

/* Estilos del header y navegación */
.header {
    position: fixed !important;
    top: 40px; /* Añade espacio para la top-bar */
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 30px rgba(10, 35, 66, 0.1);
    border-bottom: 3px solid #FFC857;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0A2342 0%, #00B8A9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2.5rem;
}

.header-nav {
    display: flex !important;
    gap: 8px;
    align-items: center;
}

.header-nav a {
    color: #0A2342 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    background: rgba(230, 245, 243, 1) !important;
    border: 2px solid #00B8A9 !important;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.header-nav a:hover {
    color: white !important;
    background: linear-gradient(135deg, #00B8A9 0%, #0A2342 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 169, 0.35);
    border-color: #00B8A9 !important;
}

.header-nav a:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .header-nav {
        display: none !important;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        font-size: 1.8rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .header-nav {
        gap: 6px;
    }
    
    .header-nav a {
        font-size: 0.85rem !important;
        padding: 10px 20px !important;
    }
}

.hamburger-menu {
    display: none;
    background: #00B8A9;
    border: none;
    color: white;
    font-size: 1.8rem;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
}

@media (max-width: 480px) {
    .hamburger-menu {
        display: block !important;
    }
    
    .header-nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .header-nav.mobile-active {
        display: flex !important;
    }
    
    .header-nav a {
        width: 100%;
        text-align: center;
    }
	
}