:root {
    --bg: #0d0d0d;
    --accent: #b8915e;
    --text-white: rgba(230, 230, 230, 0.85); 
    --card-light: rgba(249, 246, 242, 0.96);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo { 
    font-family: 'Cinzel', serif; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    color: var(--text-white); 
}

.container { max-width: 1250px; margin: 0 auto; padding: 100px 25px; }

/* Navbar */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 50px; position: fixed; width: 100%; z-index: 1000;
    transition: 0.4s;
}
nav.scrolled { background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); padding: 15px 50px; border-bottom: 1px solid #222; }
.logo { font-size: 1.4rem; color: var(--accent); font-weight: 700; }
.nav-links a { color: var(--text-white); text-decoration: none; margin-left: 20px; font-size: 0.75rem; letter-spacing: 1px; }
.lang-toggle { margin-left: 20px; font-size: 0.7rem; color: #666; }
.lang-toggle a { text-decoration: none; color: #666; transition: 0.3s; }
.lang-toggle a.active { color: var(--accent); font-weight: bold; }

/* Hero Section */
.parallax-bg { background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; background-color: #111; }

.hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-overlay { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.45); }

.hero-content.left-align { 
    position: relative; 
    z-index: 10; 
    width: 100%; 
    max-width: 1250px; 
    padding: 0 50px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); margin-bottom: 20px; line-height: 1.2; text-align: left; }
.hero-sub { 
    font-size: 1.2rem; 
    line-height: 1.6; 
    margin-bottom: 40px; 
    color: var(--text-white);
    text-align: left;
}

/* Sellos centrados */
.hero-seals-container {
    display: flex;
    justify-content: center; 
    width: 100%;
    margin-bottom: 30px;
    order: -1; 
}

.hero-seals { 
    display: flex; 
    gap: 30px; 
    padding: 15px 35px; 
    background: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(8px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
.seal span { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; color: var(--accent); }

.btn-gold { background: var(--accent); color: #000; padding: 16px 40px; text-decoration: none; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; display: inline-block; text-align: center;}
.btn-outline { border: 1px solid var(--text-white); color: var(--text-white); padding: 16px 40px; text-decoration: none; transition: 0.3s; display: inline-block; margin-left: 15px; text-align: center;}
.btn-gold:hover, .btn-outline:hover { background: #fff; color: #000; border-color: #fff; }

/* Manifesto */
.manifesto-wrap { height: 85vh; display: flex; align-items: center; position: relative; }
.manifesto-card { background: var(--card-light); color: #111; padding: 60px; max-width: 750px; margin-left: 8%; box-shadow: 20px 20px 0px var(--accent); }
.manifesto-card h2 { margin-bottom: 25px; font-size: 1.8rem; line-height: 1.3; color: #111; }
.manifesto-card p { margin-bottom: 20px; font-size: 1.1rem; font-weight: 300; color: #333; }

/* Founders */
.founders-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
.founders-photos img { width: 100%; height: 420px; object-fit: cover; border: 1px solid var(--accent); padding: 8px; margin-bottom: 20px; }
.founders-text span { color: var(--accent); letter-spacing: 3px; font-size: 0.8rem; }
.founders-text h2 { font-size: 2.8rem; margin: 20px 0; line-height: 1.2; }
.founders-text p { margin-bottom: 20px; color: var(--text-white); }

/* Gerewol Section */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header span { color: var(--accent); letter-spacing: 4px; }
.meta-dates { font-size: 1.4rem; color: var(--text-white); margin-top: 10px; }

.exp-main-visual { height: 500px; background-size: cover; background-position: center; position: relative; margin-bottom: 80px; display: flex; align-items: flex-end; }
.exp-overlay-text { background: rgba(0,0,0,0.8); padding: 40px; width: 100%; max-width: 800px; }

.exp-details-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: flex-start; }
.slideshow-box { height: 600px; overflow: hidden; border: 1px solid #333; }
.mySlides img { width: 100%; height: 600px; object-fit: cover; }

.reality-check { background: #210a0a; border-left: 4px solid #721c1c; padding: 30px; margin: 30px 0; }
.reality-check h4 { color: #f44336; margin-bottom: 10px; }

.itinerary-preview { margin-top: 30px; border-top: 1px solid #333; padding-top: 30px; }
.itinerary-preview ul { list-style: none; margin-top: 15px; }
.itinerary-preview li { margin-bottom: 12px; font-size: 0.9rem; }
.itinerary-preview li strong { color: var(--accent); margin-right: 10px; }

.full-width { width: 100%; text-align: center; margin-top: 30px; }
.wide-photo { margin-top: 80px; }
.wide-photo img { width: 100%; height: auto; border: 1px solid #222; }

/* Modal & Form Fixes */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); backdrop-filter: blur(8px); overflow-y: auto; }
.modal-content { background: #111; margin: 50px auto; padding: 40px; border: 1px solid var(--accent); width: 90%; max-width: 600px; position: relative; text-align: left; }
.modal-subtitle { font-size: 0.9rem; color: #888; margin: 10px 0 30px 0; line-height: 1.4; }
.close-modal { position: absolute; right: 20px; top: 10px; font-size: 2rem; color: var(--accent); cursor: pointer; }

#application-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
#application-form input, #application-form textarea { width: 100%; background: #000; border: 1px solid #333; color: #fff; padding: 12px; font-family: 'Inter', sans-serif; }

/* Fix for "Why..." Question Alignment */
#application-form .form-group { margin-top: 25px; margin-bottom: 20px; }
#application-form label { display: block; margin-bottom: 12px; font-size: 0.85rem; color: var(--accent); text-transform: uppercase; font-weight: 600; }

/* Checkbox Alignment Fix (Screenshot 2026-05-06 at 11.32.00.png) */
.checkbox-container { margin: 30px 0; }
.check-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start; 
    margin-bottom: 20px;
    cursor: pointer;
}
.check-item input { 
    margin-right: 15px !important; 
    width: 18px !important; 
    height: 18px !important;
    cursor: pointer;
    flex-shrink: 0; 
    margin-top: 3px; /* Alineación fina con la primera línea */
}
.check-item span {
    font-size: 0.8rem;
    color: var(--accent); /* Color dorado solicitado */
    text-transform: uppercase;
    line-height: 1.4;
}

/* Future Rituals */
.rituals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 50px; }
.ritual-card { height: 400px; background-size: cover; background-position: center; position: relative; transition: 0.5s; border: 1px solid #222; }
.card-inner { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: 0.4s; padding: 20px; text-align: center; }
.ritual-card:hover .card-inner { background: rgba(0,0,0,0.3); }
.ritual-card h3 { color: var(--accent); margin-bottom: 10px; }

/* Footer */
footer { background: #050505; border-top: 1px solid #222; padding: 80px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.footer-contact h4 { margin-bottom: 20px; color: var(--accent); }
.footer-contact a { color: var(--text-white); text-decoration: none; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(40px); transition: 1.2s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* WhatsApp Float */
.whatsapp-btn { position: fixed; bottom: 40px; right: 40px; background: #25d366; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: #fff; text-decoration: none; z-index: 1000; box-shadow: 0 10px 25px rgba(0,0,0,0.4); }

@media (max-width: 850px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-content.left-align { padding: 0 20px; text-align: center; align-items: center; } 
    .hero-seals-container { justify-content: center; }
    .hero-seals { flex-direction: column; gap: 15px; padding: 20px; }
    #application-form .form-row { grid-template-columns: 1fr; }
    .founders-grid, .exp-details-grid, .rituals-grid, .footer-grid { grid-template-columns: 1fr; }
    .manifesto-card { margin-left: 0; width: 100%; }
    .nav-links { display: none; }
}