.mt30{ margin-top:30px;}
.mt40 {margin-top: 40px;}
.mt60 {   margin-top: 60px;}
.wrapper{width:100%; overflow:hidden;}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #07080f; /* Azul noche muy profundo */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

    .glow-bg::before, .glow-bg::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        filter: blur(150px);
        opacity: 0.15;
        animation: pulseGlow 10s infinite alternate ease-in-out;
    }

    .glow-bg::before {
        background: #ff007f; /* Rosa Neón */
        top: -10%;
        left: -10%;
    }

    .glow-bg::after {
        background: #00f0ff; /* cian Neón */
        bottom: -10%;
        right: -10%;
        animation-delay: -5s;
    }

.container a {
    color: #fff !important;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(50px, 50px);
    }
}

/* CONTAINER */
.container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    text-align: center;
    padding: 40px 20px;
}

    .container ul {
        text-align: left;
        padding: 0 0 0 9px;
        margin: 0 0 0 20px !important;
    }

/* CONTENEDOR DEL TÍTULO */
.title-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto 20px;
}

/* GRÁFICO DE LAS 3 LÍNEAS EN LA "F" */
.f-rays {
    position: absolute;
    top: -44px; /* Ajustado a las nuevas líneas más cortas */
    left: -58px;
    width: 70px;
    height: 70px;
    z-index: 3;
    overflow: visible;
}

.ray-line {
    stroke-width: 8; /* Más gruesas */
    stroke-linecap: round; /* Contorno final perfectamente redondo */
    stroke-dasharray: 50; /* Ajustado a la longitud más corta */
    stroke-dashoffset: 50;
    animation: drawLine 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards 2.5s;
}

/* Colores de las líneas con sutil brillo */
.ray-blue {
    stroke: #00aaff; /* Azul vibrante */
    filter: drop-shadow(0 0 4px rgba(0, 170, 255, 0.6));
}

.ray-pink {
    stroke: #ff007f; /* Rosa FEMFES */
    filter: drop-shadow(0 0 4px rgba(255, 0, 127, 0.6));
}

.ray-red {
    stroke: #ff3333; /* Rojo enérgico */
    filter: drop-shadow(0 0 4px rgba(255, 51, 51, 0.6));
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* TYPOGRAPHY */
.glow-text {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    z-index: 4;
    cursor: pointer;
    /* Estado apagado inicial */
    color: rgba(255, 255, 255, 0.05);
    text-shadow: none;
    animation: turnOnSign 1.8s forwards 0.5s;
}

    .glow-text a {
        all: unset;
    }

@keyframes turnOnSign {
    0% {
        color: rgba(255,255,255,0.05);
        text-shadow: none;
    }

    10% {
        color: #fff;
        text-shadow: 0 0 10px rgba(255,255,255,0.5);
    }

    15% {
        color: rgba(255,255,255,0.05);
        text-shadow: none;
    }

    20% {
        color: #fff;
        text-shadow: 0 0 15px rgba(255,255,255,0.5);
    }

    25% {
        color: rgba(255,255,255,0.05);
        text-shadow: none;
    }

    30% {
        color: #fff;
        text-shadow: 0 0 10px rgba(255,255,255,0.8);
    }

    100% {
        color: #fff;
        text-shadow: 0 0 10px rgba(255,255,255,0.6), 0 0 20px rgba(157, 78, 221, 0.4);
    }
}

.tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: #00f0ff;
    margin-top: 10px;
    margin-bottom: 30px;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #a0a5c0;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* CAJA EFECTO CRISTAL (Para Textos y Formularios) */
.glass-box {
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(255, 0, 127, 0.3);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
}

/* ESTILOS PARA TEXTOS LEGALES */
.legal-text h2 {
    color: #00f0ff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-text p {
    color: #a0a5c0;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    nav {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
    }

    .glow-title {
        font-size: 1.6rem;
    }

    .glass-box {
        padding: 25px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top:15px;
}

    .form-group label {
        font-family: 'Roboto', sans-serif;
        font-size: 0.8rem;
        color: #eee;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

.contact-form input:not([type="submit"]), .contact-form textarea {
    background: rgba(5, 5, 10, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

    .contact-form input:focus, .contact-form textarea:focus {
        border-color: #00f0ff;
        box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    }

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

    .checkbox-group input {
        width: auto;
        margin-top: 5px;
        cursor: pointer;
    }

    .checkbox-group label {
        font-family: 'Roboto', sans-serif;
        font-size: 0.85rem;
        color: #a0a5c0;
        text-transform: none;
        letter-spacing: 0;
    }

.submit-btn {
    background: rgba(255, 255, 255, 0.03); /* Fondo translúcido muy elegante */
    border: 1px solid rgba(157, 78, 221, 0.4); /* Borde sutil en violeta institucional */
    padding: 15px 30px;
    border-radius: 6px; /* Esquinas ligeramente más rectas para mayor seriedad */
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* Sombra de profundidad física, no neón */
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
}

    .submit-btn:hover {
        background: #9d4edd; /* Se llena de vuestro violeta corporativo */
        border-color: #e0aaff; /* El borde se aclara sutilmente */
        box-shadow: 0 0 15px rgba(157, 78, 221, 0.5); /* Brillo suave y controlado, no cegador */
        transform: translateY(-2px); /* Desplazamiento sutil hacia arriba en lugar de agrandarse */
    }

.divCaptcha {
    width: 380px;
    margin: 25px auto;
}

/***FOOT***/
.legal-links {
    margin: 20px 0 30px 0;
    font-size: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .legal-links a {
        color: #5C6180; /* Color discreto a juego con el copyright */
        text-decoration: none;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }

        .legal-links a:hover {
            color: #00f0ff; /* Sutil brillo cian al pasar el ratón */
            text-shadow: 0 0 5px rgba(0, 240, 255, 0.6);
        }

    .legal-links .separator {
        color: rgba(80, 85, 112, 0.3);
        font-size: 0.7rem;
    }
