/* ================================
   MÓDULO: PROCESS
   Estilos para proceso de pedido
   ================================ */

/* Reset específico del módulo */
.process,
.process * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container principal */
.process {
    width: 100%;
    padding: 5rem 0;
    background: #fff;
    position: relative;
}

.process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Título */
.process__title {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #3E2723;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

/* Descripción */
.process__description {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #6B5B52;
    text-align: center;
    margin-bottom: 3.5rem;
}

/* Grid de pasos */
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

/* Línea conectora entre pasos (desktop) */
.process__grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #A67B5B 0%, #E07856 50%, #91A68A 100%);
    z-index: 0;
}

/* ================================
   PROCESS STEP
   ================================ */

.process__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Número del paso */
.process__number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: #fff;
    border: 3px solid #A67B5B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #A67B5B;
    z-index: 2;
}

.process__step:nth-child(2) .process__number {
    border-color: #E07856;
    color: #E07856;
}

.process__step:nth-child(3) .process__number {
    border-color: #91A68A;
    color: #91A68A;
}

.process__step:nth-child(4) .process__number {
    border-color: #A67B5B;
    color: #A67B5B;
}

/* Icono del paso */
.process__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: rgba(166, 123, 91, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.process__step:nth-child(1) .process__icon {
    background: rgba(166, 123, 91, 0.1);
}

.process__step:nth-child(1) .process__icon svg {
    stroke: #A67B5B;
}

.process__step:nth-child(2) .process__icon {
    background: rgba(224, 120, 86, 0.1);
}

.process__step:nth-child(2) .process__icon svg {
    stroke: #E07856;
}

.process__step:nth-child(3) .process__icon {
    background: rgba(145, 166, 138, 0.1);
}

.process__step:nth-child(3) .process__icon svg {
    stroke: #91A68A;
}

.process__step:nth-child(4) .process__icon {
    background: rgba(166, 123, 91, 0.1);
}

.process__step:nth-child(4) .process__icon svg {
    stroke: #A67B5B;
}

.process__step:hover .process__icon {
    transform: scale(1.1);
}

.process__step:nth-child(1):hover .process__icon {
    background: #A67B5B;
}

.process__step:nth-child(1):hover .process__icon svg {
    stroke: #fff;
}

.process__step:nth-child(2):hover .process__icon {
    background: #E07856;
}

.process__step:nth-child(2):hover .process__icon svg {
    stroke: #fff;
}

.process__step:nth-child(3):hover .process__icon {
    background: #91A68A;
}

.process__step:nth-child(3):hover .process__icon svg {
    stroke: #fff;
}

.process__step:nth-child(4):hover .process__icon {
    background: #A67B5B;
}

.process__step:nth-child(4):hover .process__icon svg {
    stroke: #fff;
}

/* Título del paso */
.process__step-title {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #3E2723;
    margin-bottom: 0.8rem;
}

/* Texto del paso */
.process__step-text {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #6B5B52;
    line-height: 1.6;
}

/* ================================
   RESPONSIVE: TABLET
   ================================ */
@media screen and (max-width: 968px) {
    .process {
        padding: 4rem 0;
    }

    .process__title {
        font-size: 2.5rem;
    }

    .process__description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .process__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .process__grid::before {
        display: none;
    }

    .process__icon {
        width: 100px;
        height: 100px;
    }

    .process__step-title {
        font-size: 1.3rem;
    }
}

/* ================================
   RESPONSIVE: MÓVIL
   ================================ */
@media screen and (max-width: 768px) {
    .process {
        padding: 3.5rem 0;
    }

    .process__container {
        padding: 0 1.5rem;
    }

    .process__title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .process__description {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .process__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process__icon {
        width: 110px;
        height: 110px;
    }
}

@media screen and (max-width: 480px) {
    .process {
        padding: 3rem 0;
    }

    .process__container {
        padding: 0 1rem;
    }

    .process__title {
        font-size: 1.8rem;
    }

    .process__description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .process__grid {
        gap: 2.5rem;
    }

    .process__icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1.2rem;
    }

    .process__icon svg {
        width: 40px;
        height: 40px;
    }

    .process__number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .process__step-title {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .process__step-text {
        font-size: 0.9rem;
    }
}