@import "https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Work Sans", sans-serif;
}

a:focus, a:active {
  outline: none;
}

::-webkit-scrollbar {
  width: 12px; /* Largura da barra de rolagem */
}

/* Para a barra de rolagem horizontal */
::-webkit-scrollbar-horizontal {
  height: 1px; /* Altura da barra de rolagem */
}

::-webkit-scrollbar {
  background-color: #051a2d;
}

::-webkit-scrollbar-thumb {
  background-color: #049cf9;
  border-radius: 10px;
}

/* Estilo da thumb quando hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #ecd897;
}

#cabecalho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 1rem 1.5rem;
  position: fixed;
  width: 100%;
  background-color: #051a2d;
  color: #f1ffe5;
  z-index: 1;
}

#logo {
  height: 50px;
  object-fit: cover;
}

/* ----------------- NAV DESKTOP -------------------------- */
#nav-bar {
  font-size: 20px;
}

#itens-nav-bar {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.item-nav {
  cursor: pointer;
}
.item-nav a {
  color: #f1ffe5;
  text-decoration: none;
  transition: all 0.4s;
}
.item-nav a:hover {
  color: rgb(247, 182, 18);
}

.btn-admin {
  padding: 0.7rem;
  background-color: transparent;
  border: 1px solid #049cf9;
  color: #049cf9;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn-admin:hover {
  background-color: #049cf9;
  color: #f1ffe5;
}

/* ------------------barra lateral mobile ----------------------------- */
#icone-aba {
  display: none;
  cursor: pointer;
}

#nav-bar-mobile {
  display: none;
  position: fixed;
  justify-content: flex-start;
  align-items: start;
  right: 0;
  z-index: 2;
  padding: 5rem 1rem;
  width: 200px;
  height: 100vh;
  font-size: 20px;
  transform: translateX(260px);
  background-color: rgb(9, 37, 86);
  transition: all 0.8s;
}

#mobile-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-decoration: none;
}

.item-mobile a {
  color: white;
  text-decoration: none;
}

#close {
  position: absolute;
  top: 9px;
  right: 8px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.btn-admin-mobile {
  padding: 0.7rem;
  background-color: #049cf9;
  border: none;
  color: #f1ffe5;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-admin-mobile:hover {
  background-color: rgb(6, 120, 196);
}

/* -------------------RESPOSIVIDADE------------------------- */
@media (max-width: 657px) {
  #itens-nav-bar {
    display: none;
  }
  #icone-aba {
    display: block;
  }
  #nav-bar-mobile {
    display: block;
  }
}
#principal {
  padding-top: 70px;
  height: calc(100vh + 70px);
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
}

#info-titulo {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 700px;
}

#titulo {
  font-size: 60px;
  font-weight: 400;
  align-items: start;
}
#titulo span {
  font-size: 90px;
  font-weight: 700;
  color: #049cf9;
}
#titulo::after {
  content: "";
  height: 4px;
  width: 300px;
  background-color: rgb(247, 182, 18);
  display: block;
  margin: 0 50%;
}

#texto-titulo {
  font-size: 19px;
  text-align: justify;
  align-items: start;
}

#action-btn {
  width: 250px;
  padding: 0.6rem 0.4rem;
  border: 1px solid #051a2d;
  background-color: #eac54d;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #051a2d;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
#action-btn:hover {
  background-color: #ecd897;
}
#action-btn a {
  color: currentColor;
  text-decoration: none;
}

#img-titulo {
  justify-content: start;
  display: flex;
  align-items: end;
  transition: all 0.4s;
}
#img-titulo img {
  border-radius: 100%;
  width: 400px;
  height: 400px;
  object-fit: cover;
  align-items: center;
}

