/* ==============================================
   ESTILOS PARA LA PÁGINA DE CATERING
   ============================================== */

:root {
    --primario: #0a0002;
    --secundario: #1a0a0d;
    --dorado: #d4a574;
    --claro: #ffffff;
    --gris: #f8f8f8;
    --texto: #333333;
    --oscuro: #000000;
}

/* Compensar la navegación fija */
body {
    padding-top: 70px;
}

/* Asegurar que la navegación tenga fondo */
.navegacion {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

/* Hero Catering */
.hero-catering {
    background: linear-gradient(135deg, rgba(10, 0, 2, 0.95), rgba(212, 165, 116, 0.8)), 
                url('../images/hero-bg.jpg') center/cover;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-catering::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 0, 2, 0.4) 100%);
    pointer-events: none;
}

.contenido-hero {
    text-align: center;
    color: var(--claro);
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    padding: 2rem 1rem;
}

.badge-construccion {
    display: inline-block;
    background: var(--dorado);
    color: var(--primario);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.titulo-hero {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitulo-hero {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Sección En Construcción */
.seccion-construccion {
    padding: 4rem 0;
    background: var(--gris);
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.contenido-construccion {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.icono-construccion {
    margin-bottom: 2rem;
}

.icono-construccion svg {
    stroke: var(--dorado);
    opacity: 0.5;
}

.titulo-construccion {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--primario);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.descripcion-construccion {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--texto);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Info de Contacto Simple */
.info-contacto-simple {
    margin-top: 3rem;
}

.mensaje-contacto {
    font-size: 1.1rem;
    color: var(--texto);
    margin-bottom: 2rem;
    font-weight: 500;
}

.datos-contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.boton-primario {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--dorado);
    color: var(--primario);
    border: 2px solid var(--dorado);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.boton-primario:hover {
    background: transparent;
    color: var(--dorado);
    transform: translateY(-2px);
}

.boton-primario svg {
    fill: currentColor;
}

.direccion-texto {
    font-size: 1rem;
    color: var(--texto);
    margin: 0;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 55px;
    }
    .hero-catering {
        min-height: 35vh;
    }
    
    .seccion-construccion {
        padding: 3rem 1rem;
    }
    
    .titulo-construccion {
        font-size: 1.8rem;
    }
    
    .descripcion-construccion {
        font-size: 1rem;
    }
    
    .boton-primario {
        font-size: 1rem;
        padding: 0.9rem 1.8rem;
    }
}

@media (max-width: 480px) {
    .badge-construccion {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .titulo-hero {
        font-size: 2rem;
    }
    
    .subtitulo-hero {
        font-size: 1rem;
    }
}

/* Ajuste para la navegación activa */
.navegacion .enlace-nav.activo {
    color: var(--dorado);
}

.menu-movil .enlace-menu-movil.activo {
    color: var(--dorado);
}