@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  resize: none;
  outline: none;
  list-style: none;
  text-decoration: none;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "Lato", sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background: #efe2d1;
}

.container {
  width: 80%;
}

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

button {
  background: #b37e3e;
  font-size: 14px;
  width: 155px;
  height: 45px;
  border-radius: 50px;
  border: none;
  transition: all 0.75s ease;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}
button:hover {
  transform: scale(0.95);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.0509803922);
}

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

p {
  color: #b37e3e;
  font-size: 16px;
  font-weight: 500;
}

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

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

@media (max-width: 800px) {
  section {
    padding: 10% 0;
  }
  button {
    width: 172px;
    height: 45px;
  }
  button:hover {
    transform: none;
    border-radius: 9px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 16px !important;
  }
}
#header {
  top: 6%;
}
#header[data-active="true"] {
  top: 0;
}

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;
}
header[data-active="true"] {
  box-shadow: 0px 3px 18px rgba(255, 255, 255, 0.1607843137);
}
header[data-active="true"] nav {
  background: #b37e3e;
}
header[data-active="true"] nav .cont .logo img {
  width: 70%;
}
header nav {
  transition: all 0.3s ease-in;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
header nav .cont {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
header nav .cont .logo {
  display: grid;
  place-items: center start;
}
header nav .cont .logo img {
  width: 75%;
  height: auto;
  transition: all 0.8s ease;
  position: relative;
}
header nav .cont #menu__btn {
  display: none;
}
header nav .cont #sidebar__nav {
  width: 70%;
  display: grid;
  place-items: center end;
}
header nav .cont #sidebar__nav ul {
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 0 1rem;
  /* Não mexer */
  /* Não mexer ^^ */
}
header nav .cont #sidebar__nav ul .a2 {
  display: none;
}
header nav .cont #sidebar__nav ul li a {
  color: #fff;
  font-size: 14px;
  transition: all 0.5s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 5px;
  align-items: center;
  text-decoration: none;
}
header nav .cont #sidebar__nav ul li a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0%;
  height: 1px;
  bottom: 0;
  background: #fff;
  transition: all 0.5s ease;
}
header nav .cont #sidebar__nav ul li a:hover::after {
  width: 100%;
}
header nav .cont #sidebar__nav ul li a.active::after {
  width: 100%;
}

@media (max-width: 800px) {
  #header {
    top: 0;
  }
  header {
    height: 15%;
  }
  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 {
    opacity: 0;
  }
  header[data-active="true"] nav .cont #menu__btn .boll {
    border: 0.5px solid #b37e3e;
  }
  header nav {
    width: 100%;
  }
  header nav .cont {
    width: 90%;
    justify-content: space-between;
  }
  header nav .cont .logo img {
    transition: all 0.5s ease;
    width: 150px;
  }
  header nav .cont #menu__btn {
    position: fixed;
    right: 10%;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 0.3rem 0;
    z-index: 10;
    cursor: pointer;
    transition: all 0.5s ease-out;
  }
  header nav .cont #menu__btn .boll {
    width: 25px;
    height: 4px;
    background: #fff;
    border: none;
    border-radius: 50px;
    transition: all 0.5s ease-out;
  }
  header nav .cont #menu__btn .boll:nth-child(2) {
    width: 15px;
  }
  header nav .cont #menu__btn[data-active="true"] {
    right: 50%;
  }
  header nav .cont #menu__btn[data-active="true"] .boll {
    transition: all 0.8s ease-out;
    border: none;
    position: absolute;
  }
  header nav .cont #menu__btn[data-active="true"] .boll:nth-child(1) {
    transform: rotateZ(45deg);
  }
  header nav .cont #menu__btn[data-active="true"] .boll:nth-child(3) {
    top: 5%;
    transform: rotateZ(-45deg);
  }
  header nav .cont #menu__btn[data-active="true"] .boll:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }
  header nav .cont #sidebar__nav {
    position: fixed;
    width: 100%;
    inset: 0;
    right: 0;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
  }
  header nav .cont #sidebar__nav[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: #b37e3e;
    transition: all 0.2s ease;
  }
  header nav .cont #sidebar__nav ul li a {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 1.2rem;
    color: #fff;
    position: relative;
  }
  header nav .cont #sidebar__nav ul li a::after {
    content: "";
    position: absolute;
    display: grid;
    width: 0;
    height: 1px;
    background: #fff;
    transition: all 0.5s ease;
  }
  header nav .cont #sidebar__nav ul li a:hover::after {
    width: 100%;
  }
}
#home {
  background: url(../assets/img/home.webp);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#home .container {
  display: grid;
  place-items: center start;
  gap: 4rem 0;
}
#home .container .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#home .container .text h1 {
  font-size: 38px;
  color: #e4d2c9;
  font-weight: 600;
}
#home .container .text p {
  width: 70%;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  padding: 0 0 3%;
}
#home .container .text button {
  width: 195px;
  background: #b37e3e;
  color: #fff;
}
#home .btn-flut {
  height: 55px;
  width: 55px;
  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);
    justify-content: start;
  }
  #home .btn-flut {
    display: none;
  }
  #home .container {
    height: 100%;
    place-items: center;
  }
  #home .container .text {
    width: 100%;
    height: 75%;
    text-align: center;
    align-items: center;
    justify-content: space-between;
  }
  #home .container .text h1 {
    font-size: 22px;
  }
  #home .container .text p {
    width: 100%;
    font-size: 16px;
  }
  #home .container .text a {
    position: absolute;
    bottom: 8%;
  }
}
#differ {
  padding: 10% 0;
}
#differ .container {
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
#differ .container .text {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
}
#differ .container .conts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 0 1rem;
}
#differ .container .conts .cont {
  background: #b37e3e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10% 0;
  border-radius: 40px;
  height: 100%;
}
#differ .container .conts .cont img {
  width: auto;
  height: 40px;
}
#differ .container .conts .cont p {
  color: #e4d2c9;
  width: 90%;
  font-size: 15px;
}

