/* ==========================================================================
   KIKA MAS - ESTILOS PREMIUM (ARQUITECTURA LIMPIA)
   ========================================================================== */

/* VARIABLES Y RESET */
:root {
    --primario: #2c4c3b;
    --secundario: #d4af37;
    --fondo: #faf9f6;
    --texto: #333333;
    --blanco: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--fondo); color: var(--texto); line-height: 1.8; overflow-x: hidden; position: relative; }

/* TIPOGRAFÍAS */
h1, h2, h3 { font-family: 'Cinzel', serif; color: var(--primario); font-weight: 600; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 80px 20px; position: relative; z-index: 2; }
.text-center { text-align: center; }

/* PARTICULAS FONDO */
#particles-js { position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: 99; pointer-events: none; }

/* ANIMACIONES SCROLL REVEAL (JS-Enabled) */
.js-enabled .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.js-enabled .reveal.active { opacity: 1; transform: translateY(0); }
.js-enabled .delay-1 { transition-delay: 0.1s; }
.js-enabled .delay-2 { transition-delay: 0.2s; }
.js-enabled .delay-3 { transition-delay: 0.3s; }

/* RECURSOS FLOTANTES (Configuración Escritorio) */
.floating-icon-1 { position: absolute; bottom: -50px; right: -50px; width: 300px; opacity: 0.22; z-index: 0; animation: float 6s ease-in-out infinite; pointer-events: none; }
.floating-icon-2 { position: absolute; top: 50px; left: -50px; width: 220px; opacity: 0.22; z-index: 0; animation: float 8s ease-in-out infinite; pointer-events: none; }
.floating-icon-3 { position: absolute; bottom: 50px; right: -50px; width: 250px; opacity: 0.22; z-index: 0; animation: float 7s ease-in-out infinite; pointer-events: none; }
.content-relative { position: relative; z-index: 2; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* HEADER RESPONSIVE */
.header { position: fixed; top: 0; width: 100%; background: rgba(250, 249, 246, 0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.04); z-index: 1000; transition: all 0.3s ease; }
.header-content { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; max-width: 1300px; margin: 0 auto; }
.logo img { height: 75px; display: block; transition: all 0.3s ease; }

.nav-links { display: flex; gap: 15px; list-style: none; align-items: center; }
.nav-links a { 
    font-family: 'Cinzel', serif; 
    font-size: 0.95rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    color: var(--primario); 
    letter-spacing: 1px; 
    position: relative; 
}
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: var(--secundario); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--secundario); }

.menu-btn { display: none; font-size: 1.8rem; cursor: pointer; color: var(--primario); }

/* SELECTOR DE IDIOMAS */
.lang-selector { margin-left: 10px; border-left: 1px solid rgba(0,0,0,0.1); padding-left: 15px; }
.lang-selector a { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
    font-size: 0.85rem; 
    margin-right: 5px; 
    color: #999; 
    letter-spacing: normal;
}
.lang-selector a.active { color: var(--primario); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 20px 20px; position: relative; z-index: 1;}
.hero-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 45%; opacity: 0.08; z-index: 0; pointer-events: none; }
.hero-content { z-index: 1; max-width: 800px; padding: 40px; }
.hero h1 { font-size: 4.2rem; line-height: 1.2; margin-bottom: 10px; letter-spacing: 2px;}
.hero h2 { font-size: 1.3rem; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: #555; margin-bottom: 30px; }
.btn-gold { background: var(--secundario); color: var(--blanco); padding: 18px 35px; border-radius: 50px; font-weight: 600; text-transform: uppercase; display: inline-block; box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3); transition: all 0.4s ease; letter-spacing: 2px; position: relative; z-index: 100;}
.btn-gold:hover { background: var(--primario); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(44, 76, 59, 0.3); }

