body {
    font-family: 'Space Grotesk', sans-serif !important;
    margin: 0;
    overflow-x: hidden;
}
footer > div{
    z-index:999
}

.btn_home_posisito {
    border-radius: 50px;
    background: #00141E;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 34px;
    text-decoration: none;
    transition: transform .5s; 
    display: -webkit-inline-box;
}

.btn_home_posisito:hover{
    transform: scale(1.1);
    color: white;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    background: #4dca5b;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 999999;
    animation: whatsPulse 1.5s ease-in-out infinite;
}
.whatsapp .icon {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.whatsapp .icon i {
    line-height: 0;
}
.whatsapp .icon i:before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url(assets/svg/whats.svg) no-repeat center center;
    background-size: cover;
}
@keyframes whatsPulse {
  0% {
      -webkit-box-shadow: 0 0 0 0 rgb(200 200 200 / 61%);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(200,200,200, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(200,200,200, 0);
  }
}

/* Menu Principal */

.menu_principal {
    position: absolute;
    width: 100%;
    color: transparent;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 25px 0;
}

/* Menu FULL*/

.overlay {
    height: 100%;
    width: 0;
    position: fixed; 
    z-index: 999999; 
    left: 0;
    top: 0;
    background-color: rgba(0,0,0, 0.9); 
    overflow-x: hidden; 
    transition: 0.5s;
  }
  
.overlay-content {
    position: relative;
    top: 15%; 
    width: 100%; 
    text-align: center; 
    margin-top: 30px; 
}
  
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block; 
    transition: 0.3s; 
}
  
.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}
  
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}
  
@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
      font-size: 40px;
      top: 15px;
      right: 35px;
    }
}

.text-left {
    text-align: left;
}

/* banner_principal*/

