/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Padrões */

:root {
  --vermelho: #cc0000;
  --vermelho_escuro: #9A1915;
  --preto: #000;
  --branco: #ffffff;
  --fonte_texto: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--fonte);
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
}

/* Header */

.container_header {
  display: flex;
  align-items: center;
  gap: 0.33rem;
  padding: 0.5rem;
  background-color: var(--vermelho);
  height: 6rem;
}

.container_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 100%;
}

.container_img img {
  width: 70%;
  height: 80%;
}

.divisoria {
  background-color: var(--branco);
  width: 0.15rem;
  height: 80%;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 5rem;
  width: 70%;
}

.nav a {
  color: var(--branco);
  font-size: 20px;
  text-decoration: none;
  padding: 10px;
  border-radius: 15px;
  cursor: pointer;
}

.nav a:hover {
  background-color: var(--vermelho_escuro);
}

.strong {
  font-family: var(--fonte_texto);
}


/* Menu */
.icon-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 35px;
  height: 24px;
  cursor: pointer;
  margin-right: 1rem;
}

.line1, .line2, .line3 {
   background-color: #ffffff;
   height: 4px;
   width: 100%;
   border-radius: 2px;
}

.menu-dropdown {
  display: none;
  background-color: #9a1915;
  position: absolute;
  top: 70px;
  right: 20px;
  width: 150px;
  border-radius: 8px;
  z-index: 10;
}

.menu-dropdown ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  flex-direction: column;
}

.menu-dropdown ul li {
  margin: 0.1rem;
}

.menu-dropdown ul li a {
  text-decoration: none;
  font-size: 10px;
  color: #ffffff;
  font-size: 25px;
  display: block;
}

.menu-dropdown ul li a:hover {
  background-color: #5c0202;
  border-radius: 5px;
}
.divisoria_nav {
  background-color: var(--vermelho);
  width: 10%;
  height: 0.2rem;
  margin-left: 45%;

}



/* body*/

.banner {
  width: 100%;
  height: 30rem;
  display: flex;
  flex-direction: row;
}

.titulo {
  width: 60%;
  height: 100%;
  background-color: var(--preto);
  color: var(--branco);
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner .titulo h1 {
  font-size: 40px;
}

.fundo {
  width: 100%;
  height: 100%;
  background-color: var(--preto);
  display: flex;
  justify-content: flex-end;
}

.fundo img {
  width: 55%;
  height: 100%;
}

.carreiras {
  background-color: #ffffff;
  padding: 40px;
  text-align: center;
}

.options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.option {
  background-color: #f2f2f2;
  color: black;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
  text-align: left;
  font-size: 18px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}


.option:hover {
  background-color: #e6e6e6;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.option-consultoria {
  grid-column: span 2;
  position: relative;
}

.option-consultoria::after {
  content: "V";
  font-size: 20px;
}

.option-consultoria .description {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.img-container {
  background-color: black;

}

/* dropdown */
.container-title {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.container-title h1,
.container-title h2 {
  font-size: 19px;
  text-transform: uppercase;
}

.container-title h1 {
  color: var(--white-color);
}

.container-title h2 {
  color: var(--primary-color);
  font-weight: 600;
}

.container-careers {
  padding: 4.3rem;
  text-align: center;
  background-color: #dfdfdf;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 2%;
}



.container-careers .title {
  font-size: 3em;
  color: black;
  margin-bottom: 1rem;
}

.careers-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.careers-item h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 0.5rem;
}

.cereers-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}




/* Footer */

.footer-text {
  background-color: #9a1915;
  color: white;

}

.header-nav .nav-link {
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  margin: 6px;
  color: #ffffffff;
}

.footer {
  background-color: #9a1915;
  color: white;
  margin-top: 50px;
}

.footer .icones {
  background-color: #e30613;
}

.senai {
  width: 20%;
  display: inline-block;
  text-align: center;
  padding: 30px 0 20px 0;
  margin-left: 25%;
}

.senai h3 {
  text-align: left;
}

.senai p {
  text-align: left;
}

.sesi {
  width: 20%;
  display: inline-block;
  margin-left: 3%;
  text-align: center;
  padding: 0 0 20px 0px;
}

.sesi h3 {
  text-align: left;
}

.sesi p {
  text-align: left;
}

.footer .icones img {
  display: inline-block;
  margin-left: 25px;
  ;
}

.icones {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-text {
  background-color: #9a1915;
  color: white;
}



.img {
  width: 25%;
  margin-bottom: 300px;
  align-items: center;
}

.team {
  display: flex;
  justify-content: space-around;
  margin: 0px 0px 50px 0px;
  margin-left: 100px;
  margin-right: 100px;
}

.icones {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  align-items: center;
  margin-left: -135px;
}

/* Responsividade para tablets (largura máxima de 768px) */
@media (max-width: 768px) {
  .container_header {
      flex-direction: column;
      align-items: center;
      height: auto;
  }

  .container_img {
      width: 100%;
      justify-content: center;
  }

  .nav {
      display: none; /* Oculta o menu principal */
  }

  .menu-dropdown {
      display: block; /* Mostra o menu dropdown */
      position: static;
      width: 100%;
      text-align: center;
  }

  .banner {
      flex-direction: column;
      height: auto;
  }

  .titulo, .fundo img {
      width: 100%;
      height: auto;
  }

  .container-careers {
      padding: 2rem;
      gap: 1rem;
  }

  .careers-item {
      font-size: 0.9rem;
  }

  .footer .sesi, .footer .senai {
      width: 90%;
      text-align: center;
      margin: 1rem 0;
  }

  .footer .icones {
      flex-wrap: wrap;
      gap: 0.5rem;
  }
}

/* Responsividade para dispositivos móveis menores (largura máxima de 480px) */
@media (max-width: 480px) {
  .container_img img {
      width: 90%;
  }

  .banner {
      height: auto;
  }

  .titulo h1 {
      font-size: 1.5rem;
      text-align: center;
  }

  .careers-item {
      padding: 1rem;
  }

  .footer .icones img {
      width: 20px;
      height: 20px;
  }

  .sesi, .senai {
      font-size: 0.8rem;
  }
}
