.b-lazy,
.swiper-lazy {
    opacity:0;
    filter: grayscale(1);
    transition: all 1s ease-out!important;
}

.b-loaded,
.swiper-lazy-loaded {
    opacity:1;
    filter: none;
}
.swiper-lazy-loaded + .loader {
    display: none;
}
@keyframes swiper-preloader-spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
}
.loader .spinner {
    position: relative;
    width: 40px;

    overflow: hidden;
    border-radius: 25px;
}
.loader .spinner::after {
    position: absolute;
    content: '';
    top: -5px;
    left: -5px;

    width: 48px;
    height: 45px;

    border: 6px solid rgba(0, 0, 0, .75);
    border-radius: 25px;
}

.loader.--fade .spinner {
    opacity: 0;
}

.loader .spinner svg {
    fill: #FFF;
    animation: rotateBall 1s linear infinite;
}
.loader.--dark .path {
    stroke: #01011F;
}
@keyframes rotateBall {
    100% {
        transform: rotate(360deg);
    }
}
  
  

.b-loaded + .loader {
    opacity: 0;
    z-index: -9999;
}



:root {
    --font-Inter: "Inter", sans-serif;
    --font-Anton: "Anton", sans-serif;
    --font-AlumniSC: "Alumni Sans SC", sans-serif;
    --font-Alumni: "Alumni Sans", sans-serif;
}
body {
    font-family: var(--font-Inter);    
    background-color: #F0F0F0;
}



.fancybox__container {
    z-index: 999999!important;
}

/* Header */
header {
    position: sticky;
    top: 0;
    left: 0;

    width: 100%;
    padding: 20px 0;
    background-color: #fff;

    z-index: 99999;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] header {
    position: fixed;
    top: 0;
    left: 0px;

    width: 100%;
    padding: 20px 0;
    background-color: transparent;
}
header.scrolling {
    padding: 10px 0;
    background-color: #fff;
}
header._scrolling {
    padding: 10px 0;
}

header nav.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    height: 100%;
}
header .logo {
    display: block;
    width: auto;
    height: 70px;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header._scrolling .logo,
header.scrolling .logo {
    height: 50px;
}
header .logo img {
    display: block;
    width: auto;
    height: 100%;    

    -o-object-fit: contain;
    object-fit: contain;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header .navbar-desktop {
    display: flex;
    align-items: center;
    gap: 10px;
    
    margin: 0 0 0 auto;
    padding: 0;
    list-style: none;
}
header .navbar-desktop .nav-link {
    position: relative;
    color: #FFF;
    font-family: var(--font-Alumni);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 222.222% */
    letter-spacing: 1.62px;
    text-transform: uppercase;
    
    padding: 0 20px;
    margin: 0;
}
:not([data-page="home"]) header .navbar-desktop .nav-link,
header.scrolling .navbar-desktop .nav-link {
    color: #03162E;    
}
:not([data-page="home"]) header .navbar-desktop .nav-link.active,
header.scrolling .navbar-desktop .nav-link.active {
    color: #FF1541;
}
header .navbar-desktop .nav-link::before {
    position: absolute;
    bottom: 0;
    right: 0;

    content: '';
    display: block;

    width: 0;
    height: 4px;

    background-color: #080C78;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header .navbar-desktop .nav-item:hover .nav-link::before {
    left: 0;
    right: unset;
    width: 100%;
}
header .navbar-desktop .nav-link.active::before {
    width: 100%;
    background-color: #FF1541;
}

/* Dropdown Menu */
header .navbar-desktop .nav-item.dropdown {
    position: relative;
}

header .navbar-desktop .nav-item.dropdown .dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

header .navbar-desktop .nav-item.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    min-width: 200px;
    padding: 10px;
    margin: 0;
    background-color: #fff;
    border: none;
    border-radius: 0 10px 10px 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    
    transform: scale(.98) translateY(10px);
    pointer-events: none;
    z-index: -1000;
    opacity: 0;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header .navbar-desktop .nav-item.dropdown:hover .dropdown-menu {
    transform: scale(1) translateY(0px);
    pointer-events: all;
    z-index: 1000;
    opacity: 1;
}
header .navbar-desktop .nav-item.dropdown .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 7.5px;
    
    border-radius: 5px;
    padding: 10px;
    color: #03162E;
    font-family: var(--font-Alumni);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
}
header .navbar-desktop .nav-item.dropdown .dropdown-menu .dropdown-item .brasao img {
    width: 30px;
    height: 30px;

    -o-object-fit: contain;
    object-fit: contain;
}

header .navbar-desktop .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #F6F6F6;
    color: #FF1541;
}

header .navbar-desktop .nav-item.dropdown .dropdown-menu .dropdown-item.disabled {
    color: #6c757d;
    pointer-events: none;
    opacity: 0.6;
    filter: grayscale(1);
}
header .navbar-desktop .nav-item.dropdown .dropdown-menu .dropdown-item.disabled img {
    opacity: .4;
}
header .languages-desktop {
    display: flex;
    align-items: center;
    gap: 15px;
    
    list-style: none;
    padding: 0;
    margin: 0 0 0 auto;
    
    height: 100%;

}
header .languages-desktop .language-link {
    filter: grayscale(1) brightness(1);

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header .languages-desktop .language-link:hover {
    filter: none;
}
header .languages-desktop .language-link.active {
    filter: none;
}
header .languages-desktop .language-link img {
    display: block;    
    width: 30px;
    height: 30px;

    -o-object-fit: contain;
    object-fit: contain;

    -o-object-position: center center;
    object-position: center center;
}
header .buttons-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
    
    list-style: none;
    padding: 0;
    margin: 0;
    
    height: 100%;
}
header .buttons-desktop .botao {
    position: relative;
    display: block;
    padding: 6px 35px;
    border-radius: 4px;
    background: #04162E;
    
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 250% */
    letter-spacing: 0.4px;
    text-decoration: none;
    white-space: nowrap;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
header .buttons-desktop .botao:hover {
    background-color: #C0374B;
}

header .open-menu-mobile,
[data-mobile-status="open"] .open-menu-mobile {
    display: flex;
    align-items: center;

    width: 40px;
    height: 40px;
    margin: auto 0;

    opacity: 0;
    z-index: -1;

    cursor: pointer;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
@media (max-width: 992px) {
    header .open-menu-mobile {
        opacity: 1;
        transform: scale(1);
        z-index: 0;
    }
}



header .open-menu-mobile .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    margin: auto;
}
header .open-menu-mobile .icon svg {
    display: block;
    fill: #151515;
    width: 100%;
    height: 100%;
}
.header-mobile {
    position: fixed;
    top: 0;
    right: calc(-100% - 30px);
    
    background-color: #F0F0F0;
    
    width: 100%;
    height: 100%;
    z-index: 99999;

    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
[data-mobile-status="open"] .header-mobile {
    right: 0;
}
.header-mobile .logo-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: #fff;

    width: 100%;
    height: auto;
    padding: 10px 30px;
}
.header-mobile .logo-mobile img {
    display: block;
    width: auto;
    height: 40px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.header-mobile .languages-mobile {
    display: flex;
    align-items: center;
    gap: 15px;
    
    list-style: none;
    padding: 0;
    margin: 0 20px 0 auto;
    
    height: 100%;

}
.header-mobile .languages-mobile .language-link {
    filter: grayscale(1) brightness(1);

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.header-mobile .languages-mobile .language-link:hover {
    filter: none;
}
.header-mobile .languages-mobile .language-link.active {
    filter: none;
}
.header-mobile .languages-mobile .language-link img {
    display: block;    
    width: 30px;
    height: 30px;

    -o-object-fit: contain;
    object-fit: contain;

    -o-object-position: center center;
    object-position: center center;
}
.header-mobile .close-menu-mobile {
    display: flex;
    justify-content: center;
    align-items: center;

    width: auto;
    height: 50px;

    border-radius: 100px;
    background-color: rgba(255, 255, 255, .1);
}
.header-mobile .close-menu-mobile .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15px;
    height: 15px;

    cursor: pointer;
    margin: auto;
}
.header-mobile .close-menu-mobile .icon svg {
    display: block;
    fill: #151515;
    width: 100%;
    height: 100%;
}
.header-mobile .navbar-mobile {
    display: block;

    padding: 15px;
    margin: 0;
    list-style: none;

    /* overflow: scroll;
    overflow-x: hidden; */
    height: 100%;
}
.header-mobile .navbar-mobile li.nav-item {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border: none;
    border-radius: 10px;
}
.header-mobile .navbar-mobile li.nav-item.--disabled {
    filter: grayscale(1) brightness(1.5);
    opacity: .25;
}
.header-mobile .navbar-mobile li.nav-item:not(:last-child) {
    margin-bottom: 15px;
}
.header-mobile .navbar-mobile li.nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    
    padding: 0;
    color: #151515;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
.header-mobile .navbar-mobile li.nav-item .nav-link .brasao img {
    width: 35px;
    height: 35px;

    -o-object-fit: contain;
    object-fit: contain;
}




/* Page title */
section#page-title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    padding: 200px 0;
    background-image: url('../img/banner-sobre.webp');
    background-size: cover;
}
section#page-title h1 {
    color: #FFF;
    font-family: var(--font-Anton);
    font-size: 106.734px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%; /* 101.397px */
    letter-spacing: -0.208px;
    text-transform: uppercase;
    margin: 0;
}
@media (max-width: 1199px) {
    section#page-title h1 {
        font-size: 80px;
    }
}




/* Home > Banner */
[data-page="home"] section#banner .image {
    position: relative;
    display: block;
    width: 100%;
}
[data-page="home"] section#banner .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 53.333333333333336%;
}
[data-page="home"] section#banner .image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;
}




/* Home > Atletas */
[data-page="home"] section#atletas {
    padding: 70px 0;
    background-color: #D9D9D9;
}
[data-page="home"] section#atletas h2.section-title {
    color: #03162E;
    font-family: var(--font-Anton);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 83.333% */
    letter-spacing: -0.72px;
    text-transform: uppercase;
    margin: 0 0 35px 0;
}
[data-page="home"] section#atletas .swiperAtletas {
    /* border-radius: 20px;
    overflow: hidden; */
}
[data-page="home"] section#atletas .card-atleta {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}
[data-page="home"] section#atletas .card-atleta::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 125%;
}
[data-page="home"] section#atletas .card-atleta img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] section#atletas .card-atleta:hover img {
    transform: scale(1.05);
}




