/* --- 1. CARGA DE FUENTES LOCALES (NEUTRA TEXT) --- */
/* Asegúrate de que los archivos .otf estén en la carpeta /fonts/ */
@font-face {
    font-family: 'Neutra Text';
    src: url('../fonts/neutra-text-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap; /* Mejora el rendimiento de carga */
}
@font-face {
    font-family: 'Neutra Text';
    src: url('../fonts/neutra-text-book.otf') format('opentype'); /* Texto normal */
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neutra Text';
    src: url('../fonts/neutra-text-bold.otf') format('opentype'); /* Títulos */
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neutra Text';
    src: url('../fonts/neutra-text-bold-italic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* --- 2. VARIABLES DE IDENTIDAD 2026 --- */
:root {
    --primary-mustard: #EFBA25;  /* Amarillo Mostaza */
    --text-charcoal: #525156;    /* Gris Carbón */
    --bg-pearl: #D7D4CF;         /* Gris Perla */
    --white: #FFFFFF;
    --font-main: 'Neutra Text', sans-serif; /* La fuente única para toda la web */
}

/* --- 3. ESTILOS GENERALES --- */
html {
    scroll-behavior: smooth;
}

body {
    /* APLICAMOS LA FUENTE GLOBALMENTE AQUÍ */
    font-family: var(--font-main) !important; 
    background-color: var(--white);
    color: var(--text-charcoal);
    font-weight: 400;
    line-height: 1.6;
}

/* Títulos con estilo Editorial */
h1, h2, h3, h4, h5, h6, .uppercase {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em; /* Un poco de aire entre letras */
}

/* Utilidades de color */
.text-primary { color: var(--primary-mustard); }
.text-charcoal { color: var(--text-charcoal); }
.bg-primary { background-color: var(--primary-mustard); }
.bg-pearl { background-color: var(--bg-pearl); }
.bg-charcoal { background-color: var(--text-charcoal); }

/* Estilos de Botones y Enlaces */
a { transition: all 0.3s ease; }

.btn-primary {
    background-color: var(--primary-mustard);
    color: var(--white);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid var(--primary-mustard);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-mustard);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 186, 37, 0.3);
}

/* Tarjetas de Tarifas */
.tarifas-card {
    transition: all 0.3s ease;
}

/* Galerías */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}
.gallery-item img { 
    transition: transform 0.7s ease, filter 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item:hover img { 
    transform: scale(1.05); 
}

/* Botón Música Flotante */
#music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: var(--white);
    color: var(--primary-mustard);
    border: 2px solid var(--primary-mustard);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

#music-control:hover {
    background-color: var(--primary-mustard);
    color: var(--white);
    transform: scale(1.1) rotate(360deg);
}