.servicio-detalle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.servicio-detalle img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.servicio-detalle ul {
    margin-top: 20px;
    padding-left: 20px;
}

.servicio-detalle ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .servicio-detalle {
        grid-template-columns: 1fr;
    }
}
/* ============================
   ENCABEZADO SERVICIO
============================ */

.servicio-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.servicio-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0A3D62;
    margin: 0;
}

/* ============================
   INDICADOR DE PLANES
============================ */

.planes-servicio {
    display: flex;
    gap: 10px;
}

.plan-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #cbd5e1;
    opacity: 0.4;
}

/* Colores */
.plan-dot.verde { background: #7cb837; }
.plan-dot.azul  { background: #0A3D62; }
.plan-dot.rojo  { background: #c0392b; }

/* Activo */
.plan-dot.activo {
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}
.servicio-card {
    background: #ffffff;
    padding: 26px 30px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}