/* Festival Schedule Styles - Grid Unificado Responsivo */

* {
    box-sizing: border-box;
}

.festival-schedule {
    margin: 2rem 0;
    display: grid;
    gap: 2rem;
    width: 100%;
}

.festival-day {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.festival-day:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transform: translateY(-2px);
}

.festival-day h2 {
    margin: 0 0 1rem 0;
    color: #333;
    border-bottom: 3px solid #007cba;
    padding-bottom: 0.75rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.festival-day h2 span {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-weight: normal;
    margin-top: 0.25rem;
}

.artist-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.artist-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    font-size: 0.95rem;
}

.artist-list li:last-child {
    border-bottom: none;
}

/* Desktop Layout - Grid de 3 colunas */
@media (min-width: 1025px) {
    .festival-schedule {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .festival-day {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 1.5rem;
        background-color: #f9f9f9;
    }

    .festival-day h2 {
        font-size: 1.25rem;
    }

    .festival-day h2 span {
        font-size: 0.85rem;
    }

    .artist-list li {
        font-size: 0.95rem;
    }
}

/* Tablet Layout - Grid de 2 colunas */
@media (min-width: 768px) and (max-width: 1024px) {
    .festival-schedule {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .festival-day {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 1.25rem;
        background-color: #f9f9f9;
    }

    .festival-day h2 {
        font-size: 1.1rem;
    }

    .festival-day h2 span {
        font-size: 0.8rem;
    }

    .artist-list li {
        font-size: 0.9rem;
    }
}

/* Mobile Layout - Grid de 1 coluna */
@media (max-width: 767px) {
    .festival-schedule {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }

    .festival-day {
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        padding: 1rem;
        background-color: #f9f9f9;
    }

    .festival-day h2 {
        font-size: 1rem;
        margin: 0 0 0.75rem 0;
        padding-bottom: 0.5rem;
    }

    .festival-day h2 span {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }

    .artist-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
}

/* Compatibilidade com Elementor */
.elementor-widget-container .festival-schedule {
    margin: 0;
}

.elementor-widget-container .festival-day {
    word-break: break-word;
}