/* Home > Sobre */
[data-page="home"] section#sobre .mascote-mobile-1 {
    display: none;
}

[data-page="home"] section#sobre {
    padding: 130px 0 70px 0;
    background-color: #030F1F;
    overflow: hidden;
}
[data-page="home"] section#sobre h2.section-title {
    color: #FFF;
    font-family: var(--font-Anton);
    font-size: 117.112px;
    font-style: normal;
    font-weight: 400;
    line-height: 94%; /* 110.085px */
    letter-spacing: -0.229px;
    text-transform: uppercase;
}
[data-page="home"] section#sobre h3.section-description {
    color: #FCFCFC;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 108%; /* 54px */
    letter-spacing: -0.5px;
    margin: 0 0 170px 0;
}
[data-page="home"] section#sobre h3.section-description b {
    font-weight: 700;
}

[data-page="home"] section#sobre .content {
    padding-bottom: 100px;
}
[data-page="home"] section#sobre .content h4 {
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-family: var(--font-Anton);
    font-size: 44.727px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.447px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}
[data-page="home"] section#sobre .content p {
    width: 100%;
    max-width: 460px;

    color: #FCFCFC;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.16px;
}
[data-page="home"] section#sobre .content p b {
    font-weight: 700;
}
[data-page="home"] section#sobre .content .botao {
    display: block;
    
    width: fit-content;
    margin-top: 105px;
    
    padding: 8px 48px;
    background: #F0454D;
    border-radius: 4px;
    
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 250% */
    letter-spacing: 0.4px;
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] section#sobre .content .botao:hover {
    background-color: #080C78;
}
[data-page="home"] section#sobre .mascotes {
    position: relative;
    width: 100%;
    height: 100%;
}
[data-page="home"] section#sobre .mascotes .mascote-bcg {
    position: absolute;
    top: -150px;
    right: -50px;

    width: 500px;
    height: auto;
}
[data-page="home"] section#sobre .mascotes .mascote-americano {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 300px;
    height: auto;
}
@media (max-width: 1399px) {
    [data-page="home"] section#sobre h2.section-title {
        font-size: 92px;
    }
    [data-page="home"] section#sobre h3.section-description {
        font-size: 42px;
    }
}
@media (max-width: 1199px) {
    [data-page="home"] section#sobre h2.section-title {
        font-size: 84px;
    }
    [data-page="home"] section#sobre h3.section-description {
        font-size: 32px;
    }
}




/* Home > Clubes */
[data-page="home"] section#clubes {
    padding: 70px 0;
    background-color: #030F1F;
}
[data-page="home"] section#clubes h2.section-title {
    color: #FFF;
    font-family: var(--font-Anton);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 96%; /* 46.08px */
    letter-spacing: -1.2px;
    text-transform: uppercase;
    margin: 0 0 40px 0;
}
[data-page="home"] section#clubes .card-clube {
    display: block;
    text-decoration: none;
    padding: 30px;
    background: #1B1C37;
    border-radius: 10px;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
[data-page="home"] section#clubes a.card-clube:hover {
    background-color: #2a2b45;
}
[data-page="home"] section#clubes .card-clube .brasao {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 30px;
}
[data-page="home"] section#clubes .card-clube.--disabled .brasao {
    filter: grayscale(1) brightness(1.5);
    opacity: .25;
}
[data-page="home"] section#clubes .card-clube .brasao::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}
[data-page="home"] section#clubes .card-clube .brasao img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    -o-object-fit: contain;
    object-fit: contain;
}
[data-page="home"] section#clubes .card-clube .bandeiras {
    display: flex;
    align-items: center;
    gap: 30px;
}
[data-page="home"] section#clubes .card-clube .bandeiras .pais,
[data-page="home"] section#clubes .card-clube .bandeiras .estado {
    position: relative;
    display: block;
    width: 100%;
}
[data-page="home"] section#clubes .card-clube .bandeiras .pais::after,
[data-page="home"] section#clubes .card-clube .bandeiras .estado::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 70.4225352112676%;
}
[data-page="home"] section#clubes .card-clube .bandeiras .pais img,
[data-page="home"] section#clubes .card-clube .bandeiras .estado img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;
}




/* Home > Galeria 1 */
[data-page="home"] section#galeria-1 {
    padding: 0;
    background-color: #030F1F;
}
[data-page="home"] section#galeria-1 .swiperGaleriaHome1 {
    border-radius: 81px;
    border: 11px solid #FFF;

    background-color: #030F1F;

    margin-bottom: -150px;
}
[data-page="home"] section#galeria-1 .swiperGaleriaHome1 .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  margin-right: 20px;
}
[data-page="home"] section#galeria-1 .swiperGaleriaHome1 .swiper-pagination-bullet {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 12px;
  height: 12px;
  margin-right: 10px;
  
  border: 2px solid #E90A2A;
  background-color: #E90A2A;
  border-radius: 10px; 

  opacity: 1;
}
[data-page="home"] section#galeria-1 .swiperGaleriaHome1 .swiper-pagination-bullet-active {
  background-color: #fff;
}

[data-page="home"] section#galeria-1 .image {
    position: relative;
    display: block;
    width: 100%;
}
[data-page="home"] section#galeria-1 .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 37.37133808392716%;
}
[data-page="home"] section#galeria-1 .image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;

    border-radius: 70px;
}




/* Home > Estrutura */
[data-page="home"] section#estrutura {
    position: relative;
    padding: 340px 0 180px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%), #03162E;
    overflow: hidden;
}
[data-page="home"] section#estrutura h2.section-title {
    color: #FFF;
    font-family: var(--font-Anton);
    font-size: 31.778px;
    font-style: normal;
    font-weight: 400;
    line-height: 96%; /* 30.507px */
    letter-spacing: -0.794px;
    text-transform: uppercase;
    margin: 0 0 30px 0;
}
[data-page="home"] section#estrutura p.section-description {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.16px;
    margin: 0;
}
[data-page="home"] section#estrutura .mosaico {
    position: relative;
    display: flex;
    gap: 10px;
    margin-top: 30px;
    z-index: 1;
}
[data-page="home"] section#estrutura .mosaico .left {
    width: 50%;
}
[data-page="home"] section#estrutura .mosaico .left .image:first-child {
    margin-bottom: 10px;
}
[data-page="home"] section#estrutura .mosaico .left .image::after {
    content: '';
    display: block;
    width: 100%;
}
[data-page="home"] section#estrutura .mosaico .left .image:first-child::after {
    padding-bottom: 57.399103139013455%;
}
[data-page="home"] section#estrutura .mosaico .left .image:last-child::after {
    padding-bottom: 138.11659192825113%;
}
[data-page="home"] section#estrutura .mosaico .right {
    width: 100%;
}
[data-page="home"] section#estrutura .mosaico .image {
    position: relative;
    display: block;
    width: 100%;
    
    border-radius: 6px;    
    box-shadow: 0px 34px 75.7px 0px rgba(0, 0, 0, 0.07);
    
    overflow: hidden;
    
    z-index: 0;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] section#estrutura .mosaico .image:hover {
    transform: scale(1.02);
}
[data-page="home"] section#estrutura .mosaico .image::before {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(0deg, rgba(0, 29, 50, 0.40) 0%, rgba(0, 29, 50, 0.40) 100%);
    z-index: 1;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] section#estrutura .mosaico .image:hover::before {
    opacity: 0;
}
[data-page="home"] section#estrutura .mosaico .right .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}
[data-page="home"] section#estrutura .mosaico .image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;
    
    border-radius: 6px;
    
    filter: grayscale(1);

    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
[data-page="home"] section#estrutura .mosaico .image img.img-flip {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
[data-page="home"] section#estrutura .mosaico .image:hover img {
    filter: grayscale(0);
}
[data-page="home"] section#estrutura .mascotes {
    position: relative;
    width: 100%;
    z-index: 1;
}
[data-page="home"] section#estrutura .mascotes .mascote-americano {
    position: absolute;
    left: 50px;
    bottom: -150px;

    width: 240px;
    height: auto;
}
[data-page="home"] section#estrutura .mascotes .mascote-bcg {
    position: absolute;
    right: -225px;
    bottom: -150px;

    width: 350px;
    height: auto;
}

[data-page="home"] section#estrutura .mapa {
    position: absolute;
    display: block;
    top: -300px;
    right: 0;
    
    width: 50%;
    height: 100%;
}
[data-page="home"] section#estrutura .mapa img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}
[data-page="home"] section#estrutura .mapa .pin {
    position: absolute;
    
    display: flex;
    align-items: center;
    gap: 6px;
}
[data-page="home"] section#estrutura .mapa .pin.--disabled {
    cursor: not-allowed;
}
[data-page="home"] section#estrutura .mapa .pin.--ma {
    top: 40%;
    left: 22.5%;
}
[data-page="home"] section#estrutura .mapa .pin.--mg {
    top: 111%;
    right: 14%;
}
[data-page="home"] section#estrutura .mapa .pin.--sp {
    top: 119%;
    right: 15%;
}
[data-page="home"] section#estrutura .mapa .pin.--rj {
    top: 116%;
    right: 10%;
}
[data-page="home"] section#estrutura .mapa .pin.--es {
    top: 112%;
    right: 6%;
}
[data-page="home"] section#estrutura .mapa .pin svg {
    display: block;
    fill: #000;
    width: 20px;
    height: 20px;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] section#estrutura .mapa .pin span {
    color: rgba(255, 255, 255, 1);
    font-family: var(--font-Anton);
    font-size: 15.12px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: -2.5%;
    text-align: center;
    text-transform: uppercase;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] section#estrutura .mapa .pin:hover svg,
