@charset "UTF-8";
@import url("https://fonts.cdnfonts.com/css/segoe-ui-4:wght@100;300;400;700;900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  resize: none;
  outline: none;
  list-style: none;
  text-decoration: none;
  background-repeat: no-repeat !important;
  background-position: center;
  background-size: cover !important;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "Segoe UI", sans-serif;
  transition: all 0.5s ease;
}

html {
  scroll-behavior: smooth;
}

section {
  display: grid;
  place-items: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5% 0;
  position: relative;
  background-position: center;
}

body {
  background: #E9E9E9;
}

.container {
  width: 80%;
  display: grid;
  place-items: center;
}

a {
  width: -moz-fit-content;
  width: fit-content;
}

img {
  width: auto;
  height: auto;
}

button {
  background: transparent;
  font-size: 15px;
  width: 180px;
  height: 45px;
  border-radius: 9px;
  transition: all 0.75s ease;
  color: #006467;
  border: 1px solid #006467;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
button::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: #089599;
  z-index: -1;
  transition: all 0.5s ease;
}
button:hover {
  transform: scale(0.95);
  color: #fff;
}
button:hover::after {
  width: 100%;
}

h2 {
  color: #003234;
  font-size: 28px;
  font-weight: 600;
}

h3 {
  color: #003234;
  font-size: 20px;
  font-weight: 500;
}

p {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

::-webkit-scrollbar {
  background-color: #089599;
  width: 12px;
}

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

@media (max-width: 800px) {
  section {
    padding: 10% 0;
  }
  button {
    width: 172px;
    height: 45px;
    color: #E9E9E9;
  }
  button:hover {
    transform: none;
  }
  button::after {
    width: 100%;
  }
  h2 {
    font-size: 24px;
  }
  p {
    font-size: 16px !important;
  }
}
#header {
  background: #089599;
}
#header[data-active=true] {
  background: rgba(8, 149, 153, 0.6);
}
#header nav .cont .logo img {
  top: 0;
  transform: scale(1);
  opacity: 1;
}

header {
  background: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: all 0.5s ease-in;
  overflow: hidden;
}
header[data-active=true] {
  background: rgba(8, 149, 153, 0.6);
  box-shadow: 0px 3px 18px rgba(255, 255, 255, 0.1607843137);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
}
header[data-active=true] nav .cont .logo img {
  top: 0;
  transform: scale(1);
  opacity: 1;
}
header nav {
  transition: all 0.3s ease-in;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
header nav .cont {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
header nav .cont .logo {
  width: 10%;
  display: grid;
  place-items: center start;
}
header nav .cont .logo img {
  width: 100%;
  transition: all 0.8s ease;
  position: relative;
  top: -100%;
  transform: scale(0.6);
  opacity: 0;
}
header nav .cont .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
header nav .cont .icon img {
  width: auto;
  height: 25px;
  cursor: pointer;
  transition: all 0.5s ease;
}
header nav .cont .icon img:hover {
  transform: scale(0.9);
}
header nav .cont #menu__btn {
  display: none;
}
header nav .cont #sidebar__nav {
  width: auto;
  display: grid;
  place-items: center;
  position: relative;
  padding: 10px 50px;
}
header nav .cont #sidebar__nav ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 0 2rem;
  /* Não mexer */
  /* Não mexer ^^ */
}
header nav .cont #sidebar__nav ul .a2 {
  display: none;
}
header nav .cont #sidebar__nav ul li a {
  color: #fff;
  font-size: 14px;
  transition: all 0.5s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3px 10px;
  align-items: center;
  text-decoration: none;
  border-radius: 5px;
  overflow: hidden;
}
header nav .cont #sidebar__nav ul li a::after {
  content: "";
  position: absolute;
  display: grid;
  width: 0;
  left: 0;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: all 0.5s ease;
}
header nav .cont #sidebar__nav ul li a:hover {
  color: #089599;
}
header nav .cont #sidebar__nav ul li a:hover::after {
  height: 100%;
  width: 100%;
}
header nav .cont #sidebar__nav ul li a.active {
  color: #089599;
}
header nav .cont #sidebar__nav ul li a.active::after {
  height: 100%;
  width: 100%;
}

