body,
html {
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: 'Merriweather', serif;
    background-color: #FFFF;
    color: #333;
}

.donation-section {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 100px auto;
    max-width: 500px;
    text-align: center;
}

.donation-section h2 {
    font-weight: bold;
    font-family: 'Anek Kannada', sans-serif;
    border-radius: 20px;
    background-color: #D7DFE2;
    color: #829BA3;
    font-size: 28px;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

.donation-section h2::after {
    content: " ☕";
    font-size: 30px;
    animation: bounce 2s infinite;
}

.form-control {
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    border-color: #ff813f;
    box-shadow: 0 4px 10px rgba(255, 129, 63, 0.3);
}

.btn-primary {
    background-color: #ff813f;
    border-color: #ff813f;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 18px;
    animation: shake 0.5s;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff9b66;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(255, 129, 63, 0.5);
}

.donation-list-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    
}

.donation-list {
    display: flex;
    font-family: 'Anek Kannada', sans-serif;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}
.donation-list h3 {
    font-family: 'Anek Kannada', sans-serif;
    font-size: 44px;
    margin-top: 40px;
    font-weight: bold;
}
.donation-list h3 span{
    color: #A11F1E;
}



.donation-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.donation-item {
    flex: 0 0 auto;
    background-color: #D7DFE2;
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    min-width: 250px;
    text-align: center;
    box-shadow: 0px 24px 50px -12px rgba(130, 155, 163, 0.3);
}

/* Animação do carrossel */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


.donation-item h5::before {
    content: "⭐";
    display: block;
    margin-bottom: 5px;
}

.donation-item h5::after {
    content: "";
    display: block;
    margin-top: 5px;
}

.donation-item small {
    font-size: 12px;
    color: #999;
}

/* Animações */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in.show {
    opacity: 1;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    background: linear-gradient(to bottom, #ffffff, rgba(130, 155, 163, 0.2), #ffffff, #ffffff, #FFFFFF);
    font-family: 'Anek Kannada', sans-serif;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #1c1c1c;
    line-height: 1.2;
    margin: 0;
    height: 60%;
    text-align: center;
}

.hero .inter {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    color: #829BA3;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: normal;
}

.hero .segundotexto {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #1c1c1c;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: normal;
}