[data-page="home"] section#estrutura .mapa .pin:hover span {
    transform: scale(.5);
    opacity: 0;
}
[data-page="home"] section#estrutura .mapa .pin .brasao {
    position: absolute;
    display: block;
    top: -50%;
    left: 0;
    
    width: 60px;
    height: 60px;

    pointer-events: none;
    opacity: 0;    
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] section#estrutura .mapa .pin .brasao img {
    display: block;
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
    object-fit: contain;

    transform: scale(.3);

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] section#estrutura .mapa .pin:hover .brasao {
    opacity: 1;

    pointer-events: all;
    z-index: 99;
}
[data-page="home"] section#estrutura .mapa .pin:hover .brasao img {
    transform: scale(1);
}
[data-page="home"] section#estrutura .mapa .pin.--disabled:hover .brasao {
    filter: grayscale(1);
}
[data-page="home"] section#estrutura .mapa .pin .brasao .bubble {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;
    width: fit-content;

    padding: 15px 50px;
    background: rgba(8, 12, 129, 1);
    border: 2.35px solid rgba(237, 50, 55, 1);
    border-radius: 54.75px;    

    transform: scale(.95);
    filter: blur(10px);

    z-index: 0;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] section#estrutura .mapa .pin .brasao .bubble::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -200px;

    width: 200px;
    height: 1px;
    border: 1px dashed rgba(237, 50, 55, 1);

    margin: auto;

    z-index: -2;
}
[data-page="home"] section#estrutura .mapa .pin .brasao .bubble.--top::before {
    top: -75px;
    bottom: unset;
    left: 0;
    right: 0;

    width: 1px;
    height: 75px;
}
[data-page="home"] section#estrutura .mapa .pin:hover .brasao .bubble {
    left: calc(100% + 200px);
    transform: scale(1);
    filter: none;
}
[data-page="home"] section#estrutura .mapa .pin .brasao .bubble.--top {
    left: -100%;
}
[data-page="home"] section#estrutura .mapa .pin:hover .brasao .bubble.--top {
    top: calc(100% + 75px);
    left: -100%;
    transform: scale(1);
    filter: none;
}
[data-page="home"] section#estrutura .mapa .pin.--rj:hover .brasao .bubble.--top {
    left: -115%;
}
[data-page="home"] section#estrutura .mapa .pin .brasao .bubble h4 {
    color: #fff;
    font-family: var(--font-Anton);
    font-size: 22.96px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -2.5%;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}
[data-page="home"] section#estrutura .mapa .pin .brasao .bubble p {
    color: #fff;
    font-size: 15.64px;
    font-weight: 500;
    line-height: 113%;
    letter-spacing: 7%;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
}
[data-page="home"] section#estrutura .mapa .pin .brasao .bubble .spinner-border {
    color: #fff;
    height: 1rem;
    width: 1rem;
    border-width: .15em;
}
@media (max-width: 1399px) {
    [data-page="home"] section#estrutura .mapa .pin.--ma {
        top: calc(40% - 2.5%);
        left: 22.5%;
    }
    [data-page="home"] section#estrutura .mapa .pin.--mg {
        top: calc(111% - 10%);
        right: 14%;
    }
    [data-page="home"] section#estrutura .mapa .pin.--sp {
        top: calc(119% - 10%);
        right: 15%;
    }
    [data-page="home"] section#estrutura .mapa .pin.--rj {
        top: calc(116% - 10%);
        right: 10%;
    }
    [data-page="home"] section#estrutura .mapa .pin.--es {
        top: calc(112% - 10%);
        right: 6%;
    }

    [data-page="home"] section#estrutura .mapa .pin .brasao .bubble::before {
        left: -150px;
        width: 150px;
    }
    [data-page="home"] section#estrutura .mapa .pin:hover .brasao .bubble {
        left: calc(100% + 150px);
    }
}
@media (max-width: 1199px) {
    [data-page="home"] section#estrutura .mapa .pin.--ma {
        top: calc(40% - 5%);
        left: 22.5%;
    }
    [data-page="home"] section#estrutura .mapa .pin.--mg {
        top: calc(111% - 17.5%);
        transform: scale(.8);
        right: 14%;
        z-index: 4;
    }
    [data-page="home"] section#estrutura .mapa .pin.--sp {
        top: calc(119% - 22%);
        transform: scale(.8);
        right: 14%;
        z-index: 3;
    }
    [data-page="home"] section#estrutura .mapa .pin.--rj {
        top: calc(116% - 19.5%);
        transform: scale(.8);
        right: 7%;
        z-index: 2;
    }
    [data-page="home"] section#estrutura .mapa .pin.--es {
        top: calc(112% - 18.5%);
        transform: scale(.8);
        right: 5%;
        z-index: 1;
    }
    [data-page="home"] section#estrutura .mapa .pin:hover {
        z-index: 9;
    }
    [data-page="home"] section#estrutura .mapa .pin .brasao .bubble::before {
        left: -125px;
        width: 125px;
    }
    [data-page="home"] section#estrutura .mapa .pin:hover .brasao .bubble {
        left: calc(100% + 125px);
    }
    [data-page="home"] section#estrutura .mapa .pin .brasao .bubble h4 {
        font-size: 20px;
    }
    [data-page="home"] section#estrutura .mapa .pin .brasao .bubble p {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    [data-page="home"] section#estrutura .mapa .pin.--ma {
        top: 27%;
        left: 22.5%;
    }
    [data-page="home"] section#estrutura .mapa .pin.--mg {
        top: 76%;
        transform: scale(.8);
        right: 12%;
        z-index: 4;
    }
    [data-page="home"] section#estrutura .mapa .pin.--sp {
        top: 80%;
        transform: scale(.8);
        right: 14%;
        z-index: 3;
    }
    [data-page="home"] section#estrutura .mapa .pin.--rj {
        top: 78.5%;
        transform: scale(.8);
        right: 9%;
        z-index: 2;
    }
    [data-page="home"] section#estrutura .mapa .pin.--es {
        top: 77%;
        transform: scale(.8);
        right: 4%;
        z-index: 1;
    }
    [data-page="home"] section#estrutura .mapa .pin:hover {
        z-index: 9;
    }
    [data-page="home"] section#estrutura .mapa .pin .brasao .bubble::before {
        left: -125px;
        width: 125px;
    }
    [data-page="home"] section#estrutura .mapa .pin:hover .brasao .bubble {
        left: calc(100% + 125px);
    }
    [data-page="home"] section#estrutura .mapa .pin .brasao .bubble h4 {
        font-size: 20px;
    }
    [data-page="home"] section#estrutura .mapa .pin .brasao .bubble p {
        font-size: 14px;
    }
}



/* Home > Quem Somos */
[data-page="home"] section#quem-somos {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.60) 100%), #03162E;
}
[data-page="home"] section#quem-somos h2.section-title {
    color: #FFF;
    font-family: var(--font-Anton);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 96%; /* 46.08px */
    letter-spacing: -1.2px;
    text-transform: uppercase;
    margin: 0 0 70px 0;
}
[data-page="home"] section#quem-somos .equipe {
    display: flex;
    gap: 20px;
}
[data-page="home"] section#quem-somos .equipe .membro {
    display: block;
    width: 100%;
    text-decoration: none;
}
[data-page="home"] section#quem-somos .equipe .membro .image {
    position: relative;
    display: block;
    width: 100%;

    border-radius: 100px;
    overflow: hidden;

    margin-bottom: 20px;
}
[data-page="home"] section#quem-somos .equipe .membro .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}
[data-page="home"] section#quem-somos .equipe .membro .image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;
}
[data-page="home"] section#quem-somos .equipe .membro h3 {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
    text-align: center;
    margin: 0;
}




/* Home > Notícias */
[data-page="home"] section#noticias {
    padding: 70px 0;
    background: #F0F0F0;
}
[data-page="home"] section#noticias .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}
[data-page="home"] section#noticias h2.section-title {
    color: #03152D;
    font-family: var(--font-Anton);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 83.333% */
    letter-spacing: -0.72px;
    text-transform: uppercase;
    margin: 0;
}
[data-page="home"] section#noticias a.section-link {
    overflow: hidden;
    color: #03162E;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.16px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
}
[data-page="home"] section#noticias a.section-link:hover {
    color: #FF1541;
}
[data-page="home"] section#noticias .card-noticia-destaque {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 100px;
}
[data-page="home"] section#noticias .card-noticia-destaque .image {
    position: relative;
    display: block;
    width: 100%;

    border-radius: 24px;
    overflow: hidden;

    background-color: #D9D9D9;
}
[data-page="home"] section#noticias .card-noticia-destaque .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}
[data-page="home"] section#noticias .card-noticia-destaque .image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;

    border-radius: 24px;
}
[data-page="home"] section#noticias .card-noticia-destaque .content {
    width: 100%;
}
[data-page="home"] section#noticias .card-noticia-destaque .content h4.destaque {
    color: #03162E;
    font-family: var(--font-Anton);
    font-size: 28.916px;
    font-style: normal;
    font-weight: 400;
    line-height: 96%; /* 27.759px */
    letter-spacing: -0.723px;
    text-transform: uppercase;
    
    border-bottom: 1px solid #03162E;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
[data-page="home"] section#noticias .card-noticia-destaque .content h3.noticia-title {
    color: #03162E;
    font-family: var(--font-Anton);
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 97%; /* 62.08px */
    letter-spacing: var(--Static-Display-Large-Tracking, -0.25px);
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
[data-page="home"] section#noticias .card-noticia-destaque .content p.noticia-desc {
    color: #03162E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.16px;
    text-transform: capitalize;
    margin: 0 0 24px 0;
}
[data-page="home"] section#noticias .card-noticia-destaque .content .botao {
    display: block;
    
    width: fit-content;
    margin: 0;
    
    padding: 8px 75px;
    background: #080C78;
    border-radius: 4px;
    
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 250% */
    letter-spacing: 0.4px;
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] section#noticias .card-noticia-destaque .content .botao:hover {
    background-color: #F0454D;
}
[data-page="home"] section#noticias .more-news {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
[data-page="home"] section#noticias .more-news .card-noticia {
    width: calc(33.3333% - 27px);
}
[data-page="home"] section#noticias .more-news .card-noticia .image {
    position: relative;
    display: block;
    width: 100%;

    background-color: #D9D9D9;
    border-radius: 20px;

    overflow: hidden;
}
[data-page="home"] section#noticias .more-news .card-noticia .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
}
[data-page="home"] section#noticias .more-news .card-noticia .image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;
    
    border-radius: 20px;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] section#noticias .more-news .card-noticia:hover .image img {
    transform: scale(1.05);
}
[data-page="home"] section#noticias .more-news .card-noticia .content span.noticia-data {
    display: block;
    width: fit-content;
    
    color: #FF1541;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 19.2px */
    letter-spacing: -0.12px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
    overflow: hidden;
    
    cursor: help;
    
    margin: 17px 0;
}
[data-page="home"] section#noticias .more-news .card-noticia .content h3.noticia-title {
    color: #03162E;
    font-family: var(--font-Anton);
    leading-trim: both;
    text-edge: cap;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 28.8px */
    letter-spacing: -0.24px;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}
