/* --- Variables y Reset --- */
:root {
    --bg-color: #121212;
    --bg-darker: #050505;
    --gold-primary: #FFD700;
    --gold-dark: #B8860B;
    --text-light: #F5F5F5;
    --text-gray: #AAAAAA;
    --accent-yellow: #FFEE58;
    --font-main: 'Arial', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; /* Oculta cursor default */ }
a, button { cursor: none; } /* Asegura que en links tampoco salga el default */

body { 
    background-color: var(--bg-color); 
    color: var(--text-light); 
    font-family: var(--font-main); 
    line-height: 1.6;
    overflow-x: hidden;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }
html { scroll-behavior: smooth; }

/* --- Navbar --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%;
    background-color: rgba(18, 18, 18, 0.8); backdrop-filter: blur(10px);
    position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}
.logo-container { display: flex; align-items: center; gap: 10px; }
.main-logo { width: 50px; height: auto; }
.brand-name {
    font-size: 1.5rem; font-weight: bold;
    background: linear-gradient(to right, var(--gold-primary), var(--accent-yellow));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold-primary); }

.btn-lang {
    background: transparent; border: 1px solid var(--gold-primary); color: var(--gold-primary);
    padding: 5px 15px; border-radius: 20px; font-weight: bold;
    display: flex; align-items: center; gap: 5px; transition: 0.3s;
}
.btn-lang:hover { background: var(--gold-primary); color: var(--bg-color); }
.hamburger { display: none; font-size: 1.5rem; color: var(--gold-primary); }

/* --- Hero & Video --- */
.hero {
    height: 100vh; width: 100%; position: relative;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background-color: #000; overflow: hidden;
}
.back-video {
    position: absolute; right: 0; bottom: 0; min-width: 100%; min-height: 100%;
    z-index: 0; object-fit: cover; filter: brightness(0.6);
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 20px; }
.hero-icon { width: 100px; margin-bottom: 20px; filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; text-transform: uppercase; text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; color: #ddd; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
.floating { animation: float 3s ease-in-out infinite; }

.btn-primary {
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary)); color: #000;
    padding: 15px 40px; border-radius: 30px; font-weight: bold; text-transform: uppercase;
    letter-spacing: 1px; transition: transform 0.3s, box-shadow 0.3s; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3); }

/* --- General Sections & Glassmorphism --- */
.section { padding: 5rem 5%; position: relative; z-index: 2; }
.bg-darker { background-color: var(--bg-darker); }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; color: var(--gold-primary); }
.section-subtitle { text-align: center; margin-bottom: 3rem; color: var(--text-gray); }

/* Efecto VIDRIO para todas las tarjetas */
.mood-card, .card, .timeline-content {
    background: rgba(30, 30, 30, 0.6); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

/* --- Mood Grid --- */
.mood-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.mood-card { padding: 2rem; }
.mood-card i { font-size: 3rem; color: var(--gold-primary); margin-bottom: 1rem; transition: 0.3s; }
.mood-card h3 { font-size: 1.2rem; color: var(--text-light); }
.mood-card:hover { transform: translateY(-5px); border-color: var(--gold-primary); }
.mood-card:hover i { transform: scale(1.1); color: var(--accent-yellow); }

/* --- Cards Destinos --- */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card:hover { transform: translateY(-10px); border-color: var(--gold-primary); }
.card-image { height: 200px; background-size: cover; background-position: center; }
.card-info { padding: 1.5rem; }
.card-info h3 { margin-bottom: 0.5rem; color: var(--gold-primary); }
.btn-text { background: none; border: none; color: var(--text-light); font-weight: bold; margin-top: 10px; }

/* --- Timeline --- */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::after {
    content: ''; position: absolute; width: 2px; background-color: var(--gold-dark);
    top: 0; bottom: 0; left: 20px; margin-left: -1px;
}
.timeline-item { padding: 10px 40px; position: relative; width: 100%; box-sizing: border-box; }
.timeline-dot {
    width: 20px; height: 20px; border-radius: 50%; background-color: var(--gold-primary);
    position: absolute; left: 11px; top: 15px; z-index: 1; border: 3px solid var(--bg-color);
}
.timeline-content { padding: 20px; border-left: 3px solid var(--gold-primary); }
.timeline-date { color: var(--gold-primary); font-size: 0.9rem; font-weight: bold; display: block; margin-bottom: 5px; }

/* --- Footer --- */
footer { background-color: #000; padding: 2rem 5%; border-top: 1px solid #222; position: relative; z-index: 2; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.socials a { color: var(--gold-primary); margin-left: 15px; font-size: 1.2rem; }

/* --- WhatsApp Flotante --- */
.whatsapp-btn {
    position: fixed; bottom: 30px; right: 30px;
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary));
    color: #000; width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 35px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); z-index: 2000;
    animation: pulse-gold 2s infinite; transition: all 0.3s ease;
}
.whatsapp-btn:hover { transform: scale(1.1) rotate(15deg); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6); }
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* --- Animaciones de Scroll --- */
.hidden { opacity: 0; filter: blur(5px); transform: translateY(50px); transition: all 1s ease-out; }
.show { opacity: 1; filter: blur(0); transform: translateY(0); }

/* --- CURSOR PERSONALIZADO --- */
.cursor, .cursor2 {
    position: fixed; border-radius: 50%; transform: translate(-50%, -50%);
    pointer-events: none; z-index: 9999;
}
.cursor { width: 8px; height: 8px; background-color: var(--gold-primary); }
.cursor2 {
    width: 40px; height: 40px; border: 1px solid var(--gold-primary);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    transition-timing-function: ease-out;
}
/* Estado Hover del Cursor */
body.hover-cursor .cursor2 {
    width: 70px; height: 70px; background-color: rgba(255, 215, 0, 0.1); border-color: transparent;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    * { cursor: auto; } /* Restaurar cursor normal en móvil */
    .cursor, .cursor2 { display: none; }
    .nav-links {
        display: none; position: absolute; top: 70px; left: 0; width: 100%;
        background-color: var(--bg-color); flex-direction: column; padding: 20px; text-align: center;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; gap: 20px; }
}