* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Montserrat;
}

.primeira-sessao {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: visible;
}

.background {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: linear-gradient(90deg,
      #061F2A 0%,
      #0A2F3F 50%,
      #061F2A 100%);
}

.header-logo,
.nav,
.socials {
  display: flex;
  align-items: center;
}

.logo img {
  height: 35px;
}

.nav a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: .3rem;
  margin-right: .3rem;
  text-align: justify;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 6px 0;
  font-size: .70rem;
}

.nav>a,
.nav-item>a {
  color: #ffffff;
  text-decoration: none;

  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 0;
  position: relative;
}

.nav-arrow {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 6px;

  cursor: pointer;
}

.nav-arrow .arrow {
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


.nav-item:hover .arrow {
  transform: rotate(180deg);
}

.arrow {
  height: 15px;
}



.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  transform: translateX(-50%) translateY(10px);
  background: #04151d;
  padding: 32px 40px;
  border-radius: 6px;
  display: flex;
  gap: 80px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s;
  white-space: nowrap;
  width: max-content;
  z-index: 999;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 980%;
  height: 1px;

}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-column h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dropdown-column a {
  display: block;
  color: #bdbdbd;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: none;
  transition: color 0.3s ease;
}

.dropdown-column a:hover {
  color: #ffffff;
}

.menu-row{
  margin-bottom: .5rem;
  margin-top: .5rem;
  height: 1px;
  border: 1px solid #ffffff05;
}

.primeira-sessao-conteudo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: calc(100vh - 180px);
  letter-spacing: 5px;
}

.primeira-sessao-conteudo h1 {
  font-weight: 200;
  font-size: 2rem;
  text-align: center;
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-social {
  width: 34px;
  height: 34px;
  padding: 1px;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.header-social:active {
  transform: scale(0.95);
}


.socials img {
  background-color: #fff;
  padding: .4rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  opacity: 0.85;
}

.socials img:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

}

.faixa {
  height: 1px;
  background-color: #ffffff79;
  margin-bottom: 5rem;
}


.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

.primeira-sessao-conteudo h1 {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease,
    filter 1.2s ease;
}

.primeira-sessao-conteudo h1.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {

  /* ===== HEADER / NAV ===== */
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(6, 31, 42, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    overflow-y: auto;
    align-items: center;
    gap: 35px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 9;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav>a,
  .nav-item>a {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  /* ===== SUBMENU / DROPDOWN (ACCORDION) ===== */
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  transform: translateX(-50%) translateY(10px);
  background: #04151d;
  padding: 32px 40px;
  border-radius: 6px;
  display: flex;
  gap: 80px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s;
  flex-direction: column;   /* 🔑 ISSO AQUI */
  white-space: nowrap;
  width: max-content;
  z-index: 999;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 980%;
  height: 1px;

}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-column h4 {
  color: #fff;
  font-size: .8rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dropdown-column a {
  display: block;
  color: #bdbdbd;
  font-size: 0.8rem;
  margin-bottom: 10px;
  text-transform: none;
  transition: color 0.3s ease;
}

.dropdown-column a:hover {
  color: #ffffff;
}



  .nav-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .arrow {
    transition: transform 0.3s ease;
  }

  .nav-item.active .arrow {
    transform: rotate(180deg);
  }

  .dropdown a {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 10px 0;
  }


  .nav-link {
    font-size: 1rem;
    letter-spacing: 3px;
    color: #fff;
  }

  .nav-arrow .nav-link {
    font-size: 1rem;
    letter-spacing: 3px;
  }


  /* ===== OUTROS ===== */
  .socials {
    display: none;
  }

  .burger {
    display: flex;
    z-index: 10;
  }
}


html,
body {
  width: 100%;
  overflow-x: hidden;
}

.lang-switcher {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.lang-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #04151d;
border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.lang-options {
  margin-top: 10px;
  background: #04151d;
  border-radius: 8px;
  overflow: hidden;
  display: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.lang-options button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.lang-options button:hover {
  background: rgba(255,255,255,0.1);
}

.flag{
  width: 30px;
}

.ticker-bar {
  width: 100%;
  background-color: #fff;
  color: #061F2A;
  font-weight: 500;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker-scroll 60s linear infinite;
}

.ticker span {
  white-space: nowrap;
  padding: 12px 48px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
/* Desktop grande */
@media (min-width: 1440px) {
  .ticker {
    animation-duration: 40s;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .ticker {
    animation-duration: 50s;
  }

  .ticker span {
    font-size: 0.8rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ticker {
    animation-duration: 80s;
  }

  .ticker span {
    font-size: 0.75rem;
    padding: 10px 24px;
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.partners-section {
  width: 100%;
  background: #fff;
  padding: 60px 20px;
}

.partners-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.carousel-parceiros {
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.carousel-parceiros-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scroll 35s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.logo-parceiros {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagem-parceiros {
  max-height: 85px;
  max-width: 100px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}


.imagem-parceiros:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Animação */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .carousel-parceiros-track {
    gap: 40px;
    animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .carousel-parceiros-track {
    gap: 30px;
    animation-duration: 20s;
  }
}   

 .contact-cta {
  padding: 20px 20px;
  text-align: center;
  color: #061F2A;
}

.contact-cta .container {
  max-width: 1300px;
  margin: 0 auto;
      margin-bottom: 5rem;
      margin-top: -2rem;
}

.contact-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  margin-top: 2rem;
}

.contact-cta p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px auto;
  opacity: 0.85;
  line-height: 1.6;
}

.contact-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #061F2A;
  color: #061F2A;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #061F2A;
  color: #fff;
}

@media (max-width: 1024px) {
  .contact-cta {
    padding: 80px 20px;
  }

  .contact-cta h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .contact-cta {
    padding: 70px 20px;
  }

  .contact-cta h2 {
    font-size: 1.6rem;
  }

  .contact-cta p {
    font-size: 1rem;
  }
}