[data-page="home"] section#noticias .more-news .card-noticia .content p.noticia-desc {
    color: #03162E;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.16px;
    text-transform: capitalize;
    overflow: hidden;
    margin: 0 0 10px 0;
}
[data-page="home"] section#noticias .more-news .card-noticia .content a.noticia-link {
    color: #03162E;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.16px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
    overflow: hidden;
}
[data-page="home"] section#noticias .more-news .card-noticia .content a.noticia-link:hover {
    color: #FF1541;
}
[data-page="home"] section#noticias .botao-ver-tudo {
    display: block;
    
    width: fit-content;
    margin: 75px auto 0 auto;
    
    padding: 8px 75px;
    background: #080C78;
    border-radius: 4px;
    
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 250% */
    letter-spacing: 0.4px;
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="home"] section#noticias .botao-ver-tudo:hover {
    background-color: #F0454D;
}




/* Home > Galeria 2 */
[data-page="home"] section#galeria-2 {
    position: relative;
    padding: 200px 0 60px 0;
    background-color: #030F1F;
    z-index: 0;
}
[data-page="home"] section#galeria-2::before {
    position: absolute;
    content: '';
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;

    background-color: #F0F0F0;
}
[data-page="home"] section#galeria-2 .swiperGaleriaHome2_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    opacity: .1;

    z-index: -1;
}
[data-page="home"] section#galeria-2 .swiperGaleriaHome2_background .swiper-slide {
    overflow: hidden;
}
[data-page="home"] section#galeria-2 .swiperGaleriaHome2_background .image img {
    width: 100%;
    height: auto;
    
    -o-object-fit: cover;
    object-fit: cover;
    transform: scale(2.5) translateY(-10%);
}
[data-page="home"] section#galeria-2 .swiperGaleriaHome2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;

    border-radius: 95px;
}
[data-page="home"] section#galeria-2 .swiperGaleriaHome2 .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  margin-right: 20px;
}
[data-page="home"] section#galeria-2 .swiperGaleriaHome2 .swiper-pagination-bullet {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 12px;
  height: 12px;
  margin-right: 10px;
  
  border: 2px solid #121F30;
  background-color: #121F30;
  border-radius: 10px; 

  opacity: 1;
}
[data-page="home"] section#galeria-2 .swiperGaleriaHome2 .swiper-pagination-bullet-active {
  background-color: #FF1541;
}
[data-page="home"] section#galeria-2 .swiperGaleriaHome2 .image {
    position: relative;
    display: block;
    width: 100%;

    background-color: #121F30;
    border-radius: 95px;
}
[data-page="home"] section#galeria-2 .swiperGaleriaHome2 .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 53.33353365384615%;
}
[data-page="home"] section#galeria-2 .swiperGaleriaHome2 .image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    border-radius: 95px;

    -o-object-fit: cover;
    object-fit: cover;
}




/* Home > Nossos Clubes */
[data-page="home"] section#nossos-clubes {
    padding: 100px 0;
    background-color: #F0F0F0;
}
[data-page="home"] section#nossos-clubes h2.section-title {
    color: #FFF;
    font-family: var(--font-Anton);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 96%; /* 46.08px */
    letter-spacing: -1.2px;
    text-transform: uppercase;
    margin: 0 0 40px 0;
}
[data-page="home"] section#nossos-clubes .card-clube {
    display: block;
    padding: 30px;
    background: #1B1C37;
    border-radius: 10px;
    text-decoration: none;
}
[data-page="home"] section#nossos-clubes .card-clube .brasao {
    position: relative;
    display: block;
    width: 100%;
    max-width: 125px;
    margin: 0 auto 30px auto;
}
[data-page="home"] section#nossos-clubes .card-clube .brasao::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}
[data-page="home"] section#nossos-clubes .card-clube .brasao img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    -o-object-fit: contain;
    object-fit: contain;
}
[data-page="home"] section#nossos-clubes .card-clube.--disabled .brasao img {
    filter: grayscale(1) brightness(1.5);
    opacity: .25;
}
[data-page="home"] section#nossos-clubes .card-clube.--disabled .brasao img.b-lazy {
    opacity: 0!important;
}
[data-page="home"] section#nossos-clubes .card-clube .bandeira {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
[data-page="home"] section#nossos-clubes .card-clube .bandeira .estado {
    position: relative;
    display: block;
    width: 100%;
    max-width: 75px;
}
[data-page="home"] section#nossos-clubes .card-clube .bandeira .estado::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 70.4225352112676%;
}
[data-page="home"] section#nossos-clubes .card-clube .bandeira .estado img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
    object-fit: contain;
}




/* Sobre > Equipe */
[data-page="sobre"] section#equipe {
    margin: 100px 0;
}
[data-page="sobre"] section#equipe .membro-image {
    position: relative;
    display: block;
    width: 100%;
}
[data-page="sobre"] section#equipe .membro-image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}
[data-page="sobre"] section#equipe .membro-image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    border-radius: 24px;
    
    -o-object-fit: cover;
    object-fit: cover;
}
[data-page="sobre"] section#equipe .membro {
    margin-top: auto;
}
[data-page="sobre"] section#equipe .membro .cargo {
    display: block;
    width: 100%;
    color: #03162E;
    font-family: var(--font-Anton);
    font-size: 28.916px;
    font-style: normal;
    font-weight: 400;
    line-height: 96%; /* 27.759px */
    letter-spacing: -0.723px;
    text-transform: uppercase;
    padding-bottom: 12px;
    margin: 0 0 12px 0;
    
    border-bottom: 1px solid #03162E;
}
[data-page="sobre"] section#equipe .membro .nome {
    color: #03162E;
    font-family: var(--font-Anton);
    font-size: 62px;
    font-style: normal;
    font-weight: 400;
    line-height: 97%; /* 62.08px */
    letter-spacing: -1.25px;
    text-transform: uppercase;
    margin: 0;
}
[data-page="sobre"] section#equipe .membro .descricao p {
    display: block;
    max-width: 502px;
    
    color: #03162E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.16px;
    margin: 35px 0;
}
[data-page="sobre"] section#equipe .membro .descricao .lermais {
    display: block;
    width: fit-content;
    
    padding: 8px 82px;
    background: #000AFF;
    border-radius: 4px;
    
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 250% */
    letter-spacing: 0.4px;
    text-decoration: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="sobre"] section#equipe .membro .descricao .lermais:hover {
    background-color: #FF1541;
}

[data-page="sobre"] section#equipe .list-membros {
    display: flex;
    gap: 20px;
    
    margin: 90px 0 0 0;
    padding: 0;
    list-style: none;
}
[data-page="sobre"] section#equipe .list-membros .item-membro {
    width: 100%;
    cursor: pointer;
}
[data-page="sobre"] section#equipe .list-membros .item-membro .image {
    position: relative;
    display: block;
    width: 100%;
    
    border-radius: 100px;
    overflow: hidden;
    
    margin: 0 0 15px 0;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="sobre"] section#equipe .list-membros .item-membro.active .image,
[data-page="sobre"] section#equipe .list-membros .item-membro:hover .image {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
[data-page="sobre"] section#equipe .list-membros .item-membro .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}
[data-page="sobre"] section#equipe .list-membros .item-membro .image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="sobre"] section#equipe .list-membros .item-membro.active .image img,
[data-page="sobre"] section#equipe .list-membros .item-membro:hover .image img {
    transform: scale(1.15);
}
[data-page="sobre"] section#equipe .list-membros .item-membro h3 {
    color: #0B1D46;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 40px; /* 250% */
    letter-spacing: -0.4px;
    text-align: center;
    margin: 0;
}




/* Sobre > Nossos Clubes */
[data-page="sobre"] section#nossos-clubes {
    margin: 100px 0;
    background-color: #F0F0F0;
}
[data-page="sobre"] section#nossos-clubes h2.section-title {
    color: #FFF;
    font-family: var(--font-Anton);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 96%; /* 46.08px */
    letter-spacing: -1.2px;
    text-transform: uppercase;
    margin: 0 0 40px 0;
}
[data-page="sobre"] section#nossos-clubes .card-clube {
    display: block;
    text-decoration: none;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    
        -webkit-transition: all .15s ease-in-out;
        -moz-transition: all .15s ease-in-out;
        -ms-transition: all .15s ease-in-out;
        -o-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
}
[data-page="sobre"] section#nossos-clubes a.card-clube:hover {
    background-color: #e1e5e8;
}
[data-page="sobre"] section#nossos-clubes .card-clube .brasao {
    position: relative;
    display: block;
    width: 100%;
    max-width: 125px;
    margin: 0 auto 30px auto;
}
[data-page="sobre"] section#nossos-clubes .card-clube .brasao::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}
[data-page="sobre"] section#nossos-clubes .card-clube .brasao img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    -o-object-fit: contain;
    object-fit: contain;
}
[data-page="sobre"] section#nossos-clubes .card-clube.--disabled .brasao img {
    opacity: .25;
    filter: grayscale(.5);
}
[data-page="sobre"] section#nossos-clubes .card-clube .bandeira {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
[data-page="sobre"] section#nossos-clubes .card-clube .bandeira .pais,
[data-page="sobre"] section#nossos-clubes .card-clube .bandeira .estado {
    position: relative;
    display: block;
    width: 100%;
    max-width: 75px;
}
[data-page="sobre"] section#nossos-clubes .card-clube .bandeira .pais::after,
[data-page="sobre"] section#nossos-clubes .card-clube .bandeira .estado::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 70.4225352112676%;
}
[data-page="sobre"] section#nossos-clubes .card-clube .bandeira .pais img,
[data-page="sobre"] section#nossos-clubes .card-clube .bandeira .estado img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
    object-fit: contain;
}




/* Listagem > Page Title */
[data-page="listagem"] section#page-title h1 {
    line-height: 100%; /* 101.397px */
    letter-spacing: -0.208px;
    text-align: center;
}




