/*Font*/
@import url('https://fonts.googleapis.com/css2?family=Anek+Bangla:wght@100..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/*Font*/
/* Base: qualquer elemento com data-anim começa oculto */
[data-anim]{
  opacity:0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

/* Quando entra na tela */
[data-anim].is-visible{
  opacity:1;
  transform:none;
}

/* Tipos de animação */
[data-anim="fade"]{ transform:none; }                 /* só fade */
[data-anim="slide-up"]{ transform: translateY(24px);} /* de baixo pra cima */
[data-anim="slide-left"]{ transform: translateX(24px);}/* da direita pra esquerda */
[data-anim="slide-right"]{ transform: translateX(-24px);}/* da esquerda pra direita */

/* Atrasos opcionais (use em data-anim-delay="100|200|300|400") */
[data-anim-delay="100"]{ transition-delay:.1s; }
[data-anim-delay="200"]{ transition-delay:.2s; }
[data-anim-delay="300"]{ transition-delay:.3s; }
[data-anim-delay="400"]{ transition-delay:.4s; }

/* Acessibilidade: reduz animações se o usuário preferir menos movimento */
@media (prefers-reduced-motion: reduce){
  [data-anim]{
    transition-duration: 0.01ms;
    transition-delay: 0s;
    transform: none !important;
  }
}
/*Reset*/
* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none!important;
	box-sizing: border-box;
}

body {
	color: #1515151;
	font-family: 'Anek Bangla', sans-serif;
	text-decoration: none!important;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, button {
    font-family: 'Anek Bangla', sans-serif;
}

button {
	cursor: pointer;
}

.container {
    width: 1440px;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
}

.row {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
}

.row>div {
    width: 100%;
}

.w-12 {
	grid-column: span 12;
}

.w-11 {
	grid-column: span 11;
}

.w-10 {
	grid-column: span 10;
}

.w-9 {
	grid-column: span 9;
}

.w-8 {
	grid-column: span 8;
}

.w-7 {
	grid-column: span 7;
}

.w-6 {
	grid-column: span 6;
}

.w-5 {
	grid-column: span 5;
}

.w-4 {
	grid-column: span 4;
}

.w-3 {
	grid-column: span 3;
}

.w-2 {
	grid-column: span 2;
}

.w-1 {
	grid-column: span 1;
}

body {
    background-color: #fff;
    padding-top: 70px;
}
/*Reset*/

/*Navbar*/
button.close-menu, button.open-menu {
    display: none;
}

nav {
    position: fixed;
    left: 0;
    top: 0;
    background-color: #141414;
    width: 100%;
    z-index: 8;
}

.container.container-nav {
    display: flex;
}

.logo-menu img.logo-min {
    display: none;
}

.logo-menu img {
    height: 30px;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.ent-menu-responsivo {
    margin: auto;
    margin-right: 0;
}

.ent-menu-responsivo ul {
    display: inline-flex;
    list-style: none;
}

.ent-menu-responsivo a, .ent-menu-responsivo li span, .social-menu a {
    height: 90px;
    display: block;
    margin: auto;
    margin-left: 10px;
    margin-right: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    line-height: 90px;
}

.ent-menu-responsivo li {
    display: flex;
    position: relative;
    margin-right: 5px;
}

.ent-menu-responsivo li::after {
    content: '';
    display: block;
    width: 0;
    height: 17px;
    border-left: 2px solid #d4001c;
    margin: auto;
}

nav i {
    font-size: 25px;
}

.social-menu a {
    margin: 0;
    margin-left: 5px;
}

/*nav.stick img.logo-full {
    display: none;
}

nav.stick img.logo-min {
    display: block;
}*/

a.menu-link.active {
    /*border-bottom: 4px solid #fff;*/
}

/*Header*/
.mobile {
    display: none!important;
}

.carrosel-item img {
    width: 100%;
}

header {
    position: relative;
}

.sobre-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 2;
}

.sobre-header img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
}

.content-sobre-header {
    position: relative;
    width: 40%;
    margin: auto;
    margin-left: 0;
}

.content-sobre-header>* {
    width: 50%;
    margin: auto;
    margin-right: 0;
}

h2.title-header {
    display: block;
    font-size: 54px;
    line-height: 45px;
    font-style: italic;
    color: #ffff;
    font-weight: 900;
    margin-bottom: 20px;
}

h2.title-header * {
    display: block;
    color: #141414;
}

h6.sub-title-header {font-size: 19px;color: #fff;padding-right: 22%;line-height: 18px;font-weight: 500;}

/*Patrocinio*/

.logos-patrocinio {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 100%;
    max-width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 20px;
}

.logos-patrocinio img {
    display: block;
    margin: 10px;
}

section#apoio {
    background-color: #F1F1F1;
    padding-bottom: 70px;
    padding-top: 70px;
    margin-bottom: 70px;
    margin-top: -120px;
}

header .ent-header img {
    height: 75vh;
    margin-bottom: 11vh;
    object-fit: contain;
}

.sobre-header {
    padding-bottom: 100px;
}

header::after {
    content: '';
    display: block;
    width: 36%;
    height: 100%;
    background-color: #f1f1f1;
    position: absolute;
    right: -19%;
    transform: rotate(15deg);
    top: 1.5%;
    border-left: 18px solid #fff;
}

header::before {
    content: '';
    display: block;
    height: 12vh;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #f1f1f1;
    width: 100%;
    z-index: 1;
}

section#sobre {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}

section#apoio {
    margin-bottom: 0;
}

