* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azulEscuro: #173C7D;
    --azulClaro: #4360A4;
    --verde: #65CB93;
    --verde-escuro: #39855b;
    --corFundo: #E6EDEA;
}

html {
    font-size: 16px;
}

body {
    background: linear-gradient(135deg, #E6EDEA 0%, #d4e4de 100%);
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body.menu-open {
    overflow: hidden;
}

h2 {
    color: var(--azulEscuro);
    margin: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    text-decoration: underline;
    text-decoration-color: var(--verde);
    text-underline-offset: 10px;
    text-decoration-thickness: 2px;
    text-align: center;
}

/* ==================== CABEÇALHO ATUALIZADO ==================== */
.Cabecalho {
    background: var(--azulClaro);
    position: fixed;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2%;
    margin: 1rem 0;
    width: 90%;
    max-width: 1400px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    top: 0;
}

.logoCabecalho img {
    height: 60px;
    width: 90px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.logoCabecalho img:hover {
    transform: scale(1.05);
}

.navCabecalho ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.navCabecalho a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
    white-space: nowrap;
}

/* Linha verde embaixo dos links */
.navCabecalho a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--verde);
    transition: width 0.3s;
}

/* Mostra a linha no hover E no link ativo */
.navCabecalho a:hover::after,
.navCabecalho a.ativo::after {
    width: 100%;
}

/* Cor verde para o link ativo */
.navCabecalho a.ativo {
    color: var(--verde);
}