/* Listagem > Menu */
[data-page="listagem"] ul#menu-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    
    margin: 0 0 40px 0;
    padding: 0;
    list-style: none;
}
[data-page="listagem"] ul#menu-filter li {
    color: #0B1D46;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 31.5px; /* 150% */

    cursor: pointer;

    border-bottom: 3px solid transparent;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="listagem"] ul#menu-filter li:not(.active):hover {
    color: #0B1D46;
    border-color: #0B1D46;
}
[data-page="listagem"] ul#menu-filter li.active {
    color: #F8143F;
    border-color: #F8143F;
}




/* Listagem > Atletas */
[data-page="listagem"] section#atletas {
    padding: 40px 0 80px 0;
    background-color: #D9D9D9;
}
[data-page="listagem"] section#atletas .list-atletas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    row-gap: 100px;

    
    margin: 0;
    padding: 0;
    list-style: none;
}
[data-page="listagem"] section#atletas .list-atletas .card-atleta {
    display: block;
    text-decoration: none;
    border-radius: 20px;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="listagem"] section#atletas .list-atletas .card-atleta .image {
    position: relative;
    display: block;
    width: 100%;

    border-radius: 20px;
    overflow: hidden;

    background-color: #F0F0F0;

    margin: 0 0 48px 0;
}
[data-page="listagem"] section#atletas .list-atletas .card-atleta .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 125%;
}
[data-page="listagem"] section#atletas .list-atletas .card-atleta .image img {
    position: absolute;
    top: 0;
    left: 0;
    
    display: block;
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="listagem"] section#atletas .list-atletas .card-atleta:hover .image img {
    transform: scale(1.05);

}
[data-page="listagem"] section#atletas .list-atletas .card-atleta .content h2 {
    color: #03162E;
    font-family: var(--font-Anton);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 96%; /* 30.72px */
    letter-spacing: -0.8px;
    margin: 0;
}
[data-page="listagem"] section#atletas .list-atletas .card-atleta .content p {
    color: #03162E;
    font-family: var(--font-Inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 200% */
    letter-spacing: -0.5px;
    margin: 0;
}




/* Atleta > Dados */
[data-page="atleta"] section#atleta {
    padding: 80px 0;
}
[data-page="atleta"] section#atleta .image {
    position: relative;
    display: block;
    width: 100%;

    border-radius: 20px;
    overflow: hidden;
}
[data-page="atleta"] section#atleta .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 125%;
}
[data-page="atleta"] section#atleta .image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;
}
[data-page="atleta"] section#atleta .content .list-dados {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 78px;
    row-gap: 30px;

    width: 400px;
    margin: 0 auto 50px auto;

    
    padding: 0;
    list-style: none;
}
[data-page="atleta"] section#atleta .content .list-dados li {
    width: fit-content;
}
[data-page="atleta"] section#atleta .content .list-dados li p {
    color: #03162E;
    font-family: var(--font-Anton);
    font-size: 25.432px;
    font-style: normal;
    font-weight: 400;
    line-height: 96%; /* 24.414px */
    letter-spacing: -0.636px;
    white-space: nowrap;
    margin: 0;
}
[data-page="atleta"] section#atleta .content .list-dados li span {
    color: #FB1540;
    font-family: var(--font-Inter);
    font-size: 15.895px;
    font-style: normal;
    font-weight: 500;
    line-height: 31.789px; /* 200% */
    letter-spacing: -0.397px;
    white-space: nowrap;
    margin: 0;
}




/* Atleta > Campo */
[data-page="atleta"] section#atleta .content .campo {
    position: relative;
    width: 400px;
    margin: 0 auto;
}
[data-page="atleta"] section#atleta .content .campo img {
    width: 100%;
    height: auto;
}

[data-page="atleta"] section#atleta .content .campo .posicao {
    position: absolute;
    width: 20px;
    height: 20px;
}
[data-page="atleta"] section#atleta .content .campo .posicao.goleiro {
    top: 83%;
    left: 47%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.zagueiro {
    top: 60%;
    left: 47%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.libero {
    top: 50%;
    left: 47%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.zagueiro-d {
    top: 64%;
    left: 68%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.zagueiro-e {
    top: 64%;
    left: 27%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.volante {
    top: 50%;
    left: 47%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.meia-c {
    top: 33.5%;
    left: 47%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.lateral-e {
    top: 63%;
    left: 10%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.lateral-d {
    top: 63%;
    left: 84%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.armador {
    top: 27%;
    left: 47%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.meio-o {
    top: 16.5%;
    left: 47%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.meio-d {
    top: 30.5%;
    left: 80%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.meio-d-o {
    top: 14.5%;
    left: 78%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.ala-d {
    top: 3%;
    left: 76%;
}

[data-page="atleta"] section#atleta .content .campo .posicao.meio-e {
    top: 30.5%;
    left: 15%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.meio-e-o {
    top: 14.5%;
    left: 17%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.ala-e {
    top: 3%;
    left: 19%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.atacante {
    top: 8%;
    left: 47%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.centroavante {
    top: 1%;
    left: 47%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.atacante-e {
    top: 11%;
    left: 31%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.atacante-d {
    top: 11%;
    left: 64%;
}
[data-page="atleta"] section#atleta .content .campo .posicao.principal {
    width: 30px;
    margin-left: -7.5px;
}




/* Atleta > Tabela */
[data-page="atleta"] section#tabela {
    padding: 45px 0;
    background-color: #fff;
}

[data-page="atleta"] section#tabela .nav-tabs {
    justify-content: center;
    gap: 50px;
    border: none;

    margin: 0 0 30px 0;
}
[data-page="atleta"] section#tabela .nav-tabs .nav-link {
    background-color: none;
    border: none;
    padding: 0;
}
[data-page="atleta"] section#tabela .nav-tabs .nav-link {
    color: #737373;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 31.5px; /* 150% */

    cursor: pointer;

    border: none;
    box-shadow: none;
    outline: none;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="atleta"] section#tabela .nav-tabs .nav-link:not(.active):hover {
    color: #1B1C24;
}
[data-page="atleta"] section#tabela .nav-tabs .nav-link.active {
    color: #1B1C24;
    background-color: transparent;
}


[data-page="atleta"] section#tabela table {    
    border-radius: 10px;
    overflow: hidden;
}
[data-page="atleta"] section#tabela table thead th{
    background-color: #FB1540;
    padding: .75rem 1rem;
    
    color: #FFF;
    border: none;
    text-transform: uppercase;
    font-size: var(--font-Anton);
    font-weight: 500;
}

[data-page="atleta"] section#tabela table tbody tr{
    background-color: #f3f0f0;
    border: none!important;
}
[data-page="atleta"] section#tabela table tbody tr:nth-of-type(odd){
    background-color: #f9f9f9;
}
[data-page="atleta"] section#tabela table tbody td{
    padding: .75rem 1rem;
    color: #2e2e2e;
    font-size: var(--font-Anton);
    font-size: 14px;
    font-weight: 400;

    border: none;
    box-shadow: none;
}




/* Atleta > Galeria */
[data-page="atleta"] section#galeria {
    padding: 0 0 45px 0;
    background-color: #fff;
}
[data-page="atleta"] section#galeria .image {
    position: relative;
    display: block;
    width: 100%;
}
[data-page="atleta"] section#galeria .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 125%;
}
[data-page="atleta"] section#galeria .image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    -o-object-fit: cover;
    object-fit: cover;
}
[data-page="atleta"] section#galeria .swiper-pagination {
    position: initial;
    margin-top: 20px;
}
[data-page="atleta"] section#galeria .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    
    opacity: 1;
    background-color: #E90A2A;
    border: 2px solid #E90A2A;
    border-radius: 10px;
}
[data-page="atleta"] section#galeria .swiper-pagination-bullet-active {
    background-color: #fff;
    border-color:  #E90A2A;
}




/* Clube > Page Title */
[data-page="clube"] section#page-title {
    position: relative;
    background: #020A13;
    z-index: 0;
}
[data-page="clube"] section#page-title::before {
    content: '';
    display: block;

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(90deg, rgba(3, 22, 46, 0.40) 8.94%, rgba(1, 12, 26, 0.40) 65.14%), linear-gradient(90deg, rgba(1, 12, 26, 0.40) 8.94%, rgba(3, 22, 46, 0.40) 65.14%);

    z-index: -1;
}
[data-page="clube"] section#page-title img.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;

    -o-object-position: center;
    object-position: center;

    filter: grayscale(1);
    opacity: .5;

    pointer-events: none;

    z-index: -2;
}
[data-page="clube"] section#page-title .logo-clube {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
}
[data-page="clube"] section#page-title .logo-clube img {
    width: auto;
    height: 300px;
}




/* Clube > Content */
[data-page="clube"] section#content {
    padding: 260px 0 80px 0;
    background-color: #020A13;
}
[data-page="clube"] section#content p {
    color: #FFF;
    font-family: var(--font-Inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 32.164px;
    margin: 0 0 50px 0;
}
[data-page="clube"] section#content p b {
    font-weight: 600;
}
[data-page="clube"] section#content h5 {
    color: #FFF;
    font-family: var(--font-Inter);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32.164px; /* 178.688% */
    margin: 0 0 50px 0;
}
[data-page="clube"] section#content h4 {
    color: #FFF;
    font-family: var(--font-Inter);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 32.164px; /* 123.707% */
    margin: 0 0 50px 0;
}
[data-page="clube"] section#content ul li {
    color: #FFF;
    font-family: var(--font-Inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 32.164px; /* 201.024% */
}
[data-page="clube"] section#content ul li a {
    color: #fff;
}
[data-page="clube"] section#content ul li a:hover {
    color: #C0374B;
}



