﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.legal-text a{ color:#eee !important; text-decoration:none;}
.divCaptcha{ width:320px; margin: auto;}

body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* =========================================
           (LÍNEAS A 45 GRADOS)
           ========================================= */
.lines-container {
    position: fixed;
    top: -50vh;
    left: -50vw;
    width: 200vw;
    height: 200vh;
    transform: rotate(45deg);
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.line {
    position: absolute;
    width: 160vw;
    left: 0;
    mix-blend-mode: screen;
    transform: translateX(-150%);
}

/* Paleta Vibrante Intercalada: Magenta, Azul Eléctrico, Blanco Puro, Rojo, Morado */
/* Grosores aumentados para dar más peso visual */
.line-1 {
    height: 60px;
    background: #FF0090;
    top: 8%;
    animation: slide45 6s linear infinite;
    opacity: 0.9;
}

.line-2 {
    height: 40px;
    background: #1e40af;
    top: 16%;
    animation: slide45 4.5s linear infinite 1.2s;
    opacity: 0.9;
}
/* Azul más vibrante */
.line-3 {
    height: 35px;
    background: #FFFFFF;
    top: 25%;
    animation: slide45 7s linear infinite 0.5s;
    opacity: 0.95;
}
/* Blanco puro, no gris */
.line-4 {
    height: 75px;
    background: #FF0033;
    top: 34%;
    animation: slide45 5s linear infinite 2s;
    opacity: 0.85;
}

.line-5 {
    height: 45px;
    background: #8A2BE2;
    top: 43%;
    animation: slide45 6.5s linear infinite 3.5s;
    opacity: 0.9;
}
/* Morado potente */

.line-6 {
    height: 50px;
    background: #1e40af;
    top: 51%;
    animation: slide45 5.5s linear infinite 0.8s;
    opacity: 0.9;
}

.line-7 {
    height: 30px;
    background: #FF0090;
    top: 60%;
    animation: slide45 5s linear infinite 2.8s;
    opacity: 0.85;
}

.line-8 {
    height: 85px;
    background: #FFFFFF;
    top: 69%;
    animation: slide45 7.5s linear infinite 1.8s;
    opacity: 0.95;
}

.line-9 {
    height: 40px;
    background: #FF0033;
    top: 78%;
    animation: slide45 6s linear infinite 0.2s;
    opacity: 0.8;
}

.line-10 {
    height: 55px;
    background: #8A2BE2;
    top: 87%;
    animation: slide45 5s linear infinite 4.2s;
    opacity: 0.9;
}

.line-11 {
    height: 35px;
    background: #1e40af;
    top: 93%;
    animation: slide45 4.8s linear infinite 1.1s;
    opacity: 0.9;
}

.line-12 {
    height: 70px;
    background: #FF0090;
    top: 97%;
    animation: slide45 6.2s linear infinite 3.1s;
    opacity: 0.85;
}

/* Movimiento continuo sin pausas */
@keyframes slide45 {
    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(150%);
    }
}

/* =========================================
           FOCOS DE LUZ APUNTANDO DIRECTO AL LOGO
           ========================================= */
.spotlights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.spotlight {
    position: absolute;
    top: -60px;
    width: 180px; /* Haces de luz gruesos */
    height: 1000px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    filter: blur(18px);
    transform-origin: top center;
}

    /* Foco Izquierdo - Angulado hacia el centro de la cabecera */
    .spotlight.left {
        left: 10%;
        transform: rotate(-80deg);
        animation: swingLeft 4s infinite alternate ease-in-out;
    }

    /* Foco Derecho - Angulado hacia el centro de la cabecera */
    .spotlight.right {
        right: 10%;
        transform: rotate(80deg);
        animation: swingRight 5s infinite alternate ease-in-out;
    }

/* Balanceo cruzando exactamente sobre el espacio del logo */
@keyframes swingLeft {
    0% {
        transform: rotate(-60deg);
    }

    100% {
        transform: rotate(-45deg);
        opacity: 0.7;
    }
}

@keyframes swingRight {
    0% {
        transform: rotate(60deg);
    }

    100% {
        transform: rotate(45deg);
        opacity: 0.7;
    }
}

/* =========================================
           CABECERA Y LOGO
           ========================================= */
header {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 60px 20px 0px 20px;
}

.logo-placeholder {
    max-width: 450px;
    height: auto;
    margin: 0 auto;
    display: block;
    /* Zoom limpio hacia adelante y hacia atrás */
    animation: pulseZoom 2.5s infinite alternate ease-in-out;
}

@keyframes pulseZoom {
    0% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1.05);
    }
}

