.banner-geral .container{
    justify-content: center;
    align-items: start!important;
}


.sobre{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding: 100px 0;
}
.sobre .container{
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
.sobre .texto{
    max-width: 574px;
    width: 100%;
    color: var(--primaria);
}
.sobre .texto .links{
    margin-top: 30px;
    justify-content: space-between;
}
.sobre .texto .links .link-1 a{
    max-width: 224px;
    width: 100%;
    min-height: 39px;
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--cor-2);
    border-radius: 5px;
    transition: ease .3s;
}
.sobre .texto .links .link-1 a:hover{
    background-color: var(--cor-4);
    transition: ease .3s;
}
.sobre .texto .links .link-2{
    gap: 10px;
}
.sobre .box-div{
    max-width: 680px;
    width: 100%;
    gap: 20px;
    justify-content: center;
}
.sobre .box-div .box{
    max-width: calc(100% / 4 - 20px);
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    gap: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border: 1px solid var(--primaria);
    border-radius: 10px;
}
.sobre .box-div .box .icon{
    max-width: 50px;
    max-height: 50px;
}
.sobre .box-div .box .icon img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.sobre .box-div .box p{
    color: var(--primaria);
}


.depoimentos{
    width: 100%;
    padding: 100px 0;
    background: var(--main-3);
}
.depoimentos .container{
    gap: 20px;
}
.depoimentos .titulo{
    width: 100%;
    justify-content: center;
    text-align: center;
}
.depoimentos .titulo h2{
    color: #fff;
}
.depoimentos .titulo h2 strong{
    color: var(--cor-2);
}
.depoimentos .depo-div{
    width: 100%;
    position: relative;
}
.depoimentos .depo-div .arrow{
    position: absolute;
    z-index: 10;
    cursor: pointer;
    top: 50px;
}
.depoimentos .depo-div .depo-prev{
    left: -50px;
}
.depoimentos .depo-div .depo-next{
    right: -50px;
}
.depoimentos .arrow i{
    color: #fff;
    font-size: 30px;
}
.depoimentos .mobile{
    display: none;
    width: 100%;
    justify-content: center;
    gap: 15px;
}
.depoimentos .depoimentos-slider{
    width: 100%;
}
.depoimentos .depoimentos-slider .box{
    width: 97%;
    height: 100%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    gap: 20px;
    color: var(--primaria);
    padding: 30px;
}
.depoimentos .depoimentos-slider .box .user{
    width: 100%;
    gap: 10px;
    align-items: center;
    margin-top: auto;
}
.depoimentos .depoimentos-slider .box .user img{
    display: flex;
    width: 54px;
    height: 54px;
    border-radius: 50%;
}
.depoimentos .depoimentos-slider .box .user .texto{
    max-width: calc(100% - 64px);
}
.depoimentos .depoimentos-slider .box .user .texto span:nth-child(2){
    color: #20343ea3;
}


.duvidas{
    width: 100%;
    padding: 100px 0;
    background-image: url(../imagens/clube/bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top right;
    scroll-margin-top: 220px;
}
.duvidas .titulo{
    width: 100%;
    justify-content: center;
    text-align: center;
}
.duvidas .faq-content{
    width: 100%;
    gap: 10px;
}
.duvidas .faq-content details{
    width: 100%;
    border: 1px solid #00000033;
    border-radius: 10px;
}
.duvidas .faq-content details summary::-webkit-details-marker { 
    display: none; 
}
.duvidas .faq-content details summary { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    padding: 20px;
    color: var(--primaria);
}
.duvidas .faq-content details summary i{
    font-size: 30px;
    transition: ease .3s;
}
.duvidas .faq-content details[open] summary i{
    transform: rotate(180deg);
    transition: ease .3s;
}
/* ANIMACAO ABRIR E FECHAR */
.duvidas .faq-content details .content {
    display: none; /* O jQuery cuidará de mostrar/esconder */
}
/* Estilo para quando o details já estiver aberto no carregamento (opcional) */
.duvidas .faq-content details[open] .content {
    display: block;
}
/* Esconde o overflow para a animação não "vazar" */
.duvidas .faq-content details {
    overflow: hidden;
}
/* O contêiner do conteúdo começa com altura 0 */
.duvidas .faq-content details .content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}
/* Quando o details estiver aberto, expande para 1fr */
.duvidas .faq-content details[open] .content {
    grid-template-rows: 1fr;
}
/* O parágrafo precisa de min-height 0 para o grid funcionar corretamente */
.duvidas .faq-content details .content {
    min-height: 0;
    padding: 0 20px; /* Padding lateral fixo */
    margin-bottom: 0;
    opacity: 0;
    transition: opacity 0.2s, padding-bottom 0.3s;
}
/* Ajustes visuais quando aberto */
.duvidas .faq-content details[open] .content {
    opacity: 1;
    padding-bottom: 20px; /* Padding inferior aparece na animação */
}




/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){
    
}

@media screen and (max-width: 1440px){
    .sobre .box-div .box{
        aspect-ratio: unset;
    }
}

@media screen and (max-width: 1366px){
    .sobre .box-div{
        max-width: 400px;
    }
    .sobre .box-div .box{
        max-width: 155px;
    }
}

@media screen and (max-width: 1280px){
    
        
}

@media screen and (max-width: 1100px){
    .depoimentos .depo-div .desktop{
        display: none!important;
    }
    .depoimentos .mobile{
        display: flex;
        margin-top: 20px;
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .sobre .container{
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .sobre .texto{
        align-items: center;
    }

    .duvidas{
        background-image: unset;
    }
}

@media screen and (max-width: 800px){
    .sobre .box-div .box{
        max-width: calc(100% / 2 - 10px);
    }
}

@media screen and (max-width: 600px){
    .sobre .texto .links{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .duvidas .faq-content h4{
        font-size: 20px;
    }

    .sobre,
    .depoimentos,
    .duvidas{
        padding: 50px 0;
    }
}

@media screen and (max-width: 480px){

}

@media screen and (max-width: 400px){

}

@media screen and (max-width: 375px){

}