@media (max-width: 800px) {
  #differ .container .text {
    width: 100%;
  }
  #differ .container .conts {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem 0;
  }
}
#sobre {
  background: #b37e3e;
  border-radius: 19px;
}
#sobre .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#sobre .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#sobre .container .text h2 {
  color: #e4d2c9;
}
#sobre .container .text p {
  width: 80%;
  line-height: 1.5rem;
  font-size: 17px;
  color: #e4d2c9;
  padding: 0 0 8%;
}
#sobre .container .text button {
  border: 1px solid #e4d2c9;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 0.5rem;
}
#sobre .container .text button img {
  width: 15px;
}
#sobre .container .img {
  width: 100%;
  display: grid;
  place-items: center end;
}
#sobre .container .img img {
  width: 80%;
  height: auto;
  border-radius: 50px;
}
#sobre .container .img button {
  display: none;
}

@media (max-width: 800px) {
  #sobre {
    padding: 15% 0;
  }
  #sobre .container {
    grid-template-columns: repeat(1, 1fr);
  }
  #sobre .container .text {
    align-items: center;
    text-align: center;
  }
  #sobre .container .text p {
    width: 100%;
  }
  #sobre .container .text button {
    display: none;
  }
  #sobre .container .img {
    gap: 2rem 0;
  }
  #sobre .container .img img {
    width: 100%;
  }
  #sobre .container .img button {
    border: 1px solid #e4d2c9;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 0.5rem;
  }
  #sobre .container .img button img {
    width: 15px;
  }
}
#treatments {
  place-items: center end;
  padding: 10% 0;
}
#treatments .container {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 2rem;
}
#treatments .container .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#treatments .container .text h2 {
  width: 80%;
}
#treatments .container .text p {
  width: 90%;
}
#treatments .container .text .seta {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0 1rem;
  padding: 5% 0 0;
}
#treatments .container .text .seta img {
  width: 50px;
  height: auto;
  cursor: pointer;
}
#treatments .container #car {
  width: 60vw;
  display: grid;
  place-items: center end;
}
#treatments .container #car .swiper {
  width: 100%;
  border-radius: 19px 0 0 19px;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #b37e3e;
  gap: 1rem 0;
  border-radius: 19px;
  cursor: pointer;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide img {
  position: relative;
  width: 35px;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide h3 {
  width: 80%;
  color: #e4d2c9;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide p {
  width: 80%;
  font-size: 15px;
  color: #e4d2c9;
}
#treatments .container .seta-mob {
  display: none;
}