[data-page="clube"] section#content .imagem-principal {
    position: relative;
    padding: 30px 115px 25px 115px;
    border-bottom: 2.485px solid #FFF;
    margin-bottom: 80px;
}
[data-page="clube"] section#content .imagem-principal img {
    width: 100%;
    height: auto;
}
[data-page="clube"] section#content .imagem-principal span {
    display: block;
    
    color: #FFF;
    font-family: var(--font-Inter);
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    line-height: 32.164px; /* 201.024% */
    margin: 30px 0 0 0;
}
[data-page="clube"] section#content .imagem {
    position: relative;
    margin-bottom: 30px;
}
[data-page="clube"] section#content .imagem img {
    width: 100%;
    height: auto;
}
[data-page="clube"] section#content .galeria {
    position: relative;
    max-width: calc(100% - 100px);
    margin: 0 0 100px 0;
}
[data-page="clube"] section#content .galeria .swiperGaleria-nav-prev,
[data-page="clube"] section#content .galeria .swiperGaleria-nav-next {
    position: absolute;
    top: 0;
    bottom: 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 40px;
    height: 40px;

    border-radius: 100px;
    margin: auto;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="clube"] section#content .galeria .swiperGaleria-nav-prev:not(.swiper-button-disabled):hover {
    transform: translateX(-5px) scale(.95);
}
[data-page="clube"] section#content .galeria .swiperGaleria-nav-next:not(.swiper-button-disabled):hover {
    transform: translateX(5px) scale(.95);
}
[data-page="clube"] section#content .galeria .swiperGaleria-nav-prev {
    left: calc(-40px - 3.333% );
}
[data-page="clube"] section#content .galeria .swiperGaleria-nav-next {
    right: calc(-40px - 3.333% );
}
[data-page="clube"] section#content .swiperGaleria-nav-prev svg,
[data-page="clube"] section#content .swiperGaleria-nav-next svg {
    display: block;
    fill: #fff;
    width: 100%;
    height: 100%;
}
[data-page="clube"] section#content .galeria .swiper-button-disabled {
    opacity: .15;
}
[data-page="clube"] section#content .galeria .swiperGaleria {
    border-radius: 12.424px;
    overflow: hidden;
}
[data-page="clube"] section#content .galeria .swiperGaleria .swiper-slide{
    padding: 35px;
    background: #F6F6F6;
    border-radius: 12.424px;
}
[data-page="clube"] section#content .galeria .swiperGaleria .image {
    position: relative;
    display: block;
    width: 100%;

    cursor: zoom-in;

    box-shadow: none;
    outline: none;
}
[data-page="clube"] section#content .galeria .swiperGaleria .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 66.66666666666666%;
}
[data-page="clube"] section#content .galeria .swiperGaleria .image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    width: fit-content;
    height: 100%;
    
    -o-object-fit: contain;
    object-fit: contain;
    
    border-radius: 3.727px;
    margin: 0 auto;
}




/* Listagem Noticias > Noticia */
[data-page="noticias"] #noticias {
    padding: 80px 0;
}
[data-page="noticias"] #noticias .list-noticias {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    
    width: 100%;
}
[data-page="noticias"] #noticias .list-noticias .item-noticia {
    display: block;
    width: 100%;
    
    padding-bottom: 10px;
    text-decoration: none;
    border-radius: 20px;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
[data-page="noticias"] #noticias .list-noticias .item-noticia:hover {
    background-color: #fff;
}
[data-page="noticias"] #noticias .list-noticias .item-noticia article {
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
[data-page="noticias"] #noticias .list-noticias .item-noticia:hover article {
    transform: scale(.925);
}
[data-page="noticias"] #noticias .list-noticias .item-noticia .image {
    position: relative;
    display: block;
    width: 100%;

    background-color: #f9f9f9;
    border-radius: 20px;
    margin: 0 0 15px 0;
}
[data-page="noticias"] #noticias .list-noticias .item-noticia .image::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
}
[data-page="noticias"] #noticias .list-noticias .item-noticia .image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    border-radius: 20px;
    
    -o-object-fit: cover;
    object-fit: cover;
}
[data-page="noticias"] #noticias .list-noticias .item-noticia .content span.date {
    display: block;
    
    overflow: hidden;
    color: #FF1541;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-Inter);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 19.2px */
    letter-spacing: -0.12px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
    margin: 0 0 15px 0;
}
[data-page="noticias"] #noticias .list-noticias .item-noticia .content h2.title {
    color: #03162E;
    leading-trim: both;
    text-edge: cap;
    font-family: var(--font-Anton);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 28.8px */
    letter-spacing: -0.24px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}
[data-page="noticias"] #noticias .list-noticias .item-noticia .content p.desc {
    overflow: hidden;
    color: #03162E;
    text-overflow: ellipsis;
    font-family: var(--font-Inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.16px;
    text-transform: capitalize;
    margin: 0 0 15px 0;
}
[data-page="noticias"] #noticias .list-noticias .item-noticia .content span.read-more {
    overflow: hidden;
    color: #03162E;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-Inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
    margin: 0;
}
[data-page="noticias"] #noticias .list-noticias .item-noticia:hover .content span.read-more {
    color: #C80A0A;
}




/* Noticias > Menu Lateral */
[data-page="noticias"] #noticias .menu-lateral {
    position: sticky;
    top: 100px;
    padding-left: 50px;
}
[data-page="noticias"] #noticias .menu-lateral .menu-content {
    padding: 15px;
    background: #fff;
    border-radius: 10px;
}
[data-page="noticias"] #noticias .menu-lateral .menu-content:not(:last-child) {
    margin-bottom: 30px;
}
[data-page="noticias"] #noticias .menu-lateral .menu-header h2 {
    color: #0A253B;
    font-family: var(--font-Anton);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21.6px; /* 120% */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}
[data-page="noticias"] #noticias .menu-lateral .menu-body .input-group {
    position: relative;
}
[data-page="noticias"] #noticias .menu-lateral .menu-body input {
    padding: 20px 15px;
    background: #F0F0F0;
    border: 1px solid transparent;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    
    color: #0A253B;
    font-family: var(--font-Inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.5px;
    margin: 0;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
[data-page="noticias"] #noticias .menu-lateral .menu-body input:hover {
    border-color: #DEE2E6;
}
[data-page="noticias"] #noticias .menu-lateral .menu-body input:focus {
    border-color: #020A13;
    box-shadow: 0 0 0 1px #020A13;

    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .24));
}
[data-page="noticias"] #noticias .menu-lateral .menu-body input:not(:placeholder-shown) {
    border-color: #020A13;
    box-shadow: 0 0 0 1px #020A13;
}
[data-page="noticias"] #noticias .menu-lateral .menu-body .btn-search {
    position: absolute;
    display: block;
    top: 10px;
    right: 10px;
    
    width: auto;
    height: calc(100% - 20px);
    
    
    padding: 7.5px;
    
    background-color: transparent;
    border: none;
    border-radius: 7.5px;
    outline: none;
    
    z-index: 4;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
[data-page="noticias"] #noticias .menu-lateral .menu-body .btn-search:hover {
    background-color: #04162E;
    padding: 10px;
}
[data-page="noticias"] #noticias .menu-lateral .menu-body .btn-search svg {
    display: block;
    fill: none;
    stroke: #0A253B;
    width: auto;
    height: 100%;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
[data-page="noticias"] #noticias .menu-lateral .menu-body .btn-search:hover svg {
    stroke: #fff;
}

[data-page="noticias"] #noticias .menu-lateral .menu-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    
}
[data-page="noticias"] #noticias .menu-lateral .menu-body ul li {
    cursor: pointer;
    padding: 5px 0;
}
[data-page="noticias"] #noticias .menu-lateral .menu-body ul li span {
    display: block;
    width: fit-content;

    color: #0A253B;
    font-family: var(--font-Inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 1.5px;
    margin: 0;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
[data-page="noticias"] #noticias .menu-lateral .menu-body ul li:hover span, [data-page="noticias"] #noticias .menu-lateral .menu-body ul li.active span {
    font-weight: 600;
    transform: translateX(10px);
}
[data-page="noticias"] #noticias .menu-lateral .menu-body ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #0A253B;
    font-family: var(--font-Inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.5px;
    opacity: 1;
}
[data-page="noticias"] #noticias .menu-lateral .menu-body ::-moz-placeholder { /* Firefox 19+ */
    color: #0A253B;
    font-family: var(--font-Inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.5px;
    opacity: 1;
}
[data-page="noticias"] #noticias .menu-lateral .menu-body :-ms-input-placeholder { /* IE 10+ */
    color: #0A253B;
    font-family: var(--font-Inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.5px;
    opacity: 1;
}
[data-page="noticias"] #noticias .menu-lateral .menu-body :-moz-placeholder { /* Firefox 18- */
    color: #0A253B;
    font-family: var(--font-Inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.5px;
    opacity: 1;
}




/* Noticia > Page Title */
[data-page="noticia"] #page-title h1 {
    max-width: 907px;
    
    color: #FFF;
    font-size: 68px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.208px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
}




/* Noticias > Article */
[data-page="noticia"] .post-article {
    margin: 80px auto;
}
[data-page="noticia"] .post-article .post-header {
    margin: 0 0 40px 0;
}
[data-page="noticia"] .post-article .post-header .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
[data-page="noticia"] .post-article .post-header .post-meta .author-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    
    color: #333;
    font-family: var(--font-Inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25.888px; /* 161.8% */
}
[data-page="noticia"] .post-article .post-header .post-meta .author-info b {
    font-weight: 600;
}
[data-page="noticia"] .post-article .post-header .post-meta .author-info .author-avatar {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
}
[data-page="noticia"] .post-article .post-header .post-meta .author-info .author-avatar img {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;

}
[data-page="noticia"] .post-article .post-header .post-meta .publish-date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
[data-page="noticia"] .post-article .post-header .post-meta .publish-date svg {
    display: block;
    fill: #333333;
    width: 17px;
    height: 17px;
}
[data-page="noticia"] .post-article .post-header .post-meta .publish-date time {
    color: #333;
    font-family: var(--font-Inter);
    font-size: 16.096px;
    font-style: normal;
    font-weight: 300;
    line-height: 26.043px;
    letter-spacing: -0.322px;
}
[data-page="noticia"] .post-article .post-header .post-meta .publish-date time b {
    font-weight: 600;
}

[data-page="noticia"] .post-article .post-content p {
    display: block;
    
    color: #333;
    font-family: var(--font-Inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25.888px; /* 161.8% */
    margin: 0;
}
[data-page="noticia"] .post-article .post-content p b,
[data-page="noticia"] .post-article .post-content p strong {
    font-weight: 600;
}
[data-page="noticia"] .post-article .post-content img {
    display: block;
    width: 100%!important;
    height: auto!important;
}
[data-page="noticia"] .post-article .post-content .post-figure {
    position: relative;
    display: block;
    width: 100%;

    border-radius: 30px;
    overflow: hidden;
}
[data-page="noticia"] .post-article .post-content .post-figure::after {
    display: block;
    content: '';
    
    width: 100%;
    padding-bottom: 65.13454545454546%;
}
[data-page="noticia"] .post-article .post-content .post-figure img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;

    border-radius: 30px;

    width: 100%;
    height: 100%;

    -o-object-fit: cover;
    object-fit: cover;
}





