/* =========================================
   1. DEFINICIÓN DE FUENTES (Siempre al inicio)
   ========================================= */

/* MATSURY (Logo) */
@font-face {
    font-family: 'Matsury';
    /* OJO: Verifica que tu archivo se llame EXACTAMENTE así en la carpeta fonts */
    src: url('fonts/Matsury Demo.ttf') format('truetype'); 
    font-display: swap; 
}

/* SOMAR SANS (Familia) */
@font-face {
    font-family: 'Somar Sans';
    src: url('fonts/SomarSans-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('fonts/SomarSans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Somar Sans';
    src: url('fonts/SomarSans-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =========================================
   2. RESET Y BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    font-family: 'Somar Sans', sans-serif; /* Fuente por defecto */
    overflow-x: hidden;
}

/* =========================================
   3. ESTRUCTURA HERO (Fondo y Oscuridad)
   ========================================= */

/* Contenedor Principal */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    
    /* Imagen de fondo */
    background-image: url('img/Niñas en Barra_Dance2Be.png'); 
    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: none; /* Oculta cursor para inmersión */
}

/* Capa de Oscuridad (Spotlight) */
.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Z-INDEX BAJO: Detrás del texto */
    z-index: 1; 
    pointer-events: none; /* Deja pasar los clics */

    background-color: rgba(0, 0, 0, 0.96); 
    
    /* El gradiente de la linterna */
    background: radial-gradient(
        circle 250px at var(--x, 50%) var(--y, 50%), 
        transparent 0%, 
        rgba(0, 0, 0, 0.98) 100%
    );
    will-change: background;
}

/* =========================================
   4. CONTENIDO (Texto y Botones)
   ========================================= */

.content {
    position: relative;
    z-index: 10; /* ENCIMA de la oscuridad */
    text-align: center;
    color: white;
}

/* Título Principal (Logo) */
h1 {
    font-family: 'Matsury', sans-serif;
    font-size: 6rem;
    font-weight: normal;
    letter-spacing: 0;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    text-transform: none;
    line-height: 1.1;
}

/* Subtítulo */
.subtitle {
    font-family: 'Somar Sans', sans-serif;
    font-weight: 300; /* Light */
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: -10px;
    margin-bottom: 20px;
}

/* Tagline */
.tagline {
    font-family: 'Somar Sans', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* =========================================
   5. BOTÓN (Interacción)
   ========================================= */

.cta-button {
    pointer-events: auto; /* Habilita el clic */
    cursor: pointer;
    position: relative;
    z-index: 11; /* Prioridad máxima */
    
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid white;
    
    /* Tipografía del botón */
    font-family: 'Somar Sans', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
    
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: white;
    color: black;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}


/* =========================================
   6. SECCIÓN MANIFIESTO
   ========================================= */

.manifiesto-section {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Ocupa al menos toda la pantalla */
    background-color: #050505; /* Casi negro, pero distinto al Hero */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    z-index: 20; /* Asegura que esté encima si hay solapamientos */
}

.container {
    max-width: 800px; /* Ancho máximo de lectura cómodo */
    text-align: center;
}

/* Elemento decorativo: Línea vertical */
.linea-vertical {
    display: block;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, white);
    margin: 0 auto 30px auto; /* Centrado y separado del título */
}

/* Título de la sección */
.manifiesto-header h2 {
    font-family: 'Somar Sans', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 60px;
}

/* Cuerpo del texto */
.manifiesto-texto p {
    font-family: 'Somar Sans', sans-serif;
    font-weight: 300; /* Light para elegancia */
    font-size: 1.5rem; /* Tamaño grande, fácil de leer */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Resaltado con la fuente del logo (Matsury) */
.resaltado {
    font-family: 'Matsury', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    vertical-align: middle; /* Ajuste para que se alinee bien con el texto */
    margin: 0 5px;
}

/* Frase de cierre con más peso */
.frase-cierre {
    font-weight: 400; /* Regular */
    font-size: 1.8rem !important;
    margin-top: 60px;
    color: white !important;
}

/* Para móviles: Ajustar tamaños */
@media (max-width: 768px) {
    .manifiesto-texto p {
        font-size: 1.2rem;
    }
    .resaltado {
        font-size: 1.8rem;
    }
}