@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..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: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background: #f4f4f4;
}

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

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

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

h2 {
  color: #7B6027;
  font-size: 26px;
  font-weight: 600;
}

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

::-webkit-scrollbar {
  background: #21201E;
  width: 12px;
}

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

@media (max-width: 800px) {
  section {
    padding: 10% 0;
  }
  button {
    width: 172px;
    height: 45px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.0509803922);
    color: #fff;
    border: none;
  }
  button::after {
    width: 100%;
  }
  button:hover {
    color: #fff;
  }
  h2 {
    font-size: 22px;
  }
  p {
    font-size: 16px !important;
  }
}
#header {
  top: -10%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
#header[data-active=true] {
  top: 0;
  opacity: 1;
  visibility: visible;
}

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] {
  width: 100%;
  top: 0;
  box-shadow: 0px 5px 10px rgba(255, 255, 255, 0.0509803922);
  background: #21201E;
}
header[data-active=true] nav .cont .logo img {
  top: 0;
  opacity: 1;
}
header nav {
  width: 100%;
  border-radius: 0;
  display: grid;
  place-items: center;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  background: transparent;
}
header nav .cont {
  width: 80%;
  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: auto;
  height: 50%;
  transition: all 0.8s ease;
  position: relative;
  top: -50%;
  opacity: 0;
}
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-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: 25%;
}
header nav .cont #menu__btn[data-active=true] .boll {
  transition: all 0.8s ease-out;
  border: none;
  background: #fff;
  width: 25px;
  height: 4px;
  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;
  top: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-out;
  border-radius: 0;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  display: grid;
  place-items: center;
}
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: 30%;
  right: -80%;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #21201E;
  transition: all 0.2s ease;
  gap: 2rem 0;
}
header nav .cont #sidebar__nav ul .a2 {
  display: none;
}
header nav .cont #sidebar__nav ul li a {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  text-align: start;
  font-size: 1.2rem;
  color: #fff;
  position: relative;
  padding: 5px 10px;
  border-radius: 9px;
  overflow: hidden;
  transition: all 0.5s ease;
  z-index: 2;
}
header nav .cont #sidebar__nav ul li a::after {
  content: "";
  position: absolute;
  display: grid;
  height: 100%;
  width: 0;
  left: 0;
  bottom: top;
  background: #fff;
  transition: all 0.5s ease;
  z-index: -1;
}
header nav .cont #sidebar__nav ul li a:hover {
  color: #21201E;
}
header nav .cont #sidebar__nav ul li a:hover::after {
  width: 100%;
}
header nav .cont #sidebar__nav ul li a.active {
  color: #21201E;
}
header nav .cont #sidebar__nav ul li a.active::after {
  width: 100%;
}

