* {
  box-sizing: border-box;

}

@font-face {
  font-family: 'GUNPLAY';
  src: url('../fonts/gunplay-rg.woff2') format('woff2');
}

@font-face {
  font-family: 'BankGothicLightBT';
  src: url('../fonts/bank-gothic-light-bt.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 30px;
  font-family: sans-serif;
  background: #000;
  flex: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: white;
  min-height: 100vh;
  height: 100%;
  margin: 0;
  padding: 0;
  flex-direction: column;
}

body.fade-in {
  animation: fadeInBody 1.5s ease;
}

@keyframes fadeInBody {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

header {
  background-color: #000;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  text-align: center;
  z-index: 1000;
  animation: slideDown 1s ease;
  font-family: 'BankGothicLightBT', sans-serif;

}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

header nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

header nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  font-family: 'BankGothicLightBT', sans-serif;

  position: relative;
  padding: 10px 0;
  transition: color 0.4s ease, transform 0.4s ease, background-color 0.4s ease, text-shadow 0.4s ease;

}

header nav a:hover {
  color: #96906f;

  transform: scale(1.1);

  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);

  background-color: transparent;
  border-radius: 5px;

}

.logo-header {
  height: 30px;
  margin: 0 10px;
  vertical-align: middle;
  margin-top: 5px;
  cursor: pointer;
  transition: transform 0.4s;
}

.logo-header:hover {
  transform: scale(1.1);
}

.titulo-operacao {
  text-align: center;
  z-index: 2;
  position: relative;
  color: white;
}


.titulo-operacao h1 {
  font-size: 7em;
  margin: 0;
  color: #96906f;
  font-family: 'GUNPLAY', sans-serif;
}


.titulo-operacao p {
  font-size: 1.8em;
  margin-top: 10px;
  color: white;
  font-family: 'BankGothicLightBT', sans-serif;
}

.banner-operacao1,
.banner-operacao2,
.banner-operacao3 {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center calc(0% - 45px);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.banner-operacao1::before,
.banner-operacao2::before,
.banner-operacao3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-operacao1::before {
  background-color: rgba(0, 0, 0, 0.1);
}

.banner-operacao2::before {
  background-color: rgba(0, 0, 0, 0.1);
}

.banner-operacao3::before {
  background-color: rgba(0, 0, 0, 0.1);
}

.banner-operacao1>*,
.banner-operacao2>*,
.banner-operacao3>* {
  position: relative;
  z-index: 2;
}

.banner-operacao1 {
  background: url('../images/banner1.png') center calc(0% - 45px) / cover no-repeat;
}

.banner-operacao2 {
  background: url('../images/banner2.png') center calc(0% - 45px) / cover no-repeat;
}

.banner-operacao3 {
  background: url('../images/banner3.png') center calc(0% - 45px) / cover no-repeat;
}

.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-container .dropdown-content {
  display: none;
  position: absolute;
  background-color: #000;
  min-width: 160px;
  z-index: 999;
  padding: 10px;
}

.dropdown-container.show .dropdown-content {
  display: block;
}

.dropdown-link {
  color: white;
  display: block;
  padding: 6px 10px;
  text-decoration: none;
}

.dropdown-link:hover {
  background-color: #222;
}

.dropdown-content {
  display: none;
}

.dropdown-content.show {
  display: block;
}



@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faixa-operacao {
  background-color: #96906f;

  padding: 12px 0;
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 0;
  animation: fadeIn 1.2s ease;
}

.faixa-links {
  display: flex;
  justify-content: center;
  gap: 300px;
}

.link-modal {
  font-family: 'BankGothicLightBT', sans-serif;
  color: white;
  font-size: 1.2em;
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
  letter-spacing: 2px;
  transition: transform 0.3s;
}

.link-modal:hover {
  transform: scale(1.05);
}

.link-modal::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.link-modal:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.briefing-banner {
  position: relative;
  padding: 150px 0px;
  background-color: rgba(255, 255, 255, 0.95);
  animation: fadeInUp 1.5s ease;
  margin-bottom: 80px;

}

.briefing-banner {
  padding: 80px 0;
  position: relative;
  background-color: #FFFFFF;

}

.briefing-content {
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 30px;
  color: #000;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.8;
  font-family: 'BankGothicLightBT', sans-serif;
  overflow-wrap: break-word;

  word-wrap: break-word;
  box-sizing: border-box;
}


.team-title {
  font-family: 'BankGothicLightBT', sans-serif;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
  text-align: center;
  font-size: 2.5em;
  margin-top: 300px;

}

.carrosseis-imagens {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'BankGothicLightBT', sans-serif;
}

.carousel-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;

  flex-wrap: nowrap;

}


