@charset "UTF-8";
@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 !important;
  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;
}

body {
  background: #f1f1f1;
}

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

img {
  height: auto;
}

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

button {
  background: linear-gradient(0deg, #9c850e, #efde78, #9c850e);
  font-size: 14px;
  width: 200px;
  height: 45px;
  border-radius: 9px;
  border: none;
  transition: all 0.75s ease;
  color: #1f315b;
  font-weight: 600;
  cursor: pointer;
}
button:hover {
  transform: scale(0.95);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.0509803922);
}

.h2 {
  color: #D9A412;
  font-size: 23px;
  font-weight: 600;
}

h2 {
  color: #1f315b;
  font-size: 25px;
  font-weight: 600;
}

p {
  color: #201e1f;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

::-webkit-scrollbar {
  background: #1f315b;
  width: 12px;
}

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

@media (max-width: 800px) {
  section {
    padding: 10% 0;
  }
  button {
    width: 200px;
    height: 45px;
  }
  button:hover {
    transform: none;
    border-radius: 9px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 16px !important;
  }
}
#header {
  background: #1f315b;
}
#header[data-active=true] {
  background: rgba(31, 49, 91, 0.8);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
}

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] {
  box-shadow: 0px 3px 6px rgba(255, 255, 255, 0.0509803922);
  background: rgba(31, 49, 91, 0.8);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
}
header[data-active=true] nav {
  width: 100%;
  border-radius: 0;
}
header[data-active=true] nav .cont #sidebar__nav {
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  background: transparent;
}
header[data-active=true] nav .cont .icon {
  opacity: 1;
  visibility: visible;
}
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 .icon {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 0.5rem;
  transition: all 0.5s ease;
}
header nav .cont .icon a {
  width: auto;
  transition: all 0.5s ease;
}
header nav .cont .icon a:hover {
  transform: scale(0.9);
}
header nav .cont .icon a img {
  width: 30px;
  height: auto;
}
header nav .cont .logo {
  width: 15%;
  display: grid;
  place-items: center start;
}
header nav .cont .logo img {
  width: 100%;
  height: auto;
  transition: all 0.8s ease;
}
header nav .cont #menu__btn {
  display: none;
}
header nav .cont #sidebar__nav {
  display: grid;
  place-items: center;
  position: relative;
  padding: 10px 50px;
  border-radius: 50px;
  transition: all 0.5s ease;
}
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;
  font-weight: 400;
  transition: all 0.5s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5% 8px;
  align-items: center;
  text-decoration: none;
  border-radius: 5px;
  overflow: hidden;
}
header nav .cont #sidebar__nav ul li a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 100%;
  left: 0;
  bottom: 0;
  background: #fff;
  transition: all 0.5s ease;
  z-index: -1;
}
header nav .cont #sidebar__nav ul li a:hover {
  color: #1f315b;
}
header nav .cont #sidebar__nav ul li a:hover::after {
  width: 100%;
}
header nav .cont #sidebar__nav ul li a.active {
  color: #1f315b;
}
header nav .cont #sidebar__nav ul li a.active::after {
  width: 100%;
}