@media (max-width: 800px) {
  #header[data-active=true] nav .cont .logo img {
    opacity: 1;
  }
  #header nav .cont .logo img {
    opacity: 0;
  }
  header {
    height: 10%;
  }
  header[data-active=true] {
    height: 10%;
    width: 100%;
    top: 0;
    box-shadow: none;
  }
  header[data-active=true] nav {
    border-radius: 0;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: transparent;
  }
  header[data-active=true] nav .cont .logo img {
    height: 40%;
  }
  header nav {
    width: 100%;
    border-radius: 0;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: transparent;
  }
  header nav .cont {
    width: 80%;
    justify-content: space-between;
  }
  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-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: 45%;
  }
  header nav .cont #menu__btn[data-active=true] .boll {
    transition: all 0.8s ease-out;
    border: none;
    background: #fff;
    width: 25px;
    height: 4px;
    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 ul {
    width: 60%;
  }
}
#home {
  height: 100vh;
  position: relative;
  place-items: center;
  background: url(../assets/img/home.webp);
}
#home::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #AA976E;
  opacity: 0.4;
}
#home .container {
  display: grid;
  place-items: center start;
  gap: 2rem 0;
  z-index: 1;
}
#home .container .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  gap: 1rem 0;
}
#home .container .text h1 {
  font-size: 35px;
  color: #fff;
  font-weight: 600;
}
#home .container .text p {
  color: #fff;
}
#home .container .icon {
  width: 100%;
  display: flex;
  gap: 0 1rem;
}
#home .container .icon img {
  height: 30px;
  width: auto;
  transition: all 0.5s ease;
}
#home .container .icon img:hover {
  transform: scale(0.9);
}
#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 {
    padding: 0 0 20%;
    place-items: center;
    background: url(../assets/img/home-mob.webp);
    background-position: 50% 0%;
  }
  #home .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    gap: 2rem 0;
  }
  #home .container .text {
    width: 80%;
    text-align: center;
    align-items: center;
    justify-content: end;
    gap: 1rem 0;
  }
  #home .container .text h1 {
    width: 100%;
    font-size: 26px;
  }
  #home .container .text p {
    width: 100%;
  }
  #home .container .text button {
    color: #AA976E;
  }
  #home .container .icon {
    justify-content: center;
  }
}
#differ {
  padding: 0 0 5%;
}
#differ .cont-text {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  padding: 4% 0;
  border-radius: 19px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  position: relative;
  top: -50%;
  z-index: 2;
}
#differ .cont-text .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#differ .cont-text .title h2 {
  width: 80%;
  font-size: 18px;
}
#differ .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#differ .container .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#differ .container .text h2 {
  width: 90%;
}
#differ .container .text p {
  width: 90%;
}
#differ .container .conts {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#differ .container .conts .cont {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#differ .container .conts .cont h3 {
  font-size: 16px;
  color: #21201E;
}
#differ .container .conts .cont p {
  font-size: 14px;
}
#differ .container .conts .cont img {
  width: 50px;
  height: auto;
}

@media (max-width: 800px) {
  #differ {
    place-items: center;
    gap: 2rem 0;
  }
  #differ .cont-text {
    width: 80%;
    top: -15%;
    grid-template-columns: repeat(1, 1fr);
    padding: 10% 0;
    gap: 2rem 0;
  }
  #differ .cont-text .title {
    width: 80%;
    align-items: center;
    text-align: center;
  }
  #differ .container {
    flex-direction: column;
    gap: 3rem 0;
  }
  #differ .container .text {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #differ .container .conts {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
  }
  #differ .container .conts .cont {
    width: 100%;
  }
}
#sobre {
  place-items: center;
}
#sobre .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 3rem 0;
}
#sobre .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem 0;
  position: relative;
}
#sobre .container .text::after {
  content: "";
  position: absolute;
  display: block;
  width: 80%;
  height: 100%;
  background: url(../assets/img/logo-fundo.webp);
  background-position: center;
  opacity: 0.15;
  z-index: -1;
}
#sobre .container .text p {
  width: 90%;
}
#sobre .container #car {
  width: 40vw;
  display: grid;
  place-items: center;
  gap: 1rem 0;
}
#sobre .container #car .swiper {
  width: 80%;
  height: 100%;
  border-radius: 9px 0 0 9px;
  overflow: hidden;
}
#sobre .container #car .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 19px;
  overflow: hidden;
  transform: scale(1);
  transition: all 0.5s ease;
}
#sobre .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}
#sobre .container #car .pagination {
  width: 80%;
  height: 100%;
  display: grid;
  place-items: center;
}
#sobre .container #car .pagination .swiper-pagination-img {
  padding: 0;
  border-radius: 50px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet {
  background: #21201E;
  height: 60px;
  width: 26%;
  border-radius: 9px;
  transition: all 0.5s ease;
  transform: scale(0.92);
  filter: grayscale(90%);
  opacity: 1;
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet.swiper-pagination-bullet-active {
  filter: grayscale(0);
  transform: scale(1);
}
#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 .btn {
  display: none;
}

