/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --black-color: #1D212D;
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

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

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #092737;
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

.sub-header{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffcd1c;
  text-align: center;
  padding: 7px 0;
  color: #000;
}

.sub-header p{
  margin-right: 7px;
}

.btn-ebook{
  background-color: #092737;
  color: #fff;
  padding: 3px;
  border-radius: 5px;
  font-weight: bold;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.pg-atual{
  color: #ffcd1c;
}

#btn-contato{
  border: 2px solid #ffcd1c;
  padding: 10px;
  border-radius: 5px;
}
#btn-contato:hover{
  background-color: #ffcd1c;
  padding: 10px;
  border-radius: 5px;
  transition: .3s;
}

#btn-exame{
  background-color: #35b909;
  padding: 10px;
  border-radius: 5px;
}

#btn-exame:hover{
    background-color: #59e72a;
  transition: .3s;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  cursor: pointer;
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__data img {
  max-height: 130px;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
 

  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }

  .nav__menu::-webkit-scrollbar {
    width: 0;
  }

  .nav__list {
    background-color: #092737;
    margin-top: 47px;
  }

  .nav__data img {
    max-height: 100px;
    margin-top: 5px;
    margin-left: -25px;
  }

  .banner-principal {
    margin-top: 120px !important;
    flex-direction: column; 
  }

  .texto-banner>#solucoes {
    font-size: 1.7rem !important;
  }

  .texto-banner h1 {
    font-size: 2rem !important;
  }


  .banner-principal > .img-banner{
    margin-bottom: -57px;
    align-items: center;
  }

  .txt-secundario {
    margin-left: 0px !important;
    font-size: 1rem !important;
    padding: 15px;
    line-height: 1.7rem;
  }


  .txt-cards {
    margin-right: 0px !important;
  }

  .txt-cards h2 {
    font-size: 1.7rem;
  }

  .txt-cards h2 {
    font-size: 1.7rem;
  }
  .txt-cards p {
    width: 100%;
    margin:0
  }

  .container-card-noticia {
    flex-wrap: wrap;
  }

  .container-contato {
    flex-direction: column;
  }
  
  .card-contato img {
    margin-right: 8px;
    width: 40px;
  }
  
  .card-contato p {
    font-size: 1.1rem !important;
  }
  
  .card-contato small {
    font-size: 1rem !important;
  }

  .container-contato iframe{
    width: 100%;
  }

}

.nav__link {
  color: var(--white-color);
  background-color: #092737;
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color .3s;
}

.nav__link span{
  background-image: linear-gradient(90deg, #ffcd1c, #ffcd1c) !important;
  transition: background-size 500ms ease !important;
  background-repeat: no-repeat !important;
  background-size: 0% 2px !important;
  background-position: center bottom !important; 
  padding-bottom: 2px;
}

.nav__link span:hover{
  background-size: 100% 2px !important; 
}



/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: #092737;
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: #ffcd1c;
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

.dropdown__subitem>.dropdown__link {
  background-color: #092737;
}
.dropdown__subitem>.dropdown__link:hover {
  background-color: #ffcd1c;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: #092737;
}




/* MAIN */

main{
  margin-top: 132px;
}

#hero{
  background-image: url(../img/textura-vetor-azulescuro.png);
  background-size: contain;
}

.btn-principal:hover{
  cursor: pointer;
}

.banner-principal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 160px;
  margin-bottom: 50px;
}

.texto-banner {
  max-width: 550px;
}

span#solucoes {
  font-weight: 500;
  font-size: 32px;
}

.texto-banner h1 {
  font-size: 48px;
  font-weight: bold;
  color: #ffcd1c;
  margin-bottom: 10px;
}

.texto-banner p {
  font-size: 21px;
  font-weight: 500;
  margin-top: 50px;
  margin-bottom: 50px;
}

.texto-banner a {
  background-color: #35b909;
  display: inline-block;
  margin-top: 15px;
  text-align: center;
  width: 260px;
  color: #fff;
  padding: 15px 35px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.texto-banner a:hover{
  background-color: #59e72a;
  transition: .3s;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.linha {
  border: .5px solid #ffcd1c;
  width: 150px;
  margin-bottom: 20px;
}
.linha1 {
  border: .5px solid #ffcd1c81;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.linha2 {
  border: .5px solid #ffcd1c81;
  width: 18%;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: -30px;
}
.linha-avaliacao{
  width: 50%;
  margin: 0 auto;
  border: 1px solid #ffcd1c;
}
.linha-noticias {
  border: .5px solid #ffcd1c;
  width: 15%;
  margin-bottom: 20px;
}

span.vetor {
  color: #ffcd1c;
  font-weight: bold;
}

span.bold {
  font-weight: bold;
}

.img-banner img {
  max-width: 100%;
}

.btn-container{
  display: flex;
  gap: 15px;
}

/* POPUP */
#popup-form{
  display:none; 
  position:fixed; 
  top:0; 
  left:0; 
  width:100%; 
  height:100%; 
  background:rgba(0,0,0,0.7); 
  z-index:1000;
  
}

#popup-form p{
  font-size: 14px;
  text-align: center;
}