@media (max-width: 800px) {
  #treatments {
    place-items: center;
    padding: 15% 0;
  }
  #treatments .container {
    flex-direction: column;
    justify-content: center;
    gap: 2rem 0;
  }
  #treatments .container .text {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  #treatments .container .text h2,
  #treatments .container .text p {
    width: 100%;
  }
  #treatments .container .text .seta {
    display: none;
  }
  #treatments .container #car {
    width: 80vw;
    place-items: center;
  }
  #treatments .container #car .swiper {
    width: 100%;
    border-radius: 19px;
  }
  #treatments .container .seta-mob {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 1rem;
  }
  #treatments .container .seta-mob img {
    width: 45px;
    height: auto;
    cursor: pointer;
  }
}
#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: #b37e3e;
  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;
}
#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;
  padding: 5%;
}
#modal_container .modal .text h2 {
  color: #fff;
}
#modal_container .modal .text p {
  padding: 10% 0;
  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;
    background: #fff;
    border: 1px solid #b37e3e;
  }
  #modal_container .modal .text h2 {
    text-align: center;
    width: 100%;
    padding-top: 5%;
  }
}
#banner {
  background: #16304b;
  border-radius: 19px;
}
#banner .container {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#banner .container h2 {
  color: #fff;
}
#banner .container p {
  color: #fff;
  font-size: 17px;
  font-weight: 300;
  padding: 0 0 3%;
}
#banner .container button {
  width: 210px;
  height: 45px;
  background: #435e7a;
}

@media (max-width: 800px) {
  #banner {
    padding: 15% 0;
  }
  #banner .container {
    width: 80%;
  }
}
#equipe {
  place-items: center end;
  padding: 10% 0;
}
#equipe .container {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 2rem;
}
#equipe .container .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#equipe .container .text h2 {
  width: 80%;
}
#equipe .container .text p {
  width: 90%;
}
#equipe .container .text .seta {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0 1rem;
  padding: 5% 0 0;
}
#equipe .container .text .seta img {
  width: 50px;
  height: auto;
  cursor: pointer;
}
#equipe .container #car {
  width: 60vw;
  display: grid;
  place-items: center end;
}
#equipe .container #car .swiper {
  width: 100%;
  border-radius: 19px 0 0 19px;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #b37e3e;
  gap: 1rem 0;
  position: relative;
  border-radius: 19px;
  overflow: hidden;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide img {
  position: relative;
  width: 100%;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 5% 0;
  background: #b37e3e;
  border-radius: 19px;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
  width: 80%;
  color: #e4d2c9;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont p {
  width: 80%;
  font-size: 15px;
  color: #e4d2c9;
}
#equipe .container .seta-mob {
  display: none;
}

@media (max-width: 800px) {
  #equipe {
    place-items: center;
    padding: 15% 0;
  }
  #equipe .container {
    flex-direction: column;
    justify-content: center;
    gap: 2rem 0;
  }
  #equipe .container .text {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  #equipe .container .text h2,
  #equipe .container .text p {
    width: 100%;
  }
  #equipe .container .text .seta {
    display: none;
  }
  #equipe .container #car {
    width: 80vw;
    place-items: center;
  }
  #equipe .container #car .swiper {
    width: 100%;
    border-radius: 19px;
  }
  #equipe .container .seta-mob {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 1rem;
  }
  #equipe .container .seta-mob img {
    width: 45px;
    height: auto;
    cursor: pointer;
  }
}
#banner2 {
  background: #efe2d1;
  border-radius: 19px;
  padding: 10% 0 5%;
}
#banner2 .container {
  width: 80%;
  background: #b37e3e;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  border-radius: 19px;
}
#banner2 .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
}
#banner2 .container .text h2 {
  width: 80%;
  color: #fff;
}
#banner2 .container .text p {
  width: 80%;
  line-height: 1.5rem;
  font-size: 17px;
  font-weight: 300;
  color: #fff;
  padding: 0 0 5%;
}
#banner2 .container .text .btn {
  width: 80%;
}
#banner2 .container .text .btn button {
  background: #efe2d1;
  color: #b37e3e;
  font-weight: 600;
}
#banner2 .container .img {
  width: 100%;
  display: grid;
  place-items: center;
}
#banner2 .container .img img {
  width: 100%;
  height: auto;
  border-radius: 19px;
}