@media (max-width: 800px) {
  #header[data-active=true] {
    background: #089599;
  }
  header {
    height: 10%;
  }
  header::after {
    display: none;
  }
  header[data-active=true] {
    height: 10%;
    width: 100%;
    top: 0;
    background: #089599;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  header[data-active=true] nav {
    border-radius: 0;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  header[data-active=true] nav .cont #menu__btn .boll {
    border: 0.5px solid #707070;
  }
  header nav {
    width: 100%;
  }
  header nav .cont {
    width: 80%;
    justify-content: space-between;
  }
  header nav .cont .logo {
    width: 25%;
  }
  header nav .cont .icon {
    display: none;
  }
  header nav .cont #menu__btn {
    position: fixed;
    right: 10%;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 0.3rem 0;
    z-index: 10;
    cursor: pointer;
    transition: all 0.5s ease-out;
  }
  header nav .cont #menu__btn .boll {
    width: 25px;
    height: 4px;
    background: #fff;
    border: none;
    border-radius: 50px;
    transition: all 0.5s ease-out;
  }
  header nav .cont #menu__btn .boll:nth-child(2) {
    width: 15px;
  }
  header nav .cont #menu__btn[data-active=true] {
    right: 50%;
  }
  header nav .cont #menu__btn[data-active=true] .boll {
    transition: all 0.8s ease-out;
    border: none;
    position: absolute;
  }
  header nav .cont #menu__btn[data-active=true] .boll:nth-child(1) {
    transform: rotateZ(45deg);
  }
  header nav .cont #menu__btn[data-active=true] .boll:nth-child(3) {
    top: 5%;
    transform: rotateZ(-45deg);
  }
  header nav .cont #menu__btn[data-active=true] .boll:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }
  header nav .cont #sidebar__nav {
    position: fixed;
    width: 100%;
    inset: 0;
    right: 0;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
  }
  header nav .cont #sidebar__nav::after {
    display: none;
  }
  header nav .cont #sidebar__nav[data-active=true] {
    visibility: visible;
    opacity: 1;
  }
  header nav .cont #sidebar__nav[data-active=true] ul {
    right: 0;
    transition: all 0.5s ease;
  }
  header nav .cont #sidebar__nav ul {
    position: absolute;
    width: 60%;
    right: -80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem 0;
    top: 0;
    background: #089599;
    transition: all 0.2s ease;
  }
  header nav .cont #sidebar__nav ul li a {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 1.2rem;
    color: #fff;
    position: relative;
  }
  header nav .cont #sidebar__nav ul li a::after {
    display: none;
  }
  header nav .cont #sidebar__nav ul li a:hover {
    color: #E9E9E9;
  }
  header nav .cont #sidebar__nav ul li a.active {
    color: #E9E9E9;
  }
}
#home {
  height: 100vh;
  place-items: center start;
  padding: 0;
  background: #089599;
  overflow: hidden;
  border-radius: 0 0 0 100px;
}
#home .container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 4rem 0;
  z-index: 2;
  position: relative;
}
#home .container .logo-fundo {
  position: absolute;
  width: 20%;
  height: auto;
  bottom: 15%;
  opacity: 0.5;
  z-index: 2;
}
#home .container .img {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center start;
  position: relative;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}
#home .container .img::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#home .container .img img {
  width: 100%;
  height: 100%;
  z-index: -1;
}
#home .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
}
#home .container .text h1 {
  width: 70%;
  font-size: 34px;
  color: #fff;
}
#home .container .text p {
  width: 70%;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