@media (max-width: 800px) {
  header {
    height: 10%;
    border-radius: 0;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: transparent;
  }
  header[data-active=true] {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: #1f315b;
  }
  header[data-active=true] nav .cont #sidebar__nav {
    background: rgba(0, 0, 0, 0.5);
  }
  header nav {
    width: 100%;
  }
  header nav .cont {
    width: 80%;
    justify-content: space-between;
  }
  header nav .cont .icon {
    display: none;
  }
  header nav .cont .logo {
    width: 40%;
  }
  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: 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: 50%;
  }
  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;
    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;
  }
  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: #1f315b;
    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:hover {
    color: #fff;
  }
  header nav .cont #sidebar__nav ul li a.active {
    color: #fff;
  }
}
#home {
  background: url(../assets/img/home.webp);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 5%;
}
#home .container {
  display: grid;
  place-items: center start;
  gap: 4rem 0;
}
#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: 28px;
  color: #fff;
  font-weight: 600;
}
#home .container .text h1 strong {
  color: #efde78;
}
#home .container .text .icon {
  width: 100%;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
  transition: all 0.5s ease;
}
#home .container .text .icon a {
  width: auto;
  transition: all 0.5s ease;
}
#home .container .text .icon a:hover {
  transform: scale(0.9);
}
#home .container .text .icon a img {
  width: 45px;
  height: auto;
}
#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 {
    background: url(../assets/img/home-mob.webp);
  }
  #home .container {
    height: 100%;
    place-items: center;
  }
  #home .container .text {
    width: 100%;
    height: 80%;
    text-align: center;
    align-items: center;
    justify-content: end;
  }
  #home .container .text h1 {
    width: 100%;
    font-size: 24px;
  }
  #home .container .text .icon {
    display: flex;
  }
}
#differ {
  padding: 0;
}
#differ .container {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 2rem;
  border-radius: 19px;
  background: rgba(31, 49, 91, 0.6);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  position: relative;
  top: -50%;
  padding: 3% 5%;
}
#differ .container .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#differ .container .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 110%;
  background: linear-gradient(0deg, #9c850e, #efde78, #9c850e);
  left: 0;
}
#differ .container .title .h2 {
  font-size: 25px;
  color: #efde78;
}
#differ .container .title h2 {
  width: 80%;
  font-size: 23px;
  color: #fff;
}
#differ .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#differ .container .text p {
  width: 90%;
  color: #fff;
}

@media (max-width: 800px) {
  #differ .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
    padding: 15% 0;
    top: -15%;
    background: rgba(31, 49, 91, 0.8);
  }
  #differ .container .title {
    width: 80%;
    text-align: center;
  }
  #differ .container .title::after {
    top: -15%;
    left: auto;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #9c850e, #efde78, #9c850e);
  }
  #differ .container .title h2 {
    width: 100%;
    font-size: 20px;
  }
  #differ .container .title .h2 {
    font-size: 20px;
  }
  #differ .container .text {
    width: 90%;
    text-align: center;
  }
}
#sobre {
  place-items: center;
}
#sobre .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 1rem;
}
#sobre .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  gap: 2rem 0;
}
#sobre .container .text h2 {
  width: 90%;
}
#sobre .container .text p {
  width: 90%;
}
#sobre .container #car {
  width: 40vw;
  display: grid;
  place-items: center;
  gap: 1rem 0;
}
#sobre .container #car .swiper {
  width: 100%;
  border-radius: 9px;
  overflow: hidden;
}
#sobre .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
}
#sobre .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
}
#sobre .container #car .pagination {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
#sobre .container #car .pagination .swiper-pagination-img {
  padding: 0;
  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: #1f315b;
  height: 90px;
  width: 25%;
  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);
}

