:root {
    --primary-black: #050505;
    --secondary-black: #0a0a0a;
    --gold: #c5a059;
    --gold-bright: #f7e0a1;
    --metallic-gold: linear-gradient(135deg, #c5a059 0%, #f7e0a1 50%, #8e6d2f 100%);
    --neon-blue: #00f3ff;
    --neon-blue-glow: rgba(0, 243, 255, 0.4);
    --text-main: #00f3ff; /* Todo el texto base ahora es Azul Neón */
    --text-gold: #d4af37;
}

/* ESCALADO REFINADO */
html {
    font-size: 14px; 
}

@media (min-width: 1536px) {
    html { font-size: 15px; }
}

@media (max-width: 768px) {
    html { font-size: 16px; } 
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--primary-black);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
    color: var(--text-gold);
}

/* --- Custom Scrollbar (Oro y Neón) --- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: var(--metallic-gold);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--neon-blue-glow);
}

/* --- Hero Slider --- */
.hero-slider-container { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 2s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 15s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(5,5,5,0.95) 100%); z-index: 1; }

/* --- UI --- */
.bg-gold-metallic { 
    background: var(--metallic-gold); 
    color: var(--primary-black); 
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.bg-gold-metallic:hover {
    box-shadow: 0 0 25px var(--neon-blue-glow);
    transform: scale(1.02);
}

.text-gold { color: var(--text-gold); }
.text-neon { color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue-glow); }

.luxury-card { 
    background: var(--secondary-black); 
    border: 1px solid rgba(0, 243, 255, 0.05); 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
}

.luxury-card:hover { 
    border-color: var(--neon-blue);
    box-shadow: 0 10px 40px -10px rgba(0, 243, 255, 0.15);
}

input, select, textarea {
    background: rgba(0, 243, 255, 0.02) !important;
    border: 1px solid rgba(0, 243, 255, 0.1) !important;
    color: var(--neon-blue) !important;
}

input:focus, select:focus {
    border-color: var(--neon-blue) !important;
    box-shadow: 0 0 15px var(--neon-blue-glow) !important;
}

input::placeholder {
    color: rgba(0, 243, 255, 0.3) !important;
}

/* Cookie Banner shadow */
#cookie-banner {
    box-shadow: 0 -20px 80px rgba(0,0,0,0.9);
    border-top: 1px solid var(--neon-blue);
}

/* Mobile no-scrollbar helper */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom Selection color */
::selection {
    background: var(--neon-blue);
    color: black;
}