#home .container .text .btn {
  width: 70%;
  padding: 5% 0;
  z-index: 3;
}
#home .container .text .btn button {
  color: #fff;
  border-color: #fff;
}
#home .container .text .btn button::after {
  background: #fff;
}
#home .container .text .btn button:hover {
  color: #089599;
}
#home .btn-flut {
  height: 50px;
  width: 50px;
  position: fixed;
  z-index: 9;
  bottom: 5%;
  right: -5%;
  opacity: 0;
  display: grid;
  place-items: center;
  transition: all 0.5s ease-in;
  z-index: 9;
}
#home .btn-flut:hover {
  transform: scale(0.9);
}
#home .btn-flut[data-active=true] {
  right: 5%;
  opacity: 1;
}
#home .btn-flut img {
  width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  #home {
    height: auto;
    min-height: 100vh;
    border-radius: 0 0 0 60px;
  }
  #home .btn-flut {
    width: 50px;
    height: 50px;
  }
  #home .container {
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 2.5rem 0;
  }
  #home .container .img {
    border-radius: 0 0 0 60px;
  }
  #home .container .logo-fundo {
    position: relative;
    width: 10%;
    bottom: 200%;
    transform: scale(3);
  }
  #home .container .text {
    width: 100%;
    height: 60%;
    text-align: center;
    align-items: center;
    justify-content: end;
    background: transparent;
    padding: 0;
  }
  #home .container .text h1 {
    width: 80%;
    font-size: 22px;
    color: #fff;
  }
  #home .container .text p {
    width: 80%;
    font-size: 16px;
    color: #fff;
  }
  #home .container .text .btn button {
    color: #089599;
    background: #fff;
  }
}
#sobre {
  padding: 6% 0;
}
#sobre .container {
  gap: 3rem 0;
}
#sobre .container .conts {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#sobre .container .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#sobre .container .title p {
  color: #089599;
}
#sobre .container #car {
  width: 40vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
