@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.quem-somos {
    width: 100%;
    height: 70vh;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(to right, transparent 70%, #29264c 30%);
}

.scroll-target {
  scroll-margin-top: 120px;
}

.imagem-principal {
    width: 70%;
    height: 70vh;
    position: relative;
    margin: 0;
    padding: 0;
}

.imagem-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(87, 86, 165, 0.4);
}

.overlay-lateral {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, transparent, #29264c);
    z-index: 1;
}

.conteudo-direita {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    padding-right: 6%;
    z-index: 2;
}

.titulo-principal {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 70px;
    line-height: 90%;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
}

.btn-saiba-mais {
    padding: 12px 30px;
    background-color: #ecce53;
    border: none;
    border-radius: 40px;
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 28px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    color: #29264c;
    margin-left: auto;
    display: block;
    transition: transform 0.35s;
    cursor: pointer;}

.btn-saiba-mais:hover {
    transform: scale(1.03);
}

.quem-somos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: -200px;
    height: 100%;
    background-image: url("../img/faca-parte/corrente.svg");
    background-size: 500px;
    background-repeat: repeat-y;
    background-position: right;
    opacity: 0.3;
}

/* Nova seção Conectamos */
.conectamos {
    padding: 230px 0;
    background-color: #fbfbfb;
    position: relative;
}

.titulo-conectamos {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 65px;
    line-height: 90%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #e27254;
    margin-bottom: 30px;
}

.texto-conectamos {
    font-family: "DM Sans";
    font-weight: 300;
    font-size: 24px;
    line-height: 90%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #e27254;
    max-width: 990px;
    margin: 0 auto 60px;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    width: 276px;
    height: 370px;
    border-radius: 37px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card-imagem {
    width: 226px;
    height: 241px;
    border-radius: 20px;
    object-fit: cover;
    filter: grayscale(100%);
}

.card-titulo {
    font-family: "DM Sans";
    font-weight: 700;
    line-height: 90%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
}

/* Media Queries para a seção Conectamos */
@media (max-width: 1200px) {
    .cards-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: calc(50% - 30px);
        max-width: 276px;
    }
}

@media (max-width: 768px) {
    .titulo-conectamos {
        font-size: 45px;
        padding: 0 20px;
    }

    .texto-conectamos {
        font-size: 20px;
        padding: 0 20px;
    }

    .card {
        width: 100%;
        max-width: 276px;
    }

    /* Remover imagens decorativas do conectamos no mobile */
    .conectamos::before {
        content: none !important;
    }

    .conectamos::after {
        content: none !important;
    }
}

/* Seção Gaussiano */
.gaussiano {
    padding: 50px 0;
    background-color: #db4f66;
}

