@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

:root {
  --blue-color: #014a6c;
  --gray-color: #567381;
  --title-color: #091a3a;
  --background-color: #fff;
  --card-color: #fefefe;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
  display: inline-block;
}

ul {
  margin-bottom: 0;
}

.menu-btn {
  display: none;
}

.scrollToTop-btn {
  z-index: 1002;
  position: fixed;
  background-color: var(--blue-color);
  color: #fff;
  width: 37px;
  height: 37px;
  right: 0;
  bottom: 10px;
  font-size: 22px;
  text-align: center;
  line-height: 40px;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0;
  transition: all ease 0.5s;
}

.scrollToTop-btn.active {
  right: 20px;
  opacity: 1;
}

.scrollToTop-btn.active:hover {
  transform: scale(1.05);
  bottom: 15px;
}

/*************************************************************************
**************************************************************************
                Navigation
**************************************************************************
**************************************************************************
*/

header {
  z-index: 1001;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  transition: 0.5s ease;

  position: fixed;
}
header .link-img {
  width: 45%;
}

header .brand {
  width: 25%;
}

header .navigation {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

header .navigation .navigation-items a {
  color: var(--blue-color);
  position: relative;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:before {
  /*Faz a linha abaixo do navbar*/

  content: "";
  position: absolute;
  background: var(--gray-color);
  width: 0; /*Tem que ficar com 0, pois no efeito hover, ele volta para 100%, assim fazendo o efeito.*/
  height: 2px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before {
  width: 100%;
}

header.sticky {
  /* Muda a cor do navbar */
  padding: 20px 30px;
  transition: 1s ease;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

/*************************************************************************
**************************************************************************
                Home
**************************************************************************
**************************************************************************
*/

.home {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.home button {
  border: none;
  padding: 12px;
  border-radius: 7px;
  background-color: var(--blue-color);
  margin-top: 20px;
  cursor: pointer;
  transition: 0.5s ease;
}

.home button:hover {
  transform: scale(1.05);
}

.home button a {
  color: #fff;
}

/*Slide*/

.swiper {
  width: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: relative;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 35px;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--blue-color); !important;
}

.swiper-pagination-bullet-active {
  background: var(--blue-color); !important;
}

.infos {
  position: absolute;
  bottom: 35%;
  right: 0%;
  left: 0%;
  text-align: center;
}

.infos h1 {
  color: var(--blue-color);
  font-family: "Poppins";
  font-weight: 700;
}

.infos p {
  font-size: 30px;
  margin-top: 30px;
  color: var(--blue-color);
}

/*************************************************************************
**************************************************************************
                Serviços
**************************************************************************
**************************************************************************
*/

section.servicos .title {
  text-align: center;
  margin-bottom: 60px;
  color: var(--title-color);
}

section.servicos {
  padding: 50px 20px;
  display: flex;
  text-align: center;
  justify-content: center;
  background: var(--background-color);
}

.servicos .caixa {
  position: relative;
  background: var(--card-color);
  box-shadow: 0 0px 25px rgb(1 1 1 / 10%);
  padding: 80px 20px;
  border-radius: 5px;
  margin: 40px 0;
  transition: all ease 0.3s;
}

.servicos .caixa .icone {
  margin: 0 auto;
  width: 65px;
  height: 65px;
  background: var(--blue-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease 0s;
  transform-style: preserve-3d;
  z-index: 2;
}

.servicos .caixa .icone i {
  color: #fff;
  font-size: 1.7em;
}

.servicos .caixa .icone::before {
  position: absolute;
  content: '';
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(1, 74, 108, 0.452);
  border-radius: 5px;
  transition: all 0.3s ease 0s;
  transform: translateZ(-1px);
  z-index: 1;
}

.servicos .caixa h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.4em;
}

.servicos .caixa h4 a {
  color: #0b2341;
}

.servicos .caixa p {
  line-height: 1.6em;
  margin-bottom: 0;
  font-size: 14px;
}

.servicos .caixa:hover {
  background: var(--blue-color);
  border-color: rgb(252, 151, 20);
  transition: 0.5s ease;
}
.servicos .caixa:hover .icone {
  background: #fff;
}

.servicos .caixa:hover .icone i {
  color: var(--blue-color);
}

.servicos .caixa:hover h4 a,
.servicos .caixa:hover p {
  color: #fefefe;
}

.servicos .caixa:hover .icone::before {  
  background: rgba(86, 115, 129, 0.280);
}

.servicos .saiba-mais i {
  position: absolute;
  left: 10px;
  bottom: 5px;
  color: var(--blue-color);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  transition: 0.4s;
}

.servicos .caixa:hover .saiba-mais i {
  color: #fff;
}



/*************************************************************************
**************************************************************************
                Semi contact
**************************************************************************
**************************************************************************
*/

.semi-contact {
  background-image: url('/src/assets/img/cameras/lente-camera.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.semi-contact-interno {
  text-align: center;
  padding: 2rem 0;
}

.semi-contact h3 {
  font-size: 3rem;
  color: #fff;
  padding-bottom: 0.5rem;
  font-weight: 600;
  text-align: center;
  padding-top: 50px;
}

.semi-contact .semi-contact-interno .btn {
  background: var(--blue-color);
  padding: 10px 20px;
  color: #fff;
  font-size: 1.1em;
  border-radius: 5px;
  transition: 0.5s ease;
  margin-top: 50px;
}

.semi-contact .semi-contact-interno .btn::after {
  content: '';
  width: 0px;
  height: 1.5px;
  display: block;
  background: white;
  transition: 0.5s ease;
}

.semi-contact .semi-contact-interno .btn:hover::after {
  width: 100%;
}


/*************************************************************************
**************************************************************************
                Cases
**************************************************************************
**************************************************************************
*/

.cases {
  padding: 50px 10px;
}

.cases .title {
  text-align: center;
  margin-bottom: 60px;
  color: var(--title-color);
}


.cases .cases-slider .box .content h3 {
  margin-top: 10px;
  font-size: 1.6em;
  padding: 0.5rem 0;
  color: var(--title-color);
}

.cases .cases-slider .box {
  padding: 3rem;
  text-align: center;
  width: 30%;
  display: flex;
  flex-direction: column;
}

.cases .cases-slider .box .image {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0px 25px rgb(1 1 1 / 10%);
}

.cases .cases-slider .box .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.cases .cases-slider .box:hover .image img {
  transform: scale(1.1);
  transition: 0.5s ease;
}

.cases .cases-slider .box .content {
  padding: 0.5rem;
  box-shadow: 0 5px 25px rgb(1 1 1 / 10%);
  background-color: #f6f6f6b8;
}

.cases .cases-slider .box .content .btn {
  background: var(--blue-color);
  padding: 10px 20px;
  color: #fff;
  font-size: 0.8em;
  border-radius: 5px;
  transition: 0.5s ease;
  margin-top: 50px;
  margin-bottom: 20px;
}

.cases .cases-slider .box .content p {
  font-size: 0.8em;
  padding: 1em 0;
  line-height: 2;
  text-align: left;
}

.cases .cases-slider .box .content .btn::after {
  content: '';
  width: 0px;
  height: 1px;
  display: block;
  background: white;
  transition: 0.5s ease;
}
.cases .cases-slider .box .content .btn:hover::after {
  width: 100%;
}


/*************************************************************************
**************************************************************************
                Contato
**************************************************************************
**************************************************************************
*/

section.contato {
  padding: 50px 20px;
  width: 100%; 
  background-image: url('/src/assets/img/contato.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

section.contato .title {
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}

section.contato .caixa a {
  width: 300px;
  height: 200px;
  border-radius: 10px;
  background-color: #ddd;
  color: #091a3a;
  padding: 50px;
  margin: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0.85;
  box-shadow: 0 5px 25px rgb(1 1 1 / 80%);
  transition: 0.5s ease;
}

/*Efeito Hover*/

section.contato .caixa:hover a {
  background-color: #091a3a;
}

section.contato .caixa:hover a p,
section.contato .caixa:hover a h4,
section.contato .caixa:hover a .icone {
  color: #fff;
}

section.contato .caixa p {
  text-align: center;
}

section.contato .caixa .icone {
  font-size: 30px;
}

section.contato .caixa h4 {
  font-size: 22px;
}

section.contato .container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}


/*************************************************************************
**************************************************************************
                Footer
**************************************************************************
**************************************************************************
*/

.footer-container {
  display: flex;
  justify-content: space-evenly;
  background: #30384c;
  padding: 100px 20px 20px 20px;
}

.footer-container .box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-container .box h3 {
  font-size: 1.6em;
  padding: 0.9em 0;
  color: #ddd;
}

.footer-container .box-imagem {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
}

.footer-container .box-imagem img {
  width: 300px;
}

.footer-container .box-imagem p {
  font-size: 1.1em;
  color: white;
  align-items: center;
}

.footer-container .box a {
  display: block;
  font-size: 1.1em;
  padding: 0.7em 0;
  color: white;
}

.footer-container .box a i {
  padding-right: 0.5em;
  color: rgb(0, 165, 194);
  transition: 0.5s ease;
}

.footer-container .box a:hover i {
  padding-right: 1.2em;
  transition: 0.5s ease;
}

.medias {
  padding: 1em 0;
  text-align: center;
  background: #30384c;
}

.medias a {
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  font-size: 1.2rem;
  color: #fff;
  background: var(--blue-color);
  margin: 0 0.3em;
  border-radius: 50%;
  transition: 0.3s ease !important;
}

.medias a:hover {
  transition: 0.3s ease !important;
  transform: scale(1.1) !important;
}

.creditos {
  background: #30384c;
  padding: 4em;
}

.creditos p {
  font-size: 1.5em;
  color: #ddd;
  margin-bottom: 0;
  text-align: center;
}


/*************************************************************************
**************************************************************************
                Página de Informações dos Serviços
**************************************************************************
**************************************************************************
*/

.container-img img {
  width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.5s ease;
}

.container-img img:hover {
  transform: scale(1.05);
}

.descricao_servico {
  padding: 150px 50px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  gap: 140px;
  align-items: center;
  /* flex-wrap: wrap; */
}

.descricao_servico_02 {
  padding: 50px 50px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  gap: 140px;
  align-items: center;
  /* flex-wrap: wrap; */
}

.descricao {
  width: 800px;
}

@media (max-width: 1100px) {
  .descricao_servico {
    flex-wrap: wrap-reverse; /*Inverte a ordem que é 'quebrado' o container*/
  }

  .descricao_servico_02 {
    flex-wrap: wrap; /*Inverte a ordem que é 'quebrado' o container*/
  }
}


/*************************************************************************
**************************************************************************
                Responsividade - 1154px
**************************************************************************
**************************************************************************
*/

@media (max-width: 1154px) {
  header .navigation {
    /*Foi colocado none, para que o outro estilo com o .active fosse "ativado" sem mostrar o antigo navigation*/
    display: none;
  }

  header .navigation.active {
    /*Estruturação da navageção mobile*/
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  header .navigation .navigation-items a {
    color: #014a6c;;
    font-size: 1.2em;
    margin: 20px;
  }

  header .navigation .navigation-items a::before {
    background: #567381;
    height: 3px;
  }

  header .navigation.active .navigation-items {
    /*Resto da estilização da navegação mobile*/
    background: #fff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }

  .menu-btn {
    /*Colocando o menu quando estiver em telas menores*/
    display: inline-block;
    color: #014a6c;;
    cursor: pointer;
  }

  .menu-btn:hover {
    color: #015a6c;;
  }

  .menu-btn i {
    font-size: 25px;
  }

  .menu-btn.active {
    z-index: 999;
  }

  header .link-img {
    width: 45%;
  }

  header .brand {
    width: 100px;
  }

  li {
    margin: 2em;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 25px;
}
}

/*************************************************************************
**************************************************************************
                Responsividade - 1040px
**************************************************************************
**************************************************************************
*/

@media (max-width: 1040px) {
  

  html {
    font-size: 70%;
  }

  .cases {
    padding: 10px 0px;
  }

  .cases .cases-slider .box .content h3 {
    font-size: 1.5rem;
  }

  .cases .cases-slider .box .content p {
    font-size: 1.2rem;
  }
}

/*************************************************************************
**************************************************************************
                Responsividade - 764px
**************************************************************************
**************************************************************************
*/

@media (max-width: 764px) {

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px !important;
  }

  .home h1 {
    font-size: 35px;
  }

  .home p {
    font-size: 18px;
  }

  .home button a {
    font-size: 13px;
  }

  .home button {
    padding: 6px;
  }

  .home h1 {
    font-size: 28px;
  }

  .btn {
    padding: 5px 12px !important;
    font-size: 12px;
  }

  .infos {
    bottom: 38%;
  }
  
  .contato .caixa h4 {
    font-size: 14px !important;
  }
}


/*************************************************************************
**************************************************************************
                Responsividade - 620px
**************************************************************************
**************************************************************************
*/

@media (max-width: 670px) {

  header .link-img {
    width: 45%;
  }

  header .brand {
    width: 100px;
  }
  .semi-contact h3 {
    font-size: 2rem;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .footer-container .box-imagem {
    margin-top: 50px;
  }

  .footer-container .box-imagem p {
    margin-top: 50px;
  }

  .footer-container .box-imagem img {
    width: 150px;
  }

  .container-img img {
    width: 350px;
    height: 350px;
  }
}

/*************************************************************************
**************************************************************************
                Responsividade - 500px
**************************************************************************
**************************************************************************
*/

@media (max-width: 500px) {
/*Info Home*/
.home h1 {
  font-size: 23px !important;
}
.home p {
  font-size: 16px !important;
}

.swiper-button-next,
.swiper-button-prev {
  width: 5px !important;
  height: 50px !important;
}

}


/*************************************************************************
**************************************************************************
                Responsividade - 400px
**************************************************************************
**************************************************************************
*/

@media (max-width: 400px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 5px !important;
    height: 50px !important;
}

  .contato .caixa a {
    width: 250px !important;
  }
  
  .container-img img {
    width: 280px !important;
    height: 280px !important;
  }
}


.container-parceiros img {
  width: 250px;
  height: 80px;
  object-fit: contain;
  transition: 0.5s ease;
}

.container-parceiros img:hover {
  transform: scale(1.05);
}

@media (max-width: 1040px) {
  .container-parceiros img {
    width: 150px;
  }
}

@media (max-width: 400px) {
  .container-parceiros img {
    width: 110px;
  }
}