@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;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: "Poppins", 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: #f1f1f1;
}

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

.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}

#car {
  width: 80vw;
  display: grid;
  place-items: center;
}

.seta {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
.seta img {
  width: 40px;
  cursor: pointer;
}

.swiper {
  width: 100%;
}

.icon {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0 1rem;
  transition: all 0.5s ease;
}
.icon a {
  width: auto;
  transition: all 0.5s ease;
}
.icon a:hover {
  transform: scale(0.9);
}
.icon a img {
  width: auto;
  height: 30px;
}

img {
  width: 100%;
  height: auto;
}

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

button {
  background: transparent;
  font-size: 14px;
  width: 200px;
  height: 50px;
  border-radius: 9px;
  overflow: hidden;
  border: none;
  transition: all 0.75s ease;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  border: 1.5px solid #fff;
}
button::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: #0b7173;
  transition: all 0.5s ease;
  z-index: -1;
}
button:hover {
  transform: scale(0.95);
  border-color: transparent;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.0509803922);
  color: #fff;
}
button:hover::after {
  width: 100%;
}

.button {
  color: #0b7173;
  border-color: #0b7173;
}

h2 {
  color: #0b7173;
  font-size: 25px;
  font-weight: 600;
}

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

::-webkit-scrollbar {
  background: #0b7173;
  width: 12px;
}

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

@media (max-width: 800px) {
  section {
    padding: 15% 0;
  }
  button {
    width: 200px;
    height: 45px;
    background: #0b7173;
    color: #fff;
    border-color: transparent !important;
  }
  button:hover {
    color: #fff;
    transform: none;
    border-radius: 9px;
  }
  h2 {
    font-size: 22px;
  }
  p {
    font-size: 16px !important;
  }
}
header {
  background: transparent;
  position: fixed;
  display: grid;
  place-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;
  z-index: 99;
  overflow: hidden;
}
header[data-active=true] {
  box-shadow: 0px 3px 6px rgba(255, 255, 255, 0.1019607843);
  background: #0b7173;
}
header nav {
  width: 80%;
  height: 100%;
}
header nav .cont {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header nav .cont .logo {
  width: 15%;
  display: grid;
  place-items: center start;
}
header nav .cont .logo img {
  width: 100%;
}
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: 27px;
  height: 3px;
  border-radius: 50px;
  background: #fff;
}
header nav .cont #menu__btn[data-active=true] {
  right: 25%;
}
header nav .cont #menu__btn[data-active=true] .boll {
  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(2) {
  opacity: 0;
}
header nav .cont #menu__btn[data-active=true] .boll:nth-child(3) {
  transform: rotateZ(-45deg);
  top: -15%;
}
header nav .cont #sidebar__nav {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  right: 0;
  top: 0;
  display: grid;
  place-items: center end;
  background: rgba(15, 44, 61, 0.5);
}
header nav .cont #sidebar__nav[data-active=true] {
  opacity: 1;
  visibility: visible;
}
header nav .cont #sidebar__nav[data-active=true] ul {
  right: 0;
}
header nav .cont #sidebar__nav ul {
  width: 30%;
  height: 100%;
  position: absolute;
  right: -35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem 0;
  background: #0b7173;
}
header nav .cont #sidebar__nav ul a {
  color: #fff;
  font-size: 20px;
  position: relative;
  padding: 0 0 2px;
}
header nav .cont #sidebar__nav ul a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #fff;
  transition: all 0.5s ease;
}
header nav .cont #sidebar__nav ul a:hover::after {
  width: 100%;
}