@media (max-width: 800px) {
  #sobre {
    place-items: center;
    padding: 0 0 10%;
  }
  #sobre .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 3rem 0;
  }
  #sobre .container .text {
    align-items: center;
    width: 100%;
    gap: 2rem 0;
  }
  #sobre .container .text h2 {
    width: 100%;
  }
  #sobre .container .text p {
    width: 100%;
  }
  #sobre .container #car {
    width: 80vw;
  }
  #sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet {
    height: 50px;
  }
}
#treatments {
  display: grid;
  place-items: center;
}
#treatments .container {
  width: 90%;
  display: grid;
  place-items: center;
  z-index: 2;
  gap: 2rem 0;
}
#treatments .container .text {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0;
}
#treatments .container .seta {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#treatments .container .seta img {
  width: 35px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: all 0.5s ease;
}
#treatments .container .seta .swiper-button-prev1 {
  transform: rotateZ(180deg);
}
#treatments .container #car {
  width: 80vw;
  display: grid;
  place-items: center;
  position: relative;
}
#treatments .container #car::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 80%;
  background: linear-gradient(0deg, #9c850e, #d2c78e, #9c850e);
  bottom: 0;
  border-radius: 19px;
}
#treatments .container #car .swiper {
  width: 100%;
  height: 100%;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 2% 0;
  position: relative;
  border-radius: 19px 19px 0 0;
  overflow: hidden;
  cursor: pointer;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0;
  background: #efde78;
  bottom: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .cont {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .cont img {
  width: 50px;
  transform: scale(0.5);
  opacity: 0;
  transition-delay: -0.5s;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
  font-size: 18px;
  color: #fff;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide .cont p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide:hover {
  transform: scale(0.9);
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next::after {
  height: 100%;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next:hover {
  transform: scale(1);
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .cont img {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.5s;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .cont h3 {
  color: #1f315b;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .cont p {
  color: #1f315b;
}

@media (max-width: 800px) {
  #treatments .container .text {
    order: 1;
    text-align: center;
  }
  #treatments .container #car {
    order: 2;
  }
  #treatments .container #car::after {
    display: none;
  }
  #treatments .container #car .swiper {
    border-radius: 19px;
    overflow: hidden;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide {
    border-radius: 19px;
    padding: 15% 0;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide::after {
    background: linear-gradient(0deg, #9c850e, #d2c78e, #9c850e);
    height: 100%;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide .cont img {
    opacity: 1;
    transform: scale(1);
  }
  #treatments .container .seta {
    order: 3;
    justify-content: center;
    padding: 10% 0;
  }
  #treatments .container .seta img {
    width: 40px;
  }
}
#modal_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
#modal_container[data-active=true] {
  opacity: 1;
  visibility: visible;
}
#modal_container[data-active=true] .modal {
  margin-top: 0;
  opacity: 1;
}
#modal_container .modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #1f315b;
  z-index: 999;
  width: 70%;
  height: 70%;
  max-width: 80%;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  transition: all 0.3s ease-out;
  margin-top: 2rem;
  gap: 0 4rem;
}
#modal_container .modal img {
  width: 100%;
  border-radius: 20px 0 0 20px;
}
#modal_container .modal .fechar {
  width: 4%;
  height: 10%;
  background-color: transparent;
  position: absolute;
  top: 5%;
  right: 0;
  cursor: pointer;
}
#modal_container .modal .fechar .btn-x {
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
  transform: rotateZ(-45deg);
}
#modal_container .modal .fechar .btn-x:nth-child(2) {
  bottom: 2.5%;
  transform: rotateZ(45deg);
}
#modal_container .modal .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1.5rem 0;
}
#modal_container .modal .text h2 {
  color: #fff;
}
#modal_container .modal .text p {
  width: 85%;
  font-size: 15px;
  line-height: 1.3rem;
  color: #fff;
}

@media (max-width: 800px) {
  #modal_container .modal {
    flex-direction: column;
    width: 90%;
    height: -moz-fit-content;
    height: fit-content;
  }
  #modal_container .modal img {
    width: 100%;
    height: 30vh;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0;
  }
  #modal_container .modal .fechar {
    width: 6%;
    position: absolute;
    padding: 0;
    top: 4%;
    right: 5%;
  }
  #modal_container .modal .fechar .btn-x {
    width: 23px;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #1f315b;
  }
  #modal_container .modal .fechar .btn-x:nth-child(2) {
    bottom: 5%;
  }
  #modal_container .modal .text {
    padding: 8%;
  }
  #modal_container .modal .text h2 {
    text-align: center;
    width: 100%;
    padding-top: 5%;
  }
  #modal_container .modal .text p {
    width: 100%;
  }
}
#banner {
  background: #1f315b;
}
#banner .container .text {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem 0;
}
#banner .container .text h2 {
  color: #fff;
}
#banner .container .text p {
  color: #fff;
  padding: 0 0 2%;
}

