/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 12 2025 | 03:08:01 */
/* Header principal */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Cuando se hace scroll, darle más opacidad */
.site-header.scrolled {
    background: rgba(0, 0, 0, 0.8);
}

/* Contenedor del header */
.inside-header {
    max-width: 1200px !important;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0;
    background-color: transparent;
}

/* Logo */
.site-logo {
    z-index: 1001;
}

.is-logo-image {
    position: relative;
    z-index: 999;
    transition: transform 0.3s ease;
	width:65px !important;
	height:53px !important;
	
    /*max-height: 45px;*/
}

.is-logo-image:hover {
    transform: scale(1.05);
}

/* Navegación principal */
.main-navigation {
    background-color: transparent;
}

.inside-navigation {
    background-color: transparent;
}

.main-navigation ul ul {
    background-color: transparent;
}

/* Menú principal */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.menu-item {
    position: relative;
}

.menu-item a {
    color: white !important;
    text-decoration: none;
    /*padding: 0.1rem 0.2rem; */
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
	line-height: 35px !important;
}

/* Efecto hover en los enlaces */
.menu-item a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #fff !important;
}

/* Línea inferior animada */
.menu-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-item a:hover::after {
    width: 70%;
}

/* Botón del menú móvil - MEJORADO */
.menu-toggle {
    background: transparent !important;
    border: none !important;
    color: white;
    padding: 0.3rem !important;
    border-radius: 0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

.menu-toggle:hover,
.menu-toggle:focus {
    background: transparent !important;
    transform: none !important;
    outline: none;
}

/* Hacer el icono más pequeño y limpio */
.menu-toggle .gp-icon svg {
    width: 1.2em !important;
    height: 1.2em !important;
    color: white;
    fill: white;
}

/* Quitar cualquier efecto de hover no deseado */
.menu-toggle:hover .gp-icon svg {
    color: rgba(255, 255, 255, 0.8);
    fill: rgba(255, 255, 255, 0.8);
}

/* Responsivo */
@media (max-width: 768px) {
    .inside-header {
        /* padding: 0.5rem 0;*/
        padding: 5px 15px;
        justify-content: space-around;
    }
    
    .is-logo-image {
       /* height: 50px;
		width: 70px;*/
    }
    
    .menu-toggle {
        padding: 0.2rem !important;
        margin: 0;
    }
    
    /* Menú móvil */
    .main-navigation.toggled .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0;
    }
    
    .main-navigation.toggled .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 1rem;
    }
    
    .main-navigation.toggled .menu-item a {
        display: block;
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .main-navigation.toggled .menu-item a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Si quieres hacer el icono AÚN MÁS pequeño */
@media (max-width: 480px) {
    .menu-toggle .gp-icon svg {
        width: 1em !important;
        height: 1em !important;
    }
    
    .inside-header {
        padding: 3px 15px !important;
    }
}

/* Ajuste para el contenido principal */
body {
    padding-top: 80px; /* Espacio para el header fijo */
}

/* Variación con efecto glassmorphism más pronunciado */
.site-header.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}