* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #4A90E2;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.logo {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-btn {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.banner {
    max-width: 100%;
    margin: 2rem auto;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: clamp(200px, 50vw, 400px);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    font-size: clamp(1rem, 4vw, 1.5rem);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.info-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-card h2 {
    margin-bottom: 1rem;
    color: #4A90E2;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.info-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
}

.info-card p, .info-card ul {
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.sobre-section, .contato-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.sobre-section h2, .contato-section h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1rem;
    text-align: center;
}

.sobre-section p, .contato-section p {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: 1rem;
}

.imagem-sobre {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.imagem-sobre img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.texto-sobre {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.texto-sobre p {
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.ajuda-associacao {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.texto-apelativo {
    margin-bottom: 20px;
}

.texto-apelativo h2 {
    color: #333;
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 10px;
    text-align: center;
}

.meios-doacao {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.meios-doacao > div {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.qr-code img {
    max-width: 200px;
    height: auto;
}

.contas-bancarias {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.contas-bancarias > div {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding: 2rem 1rem;
    background-color: #333;
    color: white;
    gap: 2rem;
}

footer > div {
    flex: 1;
    min-width: 200px;
    padding: 0 1rem;
}

footer h3 {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 1rem;
}

footer p {
    font-size: clamp(0.8rem, 3vw, 1rem);
    line-height: 1.4;
}

footer img {
    max-width: 100%;
    height: auto;
}

.resultado {
    width: 100%;
    padding: 2rem;
    color: rgb(14, 13, 13);
    font-weight: bold;
    font-size: clamp(1rem, 4vw, 1.5rem);
    text-align: center;
    margin-top: 1rem;
    text-transform: uppercase;
    background: linear-gradient(45deg, rgba(150, 7, 7, 0.527), blue, red, rgb(22, 1, 1));
    background-size: 400% 100%;
    animation: degrade 10s linear infinite alternate;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes degrade {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-buttons {
        justify-content: center;
    }

    .slider-container {
        height: clamp(150px, 40vw, 300px);
    }

    .info-section {
        grid-template-columns: 1fr;
    }

    .meios-doacao {
        flex-direction: column;
        align-items: center;
    }

    .contas-bancarias {
        flex-direction: column;
        gap: 1rem;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: clamp(1rem, 5vw, 1.2rem);
    }

    .nav-btn {
        padding: 0.3rem 0.7rem;
        font-size: clamp(0.8rem, 4vw, 0.9rem);
    }

    .prev, .next {
        padding: 0.3rem;
        font-size: clamp(0.8rem, 3vw, 1rem);
    }

    .info-card {
        padding: 0.8rem;
    }

    .info-card h2 {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .resultado {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        padding: 1rem;
    }
}