@media (max-width: 800px) {
  #banner .container .text {
    width: 100%;
  }
}
#aesthetics {
  display: grid;
  place-items: center;
}
#aesthetics .container {
  gap: 2rem 0;
}
#aesthetics .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0;
}
#aesthetics .container .seta {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
#aesthetics .container .seta img {
  width: 35px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: all 0.5s ease;
}
#aesthetics .container .seta .swiper-button-prev2 {
  transform: rotateZ(180deg);
}
#aesthetics .container #car {
  width: 60vw;
  display: grid;
  place-items: center;
  position: relative;
}
#aesthetics .container #car::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 80%;
  background: linear-gradient(0deg, #9c850e, #d2c78e, #9c850e);
  bottom: 0;
  border-radius: 19px;
}
#aesthetics .container #car .swiper {
  width: 100%;
  height: 100%;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 2% 0;
  position: relative;
  border-radius: 19px 19px 0 0;
  overflow: hidden;
  cursor: pointer;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide:nth-child(1)::after {
  border-radius: 0 0 0 19px;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide:nth-child(3)::after {
  border-radius: 0 0 19px 0;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0;
  background: #efde78;
  bottom: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .cont {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .cont img {
  width: 50px;
  transform: scale(0.5);
  opacity: 0;
  transition-delay: -0.5s;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
  font-size: 18px;
  color: #fff;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .cont p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide:hover {
  transform: scale(1);
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide:hover::after {
  height: 100%;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide:hover .cont img {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.5s;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide:hover .cont h3 {
  color: #1f315b;
}
#aesthetics .container #car .swiper .swiper-wrapper .swiper-slide:hover .cont p {
  color: #1f315b;
}

@media (max-width: 800px) {
  #aesthetics .container .text {
    order: 1;
    text-align: center;
  }
  #aesthetics .container #car {
    order: 2;
    width: 80vw;
  }
  #aesthetics .container #car::after {
    display: none;
  }
  #aesthetics .container #car .swiper {
    border-radius: 19px;
    overflow: hidden;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide {
    border-radius: 19px;
    padding: 15% 0;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide::after {
    background: linear-gradient(0deg, #9c850e, #d2c78e, #9c850e);
    height: 100%;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide .cont img {
    opacity: 1;
    transform: scale(1);
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide:hover .cont h3, #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide:hover .cont p {
    color: #fff;
  }
  #aesthetics .container .seta {
    order: 3;
    display: flex;
    justify-content: center;
  }
  #aesthetics .container .seta img {
    width: 40px;
  }
}
#banner2 {
  background: #1f315b;
  place-items: center end;
  padding: 0;
  border-radius: 0 0 0 60px;
}
#banner2 .container {
  width: 90%;
  height: 100%;
  grid-template-columns: repeat(2, 1fr);
}
#banner2 .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem 0;
  padding: 5% 0;
}
#banner2 .container .text h2 {
  width: 90%;
  color: #fff;
}
#banner2 .container .text p {
  width: 90%;
  color: #fff;
  padding: 0 0 2%;
}
#banner2 .container .text button {
  width: auto;
  padding: 0 15px;
}
#banner2 .container .img {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
#banner2 .container .img img {
  width: 100%;
}

@media (max-width: 800px) {
  #banner2 .container {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
  #banner2 .container .img {
    order: 1;
  }
  #banner2 .container .text {
    order: 2;
    width: 80%;
    padding: 15% 0 20%;
  }
  #banner2 .container .text h2, #banner2 .container .text p {
    width: 100%;
  }
}
#equipe.equipe-pg {
  background: #fff;
}
#equipe .container {
  gap: 3rem 0;
}
#equipe .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#equipe .container .seta {
  width: 65%;
  display: none;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#equipe .container .seta img {
  width: 35px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: all 0.5s ease;
}
#equipe .container .seta .swiper-button-prev-equipe {
  transform: rotateZ(180deg);
}
#equipe .container #car {
  width: 50vw;
  display: grid;
  place-items: center;
}
#equipe .container #car .swiper {
  width: 100%;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 19px;
  overflow: hidden;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
  bottom: 0;
  padding: 5% 0;
  background: #1f315b;
  border-radius: 19px;
  overflow: hidden;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
  width: 80%;
  color: #fff;
  font-size: 18px;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont p {
  width: 80%;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 800px) {
  #equipe .container .text {
    order: 1;
  }
  #equipe .container #car {
    order: 2;
    width: 80vw;
  }
  #equipe .container .seta {
    order: 3;
    display: flex;
    justify-content: center;
  }
  #equipe .container .seta img {
    width: 40px;
  }
}
#insta {
  background-color: #1f315b;
}
#insta.insta-pg {
  background: #f1f1f1;
}
#insta.insta-pg .container .text .h2 {
  color: #D9A412;
}
#insta.insta-pg .container .text h2 {
  color: #1f315b;
}
#insta .container {
  gap: 2rem 0;
}
#insta .container .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#insta .container .text .h2 {
  color: #efde78;
}
#insta .container .text h2 {
  color: #fff;
}
#insta .container .seta {
  width: 83%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#insta .container .seta img {
  width: 35px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: all 0.5s ease;
}
#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%;
}
#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);
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 90%;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(1);
}

