/* =========================================
   PROCESS SECTION
========================================= */

.process {
    padding: 120px 0;

    background: #ffffff;
}


/* PASOS */

.process-steps {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));

    gap: 2rem;
}


/* TARJETA */

.step-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f9f4e7
        );

    border-radius: 24px;

    padding: 3rem 2rem;

    text-align: center;

    border: 1px solid rgba(212,175,55,0.2);

    box-shadow:
        0 10px 28px rgba(0,0,0,0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* HOVER */

.step-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.12);
}

/* ========================================
PROCESS ICONS
======================================== */

.step-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    transition: transform 0.4s ease;
}



/* HOVER */

.step-card:hover .step-icon img {
    transform: scale(1.04);
}


/* NÚMERO 

.step-number {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #d4af37,
            #f2d67d
        );

    color: var(--navy);

    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 1.5rem;

    box-shadow:
        0 8px 18px rgba(212,175,55,0.35);
}
*/

/* TITULO */

.step-card h3 {
    font-size: 1.3rem;

    color: var(--navy);

    line-height: 1.5;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .process {
        padding: 90px 0;
    }

}