/*--------------RESPONSIVIDADE--------------- */
@media (max-width: 1158px) {
  #info-titulo {
    width: 50%;
  }
  #titulo {
    font-size: 46px;
  }
  #titulo span {
    font-size: 75px;
  }
  #titulo::after {
    width: 50%;
    margin: 0 40%;
  }
  #texto-titulo {
    font-size: 15px;
  }
}
@media (max-width: 1078px) {
  #titulo::after {
    margin: 0 48%;
  }
  #action-btn {
    width: 200px;
    font-size: 14px;
  }
  #img-titulo img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 961px) {
  #titulo {
    font-size: 40px;
  }
  #titulo span {
    font-size: 70px;
  }
  #titulo::after {
    margin: 0 45%;
  }
  #action-btn {
    width: 180px;
    font-size: 12px;
  }
  #img-titulo img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 868px) {
  #titulo {
    font-size: 35px;
  }
  #titulo span {
    font-size: 65px;
  }
  #titulo::after {
    margin: 0 45%;
  }
  #action-btn {
    width: 180px;
    font-size: 12px;
  }
  #img-titulo img {
    width: 280px;
    height: 280px;
  }
}
@media (max-width: 779px) {
  #titulo::after {
    margin: 0 50%;
  }
}
@media (max-width: 724px) {
  #titulo {
    font-size: 30px;
  }
  #titulo span {
    font-size: 55px;
  }
  #titulo::after {
    margin: 0 45%;
  }
}
@media (max-width: 657px) {
  #principal {
    justify-content: center;
  }
  #info-titulo {
    width: 90%;
  }
  #titulo {
    font-size: 45px;
  }
  #titulo span {
    font-size: 85px;
  }
  #titulo::after {
    margin: 0 50%;
  }
  #texto-titulo {
    width: 90%;
  }
  #img-titulo {
    display: none;
  }
}
@media (max-width: 520px) {
  #info-titulo {
    width: 95%;
  }
  #titulo {
    font-size: 45px;
  }
  #titulo span {
    font-size: 85px;
  }
  #titulo::after {
    margin: 0 50%;
  }
  #texto-titulo {
    width: 90%;
  }
  #img-titulo {
    display: none;
  }
}
@media (max-width: 493px) {
  #info-titulo {
    width: 100%;
    padding-left: 1rem;
    padding-bottom: 1rem;
  }
  #titulo {
    font-size: 35px;
  }
  #titulo span {
    font-size: 55px;
  }
  #titulo::after {
    margin: 0 35%;
  }
  #texto-titulo {
    width: 90%;
  }
}
@media (max-width: 440px) {
  #titulo {
    font-size: 30px;
  }
  #titulo span {
    font-size: 50px;
  }
  #titulo::after {
    margin: 0 40%;
  }
  #texto-titulo {
    width: 90%;
  }
}
@media (max-width: 364px) {
  #texto-titulo {
    font-size: 12px;
    width: 95%;
  }
  #action-btn {
    width: 200px;
    font-size: 14px;
  }
}
@media (max-width: 354px) {
  #titulo::after {
    margin: 0 45%;
  }
  #texto-titulo {
    font-size: 12px;
    width: 95%;
  }
  #action-btn {
    width: 160px;
    font-size: 12px;
  }
}
@media (max-width: 336px) {
  #titulo {
    font-size: 25px;
  }
  #titulo span {
    font-size: 40px;
  }
  #titulo::after {
    margin: 0 40%;
  }
  #texto-titulo {
    font-size: 10px;
    width: 95%;
  }
  #action-btn {
    width: 160px;
    font-size: 12px;
  }
}
#sobre-div {
  display: flex;
  padding: 70px 2rem 70px 2rem;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6rem;
  width: 100%;
  height: calc(100vh + 68px);
  align-items: center;
  justify-content: center;
  background-color: rgb(1, 10, 26);
}

.sobre-item {
  padding: 1rem;
  border: none;
  background-color: rgb(1, 1, 15);
  color: #f1ffe5;
  height: 500px;
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s;
}
.sobre-item:hover {
  background-color: rgb(11, 114, 126);
  transform: scale(1.2);
}