@media (max-width: 800px) {
  #insta .container .text {
    order: 1;
    width: 100%;
  }
  #insta .container #car {
    order: 2;
  }
  #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 .seta {
    order: 4;
    justify-content: center;
  }
  #insta .container .seta img {
    width: 40px;
  }
}
#depoiments .container {
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
#depoiments .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
}
#depoiments .container .text p {
  width: 55%;
  font-weight: 300;
}
#depoiments .container .text h2 {
  width: 55%;
}
#depoiments .container #car {
  width: 80vw;
}
#depoiments .container #car .swiper {
  width: 100%;
  height: 500px;
  border-radius: 19px;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide #cont-video {
  width: 100%;
  height: 100%;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 19px;
  overflow: hidden;
  cursor: pointer;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide #cont-video[data-active=true] .video::after {
  opacity: 0;
  visibility: hidden;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide #cont-video[data-active=true] .video .play {
  opacity: 0;
  visibility: hidden;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide #cont-video[data-active=true] .video img {
  opacity: 0.8;
  filter: blur(15px);
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide #cont-video[data-active=true] .video iframe {
  z-index: 2;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide #cont-video .video {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  display: grid;
  place-items: center;
  position: relative;
  transition: all 0.5s ease;
  background: transparent !important;
  z-index: 2;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide #cont-video .video::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(31, 49, 91, 0.3);
  left: 0;
  top: 0;
  z-index: 2;
  transition: all 0.5s ease;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide #cont-video .video img {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  z-index: 1;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide #cont-video .video .play {
  width: 20%;
  height: auto;
  z-index: 3;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide #cont-video .video span {
  display: none;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide #cont-video .video iframe {
  width: 100%;
  height: 100%;
  z-index: -1;
}
#depoiments .container .seta {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#depoiments .container .seta img {
  width: 35px;
  height: auto;
  cursor: pointer;
}
#depoiments .container .seta .swiper-button-prev-dep {
  transform: rotateZ(180deg);
}

