/* CONTENEDOR PRINCIPAL AISLADO */
.servicios-page {
    margin-left: 260px; /* espacio para el sidebar */
    padding: 40px;
    max-width: 900px;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* LOGO */
.servicios-page .logo {
    width: 220px;
    margin: 0 auto 40px auto;
    display: block;
    filter: drop-shadow(0 0 15px #00aaff);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px #00aaff); }
    to   { filter: drop-shadow(0 0 25px #00aaff); }
}

/* TITULARES */
.servicios-page h1,
.servicios-page h2 {
    color: #f1c40f;
    text-shadow: 0 0 12px #00aaff;
    text-align: center;
    margin-bottom: 20px;
}

/* PÁRRAFOS */
.servicios-page p {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 auto 20px auto;
    max-width: 700px;
}

/* LISTAS */
.servicios-page ul {
    max-width: 700px;
    margin: 0 auto 20px auto;
    padding: 0;
}

.servicios-page ul li {
    list-style-position: inside;
    font-size: 1.15rem;
    margin-bottom: 8px;
    text-align: center;
}

/* SECCIONES */
.servicios-page .section {
    margin-bottom: 50px;
    border-left: 3px solid #f1c40f;
    padding-left: 20px;
}

/* DIVIDER */
.servicios-page .divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00aaff, transparent);
    margin: 40px 0;
    animation: glowline 3s infinite alternate;
}

@keyframes glowline {
    from { opacity: 0.5; }
    to   { opacity: 1; }
}

/* CTA */
.servicios-page .cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    border-top: 2px solid #00aaff;
    border-bottom: 2px solid #00aaff;
}

.servicios-page .cta a {
    display: inline-block;
    padding: 12px 25px;
    background: #00aaff;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 0 12px #00aaff;
    transition: 0.2s;
}

.servicios-page .cta a:hover {
    background: #f1c40f;
    box-shadow: 0 0 15px #f1c40f;
    transform: scale(1.05);
}

/* CANVAS DE PARTÍCULAS */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3; /* debajo del contenido y del fondo del theme */
    pointer-events: none;
    opacity: 0.35;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .servicios-page {
        margin-left: 0;
        padding-top: 80px;
    }
}
/* HERO */
.hero-digito {
    background: #0a0a0a;
    padding: 120px 20px;
    text-align: center;
    color: white;
}
.hero-digito h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.hero-digito .subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
}
.hero-buttons {
    margin-top: 30px;
}
.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border-radius: 6px;
    margin: 5px;
    display: inline-block;
    text-decoration: none;
}
.btn-primary {
    background: #00bcd4;
    color: #000;
    font-weight: bold;
}
.btn-secondary {
    background: transparent;
    border: 1px solid #00bcd4;
    color: #00bcd4;
}

/* SECCIONES */
section {
    padding: 80px 20px;
    text-align: center;
    color: white;
    background: #0f0f0f;
    border-bottom: 1px solid #111;
}
h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.section-desc {
    opacity: 0.7;
    margin-bottom: 40px;
}

/* SERVICIOS */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.servicio-card {
    background: #141414;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #1f1f1f;
}

/* BUSCADOR */
.buscador-features span {
    display: inline-block;
    margin: 5px 10px;
    opacity: 0.8;
}

/* ECOSISTEMA */
.ecosistema-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.eco-card {
    background: #141414;
    padding: 20px 30px;
    border-radius: 8px;
    border: 1px solid #1f1f1f;
    color: #00bcd4;
    text-decoration: none;
}