@media (max-width: 800px) {
  #sobre {
    place-items: center;
    padding: 15% 0;
  }
  #sobre .container {
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 2rem 0;
  }
  #sobre .container .text {
    align-items: center;
    text-align: center;
  }
  #sobre .container .text::after {
    width: 100%;
    opacity: 0.1;
  }
  #sobre .container .text p {
    width: 100%;
  }
  #sobre .container .text a {
    display: none;
  }
  #sobre .container #car {
    width: 80vw;
    padding: 0;
    place-items: center;
  }
  #sobre .container #car .swiper {
    width: 100%;
  }
  #sobre .container #car .pagination {
    width: 100%;
  }
  #sobre .container #car .btn {
    display: block;
    padding: 5% 0 0;
  }
}
#treatments {
  position: relative;
}
#treatments::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 80%;
  top: 0;
  background: #21201E;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
#treatments .container {
  width: 100%;
  gap: 2rem 0;
}
#treatments .container .text {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#treatments .container .text h2 {
  width: 40%;
  color: #fff;
}
#treatments .container .text p {
  width: 30%;
  font-weight: 500;
  color: #AA976E;
}
#treatments .container .seta {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#treatments .container .seta img {
  width: 30px;
  height: auto;
  cursor: pointer;
}
#treatments .container .seta .swiper-button-prev1 {
  transform: rotateZ(180deg);
}
#treatments .container #car {
  width: 99vw;
  height: 350px;
}
#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;
  bottom: 5%;
  z-index: 2;
  color: #fff;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .front::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #21201E;
  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: #AA976E;
}
#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.1);
  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::after {
    height: 55%;
  }
  #treatments .container {
    width: 80%;
    gap: 0;
  }
  #treatments .container .text {
    width: 100%;
  }
  #treatments .container .text h2,
  #treatments .container .text p {
    width: 100%;
  }
  #treatments .container .seta {
    padding: 10% 0 0;
  }
  #treatments .container #car {
    width: 80vw;
    height: 420px;
  }
  #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;
    padding: 5% 0;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .back p {
    font-size: 14px;
  }
  #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;
  }
}
#banner {
  place-items: center end;
}
#banner .container {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 3rem 0;
}
#banner .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem 0;
}
#banner .container .text h2 {
  width: 90%;
}
#banner .container .text p {
  width: 90%;
  font-size: 15px;
}
#banner .container .img {
  width: 100%;
  display: grid;
  place-items: center end;
}
#banner .container .img .title {
  display: none;
}
#banner .container .img img {
  width: 90%;
  height: auto;
  border-radius: 19px 0 0 19px;
}

@media (max-width: 800px) {
  #banner {
    place-items: center;
    padding: 15% 0;
  }
  #banner .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
  }
  #banner .container .img {
    order: 1;
    place-items: center;
    gap: 2rem 0;
  }
  #banner .container .img .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #banner .container .img img {
    width: 100%;
    border-radius: 19px;
  }
  #banner .container .text {
    order: 2;
    align-items: center;
    text-align: center;
  }
  #banner .container .text h2 {
    display: none;
  }
  #banner .container .text p {
    width: 100%;
  }
}
#aesthetics {
  padding: 5% 0 0;
  position: relative;
}
#aesthetics::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 80%;
  top: 0;
  background: #21201E;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: -1;
}
#aesthetics .container {
  width: 100%;
  gap: 2rem 0;
}
#aesthetics .container .text {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#aesthetics .container .text h2 {
  width: 40%;
  color: #fff;
}
#aesthetics .container .text p {
  width: 30%;
  font-weight: 500;
  color: #AA976E;
}
#aesthetics .container .seta {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#aesthetics .container .seta img {
  width: 30px;
  height: auto;
  cursor: pointer;
}
#aesthetics .container .seta .swiper-button-prev2 {
  transform: rotateZ(180deg);
}
#aesthetics .container #car {
  width: 99vw;
  height: 350px;
}
#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;
  bottom: 5%;
  z-index: 2;
  color: #fff;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .flip-container .flipper .front::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #21201E;
  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: #AA976E;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