@media (max-width: 800px) {
  #depoiments {
    padding: 15% 0;
  }
  #depoiments .container {
    place-items: center;
    gap: 2rem 0;
  }
  #depoiments .container .text {
    order: 1;
  }
  #depoiments .container .text p, #depoiments .container .text h2 {
    width: 100%;
  }
  #depoiments .container #car {
    order: 2;
  }
  #depoiments .container .btn {
    order: 3;
  }
  #depoiments .container .seta {
    order: 4;
    justify-content: center;
    width: 100%;
  }
  #depoiments .container .seta img {
    width: 40px;
  }
}
#form {
  background: #1f315b;
  position: relative;
}
#form::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 50%;
  background: url(../assets/img/mapa.webp);
  background-position: 0% 40%;
  bottom: 0;
}
#form::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 50%;
  background: rgba(239, 222, 120, 0.3);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  bottom: 0;
  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-form {
  width: 100%;
  display: grid;
  place-items: center start;
  border-radius: 9px;
}
#form .container .cont-form .title {
  text-align: center;
  display: none;
}
#form .container .cont-form .title h2 {
  color: #fff;
}
#form .container .cont-form form {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 0;
  text-align: center;
  padding: 10% 0;
  border-radius: 13px;
  overflow: hidden;
  background: linear-gradient(0deg, rgba(156, 133, 14, 0.3), rgba(239, 222, 120, 0.3), rgba(156, 133, 14, 0.3));
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  position: relative;
}
#form .container .cont-form form::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #1f315b;
  opacity: 0.2;
  z-index: -1;
}
#form .container .cont-form form .text {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0;
}
#form .container .cont-form form .text h2 {
  font-size: 20px;
  color: #fff;
}
#form .container .cont-form form .text p {
  width: 90%;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
}
#form .container .cont-form form .cont {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem 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;
  border: none;
  background: transparent;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 14px;
}
#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% 0 0;
}
#form .container .cont-form form .cont select {
  cursor: pointer;
}
#form .container .cont-form form .cont select option {
  background: #1f315b;
  color: #fff;
}
#form .container .cont-text {
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#form .container .cont-text .title {
  width: 90%;
}
#form .container .cont-text h2 {
  color: #fff;
}
#form .container .cont-text .links {
  width: 90%;
  display: grid;
  place-items: center start;
  gap: 1rem 0;
}
#form .container .cont-text .links p {
  font-weight: 500;
  font-size: 18px;
  color: #1f315b;
}
#form .container .cont-text .links p strong {
  font-weight: 700;
}
#form .container .cont-text .links .icon {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 0.5rem;
  transition: all 0.5s ease;
}
#form .container .cont-text .links .icon a {
  width: auto;
  transition: all 0.5s ease;
}
#form .container .cont-text .links .icon a:hover {
  transform: scale(0.9);
}
#form .container .cont-text .links .icon a img {
  width: 40px;
  height: auto;
}

@media (max-width: 800px) {
  #form {
    padding: 15% 0;
  }
  #form::after {
    height: 60%;
    background-position: center;
  }
  #form::before {
    height: 60%;
  }
  #form .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 2rem 0;
  }
  #form .container .cont-form {
    width: 100%;
    gap: 2rem 0;
  }
  #form .container .cont-form .title {
    display: block;
  }
  #form .container .cont-form form {
    width: 100%;
  }
  #form .container .cont-form form .text p {
    width: 100%;
  }
  #form .container .cont-form form .cont textarea,
  #form .container .cont-form form .cont input,
  #form .container .cont-form form .cont select {
    color: #1f315b;
    font-weight: 600;
    border-color: #1f315b;
  }
  #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: #1f315b;
  }
  #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: #1f315b;
  }
  #form .container .cont-text .title {
    display: none;
  }
  #form .container .cont-text .links {
    width: 100%;
    place-items: center;
    text-align: center;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  padding: 5% 0 1%;
  background: #f1f1f1;
  gap: 2rem 0;
}
footer .container {
  display: grid;
  place-items: center;
}
footer .container img {
  width: 15%;
}
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%;
  }
}
#home-pg {
  padding: 10% 0 5%;
}
#home-pg .container {
  gap: 3rem 0;
}
#home-pg .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#home-pg .container #car {
  width: 80vw;
  display: grid;
  place-items: center;
}
#home-pg .container #car .swiper {
  width: 100%;
}
#home-pg .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
}
#home-pg .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
#home-pg .container .seta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
#home-pg .container .seta img {
  width: 35px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: all 0.5s ease;
}
#home-pg .container .seta .swiper-button-prev-pg {
  transform: rotateZ(180deg);
}
#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;
}

@media (max-width: 800px) {
  #home-pg {
    padding: 25% 0 10%;
  }
  #home-pg .container {
    place-items: center;
  }
  #home-pg .container .text {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: end;
  }
  #home-pg .container .text h1 {
    width: 100%;
    font-size: 24px;
  }
  #home-pg .container .text .icon {
    display: flex;
  }
}/*# sourceMappingURL=style.css.map */