html {
  scroll-behavior: smooth !important;
}

* {
  font-family: montserrat;
  box-sizing: border-box;
}

.container {
  width: 90% !important;
  margin: 0 auto;
}

header {    
  width: 100%;  
  height: 130px;
}

header .container .logo {
  float: left;
  margin: 10px 0;
}

header .container .logo a {
  float: left;
  width: 100%;
  height: 100%;
}

header .container .logo a svg {
  width: 100%;  
}

header .container nav {
  float: right;
  margin-top: 60px;
}

header .container nav ul {
  display: flex;
  gap: 30px;
}

header .container nav ul li a {
  font-size: 17px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  font-weight: 300;
}

.wppFlutuante {
  position: fixed;
  bottom: 10px;
  right: 30px;
  background: #98C983;
  border-radius: 100px;
  box-sizing: border-box;
  width: 65px;
  height: 65px;
  padding: 19px;
  z-index: 1;
}

.wppFlutuante svg {
  width: 100%;
  height: auto;
}

main {
  float: left;
  width: 100%;
}

main .banner {
  height: auto;
  float: left;
  width: 100%;
}

main .banner .carousel {
  height: 100%;
}

main .banner .carousel .carousel-inner {
  height: 100%;
}

main .banner .carousel .carousel-inner .item {
  height: 100%;
}

main .banner .carousel .carousel-inner .item img {
  width: 100%;
  float: left;
  height: 100%;
  object-fit: cover;
}

main .title {
  font-size: 40px;
  color: #3B3F98;
  float: left;
  width: 100%;
  margin: 50px 0;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

main .title b {
  font-weight: 900
}

main .sobre {
  float: left;
  width: 100%;
  padding: 50px 0;
}

main .sobre .texto {
  float: left;
  width: 100%;
  margin-bottom: 0px;
}

main .sobre .texto p {
  font-size: 20px;
  line-height: 35px;
  text-align: justify;
  margin: 0 0 10px 0;
  width: 100%;
}


main .sobre .texto .dir {
 display: flex;
    gap: 35px;
    flex: 1;
    width: 100%;
    float: left;
    margin-top: 30px;
}

main .sobre .texto .esq {
  float: left;
  width: 100%; 
}

main .sobre .texto .card {
 flex: 1; /* todos ocupam a mesma largura */
  background: #fdc1c19e;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
}

main .sobre .texto .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

main .sobre .texto .card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #3B3F98;
  text-transform:uppercase;
}

main .sobre .texto .card p {
  font-size: 14px;
  color: #333333;
}

main .sobre .texto .esq img {
  width: 100%;
  float: left;
}

/*main .sobre .texto .dir {
  
}*/

main .wpp {
  background: #98C983;
  border-radius: 100px;
  display: flex;
  width: 650px;
  gap: 20px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  height: 100px;
  padding: 0 16px;
  margin: auto;
}

main .wpp b {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
}

main .convenios {
  float: left;
  width: 100%;
  background: #fdc1c19e;
  padding: 50px 0;
}

main .convenios .texto {
  float: left;
  width: 100%;
  margin-bottom: 50px;
}

main .convenios .texto p {
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  margin: 0;
  width: 100%;
}

main .convenios .imgsConv {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 10px 200px;
  grid-gap: 20px;
}

main .convenios .imgsConv img {
  width: 100%;
}

main .depoimentos {
    float: left;
    width: 100%;
    padding: 50px 0;
}


main .cards-depoimentos {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    float: left;
    width: 100%;
    text-align: center;
}

main .depoimento-card {
  background: #ffffff;
  flex: 1 1 300px;
  max-width: 350px;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

main .depoimento-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

main .depoimento-card p {
  font-style: italic;
  color: #475569;
  margin-bottom: 20px;
}

main .depoimento-card h4 {
  font-weight: 600;
  color: #1f2937;
}




.grid-servicos {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards por linha */
  gap: 30px;
  justify-items: center;
  float: left;
  width: 100%;
  margin-bottom: 55px;
}

@media (max-width: 1024px) {
  .grid-servicos {
    grid-template-columns: repeat(2, 1fr); /* 2 cards por linha em tablets */
  }
}

@media (max-width: 768px) {
  .grid-servicos {
    grid-template-columns: 1fr; /* 1 card por linha em celulares */
  }
}

.servico-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.servico-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
  background: #2563eb;
  color: #fff;
}

.servico-card:hover h3,
.servico-card:hover p {
  color: #fff;
}

.servico-card .numero {
  font-size: 50px;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.15);
  position: absolute;
  top: 20px;
  right: 20px;
}

.servico-card .icone {
  font-size: 40px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.servico-card:hover .icone {
  transform: scale(1.3) rotate(10deg);
}

.servico-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #1f2937;
  transition: color 0.3s ease;
}

.servico-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  transition: color 0.3s ease;
}

/* Animação de entrada */
.servico-card {
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.6s forwards;
}

.servico-card:nth-child(1) { animation-delay: 0.1s; }
.servico-card:nth-child(2) { animation-delay: 0.2s; }
.servico-card:nth-child(3) { animation-delay: 0.3s; }
.servico-card:nth-child(4) { animation-delay: 0.4s; }
.servico-card:nth-child(5) { animation-delay: 0.5s; }
.servico-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


main .diferencias {
  float: left;
  width: 100%;
  padding: 50px 0;
}

main .diferencias .texto {
  float: left;
  width: 100%;
  margin-bottom: 50px;
}

main .diferencias .texto p {
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  margin: 0;
  width: 100%;
}

main .diferencias .boxesDif {
  float: left;
  width: 100%;
  text-align: center;
}

main .diferencias .boxesDif .box {
  page-break-inside: avoid;
  background: #fdc1c19e;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

main .diferencias .boxesDif .box h2 {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 20px;
}

main .diferencias .boxesDif .box p {
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 15px;
}

main .diferencias .boxesDif .box ul {
  padding-left: 15px;
}

main .diferencias .boxesDif .box ul li {
  font-size: 15px;
  line-height: 20px;
  list-style: disc;
  margin-bottom: 10px;
  font-weight: 300;
  letter-spacing: 1px;
}

main .diferencias .boxesDif .box.logoT {
  background: none;
  padding: 90px;
}

main .diferencias .boxesDif .box.logoT svg {
  width: 100%;
  height: auto;
}

main .fotos {
  float: left;
  width: 100%;
  margin-top: 50px;
}

main .fotos #links {
  display: grid;
  float: left;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
}

main .fotos #links a {
  aspect-ratio: 3/2;
}

main .fotos #links a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  float: left;
}


main .faq-section {
  float:left;
  width:100%;
  margin-bottom: 60px;
}

main .faq-content {
  float:left;
  width:100%;
}

main .faq-tabs {
  float:left;
  width:100%;
}


main .faq-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

main .faq-tabs .tab {
  background: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  color: #1f2937;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

main .faq-tabs .tab.active {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

main .faq-group {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

main .faq-card {
  background: #fff;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

main .faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

main .faq-question {
  font-weight: 600;
  color: #1f2937;
  position: relative;
}

main .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 20px;
  transition: transform 0.3s ease;
}

main .faq-card.active .faq-question::after {
  transform: rotate(45deg);
}

main .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  color: #475569;
  margin-top: 10px;
  opacity: 0;  
}

main .faq-card.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding:20px;
}

main .tratamentos {
  float: left;
  width: 100%;
  padding: 50px 0;
}

main .tratamentos .boxesTrat {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  float: left;
  width: 100%;
}

main .tratamentos .boxesTrat .trat {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  flex: 0 0 calc(25% - 10px);
  margin-bottom: 26px;
  padding: 0 15px;
  gap: 15px;
}

main .tratamentos .boxesTrat .trat img {
  width: 70px;
}

main .tratamentos .boxesTrat .trat h2 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300;
  width: 100%;
  text-align: center;
  color: #3B3F98;
}

main .servicos {
  background: #fdc1c19e;
  padding: 50px 0;
  float: left;
  width: 100%;
}

main .servicos .texto {
  float: left;
  width: 100%;
  margin-bottom: 50px;
}

main .servicos .texto p {
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  margin: 0;
  width: 100%;
}

main .servicos .list {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 50px;
}

main .servicos .list ul li {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  padding-left: 18px;
  line-height: 35px;
}

main .servicos .list ul li::before {
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  top: 12px;
  background-color: #3B3F98;
  content: "";
}

main .numeros {
  float: left;
  width: 100%;
  padding: 50px 0;
}

main .numeros .boxNum {
  display: flex;
  gap: 50px;
  justify-content: center;
}

main .numeros .boxNum .num {
  display: flex;
  align-items: center;
  gap: 20px;
}

main .numeros .boxNum .num .big {
  font-size: 50px;
  font-weight: 900;
  color: #0396D9;
}

main .numeros .boxNum .num .small {
  font-size: 13px;
  line-height: 18px;
  color: #3B3F98;
  font-weight: 700;
}

footer {
  width: 100%;
  background: #fdc1c19e;
  display: flex !important;
  align-items: center;
  float: left;
  padding-left: 70px !important;
  gap: 50px;
  justify-content: space-between;
  padding-bottom: 60px !important;
  position: relative;
  padding-right: 70px !important;
  padding-top: 50px !important;
}

footer .logo {
  margin: 0;
  width: 22%;
}

footer .logo svg {
  width: 100%;
  height: auto;
}

footer .telefones {
  float: left;
}

footer .telefones h2 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0;
}

footer .telefones p {
  font-size: 20px;
  margin: 0;
  line-height: 35px;
}

footer .certificado img {
  width: 160px;
}


footer iframe {
  width: 50%;
  height: 250px;
}

footer .dev {
  position: absolute;
  height: 60px;
  background: #fff;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 0;
}

footer .dev .boxUaal {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 10px;
}

footer .dev .boxUaal p {
  margin: 0;
}

@media only screen and (max-width: 1600px) {

  main .sobre .texto {
    position: relative;
  }

  main .sobre .texto p {
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    margin: 0 0 10px 0;
    width: 100%;
  }

  /*main .sobre .texto .esq {    
    width: 100%;
    padding: 0 25px 0 0;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  main .sobre .texto .dir {
    float: right;
    width: 50%;
    padding: 0 0 0 25px;
  }*/
  
  main .sobre .texto .dir {
	  display:grid;
  }

}