/* GRID Y TARJETAS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); padding: 40px 30px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s ease; border-top: 3px solid transparent; display: flex; flex-direction: column; position: relative; z-index: 2; border: 1px solid rgba(255,255,255,0.5);}
.card:hover { transform: translateY(-10px); border-top: 3px solid var(--secundario); box-shadow: 0 20px 40px rgba(0,0,0,0.06);}
.card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.card p { flex-grow: 1; color: #555; margin-bottom: 25px; font-size: 0.95rem; }

.viaje-card { border-radius: 12px; overflow: hidden; background: rgba(255, 255, 255, 0.9); box-shadow: 0 10px 30px rgba(0,0,0,0.03); display: flex; flex-direction: column; transition: all 0.4s ease; position: relative; z-index: 2; border: 1px solid rgba(255,255,255,0.5);}
.viaje-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.viaje-img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.8s ease; }
.viaje-card:hover .viaje-img { transform: scale(1.05); }
.viaje-info { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.viaje-info p { flex-grow: 1; margin-bottom: 25px; color: #555; font-size: 0.95rem; }

.link-terapia { color: var(--secundario); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; display: inline-block; position: relative; padding-bottom: 5px; z-index: 100;}
.link-terapia::after { content: ''; position: absolute; width: 30px; height: 2px; bottom: 0; left: 0; background-color: var(--primario); transition: width 0.3s ease; }
.link-terapia:hover::after { width: 100%; }
.link-terapia:hover { color: var(--primario); }

/* MULTIMEDIA NATIVO */
.video-nativo { width: 100%; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); outline: none; background: #000; position: relative; z-index: 2; margin-top: 10px;}

/* FORMULARIO */
.form-section { background: var(--primario); color: var(--blanco); padding: 100px 20px; position: relative; z-index: 2; border-radius: 20px 20px 0 0;}
.form-box { max-width: 500px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 2;}
.form-box input { padding: 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); font-family: var(--fuente-textos); outline: none; transition: 0.3s; background: rgba(255,255,255,0.95); font-size: 1rem; position: relative; z-index: 100;}
.form-box input:focus { border-color: var(--secundario); box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
.form-box button { background: var(--secundario); color: var(--blanco); padding: 18px; border: none; border-radius: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: all 0.3s ease; font-size: 1rem; position: relative; z-index: 100;}
.form-box button:hover { background: var(--blanco); color: var(--primario); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

/* COOKIES BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(26,26,26,0.98); color: #fff; padding: 20px; display: none; justify-content: space-between; align-items: center; z-index: 9999; box-shadow: 0 -5px 30px rgba(0,0,0,0.4); font-size: 0.9rem;}
.cookie-buttons { display: flex; gap: 15px; }
.cookie-btn { padding: 12px 25px; border: none; border-radius: 4px; cursor: pointer; font-weight: bold; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px;}
.btn-accept { background: var(--secundario); color: #fff; }
.btn-accept:hover { background: var(--blanco); color: var(--secundario); }
.btn-reject { background: transparent; border: 1px solid #555; color: #aaa; }
.btn-reject:hover { background: #333; color: #fff; border-color: #333;}

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; box-shadow: 0 10px 25px rgba(37,211,102,0.4); z-index: 1000; transition: all 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1) rotate(5deg); color: white; }

/* ==========================================================================
   RESPONSIVE DESIGN ESTRICTO PARA MÓVILES (UX PREMIUM)
   ========================================================================== */
@media (max-width: 1150px) {
    /* 1. Ajustes de Espaciado: Eliminamos saltos blancos innecesarios */
    .container { padding: 50px 20px; }
    .hero { min-height: 85vh; padding: 100px 20px 20px; }
    #viajes { padding: 60px 0 !important; }
    .form-section { padding: 60px 20px; }
    
    .grid-2 { grid-template-columns: 1fr; gap: 30px;}
    .hero h1 { font-size: 3rem; }
    
    /* 2. Configuración Menú Hamburguesa */
    .menu-btn { display: block; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(250, 249, 246, 0.98); padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); backdrop-filter: blur(10px);}
    .nav-links.active { display: flex; }
    
    .lang-selector { border-left: none; margin-left: 0; padding-left: 0; padding-top: 15px; border-top: 1px solid #eee; width: 100%; text-align: center; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 20px; }
    .hero-bg { width: 90%; }
    
    /* 3. FIX UX ANDROID: Marcas de agua centradas, visibles y seguras */
    .floating-icon-1, .floating-icon-2, .floating-icon-3 { 
        display: block !important; 
        opacity: 0.12 !important; /* Doble opacidad para que se aprecien en pantallas móviles */
        z-index: 0; 
        width: 160px !important; 
        
        /* Centrado absoluto perfecto que NO rompe las animaciones */
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto !important;
    }
    
    /* Reposicionamiento vertical para que floten elegantemente de fondo */
    .floating-icon-1 { bottom: 5%; }
    .floating-icon-2 { top: 5%; }
    .floating-icon-3 { bottom: 2%; } /* Ajuste del Buda para no crear huecos enormes al final */
}