section#sobre h1 {
    font-size: 55px;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 900;
    color: #d1001c;
    line-height: 50px;
    margin-bottom: 20px;
}

section#sobre p {
    font-size: 18px;
    line-height: 26px;
}

.row.itens-numbers>div {
    display: grid;
    align-items: center;
}

.row.itens-numbers>div h2 {
    font-weight: 900;
    font-size: 45px;
    line-height: 46px;
    color: #d1001c;
}

.row.itens-numbers>div h6 {
    font-size: 20px;
    line-height: 19px;
    font-weight: 400;
}

.row.itens-numbers>div * {
    font-style: italic;
}

section#sobre>div>div {
    display: grid;
    align-items: center;
}

section#sobre>div {
    position: relative;
    z-index: 2;
}

section#sobre>img {
    position: absolute;
    top: -43%;
    right: -30vw;
    height: 200%;
}

section#proposito {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #f1f1f1;
    text-align: center;
}

section#proposito h2 {
    display: flex;
    margin: auto;
    width: fit-content;
    margin-bottom: 30px;
    color: #CECECE;
}

section#proposito h2 img {
    margin-right: 30px;
}

section#proposito h2 span {
    font-weight: 300;
    letter-spacing: 10px;
    font-style: italic;
}

section#proposito h3 {
    display: flex;
    margin: auto;
    width: fit-content;
    margin-bottom: 040px;
    padding-bottom: 30px;
    position: relative;
    color: #D6001A;
    font-weight: 900;
    font-size: 29px;
    width: 880px;
    max-width: 100%;
    line-height: 30px;
    font-style: oblique;
}

section#proposito h3::after {
    content: '';
    display: block;
    border-bottom: 1px solid #CECECE;
    width: 30%;
    position: absolute;
    left: 35%;
    bottom: 0;
}

section#proposito h3 span {
    position: relative;
    margin: auto;
}

section#proposito span.left-aspas {
    font-size: 57px;
    left: 2px;
    top: -12px;
    color: #CECECE;
}

span.right-aspas {
    font-size: 57px;
    left: -44px;
    bottom: -40px;
    color: #CECECE;
}

section.videos-lobo {
    background-color: #141414;
    padding-top: 70px;
    padding-bottom: 70px;
    text-align: center;
}

section.videos-lobo h2 {
    display: flex;
    margin: auto;
    width: fit-content;
    margin-bottom: 30px;
}

section.videos-lobo h2 img {
    margin-right: 20px;
}

section.videos-lobo h2 span {
    font-size: 40px;
    font-style: italic;
    font-weight: 900;
    color: #D5001C;
}

button.btn-carrosel-video {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    background: transparent;
    font-size: 18px;
    transition: all .2s;
}

