@charset "UTF-8";

.container-agendamentos {
    padding: 0 60px;
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
    margin-top: -40px;
}

.container-agendamentos h1 {
    font-family: 'Pacifico', cursive;
    color: var(--cor-primaria);
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--cor-texto-secundario);
    margin-bottom: 20px;
}

.kanban {
    display: flex;
    gap: 20px;
    padding: 24px;
    width: 120%;
    height: 90vh;
    overflow-x: auto;
}
.kanban-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    overflow-y: auto;
    background-color: #f6f8fc;
    border-radius: 12px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.2);
    padding: 12px;
    overflow: hidden;
    position: relative;
    min-width: 252px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kanban-column::after {
    position: absolute;
    content: '';
    height: 7px;
    width: 100%;
    top: 0;
    left: 0;
}
.kanban-column[data-id="1"]::after {
    background-color: #92a5fb;
}

.kanban-column[data-id="2"]::after {
    background-color: #d9534f;
}

.kanban-column[data-id="3"]::after {
    background-color: #6ed0bc;
}

.kanban-column[data-id="4"]::after {
    background-color: #fea065
}
.kanban-title {
    display: flex;
    justify-content: space-between;
}
.kanban-title h2 {
    font-size: 18px;
    color: var(--cor-texto-secundario);
    font-weight: 600;
}

.kanban-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
.kanban-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: var(--cor-branco);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.badge {
    color: var(--cor-branco);
    width: fit-content;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
}
.badge.high {
    background-color: #d573b6;
}

.badge.medium {
    background-color: #fea065;
}

.badge.low {
    background-color: #92a5fb;
}

.badge.lights {
    background-color: #6ed0bc;
}

.card-title {
    text-align: left;
}

/* Estilo para a coluna do Kanban em destaque */
.kanban-column.highlight {
    box-shadow: 0px 10px 20px -3px rgba(var(--cor-primaria-rgb), 0.4);
    transform: scale(1.02);
}

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        padding: 40px 30px;
    }

    .container-agendamentos {
        padding: 0;
    }

    .kanban {
        width: 100%;
        padding: 20px 0;
        gap: 15px;
    }

    .kanban-column {
        min-width: 240px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 15px 15px 30px;
    }

    .container-agendamentos {
        padding: 0;
        margin-top: 0;
    }

    .container-agendamentos h1 {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .kanban {
        padding: 15px 0;
        gap: 12px;
        
    }

    .kanban-column {
        min-width: 210px;
    }
}
