@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins&family=Quicksand:wght@300..700&family=Signika+Negative:wght@300..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Garante que padding e border não afetem o tamanho dos elementos */
}

body {
  overflow-x: hidden; /* Esconde a barra de rolagem horizontal */
  font-family: Arial, sans-serif; /* Fonte legível para todo o site */
}

/* Fixar a navbar no topo */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    transition: transform 0.3s ease; /* Transição suave */
    z-index: 9999;
    height: 80px !important;
}

.navbar-nav {
  margin-right: 5rem !important;
}

/* CSS do BootStrap*/
.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 14px !important;
  text-transform: uppercase;
  font-weight: 400;
  color: whitesmoke; /* Usando a cor de ênfase do Bootstrap */
  transition: color 0.3s ease, transform 0.3s ease;
}

.bg-dark {
  background-color: #000 !important;
}

.navbar-nav .nav-link:hover {
  color: #ccc; 
  transform: translateX(-5px); 
}


.navbar-brand {
  margin-left: 0; /* Ajuste o valor conforme necessário */
  padding-left: 100px; /* Aumenta o espaço interno à esquerda */
}

.navbar-brand img {
  height: 60px;  
  width: auto;   
}

/* Adiciona uma classe que faz a navbar sumir ao rolar para baixo */
.scrolled-down .navbar {
  transform: translateY(-100%); /* Move a navbar para cima, escondendo-a */
}

/* Quando o usuário rola para cima, a navbar aparece novamente */
.scrolled-up .navbar {
  transform: translateY(0); /* Reseta a posição, mostrando a navbar */
}


/* mexendo nos links*/
.itens a {
  color: #fff;
  text-decoration: none;
  transition: 0.1s;
  padding: 10px 10px;
}

.itens a:hover {
  color:#ddd;
  transition: 0.5s;
}

/*Tela Inicial*/
.Futebol{
  padding-top: 100px; 
  background-image: url("img/foto11.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  width: auto;
  height: 110vh;
  backdrop-filter: blur(10px);
  color:white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Futebol::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1; 
}
.futFoto{
  background-image: url("img/foto9.jpg");
  background-position: center center;
  background-size: cover;
  width:560px;
  height:500px;
  z-index:3;
  border-top-left-radius: 20px; /* Ajuste o valor para o nível de arredondamento desejado */
  border-bottom-left-radius: 20px;
}

.futTxt{
  background-color:#4b584eb7;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  z-index: 3;
  width: 500px;
  height: 500px;
  font-size:20px;
  text-align: center;
  color: rgb(211, 210, 210);
  border-top-right-radius: 20px; /* Ajuste o valor para o nível de arredondamento desejado */
  border-bottom-right-radius: 20px;
  padding: 2.2%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}
.futTxt h2{
  font-family: "Signika Negative", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.vermelho{
  color: #f55356;
}
.azul{
  color:blue;
}
/*Tela de JJ*/
.JiuJitsu{
  background-color: rgb(255, 255, 255);
  width: auto;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.jjTxt{
  background-color:#0f5288;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  z-index: 3;
  width: 500px;
  height: 500px;
  font-size:20px;
  text-align: center;
  color: rgb(211, 210, 210);
  border-top-right-radius: 20px; /* Ajuste o valor para o nível de arredondamento desejado */
  border-bottom-right-radius: 20px;
  padding: 2.2%;
  transition: 0.5s;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}
.jjTxt h2{
    font-family: "Signika Negative", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.jjFoto{
  background-image: url("img/foto16.jpeg");
  background-position: center center;
  background-size: cover;
  width:560px;
  height:500px;
  z-index:3;
  border-top-left-radius: 20px; /* Ajuste o valor para o nível de arredondamento desejado */
  border-bottom-left-radius: 20px;
}
/*Capoeira*/
.Capoeira{
  background-attachment: fixed;
  background-image: url("img/foto11.jpg");
  backdrop-filter: blur(10px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: auto;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Capoeira::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1; 
}
.capoeiraTxt{
  background-color: rgba(255, 255, 255, 0.774);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  width: 500px;
  height: 500px;
  font-size:20px;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  color: rgb(24, 24, 24);
  z-index: 3;
  border-top-right-radius: 20px; /* Ajuste o valor para o nível de arredondamento desejado */
  border-bottom-right-radius: 20px;
  padding: 2.2%;
  transition: 0.5s;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}
.capoeiraTxt h2{
  font-family: "Signika Negative", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.capFoto{
  background-image: url("img/foto15.jpg");
  background-position: center center;
  background-size: cover;
  width:560px;
  height:500px;
  z-index:3;
  border-top-left-radius: 20px; /* Ajuste o valor para o nível de arredondamento desejado */
  border-bottom-left-radius: 20px;
}

footer .wave {
    position: absolute !important;
    top: -100px !important;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("img/wave1.png");
    background-size: 1000px 100px;
  }
  
  footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
  }
  
  footer .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
  }
  
  
  footer .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
  }
  
  footer .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;
  }
  
  @keyframes animateWave {
      0%
        {
          background-position-x: 1000px;
        }
      100%
      {
          background-position-x: 0px;
      }
  }
  
  
  @keyframes animateWave_02 {
    0%
      {
        background-position-x: 0px;
      }
    100%
    {
        background-position-x: 1000px;
    }
  }

  
ul {
    margin: 0px;
    padding: 0px;
  }
  .footer-section {
  margin-top: -2rem;
  background: #0E0C0C;
  position: relative;
  font-family: 'Poppins', sans-serif;
  }
  .footer-cta {
  border-bottom: 1px solid #373636;
  }
  .single-cta i {
  color: #09509E;;
  font-size: 30px;
  float: left;
  margin-top: 8px;
  }
  .cta-text {
  padding-left: 15px;
  display: inline-block;
  }
  .cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
  }
  .cta-text span {
  color: #757575;
  font-size: 15px;
  }
  .footer-content {
  position: relative;
  z-index: 2;
  }
  .footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
  }
  .footer-logo {
  margin-bottom: 30px;
  }
  .footer-logo img {
    max-width: 200px;
  }
  .footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
  }
  
  .footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  }
  .footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #09509E;
  }
  
  .footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
  }
  .footer-widget ul li a:hover{
  color: #09509E;;
  }
  .footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
  }
  .subscribe-form {
  position: relative;
  overflow: hidden;
  }
  .subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
  }
  .subscribe-form button {
    position: absolute;
    right: 0;
    background: #09509E;
    padding: 13px 20px;
    border: 1px solid #09509E;;
    top: 0;
  }
  .subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
  }
  .copyright-area{
  background: #202020;
  padding: 25px 0;
  }
  .copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
  }
  .copyright-text p a{
  color: #09509E;
  }
  .footer-menu li {
  display: inline-block;
  margin-left: 20px;
  }
  .footer-menu li:hover a{
  color: #09509E;
  }

  .footer-menu li a {
  font-size: 14px;
  color: #878787;
  }
  
  .instagram-gallery {
    gap: 5px;
    height: auto;
    width: 100%;
    padding-bottom: 5px !important;
    margin-top: 0;
    display: flex;
 }
 