#popup-form button{
  color: #000;
}

#popup-form button:hover{
  background-color: #fcde71;
  transition: .5s;
}

#popup-container{
  background:#fff; 
  padding:20px; 
  margin:10% auto; 
  width:90%; 
  max-width:460px; 
  position:relative;
  border-radius: 4px;
}

#popup-x{
  font-weight: bold; 
  position:absolute; 
  top:10px; 
  right:10px; 
  cursor:pointer;
}

/* POPUP ORCAMENTO*/
#popup-form-orcamento{
  display:none; 
  position:fixed; 
  top:0; 
  left:0; 
  width:100%; 
  height:100%; 
  background:rgba(0,0,0,0.7); 
  z-index:1000;
  
}

#popup-form-orcamento p{
  font-size: 14px;
  text-align: center;
}

#popup-form-orcamento button{
  color: #000;
}

#popup-form-orcamento button:hover{
  background-color: #fcde71;
  transition: .5s;
}

#popup-container-orcamento{
  background:#fff; 
  padding:20px; 
  margin:10% auto; 
  width:90%; 
  max-width:460px; 
  position:relative;
  border-radius: 4px;
}

/* POPUP BTN SERVICO */
#popup-form-servico{
  display:none; 
  position:fixed; 
  top:0; 
  left:0; 
  width:100%; 
  height:100%; 
  background:rgba(0,0,0,0.7); 
  z-index:1000;
  
}

#popup-form-servico p{
  font-size: 14px;
  text-align: center;
}

#popup-form-servico button{
  color: #000;
}

#popup-form-servico button:hover{
  background-color: #fcde71;
  transition: .5s;
}

#popup-container-servico{
  background:#fff; 
  padding:20px; 
  margin:10% auto; 
  width:90%; 
  max-width:460px; 
  position:relative;
  border-radius: 4px;
}


