/* como-trabajamos.html */
.intro-proceso {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.intro-proceso p {
    color: #d0d0d0;
    line-height: 1.8;
}

.proceso-grid {
    display: grid;
    gap: 25px;
    margin-top: 40px;
    align-items: start;
}

.proceso-grid-top {
    grid-template-columns: repeat(3, 1fr);
}

.proceso-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin: 40px auto 0;
}

.proceso-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;
}

.proceso-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 106, 0, 0.12),
        transparent
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.proceso-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border-left: 4px solid #ff7a1a;
}

.proceso-box:hover::before {
    opacity: 1;
}

.proceso-numero {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    color: #ff6a00;
    margin-bottom: 18px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.proceso-numero::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #ff6a00;
    margin-top: 8px;
    border-radius: 2px;
    opacity: 0.8;
    transition: width 0.3s ease;
}

.proceso-box:hover .proceso-numero::after {
    width: 60px;
}

.proceso-box h3 {
    margin-top: 14px;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.proceso-box:hover h3 {
    color: #ff6a00;
}

.proceso-box p {
    color: #cfcfcf;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.bloque-filosofia {
    max-width: 900px;
    margin: 90px auto 0;
    text-align: center;
    background: #1e1e1e;
    padding: 35px;
    border-left: 4px solid #ff6a00;
    border-radius: 6px;
    position: relative;
}

.bloque-filosofia p {
    color: #d0d0d0;
    line-height: 1.8;
}

.proceso-cierre {
    margin-top: 80px;
    text-align: center;
}

.proceso-cierre p {
    max-width: 800px;
    margin: 0 auto 35px;
    color: #d0d0d0;
    line-height: 1.8;
}