.carousel-block {
  background: transparent;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  width: 50%;
}


.reference-banner img {
  height: 200px;
  margin-bottom: 10px;
  border-radius: 4px;
}


.block-banner {
  font-size: 1.2em;
  white-space: wrap;
  margin: 5px 0 15px;
  font-family: 'BankGothicLightBT', sans-serif;
}

.loadout-options {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.option {
  width: 100%;
}


.option-label {
  margin-bottom: 0px;
  line-height: 1;
  font-size: 1.3em;
  margin-top: 15px;
}

.compact .option-label {
  margin-bottom: 0px;
}

.compact .carousel {
  margin-top: -10px;

}


.carousel {
  position: relative;
  overflow: hidden;
  height: 80px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
  z-index: 1;
}


.carousel-item img {
  height: auto;
  border-radius: 8px;
  width: 90%;

}

.option.shirt .carousel-item img,
.option.pants .carousel-item img {
  max-width: 100%;

}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #fff;
  border: none;
  font-size: 1.5em;
  padding: 0 10px;
  cursor: pointer;
  z-index: 2;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.carousel-button:hover {
  opacity: 1;
}


.carousel-button.left {
  left: 2px;
}


.carousel-button.right {
  right: 2px;
}



.titulo-cronometro {
  text-align: center;
  font-family: 'BankGothicLightBT', sans-serif;
  color: white;
  font-size: 1.5em;
  margin-top: 200px;
  letter-spacing: 2px;
  animation: fadeIn 1s ease;
}

.cronometro {
  margin-top: 20px;
  text-align: center;
  font-family: 'BankGothicLightBT', sans-serif;
}

.numeros-legendas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 1.4em;
  color: white;
  animation: fadeIn 1.5s ease;
}

.bloco {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
}

.numero {
  font-size: 2.7em;
  font-weight: bold;
  color: white;
}

.legenda {
  font-size: 0.8em;
  margin-top: 5px;
  color: white;
}

.separador {
  font-size: 2.5em;
  font-weight: bold;
  color: white;
}

main {
  padding: 40px 20px;
  text-align: center;
}


.mapa-container {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  animation: fadeIn 1.5s ease;
}

iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.local-operacao {
  text-align: center;
  font-family: 'GUNPLAY', sans-serif;
  color: white;
  font-size: 1.2em;
  margin-top: 30px;
}

.banner-info {
  background-color: #222;
  color: white;
  padding: 100px 20px;
  text-align: center;
  animation: fadeIn 1.5s ease;
}

.banner-info h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.banner-info p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.container {
  display: flex;
  align-items: stretch;
  gap: 20px;
  max-width: 800px;

  margin: 80px auto 0 auto;

  height: 400px;
  flex-wrap: wrap;

}

.map-container,
.img-container {
  flex: 1;
  overflow: hidden;
  display: flex;
  max-width: 600px;
}

.map-container iframe {
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
  border: none;
}

.img-container img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
  border: 8px;
}


.cadastro-footer {
  text-align: center;
  padding: 0;
  margin-top: 0px;
  margin-bottom: 20px;
}

.cadastro-footer a {
  font-family: 'GUNPLAY', sans-serif;
  font-size: 1.2em;
  color: white;
  background-color: #96906f;
  padding: 15px 40px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, transform 0.3s;
  display: inline-block;
  margin-bottom: 20px;
}

.cadastro-footer a:hover {
  background-color: #f40e1f;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


#pdfModal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

#pdfModal .modal-content {
  background-color: white;
  width: 95vw;
  height: 90vh;
  max-width: 1000px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

#pdfModal .modal-content iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  display: block;
}

#pdfModal .close-button {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.5em;
  color: #333;
  cursor: pointer;
  z-index: 2;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

footer {
  background-color: #333;
  color: white;
  padding: 15px;
  text-align: center;
}

footer a {
  color: white;
  text-decoration: none;
}

.container-background {
  background-image: url('../images/Backgroud2.png');

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  position: fixed;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 400px;

  z-index: -1;

}


.mobile-menu-icon {
  display: none;
  font-size: 2.5rem;
  color: white;
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 1001;
  cursor: pointer;
}


.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 250px;
  background-color: #111;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  background-color: rgba(0, 0, 0, 0.8);

  z-index: 1000;
  padding-top: 60px;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav li {
  margin: 20px;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.2rem;
  font-family: 'BankGothicLightBT', sans-serif !important;
}