#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.1);
  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::after {
    height: 55%;
  }
  #aesthetics .container {
    width: 80%;
    gap: 0;
  }
  #aesthetics .container .text {
    width: 100%;
  }
  #aesthetics .container .text h2,
  #aesthetics .container .text p {
    width: 100%;
  }
  #aesthetics .container .seta {
    padding: 10% 0 0;
  }
  #aesthetics .container #car {
    width: 80vw;
    height: 420px;
  }
  #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;
    padding: 5% 0;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .back p {
    font-size: 14px;
  }
  #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;
  }
}
#banner2 {
  background: #AA976E;
  position: relative;
  padding: 3% 0 5%;
}
#banner2::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #AA976E;
  top: -50%;
  z-index: -1;
}
#banner2 .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  position: relative;
  z-index: 2;
}
#banner2 .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
}
#banner2 .container .text h2 {
  color: #fff;
}
#banner2 .container .text p {
  color: #fff;
}
#banner2 .container .btn {
  display: grid;
  place-items: center end;
}
#banner2 .container .btn button {
  color: #fff;
  border-color: #fff;
}
#banner2 .container .btn button::after {
  background: #fff;
}
#banner2 .container .btn button:hover {
  color: #AA976E;
}

@media (max-width: 800px) {
  #banner2 {
    padding: 20% 0;
  }
  #banner2::after {
    display: none;
  }
  #banner2 .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
    place-items: center start;
  }
  #banner2 .container .btn button {
    color: #AA976E;
  }
}
#equipe .container {
  width: 100%;
  gap: 1rem 0;
}
#equipe .container .text {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#equipe .container .text h2 {
  width: 30%;
}
#equipe .container .seta {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#equipe .container .seta img {
  width: 30px;
  height: auto;
  cursor: pointer;
}
#equipe .container .seta .swiper-button-prev-equipe {
  transform: rotateZ(180deg);
}
#equipe .container #car {
  width: 99vw;
  display: grid;
  place-items: center;
}
#equipe .container #car .swiper {
  width: 100%;
  height: auto;
  padding: 5% 0;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  position: relative;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont {
  position: absolute;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px 0;
  background: #fff;
  border-radius: 9px;
  bottom: 6%;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
  max-width: 80%;
  font-size: 15px;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont p {
  max-width: 80%;
  font-size: 14px;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(1.2);
  z-index: 1;
  border-radius: 19px;
  overflow: hidden;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

@media (max-width: 800px) {
  #equipe {
    place-items: center;
    padding: 15% 0;
  }
  #equipe .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 2rem 0;
  }
  #equipe .container .text {
    width: 100%;
    align-items: center;
    text-align: center;
    order: 1;
  }
  #equipe .container .text h2 {
    width: 100%;
  }
  #equipe .container #car {
    order: 2;
    width: 80vw;
    padding: 0;
    place-items: center;
  }
  #equipe .container #car .swiper {
    padding: 0;
  }
  #equipe .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
    transform: scale(1);
  }
  #equipe .container .seta {
    order: 3;
    justify-content: center;
  }
}
#banner3 {
  background: #21201E;
}
#banner3 .container {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  position: relative;
  z-index: 2;
}
#banner3 .container .img {
  width: 100%;
  display: grid;
  place-items: center start;
}
#banner3 .container .img img {
  width: 80%;
  height: auto;
  border-radius: 19px;
}
#banner3 .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#banner3 .container .text h2 {
  width: 80%;
  color: #fff;
}
#banner3 .container .text p {
  width: 80%;
  color: #fff;
}