@media (max-width: 800px) {
  header {
    height: 10%;
  }
  header[data-active=true] {
    box-shadow: 0px 3px 6px rgba(255, 255, 255, 0.1019607843);
    background: #0b7173;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  header nav .cont .logo {
    width: 35%;
  }
  header nav .cont #menu__btn[data-active=true] {
    right: 65%;
  }
  header nav .cont #sidebar__nav ul {
    width: 80%;
    right: -85%;
  }
}
#home {
  background: url(../assets/img/home.webp);
  background-position: 50% 100%;
  height: 100vh;
}
#home::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 44, 61, 0.4), rgba(15, 44, 61, 0.3));
}
#home .container {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  z-index: 2;
}
#home .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  text-align: start;
  gap: 1rem 0;
}
#home .container .text h1 {
  font-size: 28px;
  color: #fff;
  font-weight: 600;
}
#home .container .text p {
  width: 80%;
  font-size: 18px;
  color: #fff;
}
#home .container .cont-icon {
  width: 100%;
  height: 80%;
  display: grid;
  place-items: center end;
}
#home .container .cont-icon .icon {
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 1rem 0;
}
#home .container .cont-icon .icon .cont-after {
  width: 2px;
  height: 100%;
  background: #fff;
}
#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%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}

@media (max-width: 800px) {
  #home {
    height: auto;
    min-height: 100vh;
    place-items: end center;
    padding: 20% 0;
  }
  #home .container {
    height: auto;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 0;
  }
  #home .container .text {
    text-align: center;
    align-items: center;
    justify-content: end;
  }
  #home .container .text h1 {
    width: 100%;
    font-size: 22px;
  }
  #home .container .text p {
    width: 100%;
  }
  #home .container .cont-icon {
    height: auto;
    place-items: center;
  }
  #home .container .cont-icon .icon {
    width: 80%;
    height: auto;
    flex-direction: row;
    gap: 0 1rem;
  }
  #home .container .cont-icon .icon .cont-after {
    height: 2px;
    width: 100%;
  }
}
#differ {
  padding: 0 0 5%;
}
#differ .container {
  width: 90%;
  grid-template-columns: repeat(3, 1fr);
  background: #0b7173;
  padding: 5%;
  border-radius: 30px;
  position: relative;
  top: -10%;
}
#differ .container .cont {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#differ .container .cont h3 {
  width: 90%;
  color: #fff;
}
#differ .container .cont p {
  width: 90%;
  color: #fff;
  font-size: 15px;
}

@media (max-width: 800px) {
  #differ .container {
    grid-template-columns: repeat(1, 1fr);
    padding: 15% 0;
    gap: 4rem 0;
    top: -2%;
  }
  #differ .container .cont {
    width: 90%;
  }
}
#treatments {
  position: relative;
  padding: 5% 0 0;
}
#treatments::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 80%;
  top: 0;
  background: #0b7173;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