/* sessão 2 */
.banner-secundario {
  background-color: #DEE4EE;
  margin-top: 130px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.img-secundario img {
  max-width: 355px;
  margin-bottom: 50px;
}

.txt-secundario {
  max-width: 800px;
  font-size: 20px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: ;
}

.btn-secundario {
  background-color: #35b909;
  max-width: 250px;
  padding: 10px;
  color: #fff;
  margin-top: 15px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.btn-secundario:hover {
  background-color: #59e72a;
  transition: .3s;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

/*  */

/* cards */
.card-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background-color: #092737;
}

.card img{
  max-width: 70px;
}

.card p{
  font-size: .8rem;
}

.txt-cards {
  margin-top: 45px;
  font-size: 20px;
  width: 100%;
  text-align: center;
}

.txt-cards h2 {
  color: #ffcd1c;
  margin-bottom: 10px;
  text-shadow: 1px 1px 20px #000000;
}

.txt-cards p {
  color: #fff;
  width: 92%;
  margin: 0 auto;
}

.container-card{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 65px;
}

.card {
  background-color: #f1f1f1;
  width: 210px;
  height: 250px;
  padding: 5px;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;

  text-align: center;
  border-radius: 15px;
  box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.078);
}


.card h3 {
  font-size: 1.5rem;
}

.card small a{
  color: #092737;
}


/* .card > .btn-cards {
  font-size: .8rem;
  background-color: #ffcd1c;
  color: #000;
  padding: 10px 22px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 5px;
}

.card > .btn-cards:hover {
  transform: scaleX(1.1) scaleY(1.1);
  transition: .3s;
  box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.527);
}
 */
 .card > .btn-cards {
  border: 0 solid ;
  background-color: #ffcd1c;
  border-radius: 5px;
  color: #000;
  padding: 10px 22px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: #b3b3b3;
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.card > .btn-cards:hover {
  box-shadow: #5f5f5f;
  outline-color: rgba(243, 7, 7, 0);
  outline-offset: 10px;
  text-shadow: 1px 1px 2px #bdbdbd; 
  cursor: pointer;
}


/* swipper */
.parceiros {
  background-color: #F0F5FF;
  margin-top: 40px;
}


.parceiros h2 {
  color: #000;
  text-align: center;
  padding: 8px 0;
}

.swiper-wrapper {
  align-items: center;
  gap: 150px;
}


.swiper-slide {
  /* Certifique-se de que as imagens preencham o slide */
  padding: 15px 0px;
  max-height: 200px;
  max-width: 150px;
  filter: grayscale(10);
}

.swiper-slide:hover{
  filter: grayscale(0);
  scale: 1.2;
  transition: .7s;
}


.swiper-slide img {
  /* max-height: 130px;
  max-width: 180px; */
  width: 100%;
  height: 100%;
}

/* comentario */
.comentario{
  background-color: #8f8f8f;
  background-image: url(../img/textura-vetor-cinza.png);
  background-size: contain;
  background-attachment: scroll;
  /* background-color: #F1F1F1; */
  /* border-top: 1px solid #ffcd1c;
  border-bottom: 1px solid #ffcd1c; */
}


/* noticias */

.noticia{
  margin-top: 15px;
}

.noticia a{
  color: black;
}

.noticia h2 {
  font-size: 2rem;
}

.container-card-noticia {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}

.card-noticia {
  width: 380px;
  height: 420px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  background-color: #092737;
  border-radius: 0px 0px 5px 5px;
}

.card-noticia img {
  height: 220px;
  width: 100%;
}

.txt-card-noticia {
  padding: 0px 5px;
  height: 50px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.card-noticia h3 {
  color: #ffcd1c;
  margin: 5px 0px 5px 0px;
}
.card-noticia p {
  height: 100px;
  font-size: .9rem  ;
  margin-bottom: 5px;
}

.card-noticia a {
  color: #ffcd1c;
}

/* footer */
footer {
  background-color: #092737;
}

footer h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 15px;
  padding-top: 10px;
}

.container-contato {
  display: flex;
  justify-content: space-between;
}

.txt-contato {
  color: #fff;
}

.card-contato {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.card-contato img {
  margin-right: 8px;
  max-width: 40px;
}

.card-contato p {
  font-weight: bold;
  font-size: 1.2rem;
}

.card-contato small {
  color: #C2C2C2;
  font-size: 1rem;
}

.container-rede-social svg{
  color: #C2C2C2;
  max-width: 40px;
}

.container-rede-social svg:hover{
  color: #ffcd1c;
  transition: .5s;
}




/* SOBRE */
.manut{
  display: flex;
  color: #ffcd1c;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
  width: 100%;
}

.manut h3{
  font-size: 2rem;
}

.manut img{
  max-width: 500px;
}


/* ZAP 
.whats {
  background-color: #40C351;
  border-radius: 100px;
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 70px;
  height: 70px;
}

.whats svg{
  width: 70%;
  margin-left: 11px;
}

.whats:hover{
    opacity:1;
}


#anima  {
    animation: wave 2s infinite;
    border-radius: 100%;
}

@keyframes wave {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(37,211,102,.4);
        box-shadow: 0 0 0 0 rgba(37,211,102,.4)
    }

    70% {
        -webkit-box-shadow: 0 0 0 60px rgba(37,211,102,0);
        box-shadow: 0 0 0 60px rgba(37,211,102,0)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(37,211,102,0);
        box-shadow: 0 0 0 0 rgba(37,211,102,0)
    }
}
*/


/* SCROLL BAR */

/* width */
::-webkit-scrollbar {
  width: 10px;
  background-color: #1d212d;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ffcd1c;
  border-radius: 15px;
}





/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 800px) {
  .parceiros h2{
    font-size: 1.1rem;
  }
  .sub-header{
    flex-direction: column;
    padding: 02px;
  }

  .sub-header p{
    font-size: .8rem;
    margin-right: 0px;
  }

  .btn-ebook{
    font-size: .8rem;
  }
  
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }

  .btn-container{
    flex-direction: column;
  }

  .btn-principal{
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .banner-secundario{
    flex-direction: column-reverse;
    height: 100% !important;
    margin-top: 0px;
  }

  .btn-secundario{
    margin: 10px auto;
    
  }
  .img-secundario img {
    margin-bottom: -7px;
  }

  .card-container {
    justify-content: center;
  }

  .card{
    max-width: 200px !important;
  }

  .card p{
    font-size: .9rem;
  }

  .card a{
    font-size: .8rem;
  }

  /* .card {
  background-color: #f1f1f1;
  max-width: 200px;
  height: 250px;
  padding: 5px;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;

  text-align: center;
  border-radius: 15px;
  box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.078);
} */

.manut{
  
  margin-top: 100px;
  width: 100%;
}

.manut h3{
  font-size: 1.5rem;
}

.manut img{
  width: 100%;
}

.swiper-wrapper {
  gap: 50px;
}
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }



  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }

  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }

  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    width: 250px;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover>.dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }

  
}