@media (max-width: 800px) {
  #banner2 .container {
    grid-template-columns: repeat(1, 1fr);
  }
  #banner2 .container .text {
    order: 2;
    padding: 15% 0;
    align-items: center;
    text-align: center;
  }
  #banner2 .container .text h2,
  #banner2 .container .text p,
  #banner2 .container .text .btn {
    width: 80%;
  }
  #banner2 .container .img {
    order: 1;
  }
}
#depoiments {
  place-items: center end;
}
#depoiments .container {
  width: 90%;
  display: grid;
  place-items: center start;
  gap: 2rem 0;
}
#depoiments .container .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
#depoiments .container .seta {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#depoiments .container .seta img {
  width: 45px;
  height: auto;
  cursor: pointer;
}
#depoiments .container #car {
  width: 89.1vw;
  display: grid;
  place-items: center;
}
#depoiments .container #car .swiper {
  width: 100%;
  border-radius: 19px 0 0 19px;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide {
  background: #e4d2c9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
  height: 250px;
  border-radius: 19px;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide h3 {
  width: 80%;
  color: #b37e3e;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide p {
  width: 80%;
}
#depoiments .container .btn {
  width: 90%;
  display: grid;
  place-items: center;
  padding: 4% 0;
}

@media (max-width: 800px) {
  #depoiments {
    place-items: center;
  }
  #depoiments .container {
    width: 80%;
    place-items: center;
  }
  #depoiments .container .text {
    order: 1;
    width: 100%;
  }
  #depoiments .container #car {
    order: 2;
    width: 80vw;
  }
  #depoiments .container #car .swiper .swiper-wrapper .swiper-slide {
    height: 310px;
  }
  #depoiments .container .seta {
    order: 3;
    justify-content: center;
  }
  #depoiments .container .btn {
    order: 4;
  }
}
#banner3 {
  padding: 0 0 10%;
}
#banner3 .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#banner3 .container p {
  width: 50%;
  font-size: 17px;
}

@media (max-width: 800px) {
  #banner3 .container p {
    width: 100%;
  }
}
#form {
  position: relative;
  background: #b37e3e;
  padding: 5% 0 15%;
}
#form .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  z-index: 2;
}
#form .container .cont-text {
  width: 100%;
  display: grid;
  place-items: center start;
  gap: 2rem 0;
}
#form .container .cont-text .cont {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0.5rem 0;
}
#form .container .cont-text .cont p {
  font-size: 17px;
  font-weight: 300;
  color: #fff;
}
#form .container .cont-text .icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1.5rem 0;
}
#form .container .cont-text .icon a {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0 1rem;
}
#form .container .cont-text .icon a p {
  font-size: 17px;
  color: #fff;
}
#form .container .cont-text .icon a p strong {
  font-size: 15px;
  font-weight: 300;
}
#form .container .cont-text .icon a img {
  width: 50px;
  height: auto;
  transition: all 0.5s ease;
}
#form .container .cont-text .icon a:hover img {
  transform: scale(0.9);
}
#form .container .cont-text h2 {
  width: 95%;
  color: #fff;
}
#form .container .cont-form {
  width: 100%;
  display: grid;
  place-items: center end;
}
#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;
  background: #fff;
  padding: 10% 0;
  border-radius: 13px;
}
#form .container .cont-form form .text {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0.5rem 0;
}
#form .container .cont-form form .text h2 {
  font-size: 20px;
  color: #b37e3e;
}
#form .container .cont-form form .cont {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: 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: transparent;
  color: #b37e3e;
  font-size: 13px;
  padding: 0 10px;
  border-bottom: 1px solid #b37e3e;
}
#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: #b37e3e;
  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: #b37e3e;
  opacity: 0.8;
}
#form .container .cont-form form .cont textarea {
  padding: 3% 10px 0;
}
#form .container .cont-form form .cont select {
  padding: 0 5px;
  cursor: pointer;
}
#form .container .cont-form form .cont select option {
  color: #000;
}
#form .container .cont-form form .cont button {
  width: 120px;
  height: 35px;
  margin: 5% 0 0;
}

