
/* https://andy-bell.co.uk/a-modern-css-reset/ */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}


/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  margin: 0;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* END reset */




*{
	-moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}



.swiper-container {
  width: 100%;
}
.swiper-slide {
  height: auto;
  text-align: center;
  font-size: 18px;
  background: none;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}




/* GLOBAL */
body{
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


h1, h2, h3, h4, h5, h6{
  margin: 0;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 700;
  font-style: normal;
}

p{
  margin: 0 0 10px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}


.container{
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.btn{
  padding: 12px 30px 15px;
  border-radius: 100px;
  background: #80A442;
  color: #fafafa;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  text-decoration: none;
}

.btn:hover{
  background: #0A2845;
}


section{
  padding: 80px 0;
}


h2{
  font-size: 42px;
  line-height: 44px;
}

h2 span{
  display: block;
  font-weight: 500;
}

h3{
  font-size: 32px;
}


.title{
  padding: 0 12%;
}

.title.center{
  text-align: center;
}



.mensagem {
  margin-top: 15px;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  display: none;
}

.mensagem.sucesso {
  background-color: #d4edda;
  color: #155724;
}

.mensagem.erro {
  background-color: #f8d7da;
  color: #721c24;
}



.loading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-style: italic;
  color: #666;
  margin-top: 10px;
}

.spinner {
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
}

.path {
  stroke: #999;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}





/* SECTIONS */
header{
  width: 100%;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
  border-top: 8px solid #04B1B5;
  position: relative;
  z-index: 99;
  position: fixed;
  top: 0;
}

header .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header .brand{
  width: 250px;
}

header .brand img{
  width: 100%;
  height: auto;
}



header nav ul{
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  gap: 10px;
}

header nav li a{
  padding: 8px 10px;
  font-size: 16px;
  color: #0A2845;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  text-decoration: none;
}

header nav li a.active{
  color: #158794;
}


header nav li a:hover{
  color: #158794;
}




header.scrolled{
  padding: 10px 0;
  border-top: 5px solid #04B1B5;
}

header.scrolled .brand{
  width: 200px;
}




.hero{
  min-height: 95vh;
  padding: 150px 0 250px;
  margin-top: 100px;
  background: url(../images/hero-banner.jpeg) no-repeat center bottom;
  background-size: cover;
}

.hero .text{
  width: 60%;
}

.hero h1{
  margin: 0 0 50px;
  font-size: 38px;
  line-height: 48px;
  font-weight: 600;
  color: #0A2845;
}



.about{
  background: #0A2845 url(../images/dots-halftone.png) no-repeat center center;
  background-size: cover;
  color: #fafafa;
}

.about .container{
  max-width: 850px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.about h2{
  width: 30%;
  font-size: 62px;
  line-height: 52px;
}

.about h2 span{
  font-size: 42px;
}




.about-two{
  background: #0E5363 url(../images/bg-chemistry.png) no-repeat right 110%;
  background-size: 40% auto;
  color: #fafafa;
}

.about-two h3{
  margin-bottom: 15px;
}

.about-two .first{
  margin-block-end: 60px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.about-two .text{
  width: 45%;
}


.about-two .boxes{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-two .boxes .item{
  width: 32%;
  padding: 40px 20px;
  margin-bottom: 20px;
  background: #fafafa;
  border-radius: 20px;
  text-align: center;
  color: #0A2845;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-two .boxes .item strong{
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
}



.desafios{
  color: #0A2845;
  background: url(../images/circle-dots.png) no-repeat 110% 150%;
  background-size: 40% auto;
}

.desafios .title{
  margin-bottom: 10px;
}

.desafios h2{
  margin: 0 0 10px;
}


.desafios .swiper-container-autoheight .swiper-wrapper{
  align-items: center;
}

.desafios .wrap-slider{
  position: relative;
}

.desafios .swiper-container{
  max-width: 85%;
}

.desafios .swiper-slide{
  padding: 40px 10px;
}

.desafios .swiper-button-next,
.desafios .swiper-button-prev{
  width: 35px;
  height: 53px;
}

.desafios .swiper-button-prev{
  background: url(../images/left.png) no-repeat center center;
}

.desafios .swiper-button-next{
  background: url(../images/right.png) no-repeat center center;
}

.desafios .swiper-button-next2,
.desafios .swiper-button-prev2{
  width: 35px;
  height: 53px;
}

.desafios .swiper-button-prev2{
  background: url(../images/left.png) no-repeat center center;
}

.desafios .swiper-button-next2{
  background: url(../images/right.png) no-repeat center center;
}
.desafios .item{
  padding: 0 30px 30px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.desafios .item .icon{
  width: 100px;
  height: 100px;
  margin: -20px auto 15px;
  display: block;
  background: #0E5363;
  color: #fafafa;
  font-size: 42px;
  border-radius: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desafios .item strong{
  margin-bottom: 15px;
  font-family: "Bai Jamjuree", sans-serif;;
  font-weight: 600;
  color: #0A2845;
  font-size: 20px;
}

.desafios .item p{
  color: #0A2845;
  font-size: 16px;
}






.hosptalk{
  width: 100%;
  padding-block: 140px;
  background: #158794 url(../images/bg-chemistry2.png) no-repeat -5% 130%;
  border-radius: 20px;
  color: #fafafa;
  position: relative;
  z-index: 2;
}

.hosptalk .container{
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.hosptalk figure{
  width: 30%;
  margin: 0;
}

.hosptalk .info{
  width: 70%;
}

.hosptalk h2{
  margin-bottom: 20px;
}

.hosptalk p{
  margin-bottom: 45px;
}


.turnvs{
  width: 100%;
  padding-block: 140px;
  background: #113d6f url(../images/bg-chemistry2.png) no-repeat -5% 130%;
  border-radius: 20px;
  color: #fafafa;
  position: relative;
  z-index: 2;
}

.turnvs .container{
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.turnvs figure{
  width: 30%;
  margin: 0;
}

.turnvs .info{
  width: 70%;
}

.turnvs h2{
  margin-bottom: 20px;
}

.turnvs p{
  margin-bottom: 45px;
}


.conversion{
  padding-top: 120px;
  margin-top: -35px;
  background: #F8F8F8;
  border-radius: 20px;
}

.conversion .container{
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.conversion h2{
  margin-bottom: 25px;
}

.conversion .left,
.conversion .right{
  width: 45%;
}

.conversion .left{
  color: #0A2845;
}

.conversion .form{
  padding: 25px;
  margin-top: -120px;
  background: #0A2845;
  border-radius: 20px;
  color: #fafafa;
  position: relative;
  z-index: 3;
}

.conversion .form strong{
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.conversion .form p{
  margin-bottom: 20px;
}

.conversion .field{
  margin-bottom: 10px;
}

.conversion .field label{
  margin-bottom: 5px;
  display: block;
  font-size: 16px;
  line-height: 16px;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
}

.conversion input{
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 5px;
  color: #3c3c3c;
}

.conversion .fone input{
  width: 70%;
}

.conversion .form button{
  width: 80%;
  margin: 40px auto 20px;
  display: block;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}


.conversion .form button:hover{
  background: #158794;
}




.conversion.alt{
  padding: 60px 0 40px;
}

.conversion.alt .form{
  margin-top: -100px;
}




footer{
  padding: 60px 0;
}

footer .container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

footer .item{
  width: 25%;
  padding: 0 15px;
  font-family: "Roboto", sans-serif;
  color: #0A2845;
}

footer .item.bt-whats{
  width: 30%;
}

footer .item.social{
  width: 20%;
}


footer strong{
  color: #0A2845;
  font-size: 14px;
}

footer .whats{
  padding: 10px 15px;
  border: 1px solid #0A2845;
  border-radius: 10px;
  color: #0A2845;
  text-decoration: none;
}

footer .whats:hover{
  background: #0A2845;
  color: #fafafa;
}

footer .social ul{
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  gap: 10px;
}

footer .social ul li a{
  font-size: 32px;
  color: #0A2845;
}



.sign{
  padding: 20px 0;
  text-align: center;
  color: #9B9B9B;
  font-size: 12px;
}







.banner.hosptalk{
  padding: 60px 0 80px;
  margin-top: 100px;
  border-radius: 0 0 20px 20px;
  background: #158794 url(../images/bg-chemistry3.png) no-repeat center center;
  background-size: cover;
}

.banner.hosptalk h1{
  font-size: 52px;
}

.banner.hosptalk .info p{
  padding-right: 100px;
}



.banner.turnvs{
  padding: 60px 0 80px;
  margin-top: 100px;
  border-radius: 0 0 20px 20px;
  background: #113d6f url(../images/bg-chemistry3.png) no-repeat center center;
  background-size: cover;
}

.banner.turnvs h1{
  font-size: 52px;
}

.banner.turnvs .info p{
  padding-right: 100px;
}


.carecteristicas .title{
  margin-bottom: 40px;
}

.carecteristicas h2{
  color: #0A2845;
}

.carecteristicas .boxes{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.carecteristicas .boxes .item{
  width: 48%;
  padding: 30px;
  margin-bottom: 10px;
  border-radius: 20px;
  background: #fafafa;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.carecteristicas .boxes .item strong{
  margin-bottom: 10px;
  display: block;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0A2845;
}



.porque{
  margin-bottom: 50px;
}

.porque .title{
  margin-bottom: 40px;
}

.porque h2{
  color: #0A2845;
  font-size: 62px;
}

.porque h2 span{
  font-size: 32px;
  font-weight: 400;
}


.porque .container{
  max-width: 1000px;
}

.porque .item{
  padding: 30px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.porque .item:nth-child(odd){
  flex-direction: row-reverse;
}

.porque .item figure{
  width: 30%;
  margin: 0;
  text-align: center;
}

.porque .item figure img{
  width: 70%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.porque .item .infos{
  width: 55%;
}

.porque h3{
  color: #0A2845;
  font-size: 32px;
  line-height: 38px;
  font-weight: 500;
}





.carecteristicas{
  padding-bottom: 0;
  background: url(../images/circle-dots.png) no-repeat 110% -100px;
  background-size: 45% auto;
}

.porque{
  background: url(../images/circle-dots.png) no-repeat -100px 110%;
  background-size: 45% auto;
}








/* Responsivo */

@media (max-width: 1199px) and (min-width: 992px) {

	.hero{
    padding: 100px 0 200px;
    min-height: 70vh;
  }

  .hero .text{
    width: 65%;
    margin-top: 100px;
  }



}


@media (max-width: 991px) and (min-width: 768px) {

  header .container{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  header nav{
    margin: 15px 0;
  }

  .hero{
    padding: 100px 0 200px;
    min-height: 70vh;
  }

  .hero .text{
    width: 65%;
    margin-top: 100px;
  }


  footer img{
    max-width: 250px;
    margin: 0 auto;
    display: block;
  }

  footer .item{
    width: 100%!important;
    text-align: center;
    margin-bottom: 30px;
  }

  footer .social ul{
    justify-content: center;
  }


}


@media (max-width: 767px) {

  header .container{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  header nav{
    margin: 15px 0;
  }

  .menu {
    display: none;  /* Esconde o menu no mobile */
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 130px;
    left: 0;
    right: 0;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    margin: 10px;
  }

  .menu-toggle span {
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px auto;
    background-color: #04B1B5;
  }

  .menu.active {
    display: flex;
  }

  header nav ul{
    gap: 0;
  }

  header nav li a{
    display: block;
    font-weight: 500;
    font-size: 18px;
  }


  .hero{
    padding: 100px 0 200px;
    margin-top: 140px;
    min-height: 70vh;
  }

  .hero .text{
    width: 67%;
    margin-top: 50px;
  }

  .hero h1{
    font-size: 32px;
    line-height: 42px;
  }


  .about .container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }



  .about-two .first{
    gap: 20px;
  }

  .about-two .text{
    width: 100%;
  }


  .about-two .boxes .item{
    width: 49%;
  }


  .hosptalk{
    background-position: -50% 130%;
  }


  .banner.hosptalk{
    margin-top: 140px;
  }

  .banner.hosptalk h1{
    font-size: 42px;
  }

  .turnvs{
    background-position: -50% 130%;
  }


  .banner.turnvs{
    margin-top: 140px;
  }

  .banner.turnvs h1{
    font-size: 42px;
  }


  footer img{
    max-width: 250px;
    margin: 0 auto;
    display: block;
  }

  footer .item{
    width: 100%!important;
    text-align: center;
    margin-bottom: 30px;
  }

  footer .social ul{
    justify-content: center;
  }
	
}


@media (max-width: 600px) {


  .about h2{
    width: 100%;
  }


  .about-two .boxes{
    gap: 20px;
  }

  .about-two .boxes .item{
    width: 100%;
    margin: 0;
  }


  .title{
    padding: 0 5%;
  }


  .hosptalk{
    background-size: 300px auto;
    background-position: -10% 110%;
  }

  .hosptalk .container{
    gap: 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  
  .hosptalk figure{
    width: 60%;
    margin-bottom: 25px;
  }

  .hosptalk .info{
    width: 100%;
  }

  .banner.hosptalk .info p{
    padding: 0;
  }

.turnvs{
    background-size: 300px auto;
    background-position: -10% 110%;
  }

  .turnvs .container{
    gap: 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  
  .turnvs figure{
    width: 60%;
    margin-bottom: 25px;
  }

  .turnvs .info{
    width: 100%;
  }

  .banner.turnvs .info p{
    padding: 0;
  }

  .conversion .container{
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .conversion .left,
  .conversion .right{
    width: 100%;
  }

  .conversion .left{
    text-align: center;
  }

  .conversion .form{
    margin-top: 0;
  }


  .carecteristicas .boxes .item{
    width: 100%;
    text-align: center;
  }

  .carecteristicas h2{
    font-size: 32px;
  }


  .porque .item, .porque .item:nth-child(odd){
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .porque .item figure{
    width: 70%;
    margin-bottom: 20px;
  }

  .porque .item .infos{
    width: 100%;
    text-align: center;
  }

  .porque h2{
    font-size: 42px;
  }

  .porque h2 span{
    font-size: 24px;
  }


  .conversion.alt .form{
    margin-top: 0;
  }


   .about-two h3{
    text-align: center;
  }

  .about-two .text{
    text-align: center;
  }


}


@media (max-width: 480px) {


  .hero{
    padding: 50px 0 50px;
  }

  .hero .text{
    width: 80%;
  }

  .hero .text h1{
    font-size: 24px;
    line-height: 32px;
  }


}


@media (max-width: 375px) {

  .hero{
    min-height: 50vh;
    padding: 50px 0;
  }

  .hero .text{
    margin-top: 0;
  }

  .hero .text h1{
    font-size: 20px;
    line-height: 26px;
  }

.desafios h2{
    font-size: 32px;
    line-height: 32px;
  }


}


@media (max-width: 320px){

  .hero{
    min-height: 55vh;
  }

  .hero .text{
    width: 85%;
  }

  .btn{
    font-size: 18px;
  }


}



