/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: transform var(--transition-speed) ease;
}

.header.hide {
    transform: translateY(-100%);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 100px;
    height: auto;
    display: block;
}

/* Logo con estilo Disney - Rojo y Negro */
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-family: 'Chewy', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    display: flex;
    white-space: nowrap;
}

.logo-red {
    color: #FF0000;
    text-shadow: 2px 2px 0px #CC0000;
}

.logo-black {
    color: #000000;
    text-shadow: 2px 2px 0px #666666;
}

/* Efecto Cromado para el Slogan - SOLO PC */
.slogan {
    font-family: 'Patrick Hand SC', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 3px;
    white-space: nowrap;
    
    /* Efecto cromado rojo y negro - SOLO PC */
    background: linear-gradient(
        135deg,
        #FF0000 0%,
        #CC0000 25%,
        #000000 50%,
        #333333 75%,
        #FF0000 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Efectos de brillo y sombra */
    text-shadow: 
        0 0 1px rgba(255, 0, 0, 0.3),
        0 0 2px rgba(255, 255, 255, 0.2),
        0 0 3px rgba(0, 0, 0, 0.4);
    
    /* Animación sutil del efecto cromado */
    animation: chromeEffect 3s ease-in-out infinite alternate;
}

@keyframes chromeEffect {
    0% {
        background-position: 0% 50%;
        text-shadow: 
            0 0 1px rgba(255, 0, 0, 0.3),
            0 0 2px rgba(255, 255, 255, 0.2),
            0 0 3px rgba(0, 0, 0, 0.4);
    }
    100% {
        background-position: 100% 50%;
        text-shadow: 
            0 0 2px rgba(255, 0, 0, 0.5),
            0 0 3px rgba(255, 255, 255, 0.3),
            0 0 4px rgba(0, 0, 0, 0.6);
    }
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all var(--transition-speed) ease;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav ul li a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    white-space: nowrap;
}

.nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: width var(--transition-speed) ease;
}

.nav ul li a:hover:after {
    width: 100%;
}

.nav ul li a.active {
    color: var(--secondary-color);
}

.nav ul li a.active:after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
}

/* Responsive Header - Versión simplificada SOLO para móvil */
@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .logo-img {
        width: 70px;
    }
    
    /* Logo simplificado para móvil - Sin sombras y con negritas */
    .logo-main {
        font-size: 1.6rem;
        font-weight: 700; /* Negrita */
    }
    
    .logo-red {
        color: #FF0000;
        text-shadow: none; /* Sin sombra */
    }
    
    .logo-black {
        color: #000000;
        text-shadow: none; /* Sin sombra */
    }
    
    /* Slogan simplificado para móvil - Sin efecto cromado */
    .slogan {
        font-size: 0.85rem;
        font-weight: 800; /* Más negrita */
        letter-spacing: 1px;
        color: #FF0000;
        text-shadow: none; /* Sin sombra */
        
        /* Eliminamos el efecto cromado en móvil */
        background: none;
        -webkit-text-fill-color: initial;
        -webkit-background-clip: initial;
        background-clip: initial;
        animation: none;
    }
    
    .hamburger {
        display: block;
        font-size: 1.3rem;
    }
    
    .nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container.active {
        max-height: 500px;
        padding: 15px 0;
    }
    
    .nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
    }
    
    .nav ul li a {
        display: block;
        padding: 10px 15px;
    }
    
    .header-contact {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    .btn-phone {
        width: 100%;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 400px) {
    .logo-main {
        font-size: 1.4rem;
    }
    
    .slogan {
        font-size: 0.75rem;
    }
    
    .logo-img {
        width: 60px;
    }
}

/* Estilos para los enlaces de navegación */
.nav ul li a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    white-space: nowrap;
    transition: all var(--transition-speed) ease;
}

.nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #FF0000; /* Rojo para coincidir con el logo */
    bottom: 0;
    left: 0;
    transition: width var(--transition-speed) ease;
}