/* =====================================
   Servicio – Contenido principal 2026
   Asesoría y capacitación
   ===================================== */

.service-content {
    font-family: "Roboto";
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-content__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

/* Media */
.service-content__media {
    background: #f6f7f8;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content__media img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

/* Texto */
.service-content__text h2 {
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-content__text p {
    font-weight: 400;
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-content__text ul {
    margin-bottom: 2rem;
    padding-left: 1.25rem;
}

.service-content__text li {
    font-weight: 300;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 0.5rem;
}

/* Separación visual entre bloques */
.service-content__text h2 + p {
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .service-content__grid {
        grid-template-columns: 1fr;
    }

    .service-content__media {
        order: -1;
    }

    .service-content__media img {
        max-width: 240px;
    }
}
