* {
   margin: 0;
   padding: 0;
   scroll-behavior: smooth;
   font-family: 'Montserrat', sans-serif;
   overflow-x: hidden;
   }

/* MENU **************************************************************************/


.navbar {
    display: flex;;
    background: #000;
    padding: 15px 30px;
    width: 100%;
    z-index: 1000;
    }


.menu {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0 70px;
    justify-content: center;
    }

 .menu li {
    margin: 0 15px;
    }

.menu li a {
    text-decoration: none;
    font-size: 20px;
    color: white;
    font-weight: bold;
    }

.menu li a:hover {
   color: #ffb400;
}
        
.menu li .btn {
    background: #ffb400;
    color: #000;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    }

.menu li .btn:hover {
   color: #fff;
}

/* CORPO DA PAGE ********************************************************************************/

.bannerspace {
    margin-top: 120px;
}

.banner {
   width: 100vw; /* Largura total da tela */
   overflow: hidden; /* Evita rolagem extra */
}

.banner img {
   width: 100%; /* A imagem sempre ocupa toda a largura */
   height: auto; /* Mantém a altura original da imagem */
   display: block; /* Remove espaços extras abaixo da imagem */
}

.final {
    padding: 50px;
}

.final btn {
    background: #ffb400;
    color: #000;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    }

.bannerpromo {
    background-color: #000;
    padding: 80px;
}

.bannersession3 {
    background-color: #ffb300;
}

.bannersession5 {
    padding: 80px;
}

.bannersession5 img {
    width: 1000px;
}

/* RODAPÉ ************************************************************************/

.rodape {
    background-color: #000;
    color: #fff;
    font-size: 0.8em;
    padding: 50px;
}

.rodape h4 {
    font-size: 1.1em;
    margin: 7px 0;
}

.especifico {
    font-weight: bold;
}

.rodape a {
    text-decoration: none;
    color: #fff;
}

.rodape a:hover {
    color: #ffdfb0;
}

.icones img {
    width: 40px;
}

/* ===================================
    Optional styles
====================================== */

#instacode {margin: 0px auto 0; width: fit-content;}

.instapart {
    background-color: #fff;
    padding-left: 130px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.instagram_feed {
  overflow: hidden;
}
.instagram_feed .instagram_new {
  width: 300px;
  float: left;
  padding: 7px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.instagram_feed img.insta-image {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}
.instagram_feed .insta-link {
  position: relative;
  display: block;
  background: #232323;
  padding-top: 100%;
}
.instagram_feed .insta-link:hover .insta-image {
  opacity: 0.2;
}

/* CONFIGURAÇÃO DOS BANNERS - DESKTOP - MOBILE *************************************************/

/* Exibe o banner desktop e esconde o mobile por padrão */
.banner-desktop {
    display: block;
    width: 100%;
    height: auto;
}

.banner-mobile {
    display: none;
}

/* No mobile, inverte: exibe o banner mobile e esconde o desktop */
@media (max-width: 768px) {
    .banner-desktop {
        display: none;
    }
    
    .banner-mobile {
        display: block;
        width: 100%;
        height: auto;
    }
}

/* AJUSTE RESPONSIVO ***************************************************************************/

@media (max-width: 767px) {
    .navbar-collapse {
        display: flex;
        justify-content: center; /* Centraliza os itens dentro do menu */
        text-align: center;
    }

    .bannerpromo {
        background-color: #000;
        padding: 30px;
    }

    .bannersession5 {
        padding: 40px;
    }


    .instagram_feed .instagram_new {
        width: 160px;
    }

    .instapart {
        background-color: #fff;
        padding-left: 30px;
        padding-top: 2px;
    }

    .menu {
        flex-direction: column; /* Faz os itens do menu ficarem em coluna no mobile */
        padding: 0;
    }

    .menu li {
        margin: 6px 0; /* Espaçamento entre os itens no mobile */
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar img {
    margin-left: 20px;
    }
}