/* === SERVICIOS TIPO CARGOPRESS (INTEGRADO CON CEDOC) === */

.cedoc-servicios {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cedoc-servicio-box {
    flex: 1 1 300px;
    max-width: 320px;
    text-align: center;
    padding: 40px 25px;
    border: 1px solid var(--cedoc-border);
    background: var(--cedoc-background);
    color: var(--cedoc-text);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cedoc-servicio-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.cedoc-servicio-icono {
    font-size: 42px;
    color: #888;
    margin-bottom: 15px;
}

.cedoc-servicio-titulo {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--wp--preset--font-family--heading, inherit);
}

.cedoc-servicio-texto {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}