.mobile-nav a:hover {
  background-color: #333;

  color: #fff;

}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.mobile-nav a:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}


@media screen and (max-width: 768px) {
  body {
    padding: 0;
    margin: 0;
  }

  .mobile-menu-icon {
    display: block;
  }

  header nav {
    display: none;
  }


  .titulo-operacao h1 {
    font-size: 3.5em;
  }


  .titulo-operacao p {
    font-size: 1.2em;
  }

  .banner-operacao1::before {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .banner-operacao2::before {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .banner-operacao3::before {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .banner-operacao1 {
    background: url('../images/banner1.png') center calc(0% - 0px) / cover no-repeat;
  }

  .banner-operacao2 {
    background: url('../images/banner2.png') center calc(0% - 0px) / cover no-repeat;
  }

  .banner-operacao3 {
    background: url('../images/banner3.png') center calc(0% - 0px) / cover no-repeat;
  }

  .titulo-operacao h1 {
    font-size: 3em;
    margin: 0;
    color: #96906f;
    font-family: 'GUNPLAY', sans-serif;
  }

  .titulo-operacao p {
    font-size: 1.4em;
    margin-top: 10px;
    color: white;
    font-family: 'BankGothicLightBT', sans-serif;
  }

  .briefing-banner {
    position: relative;
    padding: 150px 0px;
    background-color: rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1.5s ease;
    margin-bottom: 50px;
  }

  .briefing-banner {
    padding: 80px 0;
    position: relative;
    background-color: #FFFFFF;

  }

  .briefing-content {
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    max-height: 800px;
    overflow: hidden;
    margin: 0 auto;
    padding: 40px 30px;
    color: #000;
    text-align: left;
    font-size: 1.1em;
    line-height: 1.5;
  }

  #pdfModal .modal-content {
    background-color: white;
    width: 95vw;
    height: 66vh;
    max-width: 1000px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
  }


  .carrosseis-imagens {
    display: flex;
    flex-direction: column;
    gap: 40px;

  }

  .reference-banner img {
    height: 170px;
    margin-bottom: 10px;
    border-radius: 4px;
  }


  .carousels-section {
    display: flex;
    flex-direction: column;
    gap: 10px;

  }


  .carousel-block {
    width: 100%;

  }

  .block-banner {
    font-size: 1.5em;
    white-space: wrap;
    margin: 5px 0 15px;
    font-family: 'BankGothicLightBT', sans-serif;
  }

  .titulo-carrossel {
    text-align: center;
    margin-bottom: 20px;
  }


  .carousels-section+.carousels-section {
    margin-top: 0;
  }


  .carousel-container {
    flex-direction: column;
    gap: 70px;
  }

  .carousel-block {
    width: 100%;

  }


  .carousel {
    position: relative;
    overflow: hidden;
    height: 63px;
  }

  .option.shirt .carousel-item img,
  .option.pants .carousel-item img {
    max-width: 82%;

  }

  .carousel-button {
    font-size: 2.5em;
  }

  @keyframes floatUpDown {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-5px);
    }
  }

  .carousel-button {
    position: absolute;
    top: 15%;
    transform: translateY(-50%);
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    animation: floatUpDown 1.5s ease-in-out infinite;
    transition: background-color 0.3s;
  }

  .carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  .carousel-button.left {
    left: 1px;
  }

  .carousel-button.right {
    right: 3px;
  }


  .carousel-button.left {
    left: 3px;
  }


  .carousel-button.right {
    right: 1px;
  }

  .team-title {
    font-size: 1.8em;
    margin-top: 30px;

  }

  .titulo-cronometro {
    font-size: 1.3em;
    margin-top: 50px;
  }

  .cronometro {
    margin-top: 10px;
  }

  .numeros-legendas {
    gap: 13px;
    font-size: 1.1em;
    flex-wrap: wrap;
  }

  .bloco {
    min-width: 50px;
  }

  .numero {
    font-size: 1.8em;
  }

  .separador {
    font-size: 1.3em;
  }

  .legenda {
    font-size: 0.7em;
  }

  main {
    padding: 20px 10px;
  }


  .container {
    flex-direction: column;
    padding: 5px 10px;
  }

  .map-container,
  .img-container {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .map-container iframe {
    height: 250px;
  }

  .img-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }


  .briefing-content {
    max-height: 800px;
    overflow-y: auto;

  }
}