@media (max-width: 800px) {
  #form {
    padding: 15% 0 35%;
  }
  #form .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 0;
  }
  #form .container .cont-text {
    gap: 3rem 0;
  }
  #form .container .cont-text .cont {
    width: 100%;
  }
  #form .container .cont-form form {
    padding: 10% 0;
    width: 100%;
    right: 0;
  }
}
#mapa {
  padding: 0;
}
#mapa .container {
  display: grid;
  place-items: center;
}
#mapa .container img {
  width: 100%;
  position: relative;
  top: -30%;
}
#mapa .container .mapa-mob {
  display: none;
}

@media (max-width: 800px) {
  #mapa .container .mapa {
    display: none;
  }
  #mapa .container .mapa-mob {
    display: block;
    top: -25%;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4% 0 1%;
  background: #16304b;
  gap: 1rem 0;
}
footer .container {
  display: grid;
  place-items: center;
  gap: 2rem 0;
}
footer .container img {
  width: 20%;
}
footer .container .copyrights {
  display: grid;
  place-items: center;
  text-align: center;
}
footer .container .copyrights .copy {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
  font-size: 0.45rem;
  opacity: 1;
  color: #fff;
}
footer .container .copyrights .copy svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media (max-width: 800px) {
  footer {
    padding: 10% 0 2%;
  }
  footer .container img {
    width: 50%;
    right: 0;
  }
}
#home-pg {
  background: url(../assets/img/home.webp);
  height: -moz-fit-content;
  height: fit-content;
  padding: 10% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#home-pg .container {
  display: grid;
  place-items: center start;
  gap: 4rem 0;
}
#home-pg .container .text {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem 0;
}
#home-pg .container .text h1 {
  font-size: 38px;
  color: #e4d2c9;
  font-weight: 600;
}
#home-pg .container .text button {
  width: 195px;
  background: #b37e3e;
  color: #fff;
}
#home-pg .btn-flut {
  height: 55px;
  width: 55px;
  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 {
    background: url(../assets/img/home-mob.webp);
    justify-content: end;
    height: 100vh;
  }
  #home-pg .btn-flut {
    display: none;
  }
  #home-pg .container {
    height: 40%;
    place-items: center;
  }
  #home-pg .container .text {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: start;
  }
  #home-pg .container .text h1 {
    font-size: 22px;
  }
}
#sobre-pg .container {
  display: grid;
  place-items: center;
}
#sobre-pg .container .conts {
  width: 100%;
  display: grid;
  place-items: center;
  gap: 5rem 0;
}
#sobre-pg .container .conts .cont {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#sobre-pg .container .conts .cont .img {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 1rem;
}
#sobre-pg .container .conts .cont .img img {
  width: 100%;
  border-radius: 19px;
}
#sobre-pg .container .conts .cont .text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}
#sobre-pg .container .conts .cont .text p {
  width: 80%;
  font-size: 17px;
  line-height: 24px;
}
#sobre-pg .container .conts .cont:nth-child(2) .text {
  align-items: start;
}

@media (max-width: 800px) {
  #sobre-pg {
    padding: 15% 0;
  }
  #sobre-pg .container .conts {
    gap: 2rem 0;
  }
  #sobre-pg .container .conts .cont {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
  }
  #sobre-pg .container .conts .cont .img {
    order: 1;
  }
  #sobre-pg .container .conts .cont .text {
    order: 2;
  }
  #sobre-pg .container .conts .cont .text p {
    width: 100%;
  }
}
#result {
  padding: 5% 0 8%;
}
#result .container {
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
#result .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#result .container #car {
  width: 80vw;
  display: grid;
  place-items: center;
}
#result .container #car .swiper {
  width: 80%;
  border-radius: 19px;
}
#result .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  gap: 1rem 0;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2% 0;
  background: #fff;
  border-radius: 19px;
}
#result .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 80%;
  height: auto;
}
#result .container .btn button {
  width: 210px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 0.5rem;
  color: #fff;
}
#result .container .btn button img {
  width: 20px;
}

@media (max-width: 800px) {
  #result {
    padding: 15% 0 20%;
  }
} /*# sourceMappingURL=styles.css.map */