@media (max-width: 800px) {
  #banner3 {
    padding: 15% 0;
  }
  #banner3 .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
  }
  #banner3 .container .img img {
    width: 100%;
  }
  #banner3 .container .text {
    align-items: center;
    text-align: center;
  }
  #banner3 .container .text h2, #banner3 .container .text p {
    width: 90%;
  }
}
#insta .container {
  display: grid;
  place-items: center;
  gap: 2rem 0;
}
#insta .container .text {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
}
#insta .container .text p {
  font-size: 18px;
}
#insta .container #car {
  width: 80vw;
  display: grid;
  place-items: center;
  position: relative;
}
#insta .container #car .seta {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0 1rem;
  z-index: 1;
}
#insta .container #car .seta img {
  width: 45px;
  height: auto;
  cursor: pointer;
}
#insta .container #car .seta .swiper-button-prev-insta {
  transform: rotateZ(180deg);
}
#insta .container #car .swiper {
  width: 90%;
  border-radius: 15px;
  z-index: 2;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  gap: 1.5rem 0;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  padding: 3% 0;
  transition: all 0.5s ease;
  transform: scale(0.8);
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 80%;
  height: auto;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(1);
}
#insta .container .seta-mob {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
  z-index: 1;
}
#insta .container .seta-mob img {
  width: 30px;
  height: auto;
  cursor: pointer;
}
#insta .container .seta-mob .swiper-button-prev-insta {
  transform: rotateZ(180deg);
}
#insta .container .btn {
  padding: 2% 0 0;
}

@media (max-width: 800px) {
  #insta .container {
    width: 80%;
    gap: 2rem 0;
  }
  #insta .container .text {
    width: 100%;
  }
  #insta .container #car {
    gap: 2rem 0;
  }
  #insta .container #car .swiper {
    width: 100%;
  }
  #insta .container #car .swiper .swiper-wrapper .swiper-slide {
    transform: scale(1);
    padding: 10% 0;
  }
  #insta .container #car .seta {
    display: none;
  }
  #insta .container .seta-mob {
    display: flex;
  }
}
#form {
  position: relative;
  place-items: center;
  padding: 0;
  background: url(../assets/img/mapa.webp);
}
#form::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: #21201E;
  opacity: 0.5;
  z-index: 1;
}
#form .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 2rem;
  z-index: 2;
}
#form .container .cont-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem 0;
  border-radius: 13px;
}
#form .container .cont-text p {
  color: #fff;
}
#form .container .cont-text .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#form .container .cont-text .title h2 {
  font-size: 22px;
  color: #fff;
}
#form .container .cont-text .title p {
  font-size: 15px;
  font-weight: 500;
}
#form .container .cont-text .links {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#form .container .cont-text .links a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
#form .container .cont-text .links a img {
  height: 19px;
  width: auto;
  transition: all 0.5s ease;
}
#form .container .cont-text .links a img:hover {
  transform: scale(0.9);
}
#form .container .cont-text .links a p {
  font-size: 16px;
  font-weight: 400;
}
#form .container .cont-form {
  width: 100%;
  display: grid;
  place-items: center end;
}
#form .container .cont-form form {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 0;
  border-radius: 20px;
  background: #fff;
  padding: 8% 0;
  position: relative;
  bottom: -15%;
}
#form .container .cont-form form .text {
  width: 80%;
  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: 24px;
}
#form .container .cont-form form .text p {
  font-size: 15px;
  font-weight: 300;
}
#form .container .cont-form form .cont {
  width: 80%;
  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: #E9E9E9;
  font-size: 13px;
  padding: 0 10px;
  border: none;
  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 {
  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 {
  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: #21201E;
}
#form .container .cont-form form .cont button {
  width: 120px;
  height: 35px;
  margin: 5% 0 0;
  color: #7B6027;
}
#form .container .cont-form form .cont button::after {
  background: #E9E9E9;
}
#form .container .cont-form form .cont button:hover {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-color: #E9E9E9;
}

