/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; }

/* VARIABLES */
:root {
    --lila-text: #8A8AFF;
    --bg-instructions: #8A8AFF;
    --bg-faq: #483D8B;
    --bg-footer: #2F4F4F;
    --yellow-neon: #DFFF00;
    --white: #FFFFFF;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; padding: 25px 0; z-index: 1000;
    background: transparent; transition: background 0.3s;
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
    font-family: rl-limo, sans-serif; /* Adobe Font */
    font-weight: 900;
    font-size: 2rem; color: var(--white);
    text-decoration: none; text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.nav-menu { display: flex; list-style: none; gap: 30px; }
.nav-menu a {
    text-decoration: none; color: var(--white); font-weight: 600;
    text-transform: uppercase; font-size: 0.9rem; text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.menu-toggle { display: none; color: white; font-size: 1.5rem; }

/* --- HERO (BANNER) --- */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('images/fondo-home.jpg');
    background-size: cover; background-position: center; background-attachment: fixed;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
}

/* 1. TÍTULO CON ADOBE FONT (rl-limo) */
.hero-title {
    font-family: rl-limo, sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: clamp(4.5rem, 12vw, 8rem); 
    line-height: 1; margin-bottom: 20px;
    color: var(--lila-text); 
    text-shadow: 3px 3px 0px #000;
}

/* 2. IMAGEN MÁS GRANDE */
.hero-image-container {
    position: relative; 
    max-width: 750px; /* Aumentado a 750px */
    width: 95%;
    margin: 0 auto 30px;
}
.box-image { width: 100%; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); }

.floating-badge {
    position: absolute; top: 0; right: -10px;
    background: var(--yellow-neon); color: #000; padding: 8px 15px;
    border-radius: 50px; font-weight: bold; font-size: 0.8rem;
}

.hero-footer-text { max-width: 750px; margin: 0 auto; }

/* 3. SUBTÍTULO CON ADOBE FONT */
.sub-title-lila {
    font-family: rl-limo, sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    color: var(--lila-text); line-height: 1.1; margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.long-description {
    font-size: 1.2rem; line-height: 1.6; margin-bottom: 40px;
    color: var(--yellow-neon); 
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    font-weight: 500;
}

/* 4. BOTÓN CON ADOBE FONT */
.btn-transparent {
    display: inline-block; padding: 15px 40px;
    border: 3px solid var(--lila-text);
    color: var(--yellow-neon);
    
    /* Fuente aplicada */
    font-family: rl-limo, sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    
    text-decoration: none; border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease; background: rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.btn-transparent:hover {
    background: var(--lila-text);
    color: #fff;
    transform: translateY(-3px);
}

/* RESTO DE SECCIONES (Títulos con la nueva fuente opcionalmente, 
   o puedes dejarlos con Montserrat/Abril si prefieres) */
.section-title, .faq-title, .footer-title {
    font-family: rl-limo, sans-serif; /* Usando RL Limo para consistencia */
    font-weight: 900;
    font-size: 3.5rem; line-height: 1; margin-bottom: 40px;
}

/* ESTILOS COMUNES */
.instructions-section { background: var(--bg-instructions); padding: 80px 0; color: white; }
.split-layout { display: flex; align-items: center; gap: 50px; }
.col-visual, .col-info { flex: 1; }
.hands-img { width: 100%; max-width: 550px; }
.text-yellow { color: var(--yellow-neon); }
.subtitle-block { display: block; color: var(--yellow-neon); }
.steps-list { display: flex; flex-direction: column; gap: 20px; }
.step-item {
    background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.4);
    border-radius: 15px; padding: 15px 25px;
    display: flex; justify-content: space-between; align-items: center;
}
.step-text h3 { color: var(--yellow-neon); text-transform: uppercase; margin-bottom: 5px; }
.step-icon { font-size: 2rem; color: var(--yellow-neon); }
.faq-section { background: var(--bg-faq); padding: 80px 0; color: white; }
.footer-section { background: var(--bg-footer); padding: 80px 0; color: white; }
.faq-grid, .footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.faq-box {
    background: rgba(0,0,0,0.2); padding: 25px; border-radius: 15px; display: flex; gap: 15px;
}
.icon-circle { color: var(--yellow-neon); font-size: 1.5rem; }
.footer-col h4 { color: var(--yellow-neon); font-family: rl-limo, sans-serif; font-weight: 900; margin-bottom: 10px; font-size: 1.3rem; }
.highlight-small { font-weight: 700; text-transform: uppercase; color: var(--yellow-neon); font-size: 0.8rem; margin-bottom: 10px; }
.text-white { color: white; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .menu-toggle { display: block; }
    .hero-title { font-size: 4rem; } 
    .sub-title-lila { font-size: 2rem; }
    .split-layout { flex-direction: column; }
    .col-visual { order: 2; }
    .col-info { order: 1; text-align: center; }
    .faq-grid, .footer-columns { text-align: center; }
    .faq-box { flex-direction: column; }
}