* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
  overflow-x: hidden;
  color: #000;
}
i {
  color: #ffffff;
  transition: all 0.5s ease;
}
i:hover {
  color: #ff6b00;
}
.btn {
  background: #ff6b00;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s ease;
}
.btn:hover {
  background: #ffa600;
}
header {
  position: fixed;
  background-color: rgba(3, 14, 79, 0.9);
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(5px);
}
.logo {
  width: 50%;
  max-width: 300px;
  transition: all 1s ease;
}
nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(3, 14, 79, 0.95);
  backdrop-filter: blur(10px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(100%);
  opacity: 0;
  transition: all 1s ease;
}
nav * {
  display: none;
}
nav.open {
  transform: translateX(0);
  opacity: 1;
  display: flex;
}
nav.open * {
  display: flex;
}
.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.back-btn {
  color: white;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0;
}
.back-btn:hover {
  color: #ff6b00;
}
.nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 4rem;
}
.nav-menu > li > a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.nav-menu a:hover {
  color: #ff6b00;
}
.submenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(3, 14, 79, 0.95);
  padding: 2rem;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 100;
  display: none;
  flex-direction: column;
}
.submenu.active {
  transform: translateX(0);
  opacity: 1;
  display: flex;
}
.submenu li a {
  margin: 10px;
}
.submenu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  transition: color 1s ease;
}
.hamburguer {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
  cursor: pointer;
  z-index: 101;
}
.hamburguer span {
  background-color: #f5f5f5;
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  border-radius: 10px;
  transition: transform 1s ease, background-color 0.4s ease, top 0.4s ease;
}
#linha1 {
  top: 0;
}
#linha2 {
  top: 10px;
}
#linha3 {
  top: 20px;
  width: 70%;
}
.hamburguer.open #linha1 {
  transform: rotate(225deg);
  top: 10px;
  background-color: #ff6b00;
}
.hamburguer.open #linha2 {
  background-color: #ff6b00;
  transform: rotate(-225deg);
}
.hamburguer.open #linha3 {
  transform: rotate(-405deg);
  top: 10px;
  width: 100%;
  background-color: #ff6b00;
}
.social-links {
  position: absolute;
  bottom: 3%;
}
.social-links a {
  margin: 2px;
}
.hero {
  min-height: 15dvh;
}
.esquerda,
.direita {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 5%;
}
.esquerda h1,
.direita h1 {
  font-size: xx-large;
}
.esquerda p,
.direita p {
  font-size: large;
}
.esquerda .image {
  order: 1;
  max-width: 50%;
}
.esquerda .content {
  order: 2;
  padding-left: 20px;
}
.esquerda p,
.direita p {
  margin: 5% 0;
}
.direita .image {
  order: 2;
  max-width: 50%;
}
.direita .content {
  order: 1;
  padding-right: 20px;
}
.image img {
  max-width: 500px;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
}
ul {
  padding: 3%;
}
.main {
  padding: 5%;
  background-color: #f5f5f5;
}
.main .introP {
  font-size: larger;
}
.main h2 {
  margin: 3%;
  text-align: center;
}
.main a {
  margin: 5% 0 7%;
}
.main .image {
  width: 100%;
}
.main img {
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
}
.logisticaInfo {
  background-image: url("../images/f2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 5%;
  background-color: #030e4f;
  min-height: 100vh;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logisticaInfo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
.logisticaInfo .content {
  width: 80%;
  z-index: 10;
  position: relative;
  color: #000;
}
.logisticaInfo .content h2 {
  margin: 10px 0;
}
.logisticaInfo a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 768px) {
}
.direita.stock img {
  aspect-ratio: 9 / 16;
}
.direita.stock h1,
.direita.stock h2 {
  margin: 5% 0;
}
.direita.stock ul {
  list-style: none;
}
.main.stock h2 {
  margin: 3% 0;
  text-align: left;
}
.main.stock h3 {
  margin: 3% 0;
  text-align: left;
}
.esquerda.academia img {
  aspect-ratio: 1 / 1;
}
.direita.academia h2 {
  margin: 5%;
}
.contact {
  background-image: url("../images/fundo3.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  position: relative;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(240, 100%, 6%, 0.4);
  z-index: 1;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.contact-form {
  padding: 30px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
}
.form-control {
  background-color: #4747478a;
  border-radius: 20px;
  width: 100%;
  padding: 12px;
  border: none;
  color: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
  outline: none;
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 6h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.submit-btn {
  background-color: #ff6b00;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 1s;
}
.submit-btn:hover {
  background-color: #081663;
}
.contact-info {
  color: #fff;
}
.contact-info h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: bold;
}
.contact-info address {
  font-style: normal;
  line-height: 1.8;
}
.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.5s;
}
.contact-info a:hover {
  color: #ff6b00;
}
.contact-info img {
  max-width: 300px;
}
.map-container {
  width: 100%;
  height: 300px;
}
.map-container iframe {
  margin: 3% 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.whatsapp-button {
  position: fixed;
  bottom: 3%;
  right: 3%;
  transition: transform 0.5s ease-in-out;
  z-index: 10;
}
.whatsapp-button img {
  width: 50px;
  height: 50px;
}
.whatsapp-button:hover {
  transform: scale(1.1);
}
.recrutamento {
  position: relative;
  padding: 4rem 2rem;
  background-image: url("../images/fundo8.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  min-height: 100vh;
}
.recrutamento::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #030e4f80;
  z-index: 1;
}
.recrutamento > * {
  position: relative;
  z-index: 2;
}
.recrutamento .content {
  text-align: center;
  max-width: 80%;
}
.recrutamento h2 {
  font-size: xxx-large;
  margin-bottom: 2rem;
}
.recrutamento p {
  font-size: 1.5rem;
}
.vagas {
  background-color: #030e4f;
  color: #fff;
  padding: 3%;
  min-height: 80dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vagas h1 {
  margin: 5% 0;
  color: #ff6b00;
  font-size: xx-large;
}
.vagas h2 {
  margin: 5% 0;
  font-size: x-large;
}
.vagas h3 {
  margin: 5% 0;
  font-size: larger;
}
.vagas p {
  margin: 5% 0;
  font-size: large;
}
.vagas a {
  margin: 5% 0;
  color: #fff;
  font-size: large;
}
footer {
  background: linear-gradient(135deg, #001547, #002b6e);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  position: relative;
}
footer::before {
  content: "";
  display: block;
  background-color: #ff6b00;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
}
.footer-links {
  margin-bottom: 30px;
}
.footer-links a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  position: relative;
  font-weight: bold;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #ff9c3e;
}
.footer-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #ff6b00;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: width 0.4s ease;
}
.footer-links a:hover::after {
  width: 100%;
}
.social-link {
  margin-bottom: 30px;
}
.social-link a {
  color: #ff6b00;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-link a:hover {
  color: #ff9c3e;
  transform: scale(1.2);
}
.social-link i {
  font-size: 28px;
  transition: transform 0.3s ease;
}
footer p {
  margin-top: 30px;
  font-size: 12px;
  color: #ccc;
}
@media (max-width: 768px) {
  header {
    width: 100dvw;
    padding: 10px;
  }
  .hero {
    min-height: 10dvh;
  }
  .logo {
    width: 50%;
    max-width: 300px;
  }
  nav {
    width: 100%;
  }
  .nav-menu > li > a {
    font-size: 1.25rem;
  }
  .submenu li a {
    font-size: 1rem;
  }
  .esquerda,
  .direita {
    flex-direction: column;
  }
  .esquerda .image,
  .direita .image {
    order: 0;
    width: 100%;
    max-width: 100%;
  }
  .esquerda .image img,
  .direita .image img {
    width: 100%;
  }
  .esquerda .content,
  .direita .content {
    order: 1;
    padding: 0;
  }
  .direita.academia .image {
    order: 1;
    width: 100%;
    max-width: 100%;
  }
  .direita.academia .content {
    order: 0;
    padding: 0;
  }
  .main h2 {
    margin: 10% 0;
    text-align: center;
  }
  .logisticaInfo .content {
    width: 90%;
  }
  .contact-info h2 {
    font-size: 1.75rem;
  }
  .contact-info address {
    font-size: 1.25rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-info {
    text-align: center;
  }
  footer {
    padding: 30px 15px;
    font-size: 13px;
  }
  .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .footer-links a {
    margin: 0;
    font-size: 14px;
  }
  .social-link {
    margin-bottom: 20px;
  }
  .social-link a {
    margin: 0 8px;
  }
  .social-link i {
    font-size: 24px;
  }
  footer p {
    margin-top: 20px;
    font-size: 11px;
  }
}
@media (min-width: 768px) {
  nav {
    width: 35%;
    height: 100vh;
  }
  .about .content {
    width: 80%;
    margin: 10%;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .missao .content {
    width: 80%;
    margin: 10%;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .main {
    padding: 5% 10% 5%;
  }
  .logisticaInfo {
    padding: 10%;
  }
}

.partners {
    padding: 2rem;
  }
  .carousel {
    display: flex;
    gap: 40px;
    padding: 20px 0;
    width: 100%;
  }
  .carousel-inner {
    display: flex;
    gap: 40px;
    animation: 30s linear infinite scroll;
  }
  .carousel-item {
    flex: 0 0 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .carousel-inner:hover {
    animation-play-state: paused;
  }