/* ========================================
   SCHEDULING PAGE - Página de Agendamento
   ======================================== */

/* Process Steps Section */
.scheduling-process {
    padding: 80px 20px;
    background: linear-gradient(180deg, #F0F4F8 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.scheduling-process::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(214, 32, 39, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.scheduling-process__container {
    max-width: 1200px;
    margin: 0 auto;
}

.scheduling-process__header {
    text-align: center;
    margin-bottom: 60px;
}

.scheduling-process__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 16px;
}

.scheduling-process__subtitle {
    font-size: 1.25rem;
    color: #495057;
}

/* Steps Grid */
.scheduling-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(214, 32, 39, 0.15);
    border-color: rgba(214, 32, 39, 0.3);
}

.step-card__number {
    position: absolute;
    top: -20px;
    left: 24px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D62027 0%, darken(#D62027, 10%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 8px 24px rgba(214, 32, 39, 0.3);
}

.step-card__icon {
    font-size: 3rem;
    color: #D62027;
    margin-bottom: 16px;
}

.step-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
}

.step-card__description {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .scheduling-process {
        padding: 60px 20px;
    }

    .scheduling-process__title {
        font-size: 2rem;
    }

    .scheduling-process__subtitle {
        font-size: 1.1rem;
    }
}
