/* Process Section - Layout Correto */
.process {
    padding: 80px 0;
    background: #1a1a1a !important;
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* Efeito de transição curva - apenas no mobile */
.process-transition {
    display: none;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

.step {
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease;
    background: white !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 200px;
    z-index: 2;
    border: 1px solid #e0e0e0;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Posicionamento correto dos cards */
.step:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.step:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.step:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.step:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.step:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFC300;
    color: #000;
    font-weight: bold;
    font-size: 1rem;
    z-index: 3;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #000;
    line-height: 1.3;
}

.step p {
    color: #666666 !important;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .process {
        background: #fff !important;
        padding: 40px 20px;
        position: relative;
        overflow: hidden;
    }

    /* Mostra o efeito de transição apenas no mobile */
    .process-transition {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 30px;
        z-index: 10;
    }

    .elementor-shape-fill {
        fill: #111111;
    }

    .process h2 {
        color: #000;
        font-size: 2rem;
        margin-bottom: 2rem;
        margin-top: 15px;
        position: relative;
        z-index: 2;
    }

    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto 2rem auto;
    }

    .step {
        padding: 0;
        background: none !important;
        border-radius: 0;
        box-shadow: none;
        border: none;
        min-height: auto;
        position: relative;
    }



    .step-number {
        position: static;
        display: inline;
        background: none;
        color: #FFC300;
        font-weight: bold;
        font-size: 1.2rem;
        margin-right: 0.3rem;
    }

    .step h3 {
        display: inline;
        font-size: 1.2rem;
        font-weight: bold;
        color: #000;
        margin-bottom: 0.5rem;
    }

    /* Container para centralizar número + título */
    .step {
        text-align: center;
    }

    .step p {
        color: #666666 !important;
        line-height: 1.6;
        font-size: 1rem;
        margin-top: 0.5rem;
        text-align: center;
    }

    /* Remove hover do step no mobile */
    .step:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    /* Remove qualquer hover no parágrafo do step no mobile */
    .step:hover p {
        transform: none !important;
        box-shadow: none !important;
    }
} 