#treatments .container {
  width: 100%;
  gap: 2rem 0;
}
#treatments .container .text {
  width: 80%;
  align-items: start;
  text-align: start;
  gap: 1rem 0;
}
#treatments .container .text h2 {
  width: 50%;
  color: #fff;
}
#treatments .container .text p {
  width: 50%;
  color: #fff;
}
#treatments .container .seta {
  width: 80%;
}
#treatments .container .seta .swiper-button-prev1 {
  transform: rotateZ(180deg);
}
#treatments .container #car {
  width: 99vw;
  height: 400px;
}
#treatments .container #car .swiper {
  width: 100%;
  height: 100%;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  transition: all 0.5s ease;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .flip-container {
  transition: all 0.5s ease-in;
  width: 100%;
  height: 80%;
  perspective: 1000px;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper {
  width: 100%;
  height: 100%;
  transition: transform 1s;
  transform-style: preserve-3d;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .front,
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .back {
  position: absolute;
  width: 60%;
  height: 60%;
  backface-visibility: hidden;
  overflow: hidden;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .front {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .front img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in;
  filter: grayscale(1);
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .front h3 {
  position: absolute;
  color: #fff;
  bottom: 5%;
  z-index: 2;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .front::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #0f2c3d;
  opacity: 0.3;
  transition: all 0.5s ease;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .back-claro {
  box-shadow: inset 5px 5px 10px rgba(255, 255, 255, 0.5019607843), inset 5px 5px 20px rgba(255, 255, 255, 0.2), inset -5px -5px 15px rgba(255, 255, 255, 0.7490196078);
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .back {
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem 0;
  z-index: 1;
  background: #0f2c3d;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .back h3 {
  font-size: 18px;
  width: 80%;
  color: #fff;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .back p {
  color: #fff;
  width: 80%;
  font-size: 12px;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(1.2);
  z-index: 2;
  border-radius: 9px;
  overflow: hidden;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next::after {
  opacity: 0;
  visibility: hidden;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container .flipper .front {
  border-radius: 9px;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container .flipper .front img {
  filter: grayscale(0);
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container .flipper .front::after {
  opacity: 0.2;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container .flipper .front:hover {
  transform: scale(0.95);
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container .flipper .back {
  border-radius: 9px;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container[data-active=true] .flipper {
  transform: rotateY(180deg);
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container[data-active=true] .flipper .back {
  opacity: 1;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container[data-active=true] .flipper .back p,
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container[data-active=true] .flipper .back h3 {
  transition: all 0.5s ease-in;
  animation: texto 1s linear;
}

@media (max-width: 800px) {
  #treatments {
    padding: 15% 0 0;
  }
  #treatments .container {
    width: 100%;
  }
  #treatments .container .text {
    width: 80%;
  }
  #treatments .container .text h2,
  #treatments .container .text p {
    width: 100%;
  }
  #treatments .container #car {
    width: 90vw;
    height: 480px;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
    transform: scale(0.8);
    z-index: 0;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    transform: scale(1);
    z-index: 2;
    border-radius: 9px;
    overflow: hidden;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active::after {
    opacity: 0;
    visibility: hidden;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front {
    border-radius: 9px;
    overflow: hidden;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front img {
    border-radius: 9px;
    filter: grayscale(0);
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front::after {
    opacity: 0.2;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front:hover {
    transform: scale(0.95);
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .back {
    border-radius: 9px;
    overflow: hidden;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper {
    transform: rotateY(180deg);
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper .back {
    opacity: 1;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper .back p,
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper .back h3 {
    transition: all 0.5s ease-in;
    animation: texto 1s linear;
  }
}
#sobre {
  padding: 10% 0;
}
#sobre .container {
  grid-template-columns: repeat(2, 1fr);
  z-index: 2;
}
#sobre .container .text {
  width: 100%;
  align-items: start;
  text-align: start;
}
#sobre .container .text h2 {
  width: 60%;
}
#sobre .container .text p {
  width: 90%;
}
#sobre .container .text button {
  color: #0b7173;
  border-color: #0b7173;
}
#sobre .container .text button:hover {
  color: #fff;
}
#sobre .container .img {
  width: 100%;
  display: grid;
  place-items: center end;
}
#sobre .container .img img {
  width: 90%;
  border-radius: 19px;
}
#sobre .container .img .title {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 800px) {
  #sobre {
    padding: 5% 0 15%;
  }
  #sobre .container {
    gap: 2rem 0;
    grid-template-columns: repeat(1, 1fr);
  }
  #sobre .container .img {
    order: 1;
    place-items: center;
    gap: 2rem 0;
  }
  #sobre .container .img .title {
    display: flex;
  }
  #sobre .container .img img {
    width: 100%;
  }
  #sobre .container .text {
    order: 2;
    align-items: center;
    text-align: center;
  }
  #sobre .container .text h2 {
    display: none;
  }
  #sobre .container .text p {
    width: 100%;
  }
  #sobre .container .text button {
    color: #fff;
  }
}
#aesthetics {
  position: relative;
  padding: 5% 0 0;
}
#aesthetics::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 80%;
  top: 0;
  background: #0b7173;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