/* Fale Conosco */
[data-page="sobre"] section#fale-conosco {
    border-top: 1px solid #BDBDBD;
}
section#fale-conosco {
    padding: 60px 0;
    background-color: #F0F0F0;
}
section#fale-conosco h2.section-title {
    color: #03162E;
    font-family: var(--font-Anton);
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 96%; /* 61.44px */
    letter-spacing: -1.6px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 50px 0;
}
section#fale-conosco form {
    position: relative;
}
section#fale-conosco form .input-form {
    margin: 0 0 20px 0;
}
section#fale-conosco form .input-form label,
section#fale-conosco form .textarea-form label {
    display: block;
    width: 100%;
    
    color: #2E2E2E;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.16px;
    margin: 0;
}
section#fale-conosco form .input-form input,
section#fale-conosco form .textarea-form textarea {
    display: block;
    width: 100%;
    height: 48px;
    
    padding: 0 16px;
    background: #FFF;
    border-radius: 8px;
    border: 1px solid #DEE2E6;
    
    outline: none;
    box-shadow: none;
    
    color: #020A13;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
    letter-spacing: -0.07px;
    
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
section#fale-conosco form .textarea-form textarea {
    padding: 13px 16px;
    min-height: 128px;
}
section#fale-conosco form .input-form input:hover,
section#fale-conosco form .textarea-form textarea:hover {
    border-color: #020A13;
}
section#fale-conosco form .input-form input:focus,
section#fale-conosco form .textarea-form textarea:focus {
    border-color: #020A13;
    box-shadow: 0 0 0 1px #020A13;

    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .24));
}
section#fale-conosco form .input-form input:not(:placeholder-shown),
section#fale-conosco form .textarea-form textarea:not(:placeholder-shown) {
    border-color: #020A13;
    box-shadow: 0 0 0 1px #020A13;
}
section#fale-conosco ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #777;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.07px;
}
section#fale-conosco ::-moz-placeholder { /* Firefox 19+ */
    color: #777;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.07px;
}
section#fale-conosco :-ms-input-placeholder { /* IE 10+ */
    color: #777;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.07px;
}
section#fale-conosco :-moz-placeholder { /* Firefox 18- */
    color: #777;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.07px;
}

section#fale-conosco button {
    display: block;
    
    width: fit-content;
    margin: 40px 0 0 0;
    
    padding: 8px 75px;
    background: #020A13;
    border: none;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 250% */
    letter-spacing: 0.4px;
    text-decoration: none;
    text-transform: uppercase;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}
section#fale-conosco button:hover {
    background-color: #F0454D;
}
section#fale-conosco .mascote-americano {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -400px;

    width: 300px;
    height: auto;

    margin: auto;
}

section#fale-conosco .mascote-bcg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -400px;

    width: 400px;
    height: auto;

    margin: auto;
}






/* Footer */
footer {
    padding: 40px 0;
    background-color: #F0F0F0;
}
footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 0;
}
footer .footer-menu {
    width: fit-content;
}
footer .footer-menu .logo {
    width: 100%;
    max-width: 130px;
    height: auto;
    margin: 0 0 50px 0;
}
footer .footer-menu .logo img {
    display: block;
    width: 100%;
    height: auto;
    
    -o-object-fit: contain;
    object-fit: contain;
}
footer .footer-menu .item-email {
    display: flex;
    align-items: center;
    gap: 10px;
}
footer .footer-menu .item-email .icon svg {
    display: block;
    width: 30px;
    height: 25px;
}
footer .footer-menu .item-email a {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 16.8px */
    letter-spacing: -0.24px;
    text-decoration: none;
    margin: 0;
}
footer .footer-menu .item-email a:hover {
    color: #E90A2A;
}
footer .footer-menu h2 {
    color: #000;
    font-family: var(--font-Alumni);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    letter-spacing: -0.36px;
    text-transform: uppercase;
    margin: 0 0 12px 0;
}
footer .footer-menu .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer .footer-menu .footer-links li a,
footer .footer-menu .footer-links li span {
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 16.8px */
    letter-spacing: -0.24px;
    text-decoration: none;
    margin: 0 0 10px 0;
}
footer .footer-menu .footer-links li a:hover {
    color: #E90A2A;
}
footer .footer-menu .footer-links li.--disabled span {
    opacity: .25;
}
footer .footer-menu .link-youtube {
    display: block;
    
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.24px;
    text-decoration: none;
    margin: 0;
}
footer .footer-menu .link-youtube:hover {
    color: #C80A0A;
}
footer .footer-menu .link-youtube .icon {
    margin: 0 0 10px 0;
}
footer .footer-menu .link-youtube .icon svg {
    display: block;
    width: 40px;
    height: 40px;
}
footer .footer-menu .link-youtube b {
    display: block;
    font-weight: 900;
}
footer .footer-menu .menu-content {
    width: fit-content;
    margin-left: auto;
}

footer ~ .base-footer {
    padding: 15px 0;
    background-color: #080C78;
}
footer ~ .base-footer .base-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
    margin: 0;
    padding: 0;
    list-style: none;
}
footer ~ .base-footer .base-list li {
    width: 33.33333%;
}
footer ~ .base-footer p {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 200% */
    margin: 0;
}
footer ~ .base-footer p.wtek {
    text-align: end;
}
footer ~ .base-footer p.wtek a {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 200% */
    text-decoration: none;    
}
footer ~ .base-footer p.wtek a:hover {
    color: #efb62c;
    text-decoration: underline;
}








/* Responsivo Desktop Mid */
/* @media (max-width: 1399px) {
    .botao {
        padding: 0 20px;
    }
} */




