/* servicios.html */
.intro-servicios {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.intro-servicios p {
    color: #d0d0d0;
    line-height: 1.8;
}

.servicios-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
    align-items: start;
}

.servicio-box {
    background: #1e1e1e;
    padding: 30px;
    border-left: 4px solid #ff6a00;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.servicio-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 106, 0, 0.15),
        transparent
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.servicio-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border-left: 4px solid #ff7a1a;
}

.servicio-box:hover::before {
    opacity: 1;
}

.servicio-box h3 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.servicio-box:hover h3 {
    color: #ff6a00;
}

.servicio-box p {
    color: #cfcfcf;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.servicios-cierre {
    margin-top: 60px;
    text-align: center;
}

.servicios-cierre p {
    max-width: 800px;
    margin: 0 auto 25px;
    color: #d0d0d0;
    line-height: 1.8;
}