#sobre .container #car .pagination {
  width: 15%;
  height: 100%;
  display: grid;
  place-items: center;
}
#sobre .container #car .pagination .swiper-pagination-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0;
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet {
  height: 45px;
  width: 100%;
  border-radius: 9px;
  opacity: 0.8;
  filter: grayscale(90%);
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:nth-child(1) {
  background: url(../assets/img/sobre1.webp);
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:nth-child(2) {
  background: url(../assets/img/sobre2.webp);
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:nth-child(3) {
  background: url(../assets/img/sobre3.webp);
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:nth-child(4) {
  background: url(../assets/img/sobre4.webp);
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:nth-child(5) {
  background: url(../assets/img/sobre5.webp);
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:nth-child(6) {
  background: url(../assets/img/sobre6.webp);
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:nth-child(7) {
  background: url(../assets/img/sobre7.webp);
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:nth-child(8) {
  background: url(../assets/img/sobre8.webp);
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  filter: grayscale(0);
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:hover {
  opacity: 1;
  filter: grayscale(0);
}
#sobre .container #car .swiper {
  width: 85%;
  padding: 5% 0;
}
#sobre .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  border-radius: 19px;
  overflow: hidden;
}
#sobre .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
#sobre .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 1rem 0;
}
#sobre .container .text p {
  width: 80%;
  font-size: 18px;
}
#sobre .container .text .btn {
  width: 80%;
}
#sobre .container .text .btn p {
  width: auto;
  font-weight: 500;
  color: #028475;
}

@media (max-width: 800px) {
  #sobre {
    padding: 10% 0;
  }
  #sobre .container .conts {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
  }
  #sobre .container .conts #car {
    width: 80vw;
    flex-direction: column;
  }
  #sobre .container .conts #car .swiper {
    order: 1;
    width: 100%;
    height: auto;
  }
  #sobre .container .conts #car .swiper .swiper-wrapper {
    height: auto;
  }
  #sobre .container .conts #car .swiper .swiper-wrapper .swiper-slide {
    height: auto;
  }
  #sobre .container .conts #car .swiper .swiper-wrapper .swiper-slide img {
    height: auto;
  }
  #sobre .container .conts #car .pagination {
    width: 100%;
    order: 2;
  }
  #sobre .container .conts #car .pagination .swiper-pagination-img {
    flex-direction: row;
  }
  #sobre .container .conts #car .pagination .swiper-pagination-img .swiper-pagination-bullet {
    height: 40px;
    border-radius: 5px;
  }
  #sobre .container .conts .text {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 2rem 0;
  }
  #sobre .container .conts .text p {
    width: 100%;
  }
  #sobre .container .conts .text .btn {
    width: auto;
  }
}
#treatments {
  background: #089599;
}
#treatments .container {
  width: 100%;
  gap: 2rem 0;
}
#treatments .container .title {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#treatments .container .title h2 {
  color: #fff;
}
#treatments .container .cont-trat {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#treatments .container .cont-trat #car {
  width: 35%;
  height: 100%;
  display: grid;
  place-items: end end;
  padding: 5% 0 0;
  gap: 2rem 0;
  background: #E9E9E9;
}
#treatments .container .cont-trat #car .seta {
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0 1rem;
}
#treatments .container .cont-trat #car .seta img {
  width: 40px;
  height: auto;
  cursor: pointer;
  transform: rotateZ(90deg);
}
#treatments .container .cont-trat #car .seta .swiper-button-prev1 {
  transform: rotateZ(-90deg);
}
#treatments .container .cont-trat #car .swiper {
  height: 400px;
  width: 100%;
}
#treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center end;
  cursor: pointer;
  position: relative;
}
#treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 100%;
  left: 0;
  background: rgba(8, 149, 153, 0.5);
  transition: all 0.5s ease;
  z-index: 1;
}
#treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide .cont {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  z-index: 2;
}
#treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
  text-align: start;
  color: #089599;
  transition: all 0.5s ease;
}
#treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide[data-active=true]::after {
  width: 100%;
}
#treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide[data-active=true]:hover::after {
  width: 100%;
  opacity: 1;
}
#treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide[data-active=true] .cont h3 {
  color: #fff;
}
#treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide:hover::after {
  width: 80%;
  opacity: 0.6;
}
#treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide:hover .cont h3 {
  color: #fff;
}
#treatments .container .cont-trat #dental_container {
  width: 65%;
  height: 100%;
  display: grid;
  place-items: center start;
  position: relative;
  padding: 0 5%;
  overflow: hidden;
}
#treatments .container .cont-trat #dental_container::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(112, 112, 112, 0.5);
  z-index: 2;
}
#treatments .container .cont-trat #dental_container .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
  z-index: 3;
}
#treatments .container .cont-trat #dental_container .text h2 {
  color: #fff;
}
#treatments .container .cont-trat #dental_container .text p {
  color: #fff;
  font-weight: 300;
}
#treatments .container .cont-trat #dental_container .text button {
  background: #089599;
  color: #fff;
}
#treatments .container .cont-trat #dental_container .text button::after {
  display: none;
}
#treatments .container .cont-trat #dental_container .img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#treatments .container .cont-trat #dental_container .img img {
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  #treatments {
    background: #E9E9E9;
    padding: 10% 0 15%;
  }
  #treatments .container {
    gap: 2rem 0;
    z-index: 2;
  }
  #treatments .container .title h2 {
    color: #003234;
  }
  #treatments .container .cont-trat {
    flex-direction: column;
    gap: 2rem 0;
  }
  #treatments .container .cont-trat #car {
    width: 99vw;
    height: auto;
    position: relative;
    padding: 5% 0;
    place-items: center;
  }
  #treatments .container .cont-trat #car .seta {
    position: absolute;
    width: 90%;
    justify-content: space-between;
  }
  #treatments .container .cont-trat #car .seta img {
    transform: rotate(0);
  }
  #treatments .container .cont-trat #car .seta .swiper-button-prev1 {
    transform: rotateZ(180deg);
  }
  #treatments .container .cont-trat #car .swiper {
    width: 60%;
    height: 100%;
  }
  #treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide {
    border: 1px solid #003234;
    border-radius: 9px;
    overflow: hidden;
    padding: 5% 0;
    height: 100%;
    transition: all 0.5s ease;
    place-items: center;
  }
  #treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide::after {
    height: 0;
    width: 100%;
    top: 0;
  }
  #treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide .cont {
    width: auto;
    align-items: center;
  }
  #treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
    text-align: center;
    color: #003234;
  }
  #treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide[data-active=true] {
    background: #E9E9E9;
    border: none;
  }
  #treatments .container .cont-trat #car .swiper .swiper-wrapper .swiper-slide[data-active=true]::after {
    height: 100%;
  }
  #treatments .container .cont-trat #dental_container {
    width: 90%;
    padding: 10% 5%;
    gap: 3rem 0;
    border-radius: 19px;
    background: #089599;
  }
  #treatments .container .cont-trat #dental_container::after {
    display: none;
  }
  #treatments .container .cont-trat #dental_container .text {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #treatments .container .cont-trat #dental_container .text button {
    background: #fff;
    color: #089599;
  }
  #treatments .container .cont-trat #dental_container .img {
    position: relative;
    border-radius: 19px;
    overflow: hidden;
  }
  #treatments .container .cont-trat #dental_container .img::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(8, 149, 153, 0.2);
    z-index: 2;
  }
}
#banner {
  background: url(../assets/img/banner.webp);
  background-position: 50% 50%;
  padding: 10% 0;
}
#banner::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(8, 149, 153, 0.4);
  z-index: 1;
}
#banner .container {
  place-items: center;
  z-index: 2;
}
#banner .container .text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2.5rem 0;
}
#banner .container .text h2 {
  color: #fff;
}
#banner .container .text p {
  color: #fff;
  font-weight: 300;
}