.gaussiano .container {
    display: flex;
    gap: 60px;
    max-width: 1156px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.gaussiano .coluna {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}

.gaussiano .linha {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gaussiano .linha:first-child {
    height: 250px;
    justify-content: center;
}

.gaussiano .coluna:last-child .linha:first-child {
    width: 100vw;
    height: 250px;
    background-image: url("../img/faca-parte/corrente_02.svg");
    background-repeat: repeat-x;
    background-size: 290px;
    background-position: left;
    filter: hue-rotate(-20deg) saturate(200%) brightness(60%) contrast(120%);
    position: absolute;
    left: 0;
    right: auto;
    transform: none;
    z-index: 1;
}

.gaussiano .coluna:last-child {
    position: relative;
}

.gaussiano .coluna:last-child .linha:first-child + .linha {
    margin-top: 310px; /* 250px da altura + 60px do gap */
}

.titulo-gaussiano {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 70px;
    line-height: 90%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
}

.subtitulo-gaussiano {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 40px;
    line-height: 90%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 0;
}

.texto-gaussiano {
    font-family: "DM Sans";
    font-weight: 300;
    font-size: 25px;
    line-height: 90%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 0;
}

.botoes-gaussiano {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.corrente-decorativa {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.lista-criterios {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista-criterios li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #fff;
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 25px;
    line-height: 90%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.marcador {
    width: 43px;
    height: 41px;
    background-image: url("../img/faca-parte/Check.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.card-documentos {
    background-color: #5756a5;
    border-radius: 15px;
    overflow: hidden;
}

.card-documentos .card-titulo {
    background-color: #ffffff;
    padding: 20px 30px;
}

.card-corpo {
    background-color: #f0f0f0;
    padding: 30px;
}

.titulo-documentos {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 28px;
    color: #5756a5;
    text-align: center;
    margin: 0;
}

.texto-documentos {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 21px;
    line-height: 90%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #5756a5;
    text-align: left;
    margin-bottom: 30px;
}

.lista-documentos {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.btn-documento {
    width: auto;
    padding: 8px 20px;
    border: none;
    border-radius: 30px;
    background-color: #f4c43b;
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 20px;
    color: #5756a5;
    cursor: pointer;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    transition: transform 0.35s;
    cursor: pointer;
}

.btn-documento:hover {
    transform: scale(1.03);
    color: #5756a5;
}

/* Media Queries para a seção Gaussiano */
@media (max-width: 1200px) {
    .gaussiano .container {
        flex-direction: column;
    }

    .titulo-gaussiano {
        font-size: 50px;
    }

    .subtitulo-gaussiano {
        font-size: 32px;
    }

    .texto-gaussiano {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .gaussiano {
        padding: 40px 20px;
    }

    .gaussiano .container {
        flex-direction: column;
        gap: 40px;
    }

    .gaussiano .coluna {
        gap: 40px;
    }

    .gaussiano .linha {
        gap: 15px;
    }

    .titulo-gaussiano {
        font-size: 45px;
        text-align: center;
    }

    .subtitulo-gaussiano {
        font-size: 32px;
        text-align: center;
    }

    .texto-gaussiano {
        font-size: 20px;
        text-align: center;
    }

    .texto-limitado,
    .texto-limitado-gausseano {
        max-width: 100%;
        margin: 0 auto;
    }

    .botoes-gaussiano {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-historia,
    .btn-depoimento {
        width: 100%;
        max-width: 300px;
        font-size: 20px;
        padding: 10px 20px;
    }

    .lista-criterios {
        padding: 0 20px;
    }

    .lista-criterios li {
        font-size: 18px;
        line-height: 1.3;
    }

    .marcador {
        width: 30px;
        height: 30px;
    }

    .card-documentos {
        margin: 0 auto;
        max-width: 100%;
    }

    .titulo-documentos {
        font-size: 24px;
    }

    .texto-documentos {
        font-size: 18px;
    }

    .lista-documentos {
        gap: 10px;
        width: 100%;
    }

    .btn-documento {
        width: 100%;
        font-size: 16px;
        padding: 8px 15px;
        white-space: normal;
        text-align: left;
        line-height: 1.2;
        height: auto;
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    .gaussiano .coluna:last-child .linha:first-child + .linha {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .gaussiano {
        padding: 30px 15px;
    }

    .titulo-gaussiano {
        font-size: 35px;
    }

    .subtitulo-gaussiano {
        font-size: 28px;
    }

    .texto-gaussiano {
        font-size: 18px;
    }

    .btn-historia,
    .btn-depoimento {
        font-size: 18px;
    }

    .lista-criterios li {
        font-size: 16px;
    }

    .titulo-documentos {
        font-size: 20px;
    }

    .texto-documentos {
        font-size: 16px;
    }

    .btn-documento {
        font-size: 14px;
        padding: 8px 12px;
    }
}

.texto-limitado {
    max-width: 443px;
    width: 100%;
    margin-bottom: 15px;
}

.texto-limitado-gausseano {
    max-width: 502px;
    width: 100%;
    margin-bottom: 15px;
}

.lista-perfis {
    list-style-type: none;
    padding-left: 20px;
}

.lista-perfis li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 30px;
    color: #fff;
    font-family: "DM Sans";
    font-weight: 300;
    font-size: 25px;
    line-height: 90%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.lista-perfis li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
}

/* Seção GoGauss */
.go-gauss {
    width: 100vw;
    background-image: url("../img/faca-parte/go_gauss.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 660px;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
}

.go-gauss-conteudo {
    text-align: center;
}

.go-gauss-titulo {
    font-family: "DM Sans";
    font-weight: 300;
    font-size: 160px;
    line-height: 90%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
}

/* Seção Apoie */
.apoie {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.apoie::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-image: url("../img/faca-parte/corrente.svg");
    background-size: 300px;
    background-repeat: repeat-x;
    background-position: bottom;
    filter: hue-rotate(40deg) saturate(200%) brightness(70%) contrast(120%);
}

.apoie-titulo {
    font-weight: 700;
    font-size: 65px;
    line-height: 90%;
    text-align: center;
    margin: 80px 0 60px 0;
    color: #5756a5;
    position: relative;
    z-index: 1;
}

.apoie .container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1156px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.apoie .content {
    max-width: 500px;
    color: #5756a5;
}

.apoie .content h1 {
    font-weight: 700;
    font-size: 65px;
    line-height: 90%;
    text-align: center;
    margin-bottom: 20px;
}

.apoie .content p {
    font-weight: 300;
    font-size: 25px;
    line-height: 90%;
    margin-bottom: 30px;
}

.apoie .buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.apoie .button {
    background-color: #ecce53;
    color: #5756a5;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
    font-family: "DM Sans";
    font-size: 25px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    min-width: 200px;
    font-weight: 400;
    transition: background 0.35s, transform 0.35s, color 0.35s;
    cursor: pointer;
}

.apoie .button:hover {
    transform: scale(1.03);
}

.apoie .image {
    width: 513px;
    height: 311px;
    border-radius: 27px;
    object-fit: cover;
}

@media (max-width: 1000px) {
    .apoie .container {
        flex-direction: column;
        align-items: center;
    }

    .apoie .content h1 {
        font-size: 50px;
    }

    .apoie .content p {
        font-size: 20px;
    }

    .apoie .image {
        width: 100%;
        height: auto;
    }
}

.image-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.nav-button:hover {
    opacity: 0.8;
}

.nav-button img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.button-l {
    margin-right: -10px;
}

.button-r {
    margin-left: -10px;
}

/* Seção Gaussiano */
.voluntario {
    padding: 50px 0;
    background-color: #53b9c9;
}

.voluntario .container {
    display: flex;
    gap: 60px;
    max-width: 1156px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.voluntario .coluna {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 115px;
    position: relative;
}

.voluntario .linha {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voluntario .linha:first-child {
    justify-content: center;
}

.voluntario .coluna:first-child .linha:first-child {
    width: 100vw;
    height: 250px;
    background-image: url("../img/faca-parte/corrente_02.svg");
    background-repeat: repeat-x;
    background-size: 290px;
    background-position: right;
    filter: brightness(1000%) saturate(0%) contrast(100%);
    position: absolute;
    left: auto;
    right: 0;
    transform: none;
    z-index: 1;
}

.voluntario .coluna:first-child {
    position: relative;
}

.voluntario .coluna:first-child .linha:first-child + .linha {
    margin-top: 310px; /* 250px da altura + 60px do gap */
}

.titulo-voluntario {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 70px;
    line-height: 90%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
    max-width: 443px;
    text-align: right;
    margin-left: auto;
}

.subtitulo-voluntario {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 40px;
    line-height: 90%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 0;
}

.texto-voluntario, .texto-limitado-gausseano {
    font-family: "DM Sans";
    font-weight: 300;
    font-size: 25px;
    line-height: 90%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 0;
}

.botoes-voluntario {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.voluntario .card-voluntario {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    max-width: 600px;
}

.voluntario .card-voluntario .card-header {
    padding: 20px;
    background: #ebbe07;
}

.voluntario .card-voluntario .card-header p {
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 24px;
    color: #5756a5;
    text-align: center;
    margin: 0;
}

.voluntario .card-voluntario .card-image {
    width: 100%;
}

.voluntario .card-voluntario .card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.voluntario .card-voluntario .card-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.voluntario .card-voluntario .card-footer p {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #5756a5;
    font-style: italic;
    margin: 0;
    width: 333px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voluntario .card-voluntario .card-nav {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.voluntario .card-voluntario .card-nav .arrow {
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.voluntario .card-voluntario .card-nav .arrow:hover {
    color: #333;
}

.timeline {
    position: relative;
    margin: 60px 0;
    padding: 40px 0;
    background-color: #53b9c9; /* Manter cor de fundo da seção */
    max-width: 1156px; /* Manter max-width do container */
}

.timeline .linha {
    position: absolute;
    top: 20px; /* Posição vertical da linha conforme inspiração */
    left: 50%; /* Centralizar linha */
    transform: translateX(-50%); /* Centralizar linha */
    width: calc(100% - 270px); /* Largura da linha conforme inspiração */
    height: 5px; /* Espessura da linha conforme inspiração */
    background-color: #fff; /* Cor branca da linha */
}

.timeline .marcadores {
    display: flex;
    justify-content: space-between; /* Distribuir marcadores horizontalmente */
    position: relative;
    z-index: 1;
    margin-top: -20px; /* Mover marcadores para cima sobre a linha */
    padding: 0 20px; /* Manter padding horizontal */
}

.timeline .marcador {
    text-align: center;
    width: 25%; /* Definir largura para 4 marcadores */
    padding-top: 20px; /* Padding no topo conforme inspiração */
    display: flex; /* Manter display flex para alinhar conteúdo interno */
    flex-direction: column; /* Manter direção da coluna para conteúdo interno */
    align-items: center; /* Centralizar conteúdo interno */
}

.timeline .marcador .circulo {
    width: 25px; /* Manter tamanho do círculo */
    height: 25px; /* Manter tamanho do círculo */
    background-color: #ee8585; /* Manter cor do círculo */
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #fff; /* Manter borda branca */
}

.timeline .marcador h4 {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 20px; /* Manter tamanho do título */
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.timeline .marcador p {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 16px; /* Manter tamanho do parágrafo */
    color: #fff;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .timeline {
        padding: 60px 0;
    }

    .timeline .marcadores {
        flex-direction: column; /* Empilhar marcadores verticalmente em telas menores */
        gap: 30px;
        margin-top: 0; /* Remover margin-top em telas menores */
    }

    .timeline .marcador {
        width: 100%;
        max-width: none;
        padding-top: 0; /* Remover padding-top em telas menores */
    }

    .timeline .linha {
        display: none; /* Ocultar linha em telas menores */
    }
}

/* Estilos para a nova Timeline (Perfil 2) */
.perfil2-timeline {
    position: relative;
    padding: 80px 0;
    width: 100%;
    max-width: 1156px;
    margin: 0 auto;
    background-color: transparent; /* Fundo transparente para usar a cor da seção */
}

.perfil2-linha {
    position: absolute;
    top: 65px; /* Posição vertical da linha */
    left: 0;
    right: 0;
    height: 4px; /* Espessura da linha */
    background-color: #fff; /* Cor branca da linha */
}

.perfil2-marcadores {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.perfil2-marcador {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1; /* Distribuir espaço igualmente */
    padding: 0 10px; /* Espaçamento horizontal entre marcadores */
}

.perfil2-circulo {
    width: 25px; /* Tamanho do círculo */
    height: 25px; /* Tamanho do círculo */
    background-color: #ee8585; /* Cor rosa do círculo */
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #fff; /* Borda branca do círculo */
}

.perfil2-marcador h4 {
    font-family: "DM Sans";
    font-weight: 700; /* Negrito */
    font-size: 20px; /* Tamanho do título */
    color: #fff; /* Cor branca do título */
    margin-bottom: 10px;
    line-height: 1.2; /* Espaçamento entre linhas do título */
}

.perfil2-marcador p {
    font-family: "DM Sans";
    font-weight: 400; /* Peso da fonte para o parágrafo */
    font-size: 16px; /* Tamanho do parágrafo */
    color: #fff; /* Cor branca do parágrafo */
    line-height: 1.4; /* Espaçamento entre linhas do parágrafo */
}

/* Media Query para responsividade */
@media (max-width: 768px) {
    .perfil2-timeline {
        padding: 60px 0;
    }

    .perfil2-marcadores {
        flex-direction: column; /* Empilhar marcadores verticalmente em telas menores */
        gap: 30px;
    }

    .perfil2-marcador {
        width: 100%;
        max-width: none;
    }

    .perfil2-linha {
        display: none; /* Ocultar linha em telas menores */
    }
}

/* Estilos para a Timeline de Processo Seletivo */
.processo-seletivo-timeline {
    position: relative;
    padding: 23px 0;
    width: 100%;
    max-width: 600px; /* Ajustar max-width conforme a imagem */
    margin: 40px auto;
    background-color: transparent; /* Manter transparente */
}

.processo-seletivo-linha {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 200px);
    height: 8px;
    background-color: #fff;
    position: relative;
}

.processo-seletivo-marcadores {
    display: flex;
    justify-content: space-between; /* Distribuir marcadores horizontalmente */
    position: relative;
    z-index: 1;
    padding: 0 10px; /* Ajustar padding */
}

.processo-seletivo-marcador {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1; /* Distribuir espaço igualmente */
    padding: 0 10px; /* Espaçamento horizontal entre marcadores */
}

.processo-seletivo-circulo {
    width: 30px; /* Tamanho do círculo */
    height: 30px; /* Tamanho do círculo */
    background-color: #ffd700; /* Cor amarela do círculo */
    border-radius: 50%;
    margin-bottom: 20px;
    border: 6px solid #fff; /* Borda branca do círculo */
}

.processo-seletivo-marcador h4 {
    font-family: "DM Sans";
    font-weight: 700; /* Negrito */
    font-size: 20px; /* Tamanho do título */
    color: #fff; /* Cor branca do título */
    margin-bottom: 20px;
    line-height: 1.2; /* Espaçamento entre linhas do título */
}

.processo-seletivo-marcador p {
    font-family: "DM Sans";
    font-weight: 400; /* Peso da fonte para o parágrafo */
    font-size: 16px; /* Tamanho do parágrafo */
    color: #fff; /* Cor branca do parágrafo */
    line-height: 1.4; /* Espaçamento entre linhas do parágrafo */
}

/* Media Query para responsividade */
@media (max-width: 768px) {
    .processo-seletivo-timeline {
        padding: 60px 0;
    }

    .processo-seletivo-marcadores {
        flex-direction: column; /* Empilhar marcadores verticalmente */
        gap: 30px;
    }

    .processo-seletivo-marcador {
        width: 100%;
        max-width: none;
    }

    .processo-seletivo-linha {
        display: none; /* Ocultar linha em telas menores */
    }
}

.btn-historia,
.btn-depoimento {
    padding: 8px 20px; /* Ajustar padding se necessário */
    border: none;
    border-radius: 40px;
    background-color: #ecce53;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: "DM Sans";
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #29264c; /* Cor do texto baseada em contexto anterior */
    transition: background 0.35s, transform 0.35s, color 0.35s;
    cursor: pointer;
}

.btn-historia {
    font-weight: 400;
    font-size: 25px;
}

.btn-depoimento {
    font-weight: 400;
    font-size: 25px;
}

.btn-historia:hover,
.btn-depoimento:hover {
    transform: scale(1.03);
}

/* Estilos para a seção Testemunhos */
.testemunhos {
    padding: 80px 0;
    background-color: #fff; /* Fundo branco conforme imagem */
}

.testemunhos-titulo {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 65px;
    line-height: 90%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #e27254; /* Cor laranja conforme especificação */
    margin-bottom: 60px; /* Espaçamento abaixo do título */
}

.testemunhos-container {
    display: flex;
    align-items: center; /* Alinhar card e botões verticalmente */
    justify-content: center; /* Centralizar conteúdo */
    gap: 30px; /* Espaçamento entre botões e card */
    max-width: 1156px; /* Limitar largura */
    margin: 0 auto; /* Centralizar container */
    padding: 0 20px; /* Padding lateral */
}

.testemunho-card {
    display: flex;
    background-color: #e27254; /* Fundo do card laranja */
    border-radius: 35px; /* Raio da borda do card conforme especificação */
    overflow: hidden; /* Garantir que a imagem respeite a borda */
    width: 1031px; /* Largura do card conforme especificação */
    height: 370px; /* Altura do card conforme especificação */
    max-width: none; /* Remover max-width anterior */
    padding: 20px;
}

.testemunho-imagem-container {
    width: 303px; /* Largura da imagem conforme especificação */
    height: 332px; /* Altura da imagem conforme especificação */
    /* flex-shrink: 0; Removido pois a largura e altura são fixas */
}

.testemunho-imagem {
    display: block;
    width: 303px; /* Largura explícita */
    min-width: 303px; /* Garantir largura mínima */
    height: 100%; /* Manter altura para preencher o container */
    object-fit: cover; /* Manter proporção e cobrir */
    border-radius: 24px; /* Raio da borda da imagem */
    border: 5px solid #fff; /* Borda branca */
}

.testemunho-conteudo {
    padding: 30px;
    padding-top:14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* mudar para iniciar do topo */
    color: #fff;

    /* Adicionados para o scroll */
    max-height: 100%; /* ou um valor fixo, ex: 320px */
    overflow-y: auto;
    scrollbar-gutter: stable; /* opcional, evita mudança de largura com scrollbar */
}

/* Scrollbar mais discreto */
/* .testemunho-conteudo::-webkit-scrollbar {
    width: 6px;
}
.testemunho-conteudo::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
} */


.testemunho-nome {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 34px;
    line-height: 90%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 5px; /* Espaçamento abaixo do nome */
}

.testemunho-cargo {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 20px; /* Espaçamento abaixo do cargo */
}

.testemunho-texto {
    font-family: "DM Sans";
    font-weight: 300;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}

/* Media Query para responsividade */
@media (max-width: 768px) {
    .testemunhos {
        padding: 30px 20px;
    }

    .testemunhos-titulo {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .testemunhos-container {
        gap: 15px;
    }

    .testemunho-card {
        flex-direction: column;
        height: auto;
        padding: 0;
        border-radius: 15px;
        overflow: hidden;
    }

    .testemunho-imagem-container {
        width: 100%;
        height: 200px;
        margin: 0;
    }

    .testemunho-imagem {
        width: 100%;
        height: 100%;
        border-radius: 0;
        border: none;
    }

    .testemunho-conteudo {
        padding: 20px;
        background-color: inherit;
    }

    .testemunho-nome {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .testemunho-cargo {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .testemunho-texto {
        font-size: 14px;
        line-height: 1.4;
    }

    .nav-button {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .testemunhos-titulo {
        font-size: 28px;
    }

    .testemunho-imagem-container {
        height: 180px;
    }

    .testemunho-conteudo {
        padding: 15px;
    }

    .testemunho-nome {
        font-size: 20px;
    }

    .testemunho-cargo {
        font-size: 15px;
    }

    .testemunho-texto {
        font-size: 13px;
    }
}

/* Estilos para a seção Doador/Patrocinador */
.doador-patrocinador {
    padding: 10px 40px 0 100px;
    background-color: #EBBE07 ; /* Cor de fundo amarela conforme especificação */
}

.doador-patrocinador .container {
    max-width: 1456px; /* Limitar largura */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
}

.doador-patrocinador-right {
    flex: 1;
    text-align: center;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: stretch;
}

.doador-patrocinador-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.doador-patrocinador .conteudo {
    flex: 1;
    max-width: 600px; /* Limitar largura do conteúdo */
}

.doador-patrocinador-titulo {
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 70px;
    line-height: 90%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #000; /* Cor preta para o título */
    margin-bottom: 30px; /* Espaçamento abaixo do título */
    text-align: left;
}

.doador-patrocinador-texto {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #000; /* Cor preta para o texto */
    margin-bottom: 40px; /* Espaçamento abaixo do texto */
    text-align: left;
}

.doador-patrocinador-botoes {
    display: flex;
    flex-wrap: wrap; /* Quebrar botões em várias linhas se necessário */
    gap: 15px; /* Espaçamento entre botões */
}

.doador-patrocinador-botoes button {
    border: none;
    border-radius: 30px; /* Raio da borda dos botões */
    padding: 10px 20px; /* Padding dos botões */
    cursor: pointer;
    font-family: "DM Sans";
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #fff; /* Cor do texto branca para botões */
    background-color: #000; /* Fundo preto para botões */
}

.btn-quero-doar, 
.btn-copiar-pix,
.btn-acessar-area,
.btn-contato {
    font-weight: 400;
    font-size: 25px;
    transition: background 0.35s, transform 0.35s, color 0.35s;
    cursor: pointer;
}

.btn-quero-doar:hover, 
.btn-copiar-pix:hover,
.btn-acessar-area:hover,
.btn-contato:hover {
    transform: scale(1.03);
}

.doador-patrocinador-imagem {
    display: block;
    max-width: 500px; /* Limitar largura da imagem */
    height: auto; /* Altura automática para manter proporção */
    border-radius: 10px; /* Opcional: arredondar cantos da imagem */
    filter: grayscale(100%); /* Adicionar filtro preto e branco */
}

/* Media Query para responsividade */
@media (max-width: 768px) {
    .doador-patrocinador {
        padding: 30px 20px;
    }

    .doador-patrocinador .container {
        flex-direction: column;
        gap: 30px;
    }

    .doador-patrocinador-left {
        width: 100%;
        align-items: center;
    }

    .doador-patrocinador .conteudo {
        max-width: 100%;
        text-align: center;
    }

    .doador-patrocinador-titulo {
        font-size: 32px;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 20px;
    }

    .doador-patrocinador-texto {
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 25px;
    }

    .doador-patrocinador-botoes {
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .doador-patrocinador-botoes button {
        width: 100%;
        max-width: 280px;
        padding: 8px 15px;
    }

    .doador-patrocinador-right {
        width: 100%;
        justify-content: center;
    }

    .doador-patrocinador-imagem {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .doador-patrocinador {
        padding: 20px 15px;
    }

    .doador-patrocinador-titulo {
        font-size: 28px;
        margin: 20px 0;
    }

    .doador-patrocinador-texto {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn-quero-doar {
        font-size: 20px;
    }

    .btn-copiar-pix,
    .btn-acessar-area,
    .btn-contato {
        font-size: 14px;
    }
}

.amigos-do-gauss {
    text-align: center;
    padding: 60px 20px;
    color: #31306c;
}

.subtitulo {
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    margin-bottom: 40px;
}

.patrocinadores-imagem img {
    max-width: 90%;
    height: auto;
}

.amigos-gauss-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 20px;
}
.amigos-gauss-section .titulo-amigos {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 70px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #31306c;
    width: 100%;
}
.amigos-gauss-section .subtitulo {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin: 40px 0;
    vertical-align: middle;
    color: #31306c;
    width: 100%;
}
.amigos-gauss-section .patrocinadores-imagem {
    display: flex;
    justify-content: center;
    width: 100%;
}
.amigos-gauss-section img {
    max-width: 1090px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.conectamos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 135px;
    background-image: url("../img/faca-parte/corrente.svg");
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: bottom;
    filter: invert(59%) sepia(78%) saturate(438%) hue-rotate(337deg) brightness(97%) contrast(92%);
}

.conectamos::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 135px;
    background-image: url("../img/faca-parte/corrente.svg");
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: top;
    filter: invert(59%) sepia(78%) saturate(438%) hue-rotate(337deg) brightness(97%) contrast(92%);
}

/* Media Queries para a seção Quem Somos */
@media (max-width: 1024px) {
    .quem-somos {
        background: linear-gradient(to right, transparent 60%, #29264c 40%);
    }

    .imagem-principal {
        width: 60%;
    }

    .conteudo-direita {
        width: 70%;
        padding-right: 4%;
    }

    .titulo-principal {
        font-size: 60px;
    }

    .btn-saiba-mais {
        width: 280px;
        height: 70px;
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .quem-somos {
        height: 100vh;
        background: none;
    }

    .imagem-principal {
        width: 100%;
        height: 100%;
    }

    .overlay-lateral {
        display: none;
    }

    .conteudo-direita {
        position: absolute;
        width: 100%;
        padding: 0 20px;
        text-align: center;
        transform: none;
        top: 50%;
        left: 0;
        right: 0;
    }

    .titulo-principal {
        font-size: 45px;
        text-align: center;
        color: #ffffff;
        margin: 0 auto 40px;
        max-width: 100%;
    }

    .btn-saiba-mais {
        width: 80%;
        max-width: 280px;
        height: 60px;
        font-size: 24px;
        margin: 0 auto;
    }

    .overlay {
        background: rgba(0, 0, 0, 0.4);
    }

    .quem-somos::before {
        display: none;
    }

    .conectamos::before {
        display: none;
    }

    .conectamos::after {
        display: none;
    }

    .apoie::before {
        display: none;
    }

    .voluntario .coluna:first-child .linha:first-child {
        display: none;
    }

    .gaussiano .coluna:last-child .linha:first-child {
        display: none;
    }

    /* Ajuste específico para as correntes da seção conectamos em mobile */
    .conectamos::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background-image: url("../img/faca-parte/corrente.svg");
        background-size: 200px;
        background-repeat: no-repeat;
        background-position: bottom;
        filter: invert(59%) sepia(78%) saturate(438%) hue-rotate(337deg) brightness(97%) contrast(92%);
        display: block;
    }

    .conectamos::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        background-image: url("../img/faca-parte/corrente.svg");
        background-size: 200px;
        background-repeat: no-repeat;
        background-position: top;
        filter: invert(59%) sepia(78%) saturate(438%) hue-rotate(337deg) brightness(97%) contrast(92%);
        display: block;
    }
}

@media (max-width: 480px) {
    .titulo-principal {
        font-size: 35px;
        margin-bottom: 30px;
    }

    .btn-saiba-mais {
        width: 90%;
        height: 50px;
        font-size: 20px;
    }
}

/* Media Queries para a seção GoGauss */
@media (max-width: 768px) {
    .go-gauss {
        height: 400px;
        background-size: cover;
        background-position: center;
    }

    .go-gauss-titulo {
        font-size: 80px;
        line-height: 1;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .go-gauss {
        height: 300px;
    }

    .go-gauss-titulo {
        font-size: 60px;
    }
}

/* Media Queries para a seção Apoie */
@media (max-width: 768px) {
    .apoie {
        padding: 30px 20px;
    }

    .apoie-titulo {
        font-size: 32px;
        line-height: 1.1;
        margin: 30px 0 25px;
    }

    .apoie .container {
        flex-direction: column;
        gap: 25px;
        padding: 0;
    }

    .apoie .content {
        text-align: center;
        max-width: 100%;
    }

    .apoie .content p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .apoie .buttons {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .apoie .button {
        width: auto;
        min-width: 180px;
        font-size: 16px;
        padding: 10px 15px;
    }

    .apoie .image-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        gap: 10px;
    }

    .apoie .image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 15px;
    }

    .nav-button {
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        padding: 5px;
    }

    .nav-button img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .apoie {
        padding: 20px 15px;
    }

    .apoie-titulo {
        font-size: 28px;
        margin: 20px 0;
    }

    .apoie .content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .apoie .button {
        font-size: 14px;
        padding: 8px 12px;
    }

    .apoie .image {
        height: 180px;
        border-radius: 12px;
    }

    .nav-button {
        width: 25px;
        height: 25px;
    }
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .voluntario {
        padding: 30px 20px;
    }

    .voluntario .container {
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }

    .voluntario .coluna {
        gap: 30px;
        width: 100%;
    }

    .titulo-voluntario {
        font-size: 32px;
        line-height: 1.1;
        text-align: center;
        max-width: 100%;
        margin: 0 auto 20px;
    }

    .card-voluntario {
        width: 100%;
        margin: 0;
        border-radius: 15px;
        overflow: hidden;
    }

    .voluntario .coluna:first-child .linha:first-child + .linha {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .voluntario {
        padding: 20px 15px;
    }

    .titulo-voluntario {
        font-size: 28px;
        margin-bottom: 15px;
    }
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    /* Ajustes gerais */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Seção Quem Somos */
    .quem-somos {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .conteudo-direita {
        padding: 0 15px;
        width: 100%;
    }

    /* Seção Conectamos */
    .conectamos {
        padding: 60px 15px;
    }

    .cards-container {
        padding: 0 15px;
        gap: 20px;
    }

    .card {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 300px;
    }

    /* Seção Gaussiano */
    .gaussiano .container {
        padding: 0 15px;
    }

    .gaussiano .coluna {
        gap: 30px;
    }

    .texto-limitado,
    .texto-limitado-gausseano {
        max-width: 100%;
    }

    /* Seção Doador/Patrocinador */
    .doador-patrocinador {
        padding: 30px 15px;
    }

    .doador-patrocinador .container {
        padding: 0;
    }

    .doador-patrocinador-botoes {
        padding: 0 15px;
    }

    /* Seção Testemunhos */
    .testemunhos-container {
        padding: 0 15px;
    }

    .testemunho-card {
        width: 100%;
    }

    /* Seção Amigos do Gauss */
    .amigos-gauss-section {
        padding: 0 15px;
    }

    .patrocinadores-imagem {
        padding: 0;
    }

    .amigos-gauss-section img {
        max-width: 100%;
    }
}

/* Ajustes adicionais para telas muito pequenas */
@media (max-width: 480px) {
    .conectamos,
    .gaussiano,
    .doador-patrocinador,
    .testemunhos,
    .amigos-gauss-section {
        padding: 20px 10px;
    }

    .cards-container,
    .gaussiano .container,
    .doador-patrocinador .container,
    .testemunhos-container {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    /* Ajustes para evitar overflow */
    .btn-documento {
        white-space: normal;
        text-align: left;
        line-height: 1.2;
        height: auto;
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    .lista-criterios li {
        font-size: 18px;
        line-height: 1.3;
    }

    .texto-gaussiano,
    .texto-voluntario {
        font-size: 18px;
        line-height: 1.3;
    }

    .titulo-gaussiano,
    .titulo-voluntario {
        font-size: 32px;
        line-height: 1.2;
    }

    .subtitulo-gaussiano,
    .subtitulo-voluntario {
        font-size: 24px;
        line-height: 1.2;
    }

    .card-voluntario .card-footer p {
        width: 100%;
        height: auto;
        min-height: 40px;
        font-size: 16px;
        line-height: 1.3;
    }

    .processo-seletivo-timeline {
        padding: 20px 10px;
    }

    .processo-seletivo-marcador {
        padding: 0 5px;
    }

    .processo-seletivo-marcador h4 {
        font-size: 16px;
    }

    .processo-seletivo-marcador p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn-documento {
        font-size: 14px;
        padding: 8px 12px;
    }

    .lista-criterios li {
        font-size: 16px;
    }

    .texto-gaussiano,
    .texto-voluntario {
        font-size: 16px;
    }

    .titulo-gaussiano,
    .titulo-voluntario {
        font-size: 28px;
    }

    .subtitulo-gaussiano,
    .subtitulo-voluntario {
        font-size: 20px;
    }

    .card-voluntario .card-footer p {
        font-size: 14px;
    }
}

.patrocinadores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1090px;
    margin: 40px auto;
    padding: 0 20px;
    place-items: center; /* Centraliza os itens dentro da grade */
}

.patrocinador-item {
    width: 200px; /* Largura fixa para o item */
    height: 150px; /* Altura fixa para o item, ajuste conforme necessário para suas imagens */
    overflow: hidden; /* Esconde o excesso da imagem zoomada */
    display: flex; /* Para centralizar a imagem dentro do item */
    justify-content: center;
    align-items: center;
    filter: grayscale(100%); /* Preto e branco para o item */
    transition: all 0.3s ease-in-out; /* Transição suave para o item */
}

.patrocinador-item:hover {
    filter: grayscale(0%); /* Colorido no hover do item */
}

.patrocinador-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease-in-out; /* Manter transição para outros efeitos se houver */
}

.patrocinador-item:hover .patrocinador-logo {
    /* Removido transform: scale(1.1); */
}

/* Media Queries para a seção Amigos do Gauss */
@media (max-width: 1024px) {
    .patrocinadores-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .patrocinador-item {
        width: 180px;
        height: 135px;
    }
}

@media (max-width: 768px) {
    .patrocinadores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 30px auto;
    }

    .patrocinador-item {
        width: 150px;
        height: 112px;
    }
}

@media (max-width: 480px) {
    .patrocinadores-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        margin: 20px auto;
    }

    .patrocinador-item {
        width: 120px;
        height: 90px;
    }
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1090px;
    margin: 40px auto;
    padding: 0 20px;
    place-items: center;
}

.parceiro-item {
    width: 150px; /* Largura fixa para o item, ajustado para 6 por linha */
    height: 100px; /* Altura fixa para o item */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
}

.parceiro-item:hover {
    filter: grayscale(0%);
}

.parceiro-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.parceiro-item:hover .parceiro-logo {
    /* Removido transform: scale(1.1); */
}

/* Media Queries para a seção Parceiros */
@media (max-width: 1200px) {
    .parceiros-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .parceiros-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .parceiros-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 30px auto;
    }

    .parceiro-item {
        width: 120px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .parceiros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 20px auto;
    }

    .parceiro-item {
        width: 100px;
        height: 75px;
    }
}

.doador-patrocinador-right {
    position: relative;
}

.nome-sobreposto {
    position: absolute;
    bottom: 50px;
    right: 15px;
    color: #fff;
    text-align: left;
    line-height: 1.2;
}

.nome-sobreposto .nome {
    font-size: 27px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.nome-sobreposto .curso {
    font-size: 27px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.btn-pagamento {
  position: absolute;
  right: 0;
  width: 100px !important;
  height: 100px !important;
  background: none !important;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.btn-pagamento img {
  filter: none !important;
}

.btn-pagamento:first-of-type {
  top: 80px;
}

.btn-pagamento:nth-of-type(2) {
  top: 200px;
}

.doacao-right {
    flex: 1;
    text-align: center;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.doacao-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    position: relative;
    z-index: 0;
}