#aesthetics .container {
  width: 100%;
  gap: 2rem 0;
}
#aesthetics .container .text {
  width: 80%;
  align-items: start;
  text-align: start;
  gap: 1rem 0;
}
#aesthetics .container .text h2 {
  width: 50%;
  color: #fff;
}
#aesthetics .container .text p {
  width: 45%;
  color: #fff;
}
#aesthetics .container .seta {
  width: 80%;
}
#aesthetics .container .seta .swiper-button-prev2 {
  transform: rotateZ(180deg);
}
#aesthetics .container #car {
  width: 99vw;
  height: 450px;
}
#aesthetics .container #car .swiper {
  width: 100%;
  height: 100%;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  transition: all 0.5s ease;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .flip-container {
  transition: all 0.5s ease-in;
  width: 100%;
  height: 80%;
  perspective: 1000px;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper {
  width: 100%;
  height: 100%;
  transition: transform 1s;
  transform-style: preserve-3d;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .front,
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .back {
  position: absolute;
  width: 60%;
  height: 60%;
  backface-visibility: hidden;
  overflow: hidden;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .front {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .front img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in;
  filter: grayscale(1);
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .front h3 {
  position: absolute;
  color: #fff;
  bottom: 5%;
  z-index: 2;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .front::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #0f2c3d;
  opacity: 0.3;
  transition: all 0.5s ease;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .back-claro {
  box-shadow: inset 5px 5px 10px rgba(255, 255, 255, 0.5019607843), inset 5px 5px 20px rgba(255, 255, 255, 0.2), inset -5px -5px 15px rgba(255, 255, 255, 0.7490196078);
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .back {
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem 0;
  z-index: 1;
  background: #0f2c3d;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .back h3 {
  font-size: 18px;
  width: 80%;
  color: #fff;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .back p {
  color: #fff;
  width: 80%;
  font-size: 12px;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(1.2);
  z-index: 2;
  border-radius: 9px;
  overflow: hidden;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next::after {
  opacity: 0;
  visibility: hidden;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container .flipper .front {
  border-radius: 9px;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container .flipper .front img {
  filter: grayscale(0);
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container .flipper .front::after {
  opacity: 0.2;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container .flipper .front:hover {
  transform: scale(0.95);
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container .flipper .back {
  border-radius: 9px;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container[data-active=true] .flipper {
  transform: rotateY(180deg);
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container[data-active=true] .flipper .back {
  opacity: 1;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container[data-active=true] .flipper .back p,
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container[data-active=true] .flipper .back h3 {
  transition: all 0.5s ease-in;
  animation: texto 1s linear;
}

@media (max-width: 800px) {
  #aesthetics {
    padding: 15% 0 5%;
  }
  #aesthetics .container {
    width: 100%;
  }
  #aesthetics .container .text {
    width: 80%;
  }
  #aesthetics .container .text h2,
  #aesthetics .container .text p {
    width: 100%;
  }
  #aesthetics .container #car {
    width: 90vw;
    height: 480px;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
    transform: scale(0.8);
    z-index: 0;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    transform: scale(1);
    z-index: 2;
    border-radius: 9px;
    overflow: hidden;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active::after {
    opacity: 0;
    visibility: hidden;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front {
    border-radius: 9px;
    overflow: hidden;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front img {
    border-radius: 9px;
    filter: grayscale(0);
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front::after {
    opacity: 0.2;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front:hover {
    transform: scale(0.95);
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .back {
    border-radius: 9px;
    overflow: hidden;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper {
    transform: rotateY(180deg);
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper .back {
    opacity: 1;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper .back p,
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper .back h3 {
    transition: all 0.5s ease-in;
    animation: texto 1s linear;
  }
}
#depoiments {
  padding: 5% 0 8%;
}
#depoiments .container {
  gap: 2rem 0;
}
#depoiments .container .text {
  width: 100%;
  align-items: start;
  text-align: start;
}
#depoiments .container .text h2 {
  width: 90%;
}
#depoiments .container .text p {
  width: 60%;
}
#depoiments .container .seta .swiper-button-prev-dep {
  transform: rotateZ(180deg);
}
#depoiments .container #car {
  height: 100%;
}
#depoiments .container #car .swiper {
  height: 100%;
  border-radius: 19px;
  overflow: hidden;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
  border-radius: 19px;
  overflow: hidden;
  background: #0b7173;
  padding: 4% 0;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide .cont {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
  font-size: 18px;
  color: #fff;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide .cont p {
  color: #fff;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide:hover .cont {
  bottom: 0;
}
#depoiments .container #car .btn {
  display: none;
}

@media (max-width: 800px) {
  #depoiments .container .text {
    align-items: center;
    text-align: center;
  }
  #depoiments .container .text h2,
  #depoiments .container .text p {
    width: 100%;
  }
  #depoiments .container #car {
    width: 80vw;
    gap: 2rem 0;
  }
  #depoiments .container #car .swiper .swiper-wrapper .swiper-slide {
    padding: 10% 0;
  }
}
#banner {
  place-items: center;
  background: #0b7173;
}
#banner .container {
  place-items: start center;
  grid-template-columns: repeat(2, 1fr);
  z-index: 2;
}
#banner .container .text {
  height: 90%;
  align-items: start;
  text-align: start;
  padding: 5% 0;
  gap: 1rem 0;
}
#banner .container .text h2 {
  width: 80%;
  color: #fff;
}
#banner .container .text p {
  width: 90%;
  color: #fff;
}
#banner .container .img {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center end;
}
#banner .container .img a {
  width: 70%;
}
#banner .container .img a img {
  border-radius: 19px;
  overflow: hidden;
}
#banner .container .img a:hover {
  transform: scale(0.9);
}