button.btn-carrosel-video.active, button.btn-carrosel-video:hover {
    background-color: #d5001a;
}

.carrosel-videos-lobo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

.nav-videos-lobo {
    width: 100%;
    margin-bottom: 30px;
}

.slick-videos-lobo {
    width: 600px;
    max-width: 100%;
}

.controle-video {
    height: 100%;
    margin: auto;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
}

.controle-video img {
    display: block;
    margin: auto;
    height: 38px;
    cursor: pointer;
}

.slick-videos-lobo .slick-slide img {
	width: 100%;
    padding: 10px;
    border: 1px solid #d5001a;
}

section.videos-lobo::after, section.videos-lobo::before {
    content: '';
    display: block;
    width: 100%;
    border-bottom: 1px solid #d1001c;
    position: absolute;
    top: 0;
    transform: rotate(-1deg);
}

section.videos-lobo {
    position: relative;
}

section.videos-lobo::after {
    top: auto;
    bottom: 0;
}

.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-lightbox .video-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.video-lightbox iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.video-lightbox .close-video {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

section#planos {
    padding-bottom: 100px;
    padding-top: 70px;
    background-color: #F1F1F1;
}

section#planos h2 {
    display: flex;
    margin: auto;
    width: fit-content;
    margin-bottom: 30px;
}

section#planos h2 img {
    margin: auto;
    margin-right: 30px;
}

section#planos h2 span {
    font-size: 50px;
    font-style: italic;
    font-weight: 900;
    color: #D5001C;
    line-height: 46px;
    height: 46px;
}

.ent-plans,
.provas-tab {
    display: none;
}
.ent-plans.run,
.provas-tab.ago {
    display: block;
}

button.btn-plans {
	background: transparent;
    font-size: 31px;
    font-style: italic;
    font-weight: 900;
    height: 46px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid;
    min-width: 100px;
    text-align: center;
    line-height: 46px;
    margin-left: 20px;
    color: #CECECE;
}

span.nav-plans {
    display: flex;
}

button.btn-plans.active {
    color: #141414;
}

.ent-plans .w-4 {
    padding: 30px;
    border: 2px solid #CECECE;
}

.ent-plans .w-4 ul {
    list-style: none;
}

.ent-plans .w-4 ul li span {
    color: #d1001c;
    font-size: 20px;
    font-weight: 600;
}

.ent-plans .w-4 ul li {
    font-size: 17px;
}

.ent-plans .w-4 h3 {
    font-size: 32px;
    font-style: italic;
    font-weight: 900;
    line-height: 28px;
    margin-bottom: 10px;
}

.ent-plans .w-4 h3 span {
    color: #d5001c;
}

.ent-plans .w-4 h3 i {
    display: block;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
    font-weight: 500;
}

.ent-plans .w-4 hr {
    width: 80%;
    border-bottom: 1px solid #d1001c;
    margin-top: 20px;
    margin-bottom: 20px;
}

.ent-plans .w-4 h4 {
    font-size: 30px;
    color: #d1001c;
    line-height: 32px;
    font-weight: 300;
}

.ent-plans .w-4 h4 strong {
    font-weight: 900;
}

.ent-plans .w-4 h6 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: -40px;
}

.ent-plans .w-4 button {
    background-color: #d1001c;
    height: 54px;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
    bottom: -57px;
}

section#provas {
    padding-top: 70px;
    padding-bottom: 70px;
}

section#provas h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section#provas button.btn-plans.active {
    color: #d1001c;
}

.provas-tab {
    padding-top: 20px;
}

section#provas h2 span {
    font-size: 40px;
    font-style: italic;
    font-weight: 900;
    color: #141414;
}

.item-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.item-date img {
    width: 130px;
    height: 110px;
    object-fit: cover;
    min-width: 130px;
}

section#provas h4 {
    color: #d1001c;
    font-size: 34px;
    text-align: center;
    font-weight: 900;
    line-height: 40px;
    margin: auto;
}

.infos-location {
    width: 100%;
    text-align: right;
    margin-left: 30px;
}

.content-date {
    width: 100%;
    padding-left: 30px;
    display: flex;
    align-items: center;
}