@media (max-width: 800px) {
  #form {
    padding: 15% 0 0;
    place-items: center;
    background: url(../assets/img/mapa-mob.webp);
  }
  #form::after {
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
  #form .container {
    width: 90%;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
  }
  #form .container .cont-text {
    width: 90%;
    text-align: center;
    align-items: center;
  }
  #form .container .cont-text .title {
    width: 100%;
  }
  #form .container .cont-text .links {
    width: 80%;
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem 0;
  }
  #form .container .cont-text .links a {
    flex-direction: column;
    gap: 0.5rem 0;
  }
  #form .container .cont-form {
    width: 90%;
    padding: 0;
    place-items: center;
  }
  #form .container .cont-form form {
    align-items: center;
    width: 100%;
    border-radius: 19px;
  }
  #form .container .cont-form form .text {
    text-align: center;
    align-items: center;
  }
  #form .container .cont-form form .text p {
    width: 100%;
  }
  #form .container .cont-form form .cont {
    align-items: center;
  }
  #form .container .cont-form form .cont button {
    background: #E9E9E9;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5% 0 1%;
  background: #21201E;
  gap: 1.5rem 0;
}
footer .container {
  width: 70%;
  display: grid;
  place-items: center start;
}
footer .container .cont {
  width: 15%;
  display: grid;
  place-items: center start;
  gap: 1rem 0;
}
footer .container .cont img {
  width: 100%;
  height: auto;
}
footer .container .cont .icon {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
footer .container .cont .icon img {
  width: 30px;
  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 {
    padding: 30% 0 2%;
    gap: 3rem 0;
  }
  footer .container {
    width: 80%;
    place-items: center;
    gap: 1rem 0;
  }
  footer .container .cont {
    width: 90%;
    place-items: center;
  }
  footer .container .cont img {
    width: 50%;
  }
}
#home-pg {
  padding: 0;
}
#home-pg::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(70deg, rgba(170, 151, 110, 0.5), rgba(33, 32, 30, 0.9));
  opacity: 0.6;
  z-index: 1;
}
#home-pg img {
  width: 100%;
  height: 100%;
}
#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%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}

#sobre-pg {
  place-items: center;
}
#sobre-pg .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
#sobre-pg .container .text {
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem 0;
  position: relative;
}
#sobre-pg .container .text::after {
  content: "";
  position: absolute;
  display: block;
  width: 80%;
  height: 100%;
  background: url(../assets/img/logo-fundo.webp);
  background-position: center;
  opacity: 0.15;
  z-index: -1;
}
#sobre-pg .container .text p {
  width: 90%;
}
#sobre-pg .container .icon {
  width: 35%;
  display: grid;
  place-items: center end;
}
#sobre-pg .container .icon .cont {
  width: 90%;
  display: grid;
  place-items: center start;
  gap: 2rem 0;
}
#sobre-pg .container .icon .cont a {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0 1rem;
}
#sobre-pg .container .icon .cont a img {
  width: 50px;
  height: auto;
  transition: all 0.5s ease;
}
#sobre-pg .container .icon .cont a:hover img {
  transform: scale(0.9);
}

@media (max-width: 800px) {
  #sobre-pg {
    place-items: center;
    padding: 15% 0;
  }
  #sobre-pg .container {
    flex-direction: column;
    gap: 2rem 0;
  }
  #sobre-pg .container .text {
    width: 100%;
  }
  #sobre-pg .container .text::after {
    width: 100%;
    opacity: 0.1;
  }
  #sobre-pg .container .text p {
    width: 100%;
  }
  #sobre-pg .container .text a {
    display: none;
  }
  #sobre-pg .container .icon {
    width: 100%;
  }
  #sobre-pg .container .icon .cont {
    width: 100%;
  }
}
#imgs {
  padding: 0;
}
#imgs #car {
  width: 99vw;
  display: grid;
  place-items: center;
}
#imgs #car .swiper {
  width: 100%;
}
#imgs #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
}
#imgs #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=style.css.map */