@media (max-width: 800px) {
  #banner .container {
    grid-template-columns: repeat(1, 1fr);
  }
  #banner .container .text {
    align-items: center;
    text-align: center;
  }
  #banner .container .text h2,
  #banner .container .text p {
    width: 100%;
  }
  #banner .container .img a {
    width: 100%;
  }
}
#insta .container {
  gap: 2rem 0;
}
#insta .container .text {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#insta .container .seta {
  width: 83%;
}
#insta .container .seta .swiper-button-prev-insta {
  transform: rotateZ(180deg);
}
#insta .container #car {
  width: 70vw;
  display: grid;
  place-items: center;
}
#insta .container #car .swiper {
  width: 100%;
  padding: 10px;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  position: relative;
  gap: 1rem 0;
  padding: 2% 0;
  background: #fff;
  border-radius: 19px;
  overflow: hidden;
  transform: scale(0.8);
  box-shadow: 0px 3px 12px rgba(241, 241, 241, 0.2);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1019607843);
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide .logo-insta {
  padding: 0 20% 0 0;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 80%;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(1);
}
#insta .container .btn {
  padding: 2% 0 0;
}
#insta .container .btn button {
  border-color: #0b7173;
  color: #0b7173;
}
#insta .container .btn button:hover {
  color: #fff;
}

@media (max-width: 800px) {
  #insta {
    padding: 15% 0;
  }
  #insta .container .text {
    order: 1;
    width: 100%;
  }
  #insta .container #car {
    order: 2;
    width: 80vw;
  }
  #insta .container #car .swiper .swiper-wrapper .swiper-slide {
    padding: 10% 0;
  }
  #insta .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
  #insta .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
    transform: scale(0.8);
  }
  #insta .container .btn {
    order: 3;
  }
  #insta .container .btn button {
    color: #fff;
  }
  #insta .container .seta {
    order: 4;
    justify-content: center;
  }
}
#images {
  padding: 0;
  overflow: hidden;
}
#images .container {
  width: 100%;
}
#images .container #car {
  width: 100vw;
  height: 100%;
  position: relative;
}
#images .container #car .swiper {
  height: 100%;
}
#images .container #car .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
}
#images .container #car .swiper .swiper-wrapper .swiper-slide img {
  height: 100%;
}
#images .container #car::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(15, 44, 61, 0.3);
  z-index: 2;
}