@media (max-width: 800px) {
  #banner {
    padding: 60% 0 15%;
  }
  #banner .container {
    place-items: center;
  }
  #banner .container .text {
    width: 100%;
    gap: 1rem 0;
    align-items: center;
    text-align: center;
  }
  #banner .container .text p {
    font-weight: 400;
  }
}
#banner-differ {
  padding: 0;
}
#banner-differ .container {
  width: 100%;
  height: 100%;
}
#banner-differ .container #car {
  width: 99vw;
  height: 100%;
  display: grid;
  place-items: center;
}
#banner-differ .container #car .swiper {
  width: 100%;
  height: 100%;
}
#banner-differ .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  position: relative;
}
#banner-differ .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}
#banner-differ .container #car .swiper .swiper-wrapper .swiper-slide .p {
  color: #fff;
  position: absolute;
  bottom: 5%;
  z-index: 2;
  display: none;
}
#banner-differ .container #car .swiper .swiper-wrapper .swiper-slide .cont {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -50%;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 2;
}
#banner-differ .container #car .swiper .swiper-wrapper .swiper-slide .cont h3, #banner-differ .container #car .swiper .swiper-wrapper .swiper-slide .cont p {
  width: 80%;
  color: #fff;
  transform: scale(0.8);
  transition-delay: 0.3s;
}
#banner-differ .container #car .swiper .swiper-wrapper .swiper-slide .cont p {
  font-size: 14px;
}
#banner-differ .container #car .swiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
  z-index: 1;
}
#banner-differ .container #car .swiper .swiper-wrapper .swiper-slide:hover .cont {
  bottom: 0;
  opacity: 1;
}
#banner-differ .container #car .swiper .swiper-wrapper .swiper-slide:hover .cont h3, #banner-differ .container #car .swiper .swiper-wrapper .swiper-slide:hover .cont p {
  transform: scale(1);
}
#banner-differ .container .seta {
  width: 80%;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
#banner-differ .container .seta img {
  width: 40px;
  height: auto;
  cursor: pointer;
}
#banner-differ .container .seta .swiper-button-prev2 {
  transform: rotateZ(180deg);
}

