.elementor-kit-7{--e-global-color-primary:#E91E63;--e-global-color-secondary:#7C4DFF;--e-global-color-text:#FFFFFF;--e-global-color-accent:#FF80AB;--e-global-color-c114d81:#0F0524;--e-global-color-9acb5e8:#1A0F35;--e-global-typography-primary-font-family:"Space Mono";--e-global-typography-primary-font-weight:800;--e-global-typography-secondary-font-family:"Helvetica";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* =========================================
   METAVERSE MÉXICO | DESIGN SYSTEM V3
   ========================================= */

/* --- 1. NÚCLEO DEL SISTEMA (Variables & Fondo) --- */

:root {
    /* Paleta de Colores */
    --accent-magenta: #e91e63;
    --accent-purple: #7c4dff;
    --accent-pink: #ff80ab;
    
    /* Efectos & Gradientes */
    --glow-magenta: 0 0 25px rgba(233, 30, 99, 0.5);
    --gradient-flow: linear-gradient(to right, #ffffff, #ff80ab, #e91e63, #7c4dff);
    --gradient-logo: linear-gradient(to right, #7c4dff, #e91e63, #ff80ab);
}

body {
    background-color: #0f0524; /* Fallback */
    background-image:
        linear-gradient(rgba(233, 30, 99, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 77, 255, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #ffffff;
}

/* --- 2. TIPOGRAFÍA & EFECTOS DE TEXTO --- */

/* Título H1 con Gradiente Animado */
.mv-h1-gradient .elementor-heading-title {
    background: var(--gradient-flow);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 6s ease infinite;
}

/* --- 3. INTERFAZ: BOTONES (Interaction Layer) --- */

/* A. BOTÓN PRIMARIO: LA PÍLDORA (Redondo / Gradiente) */
.mv-btn-primary .elementor-button {
    --btn-radius: 50px; /* FORMA: Píldora */
    
    background: transparent !important;
    border: none;
    border-radius: var(--btn-radius) !important;
    position: relative;
    z-index: 1;
    padding: 15px 40px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Capa de Borde (Máscara) */
.mv-btn-primary .elementor-button::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    border-radius: inherit;
    padding: 2px; /* Grosor Borde */
    background: var(--gradient-logo);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Capa de Relleno (Hover) */
.mv-btn-primary .elementor-button::after {
    content: ''; position: absolute; inset: 0; z-index: -2;
    border-radius: inherit;
    background: var(--gradient-logo);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover Primario */
.mv-btn-primary .elementor-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-magenta);
}
.mv-btn-primary .elementor-button:hover::after {
    opacity: 1;
}

/* B. BOTÓN SECUNDARIO: LA TARJETA (Rectangular / Técnico) */
.mv-btn-secondary .elementor-button {
    --btn-radius: 8px; /* FORMA: Rectangular */

    background: transparent !important;
    border: 1px solid #7c4dff;
    border-radius: var(--btn-radius) !important;
    color: #d1c4e9;
    padding: 15px 35px;
    transition: all 0.3s ease;
}

/* Hover Secundario */
.mv-btn-secondary .elementor-button:hover {
    background: rgba(124, 77, 255, 0.2) !important;
    color: #ffffff;
    border-color: #ff80ab;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.2);
}

/* --- 4. COMPONENTES: ESTRUCTURA & DATOS --- */

/* Tarjetas Levitantes (Pillars) */
.mv-card {
    background-color: #1a0f35;
    border: 1px solid rgba(124, 77, 255, 0.1);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mv-card:hover {
    animation: layer-float 4s ease-in-out infinite;
    border-color: #7c4dff;
    z-index: 2;
}

/* Radar System (Container) */
.mv-radar {
    background: rgba(26, 15, 53, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(124, 77, 255, 0.1);
    border-left: 4px solid #e91e63;
    border-image: linear-gradient(to bottom, #e91e63, #7c4dff) 1;
    padding: 25px 35px;
    box-shadow: 0 20px 40px -10px rgba(15, 5, 36, 0.8);
    transition: transform 0.3s ease;
}
.mv-radar strong {
    color: #ffffff;
    font-weight: 700;
    margin-left: 5px;
    letter-spacing: 0.5px;
}

/* Radar Dot (Indicador) */
.mv-dot {
    display: inline-block; width: 10px; height: 10px;
    background: #e91e63;
    border-radius: 50%;
    animation: neon-pulse 2s infinite;
    margin-right: 10px;
}

/* --- 5. MOTOR DE ANIMACIONES (Keyframes) --- */

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes layer-float {
    0% { transform: translateY(0px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
    50% { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(124, 77, 255, 0.2); }
    100% { transform: translateY(0px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
}

@keyframes neon-pulse {
    0% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(233, 30, 99, 0); }
    100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); }
}
/* --- COMPONENTES DE TARJETA (Iconos y Links) --- */

/* 1. Icono con Gradiente (.mv-card-icon) */
/* Aplica esto al contenedor del icono o al widget de encabezado si usas emojis */
.mv-card-icon,
.mv-card-icon i {
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px; /* Tamaño del icono */
    display: inline-block;
    margin-bottom: 20px;
}

/* 2. Enlace de Acción (.mv-link-arrow) */
/* Aplica esto al widget de Botón (tipo texto) o Encabezado con enlace */
.mv-link-arrow a,
.mv-link-arrow .elementor-button-text {
    color: #e91e63; /* Magenta inicial */
    font-family: 'Courier New', monospace; /* Tu fuente técnica */
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

/* Animación de la flecha al hacer Hover */
.mv-link-arrow:hover a,
.mv-link-arrow:hover .elementor-button-text {
    color: #ff80ab; /* Rosa brillante */
    gap: 15px; /* Desplazamiento */
}
/* --- COMPONENTE: CAJA MANIFIESTO (.mv-manifesto-box) --- */
.mv-manifesto-box {
    border: 1px solid rgba(124, 77, 255, 0.3); /* Borde sutil */
    padding: 80px 50px;
    position: relative; /* Clave para las cruces */
    max-width: 850px;
    margin: 0 auto;
    background: rgba(26, 15, 53, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

/* Las Cruces (+) en las esquinas */
.mv-manifesto-box::before,
.mv-manifesto-box::after {
    content: '+';
    position: absolute;
    color: #ff80ab; /* Rosa Neon */
    font-size: 24px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    line-height: 1;
    animation: hologram-flicker 3s infinite alternate; /* Parpadeo */
}

/* Posición de las cruces */
.mv-manifesto-box::before { top: -10px; left: -8px; background: #0f0524; } /* Bg para tapar borde */
.mv-manifesto-box::after { bottom: -10px; right: -8px; background: #0f0524; }

/* Tipografía Interna */
.mv-quote {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 40px;
    display: block;
}
.mv-signature {
    font-family: 'Courier New', monospace;
    color: #e91e63;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
/* Animación de parpadeo (Si no la tenías ya) */
@keyframes hologram-flicker {
    0%, 100% { opacity: 1; }
    41.99% { opacity: 1; }
    42% { opacity: 0.5; }
    43% { opacity: 1; }
    48% { opacity: 0.3; }
    49% { opacity: 1; }
}

/* --- LECTURA INMERSIVA (Manifiesto) --- */
.mv-reading-text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* O tu fuente de cuerpo */
    font-size: 1.25rem; /* Un poco más grande que el estándar */
    line-height: 1.8; /* Mucho aire entre líneas */
    color: #d1c4e9; /* Lavanda suave, menos agresivo que el blanco */
    max-width: 800px; /* Ancho de lectura ideal */
    margin-left: auto;
    margin-right: auto;
}

/* Efecto de Resaltador Neón (Para frases clave) */
.mv-highlight {
    background: linear-gradient(120deg, rgba(233, 30, 99, 0) 0%, rgba(233, 30, 99, 0.25) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
    color: #ffffff;
    font-weight: 700;
    padding: 0 5px;
}

/* Cita en Bloque Cyberpunk */
.mv-blockquote {
    border-left: 4px solid #e91e63;
    padding-left: 25px;
    margin: 40px 0;
    font-style: italic;
    color: #ffffff;
    font-size: 1.5rem;
    position: relative;
}
.mv-blockquote::before {
    content: '"';
    font-family: 'Courier New', monospace;
    font-size: 60px;
    color: rgba(124, 77, 255, 0.2);
    position: absolute;
    top: -20px;
    left: 10px;
    z-index: -1;
}/* End custom CSS */