.banner_principal {
    height: 100vh;
    background-image:url('images/banner_principal.jpg');
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner_principal h1 {
    color: #FFF;
    text-align: right;
    font-size: 85px;
    font-weight: 400;
    line-height: 1.1em;
    text-transform: uppercase;
}

.banner_principal p {
    color: #FFF;
    text-align: right;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7em;
}

/* Secçao Treino*/

.treinos .treino_personalizado {
    padding: 100px 70px;
    background-color: white;
    border-radius: 25px;
    margin-top: -130px;
    background-image: url('images/bg_treino_personalizado.png');
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}

 .container_cards{
    padding: 65px 0 0;
}

.treinos {
    background: linear-gradient(123deg, #FF0046 30.35%, #FF346C 77.23%, #FFBFD1 100.88%);
    padding: 60px 0 100px;
}

.treinos hr {
    border-top: 1px solid white;
}

.treinos h3 {
    color: #00141E;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3em;
    margin-top: 20px;
}

.treinos p {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3em;
    margin-top: 15px;
}

.titulo_home {
    color: #00141E;
    font-size: 50px !important;
    font-weight: 400;
    line-height: 0.9em;
}

.treino_personalizado p {
    color: #00141E;
    font-size: 16px;
    font-weight: 400;
    margin: 30px 0 50px
}

.treino_personalizado a {
    border-radius: 50px;
    background: #00141E;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 28px;
    text-decoration: none
}

.cards_treinos img{
    transition: all 0.3s ease-in-out;
    width: 60px;
    margin-bottom: 25px;
}

.cards_treinos span{
    color: #FD0047;
    padding: 7px 22px;
    display: inline-block;
    font-size: 30px;
    border: 2px solid #FD0047;
    border-radius: 100px;
    width: max-content;
    margin: 20px 0;
    transition: all 0.3s ease-in-out;
}

.cards_treinos span:hover{
    transform: scale(1.1);
}

.descricao_treinos{
    margin-top: 80px;
}

.cards_treinos img:hover{
    transform: scale(1.1);
}

/* Dobra Quem sou eu*/

.quem_somos {
    padding: 200px 0;
    background-image: url('images/background-quemeusou.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.quem_somos h3 {
    color: #000;
    font-size: 40px;
    font-weight: 400;
}

.quem_somos p {
    color: #000;
    font-size: 16px;
    margin: 30px 0 50px;
}

.erick_obs{
    color: white;
    font-size: 14px;
}

/* Planos */

.planos {
    background-image: url(images/background_planos.jpg);
    padding: 100px 0 50px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.card_planos {
    border-radius: 25px;
    border: 1px solid rgb(143 143 143 / 10%);
    background: linear-gradient(180deg, #031E2B 0%, #0D3144 100%);
    text-align: center;
    padding: 40px 20px;
    margin: 10px 0;
    /* min-height:499px; */
}

.card_planos ul{
    list-style-position: inside;
    padding-inline-start: 0;
    /* height: 150px */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card_planos hr{
    color: white;
    border: 1px solid;
    width: 85%;
    text-align: center;
    margin: auto;
}

.valor {
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3em;
}

  /* Footer*/
footer {
    padding: 100px 10px 30px;
    background: linear-gradient(180deg, #00141E 62.48%, rgba(95, 12, 45, 0.67) 99.54%, rgba(253, 0, 71, 0.12) 100%), linear-gradient(180deg, #00141E 62.48%, rgba(253, 0, 71, 0.12) 100%);
    position: relative;
}

footer:after{
    background: linear-gradient(180deg, #00141E 60%, transparent 100%);
    content: "";
    position: absolute;
    inset: 0;

}

.footer_container {
    text-align: left;
    padding: 60px 0px 0;
    position: relative;
    border-top: 1px white solid;  
}

footer .container{
    padding: 50px 0;
    position: relative;
}

.footer_container{
    padding: 100px 0 0;
    position: relative;
    border-top: 1px white solid;  
}

footer h3 {
    color: #FFF;
    font-size: 100px;
    font-weight: 400;
    line-height: 0.9em;
    margin-bottom: 40px;
}

footer ul li {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 3em;
}

footer ul {
    list-style-type: none;
    margin: 100px 0 0;
    padding-inline-start: 0px;
}

footer .btn_footer {
    border-radius: 50px;
    background: #FFF;
    color: black;
    padding: 12px 34px;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
}

footer .btn_footer:hover{
    color: black;
}

footer hr {
    border: 1px solid white;
    margin: 50px 0;
    opacity: 0.70;
}

footer span a {
    color: white;
    text-transform: none;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

footer span a:hover{
    color: white;
}

.menu_footer a{
    text-decoration: none;
}

.menu_footer ul li a{
    color: white;
}

.menu_footer ul li a:hover{
    color: #eeeeee;
}

.btn_home_vermelho {
    background-color: #FD0047;
    border-radius: 50px;
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    padding: 12px 34px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.btn_home_vermelho:hover{
    color: white;
    transform: scale(1.1);
}

/* Planos */

.planos h3 {
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
}

.planos p {
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7em;
}

.card_planos p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3em;
    margin-top: 30px
}

.card_planos h3 {
    color: #FFF;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.3em;
    text-transform: uppercase;
}

.card_planos li {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7em;
}

.planos h4 {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3em;
    margin-top: 25px;
}

/* Secção poder-esporte*/
.poder_esporte {
    background: linear-gradient(180deg, #FF3870 0%, #FD0047 100%);
}

.poder_esporte .mascara{
    background-image: url('images/imagem_poder.png');
    background-size: contain;
    padding: 200px 5px;
    background-repeat: no-repeat;
    background-position: left;
}

.poder_esporte h2 {
    color: #000;
    font-weight: 400;
    font-size: 50px;
    line-height: 1.1em;
    font-size: 50px
}

.poder_esporte p {
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4em;
    margin-bottom: 30px;
    margin: 30px 0 40px;
}

.valor {
    color: #FFF;
    font-size: 35px !important;
    font-weight: 400;
    line-height: 1.3em;
    margin: 20px 0 25px;
}

.btn_menu {
    text-align: right;
    margin: 20px 0 0;
}

.btn_menu a {
    color: black;
    transition: 0.2s linear;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 10px;
    text-decoration: underline;
    text-transform: uppercase;
}

.btn_menu a:hover{
    color: white;  
}

.btn_rede_social {
    border: 1px solid white;
    border-radius: 50px;
    padding: 10px 15px;
    color: white;
    margin-left: 25px;
    font-size: 14px;
}

.btn_rede_social a{
    border: 1px solid white;
    border-radius: 50px;
    padding: 10px 15px;
    color: white;
    margin-left: 25px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.btn_rede_social i:hover{
    text-decoration: none;
    color: white;
    transform: scale(1.1);
}

.btn_rede_social:hover{
    color: white;
}

.menu {
    text-align: center;
}

footer .copyright {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    padding: 20px;
}

/*---- Pág Sobre---- */

.header_fixo {
    background-image: url(images/sobre/imagem_fixo_sobre.jpg);
    height: 75vh;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.header_fixo h1{
    color: #000;
    font-size: 40px;
    font-weight: 400;
    line-height: 0.9em;
    margin-top: 20px;
}

.sobre {
    background: linear-gradient(180deg, #00141E 66.74%, #FD0047 109.93%);
}

.sobre img{
    transition: transform .2s;
}

.sobre img:hover{
    transform: scale(1.05);
}

.mascara_sobre {
    background: url('images/sobre/vectorbg.png');
    padding: 100px 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.conteudo_sobre_direita {
    padding: 65px;
}

.conteudo_sobre_esquerda {
    padding-right: 100px;
}

.sobre h2 {
    color: #FFF;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.3em;
}

.sobre p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7em;
}

.sobre img {
    width: 100%;
    border-radius: 10px;
}

.sobre hr {
    color: #FF8AAB;
    height: 3px;
    width: 45%;
    opacity: 0.7;
    margin: 25px 0;
}

.provas_section {
    padding: 100px 0;
    background: white;
    text-align: center;
    background-image: url('images/sobre/background-min.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.provas_section p{
    color: white;
}

.provas_section h2, h3{
    color: white;
}

.provas h3{
    font-weight: 400;
    padding: 10px;
    font-size: 30px;
}

.provas{
    padding: 50px 10px;
}

.provas img{
    transition: all 0.3s ease-in-out;
}

.provas img:hover{
    transform: scale(1.1);
}

.provas hr{
    border: 1px solid #FF8AAB;
    width: 40%;
    margin: 0.5em auto; 
}

/* Pág Servicos*/

 /* Dobra CTA*/
 .dobra_cta h2 {
    font-size: 40px;
    font-weight: 400;
    color: #000;
}

.dobra_cta p {
    color: #000;
    font-size: 16px;
    line-height: 1.7em;
    margin: 30px 0;
}


.btn_header_fixo {
    border-radius: 50px;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.78) 100%);
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    padding: 24px 50px;
    text-decoration: none;
    margin-right: 20px;
}

.header_btn{
    padding: 50px 0 0;
}

.btn_header_fixo:hover{
    color: white;
}

.mente_corpo {
    background: url('images/servicos/bg_mente_corpo.png');
    padding: 100px 0;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.mente_corpo h2 {
    color: #000;
    font-size: 40px;
    font-weight: 400;
}

.mente_corpo p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7em;
    margin: 30px 0;
}

.dobra_cta {
    background: linear-gradient(180deg, #FF3870 0%, #FD0047 100%);
    padding: 100px 0;
    position: relative;
}

.dobra_cta:before {
    content: "";
    position: absolute;
    height: calc(100% - 50px);
    background: black;
    width: 50%;
    bottom: 0;
    background: url(images/cta/imagem_cta.png?la=1);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.dobra_topicos {
    padding: 100px 0;
    background: linear-gradient(210deg, #00141E 82.62%, #FD0047 124.26%);
    color: white;
}

.dobra_topicos h3 {
    color: #FFF;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3em;
}

.dobra_topicos p {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3em;
    margin-top: 15px;
}

.dobra_topicos hr {
    height: 3px;
    opacity: .40;
    margin: 20px 0 40px;
}

.dobra_topicos img {
    width: 45px;
}

.dobra_topicos .cards_treinos p{
    padding-right: 60px;
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3em;
}

.hr_servicos {
    color: #FF8AAB;
    opacity: 0.8;
    height: 2px !important;
    width: 70%;
    margin: 15px 0;
}

/*Dobra Acompanhamento Personalizado*/

.acompanhamento_personalizado {
    padding: 100px 0;
    background-image: url('images/servicos/bg_acompanhamento.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.acompanhamento_personalizado h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 400;
}

.acompanhamento_personalizado h3 {
    color: white;
    font-size: 25px;
    font-weight: 400;
}

.acompanhamento_personalizado p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7em;
    margin-top: 15px;
}

.conteudo_acompanhamento p{
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7em;
    margin: 50px 0;
}

.card_acompanhamento {
    border-radius: 40px;
    border: 1px solid rgba(216, 216, 216, 0.00);
    background: radial-gradient(231% 135.8% at 0.9% 2.98%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.00) 100%);
    backdrop-filter: blur(21px);
    padding: 50px;
    min-height: 300px;;
}

.conteudo_acompanhamento{
    width: 50%
}

.conteudo_acompanhamento hr{
    color: #FF8AAB;
    opacity: 0.8;
    height: 2px !important;
    width: 40%;
    margin: 15px 0;
}

/*--- Pág Beneficios ----*/

.dobra_beneficio{
    position: relative;
    background-image: url(images/beneficios/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0;
}

.dobra_beneficio:before{
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    left: -300px;
    background-image: url(images/beneficios/mascara_banner.png);
}

.conteudo_beneficios{
    padding-left: 30px;
    padding-right: 100px;
    position: relative;
    z-index: 999;
}

.conteudo_beneficios p{
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7em;
}

.conteudo_beneficios h2{
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
}

.conteudo_beneficios hr{
    color: #FF8AAB;
    opacity: 0.8;
    height: 2px !important;
    width: 45%;
    margin: 15px 0 35px;
}

.topico_beneficios{
    padding: 100px 0;
    background: linear-gradient(210deg, #00141E 82.62%, #FD0047 124.26%);
}

.topico_beneficios p{
    color: white;
}

.topico_beneficios h2{
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3em;
}

.topico_beneficios h3{
    color: #FD0047;
    font-size: 50px;
    font-weight: 500;
    line-height: 2em;
}

.topico_beneficios h4{
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3em 
}

.cards_beneficios{
    padding-right: 40px;
}

.beneficios_tittle{
    width: 60%;
    margin-bottom: 30px;
}

.beneficios_tittle hr{
    color: #FF8AAB;
    opacity: 0.8;
    height: 2px !important;
    width: 50%;
    margin: 15px 0;
}
/* Página Corrida*/

.dobra_banner_corrida{
    position: relative;
    background-image: url(images/corrida/banner_corrida.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0;
}

.dobra_banner_corrida:after{
    content: "";
    background: linear-gradient(#00141E, #0f0f0f);
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.5;
}

.dobra_beneficio:after{
    content: "";
    background: linear-gradient(#00141E, #0f0f0f);
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.5;
}

.dobra_banner_corrida:before{
    content:"";
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    left: -300px;
    background-image: url(images/beneficios/mascara_banner.png);
}

.dobra_sobre_treino{
    padding: 100px 10px;
    background: linear-gradient(210deg, #00141E 82.62%, #FD0047 124.26%);
}

.dobra_sobre_treino h2{
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3em;
}

.dobra_sobre_treino p{
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7em;
}

.dobra_sobre_treino hr{
    color: #FF8AAB;
    opacity: 0.8;
    height: 2px !important;
    width: 16%;
    margin: 15px 0;
}

.btn_insta{
    position: relative;
    color: white;
    font-weight: 600;
    display: flex;
    grid-gap: 10px;
    align-items: center;
    margin-top: 50px;
}

.btn_insta:hover{
    color: white;

}

.btn_insta i{
    content: url('images/icon_insta.svg');
    width: 22px;
}

@media (min-width: 1024px){
    .whatsapp {
        width: 65px;
        height: 65px;
    }

    .banner_principal h1{
        font-size: 64px;
    }
    
    .banner_principal p{
        text-align: right;
    }

    .header_fixo{
        height: 80vh;
    }

    .overlay a{
        font-size: 26px;
    }

    .card_planos {
        min-height: 475px;
    }

    .planos .col-md-12:last-child .card_planos ul {
        -webkit-line-clamp: initial;
    }
}

@media(min-width: 1920px){
    .whatsapp {
        bottom: 40px;
        right: 40px;
        width: 85px;
        height: 85px;
    }

    .whatsapp .icon i:before {
        width: 35px;
        height: 35px;
    }

    .header_fixo{
        height: 60vh;
    }

    .card_acompanhamento{
        min-height: max-content;
    }

    .banner_principal h1{
        font-size: 90px;
    }

    .overlay a{
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .hidden-mobile {
        display: none;
    }

    .btn_insta{
        justify-content: center;
    }

    .card_acompanhamento{
        padding: 30px 25px;
    }

    .btn_home_posisito{
        font-size: 15px;
        padding: 12px 20px;
    }

    .btn_home_vermelho{
        font-size: 15px;
        padding: 12px 20px;
    }

    .titulo_home{
        font-size: 40px !important;
    }

    .overlay-content{
        top: 15%;
        margin: 0;
    }

    .overlay a{
        font-size: 30px;
    }

    footer h3 {
        font-size: 35px;
    }

    footer ul{
        margin: 20px 10px 0;
    }

    .menu_principal {
        padding: 20px 0;
    }

    .menu_principal svg {
        text-align: right;
        width: 60px;
    }

    .menu_principal .col-lg-4 {
        width: 50%;
    }

    .menu {
        text-align: right;
    }

    /* Banner */

    .banner_principal{
        background: url('images/banner_home_mobile.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: left;
        padding: 0 10px;
    }

    .logo_principal a img{
        width: 70%;
    }

    .banner_principal h1 {
        text-align: left;
        font-size: 30px;
        line-height: 1.1em;
    }

    .banner_principal p {
        text-align: left;
        font-size: 18px;
        line-height: 1.7em ;
        margin-top: -160px;
    }
    /* Treino */
    .treino_personalizado .container {
        padding: 50px 50px 0;
    }

    .treinos .treino_personalizado{
        padding: 50px 20px 300px;
        background-position: bottom;    
    }

    .treino_personalizado img {
        width: 100%;
        margin: 0;
    }

    .treinos col-lg-3 {
        text-align: center;
        padding: 20px 0;
    }

    .cards_treinos {
        text-align: center;
        padding: 25px 0;
        margin: 0 10px; 
    }

    .cards_treinos .col-lg-3{
        padding: 0 0;
    }
    
    .cards_treinos h3{
        margin-top:30px;
    }

    .cards_treinos img{
        width: 60px;
        margin-bottom: 25px;
    }

    .planos h4{
        font-size: 20px;
    }

    #ordem_mobile {
        flex-direction: column-reverse;
    }

    /* Quem Somos*/
    .quem_somos {
        padding: 50px 10px 150px;
        background-position: bottom;
        background-size: contain;
    }
    .quem_somos h3{
        font-size: 40px
    }

    /* Planos*/
    .planos {
        text-align: center;
        padding: 50px 10px;
    }

    .planos h3 {
        color: #FFF;
        font-size: 40px;
        font-weight: 400;
    }

    .planos p {
        color: #FFF;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.7em;
    }

    /*Card Planos*/

    .card_planos h3 {
        color: #FFF;
        font-size: 26px;
        font-weight: 400;
        line-height: 1.3em;
        text-transform: uppercase;
    }

    .card_planos li {
        color: #FFF;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.7em;
    }

    .provas img{
        width: 16%;
    }

    .provas{
      padding: 20px 10px;  
    }

    .card_planos p {
        color: #FFF;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.7em;
    }


    /*Poder*/
    .poder_esporte h2{
        font-size: 30px;
    }

    /* footer*/
    footer {
        padding: 50px 10px 0;
    }

    footer span {
        color: #FFF;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.3em;
        margin-right: 1px;
    }

    footer span a {
        color: #FFF;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.3em;
        text-decoration: none;
        
    }

    footer > div {
        position: relative;
        z-index: 99
    }

    footer span {
        margin-right: 0;
    }

    footer .container{
        padding: 50px 0;
        text-align: center;
    }

    .poder_esporte .mascara{
        padding: 50px 10px 300px;
        background-repeat: no-repeat;
        background-position: left bottom;
        background-size: 65%;
    }

    /*----Pág Sobre ----*/

    .header_fixo {
        height: 50vh;
        align-content: center;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-repeat: no-repeat;
        /* background-position: left; */
        padding: 0 10px;
        background-position: 15%;
    }

    .header_fixo h1 {
        margin-top: 150px;
        font-size: 30px;
    }

    .sobre {
        background: linear-gradient(180deg, #00141E 88.74%, #FD0047 109.93%);
    }

    .mascara_sobre {
        background: url('images/sobre/vectorbg.png');
        padding: 20px 10px 50px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .conteudo_sobre {
        padding: 25px 0;
    }

    .sobre h2 {
        color: #FFF;
        font-size: 35px;
        font-weight: 400;
        line-height: 1.3em;
    }

    .sobre p {
        color: #FFF;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.7em;
    }

    .sobre img {
        width: 100%;
        border-radius: 5px;
    }

    .sobre hr {
        color: #FF8AAB;
        height: 3px;
    }

    .conteudo_sobre_direita {
        padding: 30px 10px;
    }

    .conteudo_sobre_esquerda{
        padding: 30px 10px
    }

    /* Pág Servicos*/

    .card_acompanhamento {
        margin: 15px 0;
    }

    .acompanhamento_personalizado {
        padding: 50px 10px;
    }

    .mente_corpo {
        padding: 50px 10px;
        background: none;
    }

    .dobra_topicos {
        color: white;
        padding: 10px 10px;
    }

    .header_btn{
        padding: 0;
    }

    .dobra_cta {
        padding: 50px 10px;
        text-align: center;
    }

    .dobra_cta:before {
    display: none;
    }

    .mente_corpo h2{
        font-size: 35px;
    }

    .acompanhamento_personalizado h2{
        font-size: 35px;
    }

    .dobra_cta h2{
        font-size: 26px;
    }

    .dobra_topicos .cards_treinos p{
        padding: 0
    }

    .conteudo_acompanhamento {
        width: 100%
    }

    .btn_header_fixo{
        transition: transform .2s;
        display: inline-block;
        text-align: center;
        width: 49%;
        margin: 5px 0;
        padding: 12px 28px;
    }

    /* Pág Beneficios */ 

    .dobra_beneficio{
        padding: 50px 10px;
    }

    .topico_beneficios{
        padding: 50px 10px;
    }

    .topico_beneficios h2{
        color: #FFF;
        font-size: 25px;
        font-weight: 400;
        line-height: 1.3em;
    }

    .cards_beneficios{
        padding: 0;
    }
    
    .beneficios_tittle{
        width: 100%;
    }

    .dobra_beneficio:before{
        display: none;
    }

    /* Pág Corrida*/

    .dobra_banner_corrida{
    padding: 50px 10px;
    }

    .conteudo_beneficios{
        padding: 0;
    }

    .dobra_sobre_treino hr{
        width: 45%;
    }

}   

@media(max-width: 995px){
    .hidden-mobile {
        display: none;
    }
}

/* Definindo a animação */
@keyframes FadeUpBanner {
    from {
      opacity: 0;
      transform: translateY(300px); /* Deslocamento para cima */
    }
    to {
      opacity: 1;
      transform: translateY(0); /* Sem deslocamento */
    }
}
  
.fadeUp {
    opacity: 0; 
    animation: FadeUpBanner 2s ease forwards; 
}

@keyframes FadeUpTreino {
    from {
      opacity: 0;
      transform: translateY(350px); /* Deslocamento para cima */
    }
    to {
      opacity: 1;
      transform: translateY(0); /* Sem deslocamento */
    }
}
  
.fadeUpTreino {
    opacity: 0; 
    animation: FadeUpTreino 3s ease forwards; 
}

.item-tabela-planos-new h3 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7em; 
    text-align: left;
}

.tabela-planos-new {
    background: linear-gradient(180deg, #031E2B 0%, #0D3144 100%);
    border: 1px solid rgba(100, 162, 207, 0.50);
    border-radius: 20px;
    padding: 15px;
}

.tabela-planos-new .item-tabela-planos-new {
    border-bottom: 1px solid #ffffff66;
    padding: 10px 0;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabela-planos-new .item-tabela-planos-new:last-child {
    border-bottom: none;
}

.tabela-planos-pai .coluna-tabela:first-child .item-tabela-planos-new {
    justify-content: flex-start;
}

span.title-table-descritivo {
    border-radius: 15px;
    background: #FD0047;
    color: #FFF;
    font-size: 15px;
    padding: 18px 10px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    width: 100%;
}

.title-table-descritivo.bg-transparent{
    visibility: hidden;
}

.tabela-planos-pai {display: flex;grid-gap: 10px; overflow: scroll;}

.value-table-planos a{
    border-radius: 16px;
    background: #FD0047;
    color: #fff;
    text-decoration: none;
    width: 100%;
    display: inline-block;
    padding: 12px 24px;
    transition: 0.3s linear;
    border: 1px solid #FD0047;
}

.value-table-planos a:hover{
    color: #FD0047;
    background-color: #fff;
}

.value-table-planos h4 small {
    color: #ffffff55;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 500;
}

.value-table-planos h4 {
    line-height: 0.9em;
    font-size: 26px;
}

.value-table-planos p {
    color: #ffffff55;
    font-size: 13px;
    font-weight: 400;
}

.item-tabela-planos-new p small{
    color: #ffffff55;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
}

.coluna-tabela {
    min-width: 70%;
}

.value-table-planos h4{

}

@media(min-width: 996px){
    .tabela-planos-pai{
        overflow: hidden;
    }

    .value-table-planos h4{
        font-size: 23px;
    }

    .coluna-tabela {
        min-width: auto;;
    }

    .tabela-planos-pai .coluna-tabela:first-child{
        width: 33.33%;
    }
    
    .tabela-planos-pai .coluna-tabela{
        width: 16.66%;
    }

    .item-tabela-planos-new h3{
        font-size: 16px;
    }

    .tabela-planos-new .item-tabela-planos-new{
        padding: 0 10px
    }

    span.title-table-descritivo{
        font-size: 13px;
    }

    .banner_principal h1{
        font-size: 56px;
    }
}

@media(min-width: 1270px){
    .tabela-planos-pai .coluna-tabela{
        font-size: 17px;
    }

    .value-table-planos h4{
        font-size: 26px;
    }

    span.title-table-descritivo{
        font-size: 17px;
    }

    .tabela-planos-new .item-tabela-planos-new{
        padding: 15px 30px;
    }

    .value-table-planos p{
        font-size: 10px;
    }
}

@media(min-width: 1440px){
    .item-tabela-planos-new h3{
        font-size: 20px;
    }

    .value-table-planos p{
        font-size: 11px;
    }

    .item-tabela-planos-new{
        min-height: 140px;
    }

    .item-tabela-planos-new p small{
        font-size: 16px;
    }
}
