/* Programação */
.schedule-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.schedule-day {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.schedule-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.day-header {
    background-color: #0056b3;
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.day-date {
    font-size: 1.2rem;
    font-weight: 600;
}

.day-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.day-activities {
    padding: 1.5rem;
}

.activity {
    display: flex;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.activity:last-child {
    margin-bottom: 0;
}

.activity-time {
    font-weight: 600;
    color: #0056b3;
    min-width: 70px;
    padding-right: 1rem;
}

.activity-description {
    flex: 1;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .schedule-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}
