.elementor-1165 .elementor-element.elementor-element-b534d08{--display:flex;}/* Start custom CSS *//* ===================== */
/* SECCIÓN BASE */
/* ===================== */
.algo-section {
    position: relative;
    width: 100%;
    padding: 140px 0 100px;
    background: #0b0714;
    overflow: hidden;
}

/* ===================== */
/* RED NEURONAL DEL FONDO */
/* ===================== */
.neuro-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Nodos brillantes */
.neuro-node {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: radial-gradient(circle, #a46cff, transparent);
    position: absolute;
    filter: blur(8px);
    opacity: 0.55;
    animation: floatNode 7s infinite ease-in-out;
}

.n1 { top: 25%; left: 18%; animation-duration: 8s; }
.n2 { top: 60%; left: 32%; animation-duration: 10s; }
.n3 { top: 40%; left: 70%; animation-duration: 9s; }
.n4 { top: 70%; left: 55%; animation-duration: 11s; }
.n5 { top: 30%; left: 82%; animation-duration: 12s; }

@keyframes floatNode {
    0% { transform: translateY(0px); opacity: .45; }
    50% { transform: translateY(-22px); opacity: .85; }
    100% { transform: translateY(0px); opacity: .45; }
}

/* Líneas neurales */
.neuro-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.neuro-lines line {
    stroke: rgba(140, 90, 255, 0.4);
    stroke-width: 2;
    stroke-linecap: round;
    animation: lineGlow 3s infinite alternate;
}

@keyframes lineGlow {
    0% { stroke-opacity: 0.25; }
    100% { stroke-opacity: 0.55; }
}

/* ===================== */
/* ICONOS DE CEREBRO (SVG) */
/* ===================== */
.brain-icon {
    position: absolute;
    width: 240px;
    opacity: 0.45;
    animation: brainPulse 6s infinite ease-in-out;
    filter: drop-shadow(0 0 14px rgba(150, 100, 255, 0.4));
}

.b1 { top: 22%; left: 10%; animation-duration: 7s; }
.b2 { top: 58%; right: 8%; animation-duration: 9s; }

@keyframes brainPulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.06); opacity: 0.75; }
    100% { transform: scale(1); opacity: 0.4; }
}

/* ===================== */
/* CONTENIDO */
/* ===================== */

.algo-wrapper {
    position: relative;
    z-index: 5;
    max-width: 1050px;
    margin: auto;
    text-align: center;
    padding: 0 25px;
}

.algo-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.algo-subtitle {
    color: #d3c4ff;
    font-size: 1rem;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* ===================== */
/* GRID DE SOLUCIONES */
/* ===================== */

.algo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.algo-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    transition: 0.25s ease;
}

.algo-card:hover {
    transform: translateY(-6px);
    background: rgba(145, 90, 255, 0.12);
    border-color: rgba(145, 90, 255, 0.35);
}

.algo-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.algo-card p {
    color: #d8cdfc;
    line-height: 1.5;
}

/* ===================== */
/* CTA FINAL */
/* ===================== */

.algo-cta {
    padding: 50px;
    background: rgba(138, 94, 255, 0.12);
    border-radius: 20px;
    border: 1px solid rgba(138, 94, 255, 0.2);
}

.algo-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.algo-cta p {
    color: #dacfff;
    margin-bottom: 25px;
}

.algo-btn {
    display: inline-block;
    background: #8a5eff;
    padding: 14px 34px;
    color: white;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.algo-btn:hover {
    background: #a883ff;
    transform: scale(1.05);
}/* End custom CSS */