body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.hero-section {
    background: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.6)
        ),
        url('/imageAug7202501_00_12PM.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.parallax-section {
    background: url('/ImageAug7202501_08_41PM.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
    position: relative;
}

.parallax-overlay {
    background-color: rgba(117, 154, 61, 0.85);
}

.floating-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(117, 154, 61, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(117, 154, 61, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(117, 154, 61, 0);
    }
}

.hover-lift {
    transition: all 0.3s ease;
}

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

.hover-scale:hover {
    transform: scale(1.05);
}

.modal-content {
    border-radius: 12px;
}
.table > :not(caption) > * > * {
    vertical-align: middle;
}

.shows {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.show-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    flex: 1 1 calc(33% - 20px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.show-card h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2e7d32;
}

.show-card p {
    margin: 5px 0;
    }

/* Garante que o backdrop da segunda modal fique sobre o da primeira */
.modal-backdrop:nth-of-type(2) {
    z-index: 1065 !important;
}

/* A segunda modal fica sobre tudo */
.modal.show:nth-of-type(2) {
    z-index: 1070 !important;
}

/* A primeira modal continua abaixo */
.modal.show:nth-of-type(1) {
    z-index: 1055 !important;
}

#donationModal {
    z-index: 1070 !important;
}

#donationModal + .modal-backdrop {
    z-index: 1065 !important;
}