.elementor-597 .elementor-element.elementor-element-7b54d9d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:29px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}body.elementor-page-597:not(.elementor-motion-effects-element-type-background), body.elementor-page-597 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-52f7a35 );}:root{--page-title-display:none;}@media(max-width:767px){.elementor-597 .elementor-element.elementor-element-7b54d9d{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-597 .elementor-element.elementor-element-adffd7b{margin:26px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for html, class: .elementor-element-adffd7b *//* ==========================================================================
   CSS PRINCIPAL: VISTA DE COMPUTADORA (TABLERO PARALELO SIMÉTRICO)
   ========================================================================== */
.nexo-links-wrapper {
    width: 100%;
    max-width: 750px; /* Excelente espacio horizontal en PC */
    margin: 40px auto;
    padding: 50px 40px;
    box-sizing: border-box;
    text-align: center;
    background: radial-gradient(circle at top, #141414 0%, #0D0D0D 100%);
    border-radius: 20px;
    box-shadow: 0px 20px 45px rgba(0,0,0,0.8);
    border: 1px solid rgba(178, 34, 34, 0.25);
}

.nexo-links-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
    text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}

.nexo-links-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 35px 0;
    font-weight: 500;
}

/* REJILLA DE 2 COLUMNAS AUTOMÁTICA */
.nexo-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Forzar al botón del menú a usar las dos columnas en PC */
.span-2 {
    grid-column: span 2;
}

/* --- ESTILO BASE ULTRA-INTERACTIVO --- */
.nexo-link-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background-color: rgba(255, 255, 255, 0.02);
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.nexo-link-btn i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

/* --- COLORES ESPECIALES --- */
.nexo-link-btn.btn-highlight {
    background: linear-gradient(135deg, #B22222 0%, #8B0000 100%);
    border-color: #B22222;
}
.nexo-link-btn.btn-highlight i { color: #FFFFFF; }

.nexo-link-btn.btn-web-home {
    border-color: rgba(178, 34, 34, 0.35);
    background-color: rgba(178, 34, 34, 0.04);
}
.nexo-link-btn.btn-web-home i { color: #B22222; }


/* ==========================================================================
   MICRO-INTERACCIONES (HOVER EFFECTS EN PC)
   ========================================================================== */

/* Efecto Destello Luminoso */
.nexo-link-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: none;
}
.nexo-link-btn:hover::after {
    left: 150%;
    transition: all 0.6s ease-in-out;
}

/* Animación Flotante y Brasa Activa */
.nexo-link-btn:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.06);
    border-color: #B22222;
    box-shadow: 0 10px 25px rgba(178, 34, 34, 0.25);
}

.nexo-link-btn.btn-highlight:hover {
    background: linear-gradient(135deg, #D22B2B 0%, #A51D1D 100%);
    box-shadow: 0 12px 30px rgba(178, 34, 34, 0.5);
}
.nexo-link-btn.btn-web-home:hover {
    background-color: rgba(178, 34, 34, 0.12);
}

/* Reactividad del Icono */
.nexo-link-btn:hover i {
    color: #FFFFFF;
    transform: scale(1.2) rotate(-8deg);
}


/* ==========================================================================
   VISTA RESPONSIVA EN CELULARES (1 SOLA COLUMNA COMPACTA)
   ========================================================================== */
@media screen and (max-width: 767px) {
    .nexo-links-wrapper {
        max-width: 440px;
        padding: 35px 20px !important;
        margin: 15px auto;
        border-radius: 14px;
        background: #0D0D0D !important;
    }
    
    /* El Grid se rompe y colapsa en una fila única perfecta */
    .nexo-links-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    
    /* El menú deja de expandirse doble y mide igual que el resto */
    .span-2 {
        grid-column: span 1 !important;
    }
    
    .nexo-link-btn {
        font-size: 0.84rem !important;
        padding: 15px 18px !important;
        border-radius: 10px;
    }
    
    .nexo-links-title {
        font-size: 1.4rem !important;
    }
    
    .nexo-link-btn:hover {
        transform: translateY(-1px);
    }
}/* End custom CSS */