@media (max-width: 800px) {
  #banner-differ .container {
    gap: 2rem 0;
  }
  #banner-differ .container .seta {
    display: flex;
  }
  #banner-differ .container #car .swiper .swiper-wrapper .swiper-slide .p {
    display: block;
  }
}
#depoiments {
  background: #fff;
  padding: 10% 0;
}
#depoiments .container {
  width: auto;
  gap: 2rem 0;
  background: #E9E9E9;
  box-shadow: 0px 6px 6px rgba(112, 112, 112, 0.5);
  border-radius: 19px;
  padding: 3% 0 2%;
}
#depoiments .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#depoiments .container .text h2 {
  font-size: 25px;
}
#depoiments .container .cont-after {
  width: 40%;
  height: 1px;
  background: #089599;
}
#depoiments .container #car {
  width: 50vw;
  display: grid;
  place-items: center;
  position: relative;
}
#depoiments .container #car .seta {
  position: absolute;
  width: 105%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0 1rem;
}
#depoiments .container #car .seta img {
  width: 40px;
  height: auto;
  cursor: pointer;
}
#depoiments .container #car .seta .swiper-button-prev-dep {
  transform: rotateZ(180deg);
}
#depoiments .container #car .swiper {
  width: 80%;
  height: 100%;
  padding: 2% 1%;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
  border-radius: 19px;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide p {
  width: 80%;
  font-size: 15px;
  font-weight: 300;
}

@media (max-width: 800px) {
  #depoiments {
    padding: 15% 0;
    place-items: center;
  }
  #depoiments .container {
    width: 80%;
    gap: 2.5rem 0;
    flex-direction: column;
  }
  #depoiments .container .text {
    order: 1;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #depoiments .container .text .seta {
    display: none;
  }
  #depoiments .container .text h2 {
    width: 100%;
  }
  #depoiments .container .seta {
    display: flex;
  }
  #depoiments .container #car {
    order: 2;
    width: 80vw;
  }
  #depoiments .container .seta {
    order: 3;
    width: auto;
    justify-content: center;
  }
  #depoiments .container .btn {
    order: 4;
  }
}
#banner2 {
  background: url(../assets/img/banner2.webp);
}
#banner2::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(8, 149, 153, 0.4);
  z-index: 1;
}
#banner2 .container {
  place-items: center start;
  z-index: 2;
}
#banner2 .container .text {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 3rem 0;
}
#banner2 .container .text p {
  color: #fff;
  font-weight: 400;
}
#banner2 .container .text button {
  background: #fff;
}
#banner2 .container .text button::after {
  display: none;
}
#banner2 .container .text button:hover {
  color: #089599;
}

@media (max-width: 800px) {
  #banner2 {
    padding: 80% 0 15%;
    background: url(../assets/img/banner2-mob.webp);
  }
  #banner2 .container {
    place-items: center;
  }
  #banner2 .container .text {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #banner2 .container .text button {
    color: #089599;
  }
}
#insta {
  position: relative;
}
#insta::after {
  content: "";
  position: absolute;
  display: block;
  height: 50%;
  width: 100%;
  background: #089599;
  top: 0;
  z-index: -1;
}
#insta .container {
  gap: 2rem 0;
}
#insta .container .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem 0;
}
#insta .container .text h2 {
  color: #fff;
}
#insta .container .seta {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#insta .container .seta svg {
  width: 40px;
  height: auto;
  cursor: pointer;
}
#insta .container .seta .swiper-button-prev-insta {
  transform: rotateZ(180deg);
}
#insta .container #car {
  width: 80vw;
  display: grid;
  place-items: center;
  border-radius: 19px;
  overflow: hidden;
}
#insta .container #car .swiper {
  width: 100%;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  gap: 2rem 0;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 3% 0;
  border-radius: 19px;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 80%;
  height: auto;
}
#insta .container .btn {
  padding: 2% 0 0;
}