section#provas h4 span {
    display: block;
    color: #222;
    font-size: 14px;
    text-transform: capitalize;
    line-height: 10px;
}

section#provas h5 {
    color: #d1001c;
    font-size: 20px;
    font-weight: 600;
}

section#provas hr {
    width: 100%;
    border-bottom: 1px solid #d1001c;
}

section#provas p strong {
    margin-left: 50px;
}

section#bora-treinar {
    background-color: #d1001c;
    padding-top: 70px;
    padding-bottom: 70px;
    color: #fff;
}

section#bora-treinar h2 {
    width: fit-content;
    display: flex;
    margin: auto;
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;
}

section#bora-treinar h2 img {
    margin-right: 30px;
}

section#bora-treinar h2 span {
    font-size: 40px;
    font-style: italic;
    font-weight: 900;
    margin-right: 30px;
}

section#bora-treinar h2 i {
    font-style: initial;
    font-weight: 400;
    font-size: 17px;
}

.w-3.location * {
    color: #fff;
    text-decoration: none;
}

.w-3.location * h5 * {
    color: #222;
    font-size: 22px;
    font-weight: 900;
}

.w-3.location * h5 i {
    color: #fff;
}

.w-3.location h5 {
    margin-bottom: 10px;
}

.w-3.location p {
    font-size: 15px;
    line-height: 24px;
}

.w-3.location  {
	border-right: 2px solid #b50018;
	padding: 20px;
}

.w-3.location:nth-child(4n) {
	border-right: none;
}

.w-3.location:nth-last-child(-n + 3) {
	border-bottom: none;
}

footer {
    background-color: #141414;
    margin-top: 60px;
    padding-bottom: 40px;
    padding-top: 40px;
}

footer img {
    height: 30px;
}

footer .row {
    display: grid;
    align-items: center;
}

.w-6.lined-separator {
    border-bottom: 2px solid #fff;
}

.w-4.social-icons {
    display: flex;
    align-items: center;
}

footer h3 {
    color: #d1001c;
    font-weight: 400;
    line-height: 43px!important;
}

.w-4.social-icons * {
    line-height: 40px;
}

p.social-links {
    margin-left: 20px;
}

p.social-links a {
    display: inline-block;
    background-color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #222;
}

button.go-top {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 2;
    background-color: #d4001c;
    width: 50px;
    height: 50px;
    font-size: 16px;
    color: #fff;
    line-height: 55px;
    margin-right: -200px;
    transition: all .2s;
    border: 1px solid rgb(0 0 0 / 29%);
}

button.go-top.active {
    margin-right: 0;
}

nav {
    transition: all .2s;
}

nav.stick {
    width: 80vw;
    left: 10vw;
    border-radius: 0px 0px 30px 30px;
    box-shadow: 0px 0px 58px -11px #000;
    background-color: rgb(20 20 20 / 84%);
    backdrop-filter: blur(11px);
}

header .ent-header img {
    width: 100vw;
    object-position: top center;
    object-fit: cover;
}

button.go-top {
    border-radius: 16px;
    line-height: 50px;
    border: 0;
    background: #fff;
    color: #222;
    box-shadow: 0px 0px 58px -11px #000;
    height: 53px;
    padding-top: 3px;
}

.ent-plans .w-4 {
    margin-bottom: 30px;
}

.video-lightbox .close-video {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #222;
    text-align: center;
    line-height: 50px;
    font-size: 34px;
}

.w-3.location.lc-invert a {
    background-color: #fff;
    display: block;
    height: 100%;
}

.w-3.location {
    border: 0;
    position: relative;
    padding: 0;
}

.w-3.location.lc-invert h5 span {
    color: #d1001c!important;
}

.w-3.location.lc-invert * {
    color: #222!important;
}

.w-3.location a {
    padding: 50px;
    height: 100%;
    display: block;
    background-color: #a20016;
    z-index: 2;
    position: relative;
    border-radius: 65px;
}

section#bora-treinar .row .row {
    align-items: stretch;
    gap: 45px;
}

.w-3.location::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: skewX(9deg) rotate(8deg);
    z-index: 1;
    border: 2px solid #0000001a;
    border-radius: 10px;
}

.w-3.location.lc-invert::after {
    background-color: #a20016;
}

.w-3.location a h5 span {
    color: #fff;
}

.w-3.location::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    top: 0;
    left: 0;
    transform: skewX(-179deg) rotate(-8deg);
    z-index: 1;
}

.w-3.location.lc-invert::after {
    background: transparent;
}

.provas-tab.active {
    display: grid;
}

.provas-tab {
    display: none;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.item-date {
    grid-column: span 1;
    margin: 0;
    padding: 0;
    background: #fff0f0;
    padding-right: 27px;
    border-radius: 20px;
    overflow: hidden;
}

.item-date img {
    border-radius: 0px 20px 20px 0px;
}

section#provas h4 {
    font-size: 24px;
}

.ent-plans .row {
    grid-template-columns: repeat(8, 1fr);
}

.card-blog img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.card-blog {
    padding: 26px;
    background-color: #f1f1f1;
}

.card-blog h4 {
    font-size: 21px!important;
    line-height: 26px!important;
    margin-bottom: 20px!important;
    text-align: left!important;
    margin-top: 10px!important;
}

.card-blog a {
    text-align: center;
    display: block;
    text-decoration: none;
    border-top: 1px solid #9999;
    font-size: 20px;
    padding-top: 15px;
    margin-top: 20px;
    color: #282828;
    font-weight: 700;
}

.faq-answer {
    display: none;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
}

section#faq {
    background-color: #141414;
    padding-top: 70px;
    padding-bottom: 70px;
}

h2.faq-title {
    color: #fff;
    font-size: 35px;
    text-align: center;
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    color: #d1001c;
}

.faq-question span {
    float: right;
    transform: rotate(
90deg);
    color: #333;
    font-size: 10px;
    line-height: 30px;
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid #dadada;
}

.faq-question span.arrow.rotate {
    transform: rotate(-90deg);
}

.faq-section h3 {
    color: #fff;
}

strong.location-titles {
    display: block;
    font-size: 16px;
}

.w-3.location h5 {
    border-bottom: 1px solid;
    margin-bottom: 22px;
}

.w-3.location h5 * {
    font-size: 19px;
}

@media (max-width: 980px) {
    .item-date {
        grid-column: span 2;
    }

    .w-3.location a {
        background-color: #fff;
        display: block;
        height: 100%;
    }

    .w-3.location {
        border: 0;
        position: relative;
        padding: 0;
    }

    .w-3.location h5 span {
        color: #d1001c!important;
    }

    .w-3.location * {
        color: #222!important;
    }

    .w-3.location a {
        padding: 50px;
        height: 100%;
        display: block;
        background-color: #a20016;
        z-index: 2;
        position: relative;
        border-radius: 65px;
    }

    .w-3.location::before, .w-3.location::after {
        display: none;
    }

    .w-3.location {
        border: 0;
        width: 100%;
    }

    .w-3.location a {
        border-radius: 20px;
        background-color: #fff;
    }

    section#bora-treinar .row .row {
        gap: 0;
        row-gap: 20px;
    }

	.ent-menu-responsivo ul {
	    display: block;
	}

    .w-3.location {
        border: 0!important;
        border-radius: 20px;
    }

	.ent-menu-responsivo {
	    margin: 0;
	    width: 100vw;
	    position: fixed;
	    left: 0;
	    top: 0;
	    background-color: #111;
	    text-align: center;
	    padding-top: 20px;
	    margin-top: -100vh;
	    transition: margin .2s;
	}

	.ent-menu-responsivo li {
	    display: block;
	}

	.ent-menu-responsivo li::after {
	    border: 0;
	    border-bottom: 1px solid #292929;
	    height: 0;
	    width: 100%;
	}

	.ent-menu-responsivo a, .ent-menu-responsivo li span, .social-menu a {
	    height: auto;
	    line-height: 47px;
	    display: inline-block;
	}

	button.close-menu, button.open-menu {
	    display: block;
	    margin: auto;
	    background-color: #fff;
	    width: 50px;
	    height: 50px;
	    border-radius: 20px;
	    padding-top: 3px;
	}

	button.close-menu i, button.open-menu i {
	    font-size: 15px!important;
	}

	.container.container-nav {
	    display: flex;
	    flex-direction: row;
	    justify-content: space-between;
	}

	.social-menu {
	    display: flex;
	    align-items: center;
	}

	.social-menu a {
	    margin: auto;
	    margin-right: 24px;
	    padding-top: 5px;
	}

	.ent-menu-responsivo.active {
	    margin: 0;
	}

	.sobre-header img {
	    left: -33vh;
	    height: 70%;
	    bottom: 0;
	    top: auto;
	}

	.content-sobre-header {
	    width: 20%;
	    margin-bottom: 150px;
	}

	h2.title-header {
	    font-size: 30px;
	    line-height: 30px;
	}

	h6.sub-title-header {
	    width: 150px;
	    padding: 0;
	    margin-left: 52%;
	}

	header::after {
	    opacity: 0;
	}

	header .ent-header img {
	    width: 100%;
	    object-fit: cover;
	}

	section#sobre>img {
	    display: none;
	}

	.logos-patrocinio {
	    display: flex;
	    flex-direction: row;
	    flex-wrap: wrap;
	    align-items: center;
	    justify-content: flex-start;
	}

	.logos-patrocinio img {
	    max-height: 54px;
	}


	.container>.row>div {
	    width: 100%;
	    grid-column: span 12;
	}

	section {
	    padding-top: 40px!important;
	    padding-bottom: 40px!important;
	}

	section#proposito h2 *, section.videos-lobo h2 span {
	    font-size: 22px;
	}

	section#proposito h2 img, section.videos-lobo h2 img {
	    height: 40px;
	    margin: 0;
	}

	section#proposito span.left-aspas {
	    top: -60px;
	}

	button.btn-carrosel-video {
	    padding: 10px;
	    font-size: 15px;
	    width: 49%;
	}

	.controle-video {
	    width: 5%;
	}

	.slick-videos-lobo {
	    width: 70%;
	}

	section#planos h2 {
	    display: flex;
	    flex-direction: row;
	    flex-wrap: wrap;
	}

	section#planos h2 img {
	    display: block;
	    margin-bottom: auto;
	    margin-top: auto;
	    margin-left: 10%;
	}

	span.nav-plans {
	    text-align: center;
	    margin: auto;
	}

	.ent-plans.run .w-4 {
	    grid-column: span 12;
	    margin-bottom: 40px;
	}

	.proposito-carrosel img {
	    width: 40%;
	    margin: 1%;
	    display: inline-block;
	}

	section#provas h2 {
	    display: flex;
	    flex-direction: row;
	    flex-wrap: wrap;
	    justify-content: center;
	}

	section#provas h2 span.nav-plans button {
	    font-size: 19px;
	    width: auto;
	    min-width: auto;
	    display: inline-block;
	}

	.item-date {
	    display: block;
	    text-align: center;
	}

	.item-date img {
	    width: 50px;
	    height: 50px;
	    min-width: 50px;
	    border-radius: 100px;
	}

	.content-date {
	    display: block;
	    text-align: center;
	    padding: 0;
	    width: 100%;
	}

	.infos-location {
	    margin: 0;
	    text-align: center;
	}

	section#provas p strong {
	    margin: 0;
	}

	section#bora-treinar h2 {
	    display: block;
	    text-align: center;
	}

	section#bora-treinar h2 img {
	    display: block;
	    margin: auto;
	}

	section#bora-treinar h2 span {
	    display: block;
	}

	section#bora-treinar h2 i, section#bora-treinar h2 i * {
	    line-height: 20px!important;
	    display: block;
	}

	.w-3.location {
	    grid-column: span 12;
	    border: 0;
	    border-top: 2px solid #b50018;
	}

	footer h3 {
	    font-size: 14px;
	}

	nav.stick {
	    width: 100%;
	    left: 0;
	    right: 0;
	}

    header::after {
        display: none;
    }

    .ent-plans.triathlon {
        display: block;
    }

    .ent-plans.triathlon>div>div {
        grid-column: span 12;
    }
}