.menu-mobile-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.doeAgora {
    background: var(--verde);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.doeAgora:hover {
    background: var(--verde-escuro);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(101, 203, 147, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.8rem;
    min-width: 48px;
    min-height: 48px;
    position: relative;
    z-index: 10002;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* ==================== HERO ==================== */
.hero {
    background: url('Imagens/wallpaper.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    color: #fff;
    padding: 50px 5%;
    padding-top: 150px;
    position: relative;
    z-index: 1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn img {
    width: 30px;
    height: 30px;
}

.btn.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: var(--azulEscuro);
}

.btn.instagram:hover {
    background: linear-gradient(45deg, #FD1D1D, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
    color: #fff;
}

.btn.secundario {
    background: var(--verde);
    color: var(--azulClaro);
}

.btn.secundario:hover {
    background: var(--verde-escuro);
    color: var(--verde);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s;
    animation: pulse 3s infinite;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.titulo1 {
    color: var(--azulEscuro);
    margin: 6rem 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.titulo1 h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    text-decoration: underline;
    text-decoration-color: var(--verde);
    text-underline-offset: 10px;
    text-decoration-thickness: 2px;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

.projetos {
    width: 100%;
    max-width: 100%;
    min-height: 500px;
    padding: 0;
    margin: 0 auto;
}


.carrossel {
    position: relative;
    max-width: 700px;
    width: 100%;
    margin: 40px auto;
    overflow: visible;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #FFFFFF;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    touch-action: pan-y;
    min-height: 450px;
}

.carrossel-slide {
    display: none;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform, opacity;
}

.carrossel-slide img {
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 400px;
    object-fit: cover;
    pointer-events: none;
    border-radius: 15px;
}

.carrossel-legenda {
    padding: 15px;
    background: #fff;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    border-radius: 15px;
}

.carrossel-slide.ativo {
    display: block;
    position: relative;
    margin: 0 0 30px;
    height: 480px;
}


.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--azulEscuro);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0.5rem;
    z-index: 10;
}
.prev {
    left: -45px;
}

.next {
    right: -45px;
}

.prev:hover,
.next:hover {
    color: var(--azulClaro);
}



.indicadores {
    text-align: center;
    margin: 20px 0 4rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: #b8b5b5;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.ativo {
    background: var(--azulEscuro);
}


.descricao-projeto {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 2rem auto;
    text-align: center;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    line-height: 1.7;
    color: #333;
    padding: 0 1.5rem;
}

.brecho {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.brecho-container {
    background-color: #fff;
    padding: 2rem 5%;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 4rem auto;
    text-align: center;
    width: 90%;
}

.brecho-texto {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-top: 15px;
}

.brecho-link {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.brecho-link:hover {
    background: linear-gradient(45deg, #FD1D1D, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
}

.contato-titulo {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.contato-titulo h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.contato-section {
    padding: 0 0 3rem 0;
    width: 100%;
}

.contato-section>* {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5%;
    padding-right: 5%;
}

.redes-sociais-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 3rem;
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.redes-sociais-container h3 {
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #2c3e50;
    margin-bottom: 2rem;
}

.redes-sociais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 1.2rem;
    justify-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.rede-social-item {
    background: var(--verde);
    color: white;
    padding: 1.2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.rede-social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
    background-color: var(--verde-escuro);
}

.rede-social-item img {
    width: 38px;
    height: 38px;
}

.rede-social-item span {
    font-weight: 600;
    font-size: 1rem;
}

.informacoes-contato-mapa {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.informacoes-contato {
    flex: 1;
    min-width: 280px;
}

.informacoes-contato h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.informacoes-contato p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    color: #555;
    line-height: 1.5;
}

.informacoes-contato p img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mapa-container {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 100%;
    height: 0;
}

.mapa-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.brecho-container img{
    max-width: 500px;
    max-height: 600px;
}

/* AJUDA CAUSA */
.ajuda-causa {
    background-color: #fff;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 90%;
    margin: 4rem auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.ajuda-esquerda {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.ajuda-esquerda h2 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin: 0;
}

.btn-doar {
    background-color: var(--azulEscuro);
    color: var(--verde);
    font-weight: bold;
    border-radius: 15px;
    text-decoration: none;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    transition: 0.3s;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn-doar:hover {
    background-color: var(--azulClaro);
}

.ajuda-direita {
    flex: 1;
    min-width: 250px;
}

.ajuda-direita video {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.ajuda-esquerda,
.ajuda-direita {
    margin: 0;
    padding: 0;
}

/* VÍDEO E OVERLAY */
.video-container {
    position: relative;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

#video-principal {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-pause-icon {
    display: block;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: relative;
    transition: transform 0.2s ease;
}

.video-overlay.show-icon {
    opacity: 1;
}

.play-pause-icon::before,
.play-pause-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 30px;
    background-color: var(--azulEscuro, #173C7D);
    transform: translateY(-50%);
}

.play-pause-icon::before {
    left: 18px;
}

.play-pause-icon::after {
    right: 18px;
}

.video-overlay.paused .play-pause-icon {
    width: 0;
    height: 0;
    background: transparent;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--azulEscuro, #173C7D);
    border-radius: 0;
    margin-left: 5px;
}

.video-overlay.paused .play-pause-icon::before,
.video-overlay.paused .play-pause-icon::after {
    content: none;
}

/* PARCEIROS */
.parceiros-section {
    max-width: 900px;
    width: 90%;
    margin: 50px auto;
    background: #fff;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.parceiros-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    justify-items: center;
    align-items: center;
}

.parceiros-logos img:nth-child(5) {
    grid-column: 2;
}

.parceiros-logos img:nth-child(6) {
    grid-column: 3;
}

.parceiros-logos img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.parceiros-logos img:hover {
    transform: scale(1.1);
}

.footer-ccb {
    background: var(--azulClaro);
    color: #fff;
    margin-top: 4rem;
    padding: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px;
    min-width: 220px;
}

.footer-logo {
    width: 120px;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.footer-logo-info p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.footer-nav h3,
.footer-contato h1 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--verde);
}

.footer-contato {
    background: var(--azulEscuro);
    border-radius: 16px;
    padding: 2rem 1.5rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.label-formulario {
    font-size: 0.95rem;
    font-weight: 500;
}

.input-formulario,
.textarea-formulario {
    width: 100%;
    padding: 0.7rem;
    border-radius: 6px;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
}

.textarea-formulario {
    min-height: 100px;
    resize: vertical;
}

.button-formulario {
    background: var(--verde);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: "Poppins", sans-serif;
}

.button-formulario:hover {
    background: var(--verde-escuro);
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    padding: 1.5rem 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-social a img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s;
    border-radius: 7px;
    box-shadow: 0 4px 16px rgba(23, 60, 125, 0.25);
}

.footer-social a img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(23, 60, 125, 0.35);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copy {
    font-size: 1rem;
    color: #e0e0e0;
    margin: 0;
}

@media (min-width: 769px) {
    .mapa-container {
        padding-bottom: 0;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .carrossel-slide img {
        padding: 15px;
        max-height: 400px;
    }

    .Cabecalho {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0.8rem 3%;
        border-radius: 0;
        transform: none;
    }

    .menu-toggle {
        display: block;
        z-index: 102;
    }

    .logoCabecalho img {
        height: 50px;
        width: 75px;
    }

    .navCabecalho {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--azulClaro);
        transition: transform 0.5s ease-in-out;
        z-index: 101;
        padding: 2rem 1rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        transform: translateX(100%);
        overflow-y: auto;
    }

    .navCabecalho.active {
        transform: translateX(0);
    }

    .navCabecalho ul {
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 3rem;
    }

    .navCabecalho a {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 0;
    }

    .hero {
        background-attachment: scroll;
        padding: 25px 5%;
        padding-top: 100px;
        min-height: 100vh;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        width: 100%;
        line-height: 1.3;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn {
        font-size: 0.95rem;
        padding: 14px 20px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .btn img {
        width: 28px;
        height: 28px;
    }

    .titulo1 {
        margin: 5rem 0 2rem;
        width: 100%;
    }

    .titulo1 h1 {
        width: 100%;
        padding: 0 5%;
    }

    .carrossel {
        width: 90%;
        min-height: 450px;
    }

    .carrossel-slide img {
        min-height: 200px;
        max-height: 400px;
    }

    .prev,
    .next {
        width: 42px;
        height: 42px;
    }

    .prev::before,
    .next::before {
        width: 11px;
        height: 11px;
        border-width: 2.5px;
    }

    .descricao-projeto {
        width: 100%;
    }

    .brecho-container {
        width: 90%;
        padding: 2rem 5%;
    }

    .redes-sociais-container {
        width: 90%;
    }

    .redes-sociais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
    }

    .informacoes-contato-mapa {
        flex-direction: column;
        padding: 0 5%;
        width: 100%;
    }

    .informacoes-contato,
    .mapa-container {
        width: 100%;
        min-width: unset;
        max-width: 100%;
    }

    .mapa-container {
        padding-bottom: 100%;
    }

    .ajuda-causa {
        flex-direction: column;
        width: 90%;
    }

    .ajuda-esquerda,
    .ajuda-direita {
        width: 100%;
        min-width: unset;
    }

    .ajuda-esquerda {
        gap: 2rem;
    }

    .btn-doar {
        padding: 2rem 3rem;
        width: 100%;
        max-width: 300px;
    }

    .parceiros-section {
        width: 90%;
    }

    .parceiros-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 100%;
    }

    .parceiros-logos img:nth-child(5),
    .parceiros-logos img:nth-child(6) {
        grid-column: auto;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo-info {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .Cabecalho {
        padding: 0.7rem 3%;
    }

    .logoCabecalho img {
        height: 45px;
        width: 68px;
    }

    .doeAgora {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .hero {
        padding: 20px 5%;
        padding-top: 80px;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 1.5rem;
        width: 100%;
        line-height: 1.3;
    }

    .btn {
        font-size: 0.9rem;
        padding: 12px 16px;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        width: 100%;
        gap: 10px;
    }

    .carrossel {
        width: 90%;
        min-height: 400px;
    }

    .carrossel-slide img {
        min-height: 180px;
        max-height: 350px;
    }

    .prev,
    .next {
        width: 38px;
        height: 38px;
    }

    .prev::before,
    .next::before {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    .redes-sociais-container {
        width: 90%;
        padding: 1.5rem 5%;
    }

    .rede-social-item {
        padding: 1rem 0.5rem;
    }

    .brecho-container {
        width: 90%;
    }

    .ajuda-causa {
        width: 90%;
    }

    .ajuda-esquerda {
        gap: 1.5rem;
    }

    .btn-doar {
        padding: 1.5rem 2rem;
        font-size: 1rem;
        max-width: 250px;
    }

    .parceiros-section {
        width: 90%;
    }
}

@media (min-width: 1400px) {
    html {
        font-size: 18px;
    }

    .Cabecalho {
        padding: 1rem 3%;
    }

    .navCabecalho ul {
        gap: 2rem;
    }
}

.carrossel {
    cursor: grab;
}

.carrossel:active {
    cursor: grabbing;
}