#form {
  background: #0b7173;
}
#form .container {
  width: 75%;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2rem;
  z-index: 2;
}
#form .container .cont-form {
  width: 100%;
  display: grid;
  place-items: center start;
}
#form .container .cont-form form {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1.5rem 0;
}
#form .container .cont-form form .title {
  width: 90%;
  align-items: start;
  text-align: start;
  gap: 0.5rem 0;
}
#form .container .cont-form form .title h2 {
  color: #fff;
}
#form .container .cont-form form .title p {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}
#form .container .cont-form form .cont {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  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: transparent;
  color: #0f2c3d;
  font-size: 13px;
  font-weight: 500;
  padding: 0 10px;
  background: #fff;
  border-radius: 9px;
}
#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: #0f2c3d;
  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: #0f2c3d;
  opacity: 0.8;
}
#form .container .cont-form form .cont textarea {
  padding: 3% 10px 0;
  height: 120px;
}
#form .container .cont-form form .cont select {
  padding: 0 5px;
  cursor: pointer;
}
#form .container .cont-form form .cont select option {
  color: #0f2c3d;
  background: #fff;
}
#form .container .cont-form form .cont button {
  width: auto;
  height: 35px;
  padding: 0 15px;
  margin: 5% 0 0;
}
#form .container .cont-form form .cont button::after {
  background: #fff;
}
#form .container .cont-form form .cont button:hover {
  color: #0f2c3d;
}
#form .container .cont-text {
  width: 100%;
  display: grid;
  place-items: center end;
}
#form .container .cont-text .cont {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#form .container .cont-text .cont .title {
  width: 70%;
}
#form .container .cont-text .cont .title h2 {
  width: 60%;
  color: #fff;
}
#form .container .cont-text .cont .links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#form .container .cont-text .cont .links p {
  font-size: 15px;
  color: #fff;
  font-weight: 300;
}
#form .container .cont-text .cont .links p strong {
  font-weight: 600;
}
#form .container .cont-text .cont .icon {
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0 0.8rem;
}
#form .container .cont-text .cont .icon img {
  width: 35px;
  height: auto;
  cursor: pointer;
  transition: all 0.5s ease;
}
#form .container .cont-text .cont .icon img:hover {
  transform: scale(0.9);
}

@media (max-width: 800px) {
  #form {
    padding: 15% 0;
  }
  #form .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 0;
  }
  #form .container .cont-form {
    width: 100%;
    order: 1;
    place-items: center;
  }
  #form .container .cont-form form {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #form .container .cont-form form .title {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #form .container .cont-form form .cont {
    width: 100%;
    align-items: center;
  }
  #form .container .cont-form form .cont button {
    width: 150px;
    color: #0f2c3d;
    background: #fff;
  }
  #form .container .cont-text {
    order: 2;
    place-items: center;
  }
  #form .container .cont-text .cont {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #form .container .cont-text .cont .title {
    width: 100%;
  }
  #form .container .cont-text .cont .title h2 {
    width: auto;
  }
  #form .container .cont-text .cont .links {
    width: 100%;
    align-items: center;
  }
  #form .container .cont-text .cont .icon {
    width: 100%;
    justify-content: center;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  padding: 5% 0 1%;
  gap: 2rem 0;
}
footer .container {
  display: grid;
  place-items: center;
}
footer .container img {
  width: 20%;
}
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: #000;
}
footer .copyrights .copy svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media (max-width: 800px) {
  footer {
    padding: 10% 0 2%;
  }
  footer .container {
    width: 80%;
    gap: 2rem 0;
  }
  footer .container img {
    width: 60%;
  }
}/*# sourceMappingURL=style.css.map */