/* =========================================
           SECCIÓN DE EVENTOS
           ========================================= */
main {
    position: relative;
    z-index: 10;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    margin: auto;
}

.event-card {
    background: rgba(10, 10, 15, 0.65);
    border: 1px solid rgba(255, 0, 144, 0.3);
    border-radius: 10px;
    padding: 50px 40px;
    text-align: center;
    max-width: 650px;
    width: 100%;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

    .event-card h2 {
        font-family: 'Orbitron', sans-serif;
        font-size: 2rem;
        letter-spacing: 2px;
        color: #ffffff;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    .event-card .subtitle {
        color: #eee;
        font-weight: 900;
        letter-spacing: 4px;
        font-size: 0.9rem;
        margin-bottom: 25px;
        text-transform: uppercase;
    }

    .event-card p.status-text {
        color: #b0b5c0;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 35px;
        font-weight: 400;
    }

.coming-soon {
    display: inline-block;
    background: transparent;
    border: 2px solid #FF0090;
    padding: 12px 35px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #FF0090;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 0, 144, 0.2), inset 0 0 10px rgba(255, 0, 144, 0.2);
    transition: all 0.3s ease;
}

footer {
    position: relative;
    z-index: 10;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid #222;
    padding: 30px 20px 20px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

    .footer-links a {
        color: #8a8d9e;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #00FFFF;
            text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
        }

.company-info {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    letter-spacing: 1px;
}

    .company-info span {
        color: #777;
    }

/* RESPONSIVE */
@media (max-width: 600px) {
    .event-card h2 {
        font-size: 1.5rem;
    }

    .coming-soon {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .spotlight.left {
        left: -10%;
        transform: rotate(-45deg);
    }

    .spotlight.right {
        right: -10%;
        transform: rotate(45deg);
    }

    .line {
        width: 250vw;
    }
}




.logo-small {
    max-width: 200px;
    margin: 0 auto;
    display: block;
    animation: pulseZoom 2.5s infinite alternate ease-in-out;
}

header.internal-header {
    padding: 40px 20px 0px 20px; /* Menos espacio arriba */
}

/* Caja de contenido grande para leer textos */
.content-box {
    background: rgba(10, 10, 15, 0.75);
    border: 1px solid rgba(0, 229, 255, 0.3); /* Borde Cian */
    border-top: 3px solid #FF0090; /* Detalle superior Magenta */
    border-radius: 8px;
    padding: 40px 50px;
    text-align: left;
    max-width: 800px;
    width: 100%;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
    margin: 20px auto 40px auto;
}

/* Títulos de las páginas internas */
.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

/* Formato de Textos Legales */
.legal-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #FF0090;
    margin-top: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.legal-text p, .legal-text ul {
    color: #b0b5c0;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul {
    margin-left: 20px;
}

.legal-text strong {
    color: #ffffff;
}

/* Formulario de Contacto VMFES */
.vmfes-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vmfes-input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 4px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

    .vmfes-input:focus {
        border-color: #00E5FF;
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
        background: rgba(0, 0, 0, 0.8);
    }

textarea.vmfes-input {
    resize: vertical;
    min-height: 150px;
}

.vmfes-btn {
    background: transparent;
    border: 2px solid #FF0090;
    color: #FF0090;
    padding: 15px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

    .vmfes-btn:hover {
        background: #FF0090;
        color: #fff;
        box-shadow: 0 0 20px rgba(255, 0, 144, 0.6);
    }

/* Scrollbar Neón para la web entera */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #FF0090;
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #00E5FF;
    }

@media (max-width: 600px) {
    .content-box {
        padding: 25px 20px;
    }

    .page-title {
        font-size: 1.5rem;
    }
}