.item-title {
  font-size: 40px;
  font-weight: 400;
}

.description-text {
  color: #fff;
}

/*----------------RESPONSIVIDADE-----------------*/
@media (max-width: 1251px) {
  #sobre-div {
    gap: 2rem;
  }
}
@media (max-width: 948px) {
  #sobre-div {
    gap: 0.5rem;
  }
}
@media (max-width: 705px) {
  #sobre-div {
    gap: 4rem;
    flex-direction: column;
    height: auto;
    padding-bottom: 4rem;
  }
  .sobre-item {
    padding: 1rem;
    border: none;
    height: 380px;
    width: 350px;
  }
}
@media (max-width: 369px) {
  #sobre-div {
    gap: 2rem;
    flex-direction: column;
    height: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .sobre-item {
    padding: 1rem;
    border: none;
    height: 480px;
    width: 100%;
  }
}
#div-beneficios {
  display: flex;
  align-items: center;
  padding: 3rem 1.8rem;
  width: 100%;
  height: 100%;
  gap: 6rem;
}

.img-benef {
  border-radius: 100%;
  width: 400px;
  height: 400px;
  object-fit: cover;
  align-items: center;
  box-shadow: 6px 4px 50px #051a2d;
}

.beneficios {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  align-items: flex-start;
  gap: 1.8rem;
  justify-content: space-evenly;
}

.itens-benef {
  border: 1px solid #051a2d;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 6px 6px 19px #051a2d;
  background-color: #051a2d;
  color: #f1ffe5;
}

.destaque {
  color: #049cf9;
  font-size: 18px;
}

@media (max-width: 1225px) {
  .beneficios {
    gap: 0.5rem;
  }
}
@media (max-width: 1153px) {
  .beneficios {
    gap: 1.5rem;
  }
  .img-benef {
    display: none;
  }
}
#div-rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 1rem 1.5rem;
  width: 100%;
  background-color: #051a2d;
  color: #f1ffe5;
  z-index: 1;
}

#infos-empresa {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

#nomeEmpresa {
  font-size: 20px;
  font-weight: bold;
}

#endereco {
  font-size: 12px;
}

.social-medias {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-end;
}

.icons {
  font-size: 30px;
  cursor: pointer;
  transition: all 0.4s;
  color: #f1ffe5;
}

.face {
  transition: all 0.4s ease;
}
.face:hover {
  color: #049cf9;
}

.insta {
  transition: all 0.4s ease;
}
.insta:hover {
  color: #ef4fe1;
}

.whats {
  transition: all 0.4s ease;
}
.whats:hover {
  color: #2fc379;
}

@media (max-width: 667px) {
  #nomeEmpresa {
    font-size: 18px;
  }
  #endereco {
    font-size: 12px;
  }
}
@media (max-width: 571px) {
  #nomeEmpresa {
    font-size: 16px;
  }
  #endereco {
    font-size: 10px;
  }
  .icons {
    font-size: 24px;
  }
}
@media (max-width: 460px) {
  #div-rodape {
    padding: 1rem 0.8rem;
  }
  #nomeEmpresa {
    font-size: 14px;
  }
  #endereco {
    font-size: 10px;
    width: 220px;
  }
  .social-medias {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
  }
  .icons {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  #nomeEmpresa {
    font-size: 12px;
  }
  #endereco {
    font-size: 8px;
  }
  .icons {
    font-size: 18px;
  }
}
@media (max-width: 366px) {
  .social-medias {
    gap: 0.7rem;
  }
  .icons {
    font-size: 14px;
  }
}
@media (max-width: 311px) {
  #endereco {
    width: 180px;
  }
}
body {
  height: 100vh;
  width: 100%;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  position: relative;
}

section,
footer {
  z-index: 0;
}

/*# sourceMappingURL=index.css.map */