/* Responsivo Mobile */
@media (max-width: 991px) {
    header {
        width: 100%;
        left: 0;
        padding: 15px 0;
        border-radius: 0;
    }
    [data-page="home"] header {
        padding: 15px 0;

    }
    [data-page="home"] header._scrolling {
        background-color: #fff;
        transform: translateY(-100%);
    }
    header.scrolling {
        padding: 15px 0;
    }
    header nav.nav-header {
        justify-content: space-between;
        gap: 0;
    }
    header .logo {
        display: block;
        margin: 0;
        height: 50px;
        margin-right: auto;
    }
    header .buttons-desktop .nav-cart span {
        display: none;
    }




    /* Home > Banner */
    [data-page="home"] section#banner .image::after {
        padding-bottom: 100%;
    }




    /* Home > Atletas */
    [data-page="home"] section#atletas h2.section-title {
        font-size: 32px;
    }




    /* Home > Sobre */
    [data-page="home"] section#sobre h2.section-title {
        font-size: 52px;
        text-align: center;
    }
    [data-page="home"] section#sobre h3.section-description {
        font-size: 16px;
        text-align: center;
        margin: 0 0 50px 0;
    }
    [data-page="home"] section#sobre .mascote-mobile-1 {
        display: flex;
        justify-content: center;
    }
    [data-page="home"] section#sobre .mascote-mobile-1 img {
        width: 100%;
    }

    [data-page="home"] section#sobre .content h4 {
        font-size: 32px;
        text-align: center;
    }
    [data-page="home"] section#sobre .content p {
        text-align: center;
        margin: 0 auto;
    }
    [data-page="home"] section#sobre .content .botao {
        margin: 30px auto 0;
    }

    [data-page="home"] section#sobre .mascotes {
        display: flex;
        justify-content: center;
    }
    [data-page="home"] section#sobre .mascotes .mascote-bcg {
        display: none;
    }
    [data-page="home"] section#sobre .mascotes .mascote-americano {
        position: initial;
        width: 100%;
        max-width: 300px;
    }




    /* Home > Clubes */
    [data-page="home"] section#clubes h2.section-title {
        font-size: 32px;
    }




    /* Home > Galeria 1 */
    [data-page="home"] section#galeria-1 {
        position: relative;
        z-index: 1;
    }
    [data-page="home"] section#galeria-1::before {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;

        background-color: #03162E;

        z-index: -1;
    }
    [data-page="home"] section#galeria-1 .swiperGaleriaHome1 {
        margin-bottom: 0;
        border-radius: 30px;
    }
    [data-page="home"] section#galeria-1 .image img {
        border-radius: 20px;
    }




    /* Home > Estrutura */
    [data-page="home"] section#estrutura {
        padding: 50px 0;
        overflow: hidden;
    }
    [data-page="home"] section#estrutura .mapa {
        position: relative;
        top: unset;
        width: 100%;
        margin-top: -80px;
    }
    [data-page="home"] section#estrutura .mapa img {
        position: initial;
        width: 100%;
    }
    [data-page="home"] section#estrutura .mascote-bcg {
        width: 40%;
        height: auto;
        margin-top: -60%;
    }
    [data-page="home"] section#estrutura h2.section-title {
        margin: 30px 0;
    }   
    [data-page="home"] section#estrutura .mascotes {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
    [data-page="home"] section#estrutura .mascotes .mascote-americano {
        position: initial;
    }




    /* Home > Quem Somos */
    [data-page="home"] section#quem-somos {
        padding: 30px 0;
    }
    [data-page="home"] section#quem-somos h2.section-title {
        font-size: 32px;
        margin: 0 0 30px 0;
    }
    [data-page="home"] section#quem-somos .equipe {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        row-gap: 40px;
    }
    [data-page="home"] section#quem-somos .equipe .membro h3 {
        font-size: 14px;
        white-space: nowrap;
        line-height: normal;
    }




    /* Home > Noticias */
    [data-page="home"] section#noticias .section-header {
        margin-bottom: 30px;
    }
    [data-page="home"] section#noticias h2.section-title {
        font-size: 32px;
    }
    [data-page="home"] section#noticias .card-noticia-destaque {
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 30px;

        background-color: #fff;
        padding: 15px;
        border-radius: 15px;
    }
    [data-page="home"] section#noticias .card-noticia-destaque .content h4.destaque {
        font-size: 24px;
        margin-top: 15px;
    }
    [data-page="home"] section#noticias .card-noticia-destaque .content h3.noticia-title {
        font-size: 32px;
    }
    [data-page="home"] section#noticias .more-news {
        flex-wrap: wrap;
    }




    /* Home > Galeria 2 */
    [data-page="home"] section#galeria-2 .swiperGaleriaHome2 {
        width: calc(100% - 30px);
    }
    [data-page="home"] section#galeria-2 .swiperGaleriaHome2,
    [data-page="home"] section#galeria-2 .swiperGaleriaHome2 .image,
    [data-page="home"] section#galeria-2 .swiperGaleriaHome2 .image img {
        border-radius: 30px;
    }




    /* Home > Nossos Clubes */
    [data-page="home"] section#nossos-clubes {
        padding: 0;
    }




    /* Sobre > Page Title */
    [data-page="sobre"] section#page-title {
        padding: 100px 0;
    }
    [data-page="sobre"] section#page-title h1 {
        font-size: 48px;
    }




    /* Sobre > Equipe */
    [data-page="sobre"] section#equipe {
        margin: 50px 0;
    }
    [data-page="sobre"] section#equipe .membro .cargo {
        margin: 24px 0;
        font-size: 22px;
    }
    [data-page="sobre"] section#equipe .membro .nome {
        font-size: 36px;
    }
    [data-page="sobre"] section#equipe .list-membros {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin: 50px 0 0 0;
    }
    [data-page="sobre"] section#equipe .list-membros .item-membro h3 {
        font-size: 14px;
        line-height: normal;
    }
    [data-page="sobre"] section#nossos-clubes {
        margin: 50px 0;
    }




    /* Listagem Atletas > Page Title */
    [data-page="listagem"] section#page-title {
        padding: 100px 0;
    }
    [data-page="listagem"] section#page-title h1 {
        font-size: 48px;
    }



    /* Listagem Atletas > Atletas */
    [data-page="listagem"] .col-menu {
        position: relative;
        margin: 0 0 50px 0;
    }
    [data-page="listagem"] .col-menu::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 75px;
        height: 100%;

        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #D9D9D9 50%);
        pointer-events: none;
    }
    [data-page="listagem"] ul#menu-filter {
        position: relative;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 15px;
        overflow: auto;
        overflow-y: hidden;
        padding-right: 30px;
        padding-bottom: 4px;

        margin: 0;
    }
    [data-page="listagem"] ul#menu-filter li {
        font-size: 14px;
        padding: 0 7.5px;
    }




    /* Listagem Ateltas > Atleta */
    [data-page="listagem"] section#atletas .list-atletas {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        row-gap: 50px;
    }
    [data-page="listagem"] section#atletas .list-atletas .card-atleta .image {
        margin: 0 0 20px 0;
    }
    [data-page="listagem"] section#atletas .list-atletas .card-atleta .content h2 {
        font-size: 20px;
    }
    [data-page="listagem"] section#atletas .list-atletas .card-atleta .content p {
        font-size: 16px;
    }




    /* Atleta > Page Title */
    [data-page="atleta"] section#page-title {
        padding: 100px 0;
    }
    [data-page="atleta"] section#page-title h1 {
        font-size: 48px;
        line-height: normal;
        text-align: center;
    }




    /* Atleta > Content */
    [data-page="atleta"] section#atleta {
        padding: 50px 0;
    }
    [data-page="atleta"] section#atleta .content .list-dados {
        margin: 15px 0 30px 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    [data-page="atleta"] section#atleta .content .list-dados li {
        display: flex;
        flex-direction: column;

        width: 100%;
        text-align: start;

        padding: 15px;
        background-color: #fff;
        border-radius: 10px;        
    }
    [data-page="atleta"] section#atleta .content .list-dados li:nth-child(1),
    [data-page="atleta"] section#atleta .content .list-dados li:nth-child(2) {
        grid-column: span 2;
    }
    [data-page="atleta"] section#atleta .content .list-dados li:nth-child(2n) {
        text-align: start;
    }
    [data-page="atleta"] section#atleta .content .list-dados li p {
        order: 1;
        font-size: 22px;
    }
    [data-page="atleta"] section#atleta .content .list-dados li span {
        order: 0;
        font-size: 14px;
    }




    /* Atleta > Tabela */
    [data-page="atleta"] section#tabela .nav-tabs {
        justify-content: space-between;
        gap: 15px;
        margin-bottom: 0;
    }
    [data-page="atleta"] section#tabela .nav-tabs .nav-link {
        font-size: 14px;
        padding: 0 7.5px;
    }
    [data-page="atleta"] section#tabela .finger-swipe {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 10px;
    }
    [data-page="atleta"] section#tabela .finger-swipe svg {
        display: block;
        fill: #0B1D46;
        width: 30px;
        height: 30px;
    }
    [data-page="atleta"] section#tabela .finger-swipe p {
        color: #0B1D46;
        font-size: 14px;
        margin: 0;
    }
    [data-page="atleta"] section#tabela .tab-pane {
        overflow: auto;
        overflow-y: hidden;
    }




    /* Listagem Blog > Page Title */
    [data-page="noticias"] section#page-title {
        padding: 100px 0;
    }
    [data-page="noticias"] section#page-title h1 {
        font-size: 48px;
    }




    /* Listagem Blog > Noticias */
    [data-page="noticias"] #noticias {
        padding: 50px 0;
    }
    [data-page="noticias"] #noticias .menu-lateral {
        padding: 0;
    }
    [data-page="noticias"] #noticias .list-noticias {
        grid-template-columns: repeat(1, 1fr);
    }

    [data-page="noticias"] #noticias .menu-lateral .menu-body {
        display: flex;
        gap: 15px;
    }
    [data-page="noticias"] #noticias .menu-lateral .menu-body .botao-categoria {
        width: 62px;
        min-width: 62px;
        height: 62px;

        padding: 15px;
        background-color: #F0F0F0;
        border-radius: 5px;
        border: none;
        outline: none;
        box-shadow: none;
    }
    [data-page="noticias"] #noticias .menu-lateral .menu-body .botao-categoria svg {
        display: block;
        stroke: #0A253B;
        width: 100%;
        height: 100%;
    }
    [data-page="noticias"] .offcanvas#categoriasMobile {
        width: 100%;
        z-index: 99999999;
        border: none;
    }
    [data-page="noticias"] .offcanvas#categoriasMobile button {
        box-shadow: none;
        outline: none;
    }
    [data-page="noticias"] .offcanvas#categoriasMobile .offcanvas-header {
        padding: 15px;
        background-color: #fff;
        border: none;
    }
    [data-page="noticias"] .offcanvas#categoriasMobile .offcanvas-body {
        background-color: #F0F0F0;
    }
    [data-page="noticias"] .offcanvas#categoriasMobile .offcanvas-body ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }
    [data-page="noticias"] .offcanvas#categoriasMobile .offcanvas-body ul li:not(:last-child) {
        margin-bottom: 10px;
    }
    [data-page="noticias"] .offcanvas#categoriasMobile .offcanvas-body ul li {
        padding: 15px;
        background-color: #fff;
        border-radius: 10px;
    }
    [data-page="noticias"] .offcanvas#categoriasMobile .offcanvas-body ul li a {
        display: block;
        text-decoration: none;
    }
    [data-page="noticias"] .offcanvas#categoriasMobile .offcanvas-body ul li:hover {
        background-color: #000;
    }
    [data-page="noticias"] .offcanvas#categoriasMobile .offcanvas-body ul li span {
        color: #151515;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
        text-decoration: none;
    }
    [data-page="noticias"] .offcanvas#categoriasMobile .offcanvas-body ul li:hover span {
        color: #fff;
    }




    /* Blog > Page Title */
    [data-page="noticia"] section#page-title {
        padding: 100px 0;
    }
    [data-page="noticia"] section#page-title h1 {
        font-size: 48px;
    }




    /* Blog > Artigo */
    [data-page="noticia"] .post-article .post-header .post-meta .author-info .author-avatar {
        width: 40px;
        height: 40px;
    }
    [data-page="noticia"] .post-article .post-header .post-meta .author-info {
        font-size: 14px;
    }
    [data-page="noticia"] .post-article .post-header .post-meta .publish-date time {
        font-size: 12px;
    }




    /* Clube > Page Title */
    [data-page="clube"] section#page-title {
        padding: 100px 0 150px 0;
    }
    [data-page="clube"] section#page-title h1 {
        font-size: 48px;
    }
    [data-page="clube"] section#page-title .logo-clube {
        bottom: -100px;
    }
    [data-page="clube"] section#page-title .logo-clube img {
        width: auto;
        height: 200px;
    }




    /* Clube > Content */
    [data-page="clube"] section#content {
        padding: 150px 0 50px 0;
    }
    [data-page="clube"] section#content .imagem-principal {
        padding: 0;
        margin-bottom: 30px;
    }
    [data-page="clube"] section#content .imagem-principal span {
        margin: 30px 0 0 0;
    }
    [data-page="clube"] section#content .galeria {
        margin: 0 auto 50px auto;
    }
    [data-page="clube"] section#content .galeria .swiperGaleria .swiper-slide {
        padding: 15px;
    }
    





    /* Contato */
    [data-page="home"] section#fale-conosco {
        padding-top: 0;
    }
    section#fale-conosco h2.section-title {
        font-size: 32px;
        margin: 0 0 30px 0;
    }
    section#fale-conosco button {
        width: 100%;
        margin: 30px 0 0 0;
    }
    section#fale-conosco .mascote-americano,
    section#fale-conosco .mascote-bcg {
        position: initial;
        width: calc(50% - 35px);
        margin: 30px 15px;
    }
    


    /* Footer */
    footer .footer-content {
        flex-wrap: wrap;
    }
    footer .footer-menu {
        width: 100%;
    }
    footer .footer-menu:not(:first-child) {
        margin-top: 30px;
    }
    footer .footer-menu .logo {
        margin: 0 auto 15px auto;
    }
    footer .footer-menu .item-email{
        justify-content: center;
    }
    footer .footer-menu h2 {
        text-align: center;
    }
    footer .footer-menu .footer-links li a,
    footer .footer-menu .footer-links li span {
        display: block;
        width: 100%;
        text-align: center;
    }
    footer .footer-menu .link-youtube {
        text-align: center;
    }
    footer .footer-menu .link-youtube .icon {
        width: fit-content;
        margin: 0 auto 10px auto;
    }
    footer ~ .base-footer .base-list {
        flex-wrap: wrap;
    }
    footer ~ .base-footer .base-list li {
        width: 100%;
        text-align: center;
    }
    footer ~ .base-footer p.wtek {
        text-align: center;
    }



    .widget-icon {
        right: 30px!important;
        bottom: 40px!important;
    }
}