/* ============================================
   COMO FUNCIONA - ESTILOS ORIGINAIS
   ============================================ */

.why-works-section {
    background: #fff;
    padding: 60px 0;
}

.step-timeline {
    position: relative;
    padding: 40px 0;
}

.step-timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: rgba(87, 43, 7, 0.15);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #572b07;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
    border: 4px solid #d6b88d;
    position: relative;
    z-index: 2;
}

.step-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(214, 184, 141, 0.2);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.step-content {
    background: #f5efe8;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(46, 24, 9, 0.06);
    width: 100%;
    max-width: 280px;
}

.step-content h4 {
    color: #2e1809;
    font-size: 20px;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   RESPONSIVIDADE ORIGINAL
   ============================================ */

@media (max-width: 991px) {
    .step-timeline::before {
        display: none;
    }
    .step-item {
        margin-bottom: 40px;
    }
    .step-content {
        max-width: 100%;
    }
}

/* ============================================
   MOBILE - 2 CARDS POR LINHA (MANTENDO ESTILOS)
   ============================================ */

/* Esconder desktop no mobile */
@media (max-width: 767px) {
    .why-works-desktop {
        display: none !important;
    }
    .why-works-mobile {
        display: block !important;
        background: #fff;
        padding: 60px 0;
    }
}

/* Mostrar desktop no desktop */
@media (min-width: 768px) {
    .why-works-desktop {
        display: block !important;
    }
    .why-works-mobile {
        display: none !important;
    }
}

/* ===== TÍTULOS MOBILE ===== */
@media (max-width: 767px) {
    .section-title-mobile-steps {
        color: #2e1809;
        font-size: 28px;
        line-height: 1.1;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 700;
        margin-top: 16px;
    }

    .section-description-mobile-steps {
        color: #555;
        line-height: 1.6;
        font-size: 14px;
        padding: 0 5px;
    }

    /* ===== PASSOS MOBILE ===== */
    .step-item-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 0;
    }

    .step-circle-mobile {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #572b07;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        font-weight: 700;
        font-family: 'Cormorant Garamond', serif;
        margin-bottom: 14px;
        border: 4px solid #d6b88d;
        position: relative;
        flex-shrink: 0;
    }

    .step-circle-mobile::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid rgba(214, 184, 141, 0.2);
        animation: pulse-ring 2s infinite;
    }

    .step-content-mobile {
        background: #f5efe8;
        border-radius: 16px;
        padding: 16px 14px;
        border: 1px solid rgba(46, 24, 9, 0.06);
        width: 100%;
        min-height: 130px;
    }

    .step-content-mobile h4 {
        color: #2e1809;
        font-size: 16px;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .step-content-mobile p {
        color: #555;
        font-size: 12px;
        line-height: 1.5;
        margin: 0;
    }

    /* ===== BOTÃO MOBILE ===== */
    .btn-gold-mobile-steps {
        background: #572b07;
        color: #fff;
        padding: 14px 30px;
        border-radius: 100px;
        text-decoration: none;
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .btn-gold-mobile-steps:hover {
        background: #fff;
        color: #572b07;
        box-shadow: 0 8px 30px rgba(87, 43, 7, 0.15);
        transform: translateY(-2px);
    }

    .btn-gold-mobile-steps i {
        margin-right: 8px;
    }
}