.elementor-153 .elementor-element.elementor-element-83654fc{--spacer-size:50px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for section, class: .elementor-element-af2d2b9 *//* 1. SECCIÓN ARSENAL TECH */
.tech-arsenal {
    padding: 100px 20px;
    background: #ffffff;
}

.tech-container { max-width: 1300px; margin: 0 auto; }

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tech-card {
    background: #f9f9f9;
    padding: 50px 40px;
    border-bottom: 4px solid #eee;
    transition: all 0.4s ease;
}

.tech-card:hover, .tech-card.active {
    background: #1a1a1a;
    color: #fff;
    /* ACTUALIZADO: Borde azul extra gordo en hover */
    border-bottom: 8px solid #4cb8df; 
    transform: translateY(-10px);
}

.tech-icon {
    font-size: 30px;
    /* ACTUALIZADO: Iconos en azul */
    color: #4cb8df;
    margin-bottom: 25px;
}

.tech-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tech-spec {
    display: inline-block;
    margin-top: 25px;
    font-size: 11px;
    /* ACTUALIZADO: Especificaciones técnicas más gordas */
    font-weight: 900; 
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4cb8df;
}

/* 2. SECCIÓN VISIÓN (EL ESCANEO AZUL) */
.tech-vision {
    background: #0a0a0a;
    color: #fff;
    padding: 120px 20px;
    overflow: hidden;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.vision-image {
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

/* EFECTO LÍNEA DE ESCANEO (AZUL TECH) */
.scanning-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* ACTUALIZADO: Línea de escaneo más gorda y con glow azul */
    height: 6px;
    background: #4cb8df;
    box-shadow: 0 0 20px #4cb8df, 0 0 40px rgba(76, 184, 223, 0.4);
    z-index: 2;
    animation: scanMove 3s infinite ease-in-out;
}

@keyframes scanMove {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

.vision-image img {
    width: 100%;
    opacity: 0.7;
    display: block;
}

.vision-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.vision-points {
    margin-top: 40px;
}

.v-point {
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

/* ACTUALIZADO: Checkmarks/Iconos de puntos en azul gordo */
.v-point i { 
    color: #4cb8df; 
    font-weight: 900;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .tech-grid, .vision-container { grid-template-columns: 1fr; }
    .vision-image { order: 2; }
    .vision-content { order: 1; margin-bottom: 50px; }
}/* End custom CSS */