@media (max-width: 800px) {
  #insta .container .text {
    width: 100%;
    order: 1;
    gap: 1rem 0;
  }
  #insta .container #car {
    order: 2;
  }
  #insta .container #car .swiper .swiper-wrapper .swiper-slide {
    padding: 10% 0;
  }
  #insta .container .seta {
    order: 3;
    width: auto;
    justify-content: center;
  }
  #insta .container .seta rect, #insta .container .seta path {
    fill: #089599;
    stroke: #fff;
  }
  #insta .container .btn {
    order: 4;
  }
}
#form {
  position: relative;
  place-items: center;
}
#form .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 0 2rem;
  z-index: 2;
}
#form .container .cont-icon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem 0;
  border-radius: 13px;
}
#form .container .cont-icon .title h2 {
  font-size: 22px;
  font-weight: 400;
}
#form .container .cont-icon .icon {
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0 1rem;
}
#form .container .cont-icon .icon img {
  width: 40px;
  height: auto;
  cursor: pointer;
  transition: all 0.5s ease;
}
#form .container .cont-icon .icon img:hover {
  transform: scale(0.9);
}
#form .container .cont-form {
  width: 100%;
  display: grid;
  place-items: center start;
}
#form .container .cont-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 0;
  border-radius: 20px;
}
#form .container .cont-form form .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
}
#form .container .cont-form form .text h2 {
  font-size: 22px;
}
#form .container .cont-form form .text p {
  font-size: 14px;
}
#form .container .cont-form form .cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
}
#form .container .cont-form form .cont textarea,
#form .container .cont-form form .cont input,
#form .container .cont-form form .cont select {
  width: 100%;
  height: 40px;
  overflow: hidden;
  outline: none;
  resize: none;
  background: #089599;
  color: #fff;
  font-size: 13px;
  padding: 0 10px;
  border: none;
  border-bottom: 1px solid #E9E9E9;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 5px;
}
#form .container .cont-form form .cont textarea::-moz-placeholder, #form .container .cont-form form .cont input::-moz-placeholder, #form .container .cont-form form .cont select::-moz-placeholder {
  color: #fff;
  opacity: 0.8;
}
#form .container .cont-form form .cont textarea::placeholder,
#form .container .cont-form form .cont input::placeholder,
#form .container .cont-form form .cont select::placeholder {
  color: #fff;
  opacity: 0.8;
}
#form .container .cont-form form .cont textarea {
  padding: 3% 10px 0;
  height: 100px;
}
#form .container .cont-form form .cont select {
  padding: 0 5px;
  cursor: pointer;
}
#form .container .cont-form form .cont select option {
  color: #fff;
}
#form .container .cont-form form .cont button {
  width: 150px;
  height: 35px;
  margin: 5% 0 0;
}
#form .container .cont-link {
  width: 100%;
  display: grid;
  place-items: center end;
}
#form .container .cont-link .links {
  width: 80%;
  display: grid;
  place-items: center start;
  gap: 1rem 0;
}
#form .container .cont-link .links a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  gap: 0 1rem;
}
#form .container .cont-link .links a:hover img {
  transform: scale(0.9);
}
#form .container .cont-link .links a img {
  height: auto;
  width: 20px;
  transition: all 0.5s ease;
}
#form .container .cont-link .links a p {
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 800px) {
  #form {
    padding: 15% 0;
    place-items: center;
  }
  #form .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 0;
    place-items: center;
  }
  #form .container .cont-form {
    order: 1;
  }
  #form .container .cont-icon {
    order: 2;
    align-items: center;
  }
  #form .container .cont-icon .icon {
    justify-content: center;
  }
  #form .container .cont-link {
    order: 3;
    place-items: center;
  }
  #form .container .cont-link .links {
    width: 100%;
    place-items: center;
  }
  #form .container .cont-link .links a {
    align-items: center;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5% 0 1%;
  background: #089599;
  gap: 0.5rem 0;
}
footer .container {
  place-items: center;
}
footer .container .logo {
  width: 20%;
  height: auto;
}
footer .copyrights {
  display: grid;
  place-items: center;
  text-align: center;
}
footer .copyrights .copy {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
  font-size: 0.45rem;
  opacity: 1;
  color: #fff;
}
footer .copyrights .copy svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media (max-width: 800px) {
  footer .container .logo {
    width: 60%;
  }
}
#equipe .container {
  gap: 3rem 0;
}
#equipe .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
}
#equipe .container .text p {
  color: #089599;
}
#equipe .container .seta {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0 1rem;
}
#equipe .container .seta img {
  width: 40px;
  height: auto;
  cursor: pointer;
}
#equipe .container .seta .swiper-button-prev-equipe {
  transform: rotateZ(180deg);
}
#equipe .container #car {
  width: 70vw;
  height: 100%;
  display: grid;
  place-items: center;
}
#equipe .container #car .swiper {
  width: 100%;
  height: 100%;
  border-radius: 0 25px 0 25px;
  overflow: hidden;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  display: grid;
  place-items: start center;
  position: relative;
  border-radius: 0 25px 0 25px;
  overflow: hidden;
  background: #089599;
  transform: scale(0.8);
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  border-radius: 0 25px 0 25px;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
  padding: 10% 0;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
  width: 80%;
  font-size: 18px;
  color: #fff;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont h3 strong {
  font-weight: 400;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont p {
  width: 80%;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(1);
}

@media (max-width: 800px) {
  #equipe {
    padding: 15% 0;
  }
  #equipe .container .text {
    order: 1;
    width: 100%;
  }
  #equipe .container #car {
    order: 2;
    width: 80vw;
  }
  #equipe .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
  #equipe .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
    transform: scale(0.8);
  }
  #equipe .container .seta {
    order: 3;
  }
}
#home-pg {
  padding: 10% 0 5%;
}
#home-pg .container .text {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem 0;
}
#home-pg .container .text .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#home-pg .container .text .title p {
  color: #089599;
  font-size: 18px;
}
#home-pg .btn-flut {
  height: 50px;
  width: 50px;
  position: fixed;
  z-index: 9;
  bottom: 5%;
  right: -5%;
  opacity: 0;
  display: grid;
  place-items: center;
  transition: all 0.5s ease-in;
  z-index: 9;
}
#home-pg .btn-flut:hover {
  transform: scale(0.9);
}
#home-pg .btn-flut[data-active=true] {
  right: 5%;
  opacity: 1;
}
#home-pg .btn-flut img {
  width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  #home-pg {
    padding: 25% 0 10%;
  }
  #home-pg .btn-flut {
    width: 50px;
    height: 50px;
  }
  #home-pg .container .text {
    width: 100%;
  }
}
#sobre-pg {
  background: #089599;
  padding: 8% 0 5%;
}
#sobre-pg .container {
  gap: 4rem 0;
}
#sobre-pg .container .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
}
#sobre-pg .container .title h2 {
  color: #fff;
}
#sobre-pg .container .title p {
  color: #fff;
}
#sobre-pg .container .conts {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#sobre-pg .container .conts .img {
  width: 100%;
  display: grid;
  place-items: center start;
}
#sobre-pg .container .conts .img img {
  width: 80%;
  border-radius: 19px;
}
#sobre-pg .container .conts .text {
  width: 100%;
  display: grid;
  place-items: center end;
  gap: 1rem 0;
}
#sobre-pg .container .conts .text .cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0.5rem 0;
}
#sobre-pg .container .conts .text .cont p {
  color: #fff;
}
#sobre-pg .container .conts .text .cont p strong {
  font-size: 18px;
}

@media (max-width: 800px) {
  #sobre-pg .container {
    gap: 2rem 0;
  }
  #sobre-pg .container .conts {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
  }
  #sobre-pg .container .conts .img img {
    width: 100%;
  }
  #sobre-pg .container .conts .text {
    gap: 2rem 0;
  }
  #sobre-pg .container .conts .text .cont {
    text-align: center;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */