@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;
  background-size: cover !important;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background: #fff;
}

.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: #f02e36;
  border: 1px solid #f02e36;
  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: #f02e36;
  z-index: -1;
}
button:hover {
  transform: scale(0.95);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  color: #fff;
}
button:hover::after {
  width: 100%;
}

h2 {
  color: #363636;
  font-size: 26px;
  font-weight: 500;
}

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

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

::-webkit-scrollbar-thumb {
  background: #f7f8f8;
  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 nav .cont .logo {
  width: 5%;
}
#header nav .cont .logo img {
  width: 100%;
}

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] nav {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1411764706);
}
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: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 19px 19px;
}
header nav .cont {
  width: 90%;
  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: -moz-fit-content;
  width: fit-content;
  height: 100%;
  display: grid;
  place-items: center start;
}
header nav .cont .logo img {
  width: auto;
  height: 80%;
  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: #f02e36;
  font-size: 14px;
  font-weight: 600;
  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: #f02e36;
  transition: all 0.5s ease;
  z-index: -1;
}
header nav .cont #sidebar__nav ul li a:hover {
  color: #fff;
}
header nav .cont #sidebar__nav ul li a:hover::after {
  width: 100%;
}
header nav .cont #sidebar__nav ul li a.active {
  color: #fff;
}
header nav .cont #sidebar__nav ul li a.active::after {
  width: 100%;
}

@media (max-width: 800px) {
  #header nav .cont .logo {
    width: 15%;
  }
  header {
    height: 10%;
    border-radius: 0;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  header[data-active=true] nav {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: #dfbebe;
  }
  header[data-active=true] nav .cont #menu__btn .boll {
    background: #f02e36;
  }
  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 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: #f02e36;
    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 {
  height: 100vh;
  background: url(../assets/img/home.webp);
  background-position: 50% 50%;
  position: relative;
  place-items: end center;
}
#home::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: -1;
  background: #f02e36;
  opacity: 0.1;
}
#home .container {
  display: grid;
  place-items: end center;
  gap: 4rem 0;
  z-index: 1;
  position: relative;
}
#home .container .text {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem 0;
}
#home .container .text h1 {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}
#home .container .text button {
  font-weight: 600;
  font-size: 15px;
  border-color: #fff;
  color: #fff;
}
#home .container .text button:hover {
  border-color: #f02e36;
}
#home .container .icon {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center end;
  gap: 1rem 0;
}
#home .container .icon .cont {
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#home .container .icon .cont .cont-after {
  width: 1px;
  height: 100%;
  background: #fff;
}
#home .container .icon .cont img {
  height: 25px;
  width: 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 {
    place-items: center;
    background-position: 55% 50%;
  }
  #home .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    gap: 4rem 0;
  }
  #home .container .text {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: end;
    gap: 1.5rem 0;
  }
  #home .container .text h1 {
    width: 100%;
    font-size: 22px;
    color: #fff;
  }
  #home .container .text button {
    color: #f02e36;
  }
  #home .container .text button::after {
    background: #fff;
    width: 100%;
  }
  #home .container .text button:hover {
    color: #f02e36;
  }
  #home .container .icon {
    width: 80%;
    height: auto;
    place-items: center;
  }
  #home .container .icon .cont {
    flex-direction: row;
  }
  #home .container .icon .cont .cont-after {
    display: none;
  }
}
#differ .container {
  width: 70%;
  grid-template-columns: repeat(2, 1fr);
  z-index: 2;
}
#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: 100%;
  left: 0;
  background: #f02e36;
}
#differ .container .title h2 {
  width: 80%;
}
#differ .container .title h2 strong {
  font-size: 24px;
  font-weight: 400;
}
#differ .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 1rem 0;
}
#differ .container .text p {
  width: 90%;
}

@media (max-width: 800px) {
  #differ {
    padding: 20% 0 10%;
  }
  #differ .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
  }
  #differ .container .title {
    width: 90%;
    align-items: center;
    text-align: center;
  }
  #differ .container .title::after {
    width: 100%;
    height: 5px;
    top: -15%;
    left: auto;
  }
  #differ .container .title h2 {
    width: 100%;
  }
  #differ .container .title h2 strong {
    font-size: 20px;
  }
  #differ .container .text {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  #differ .container .text p {
    width: 100%;
    font-size: 18px;
  }
}
#sobre {
  place-items: center;
}
#sobre .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center start;
  gap: 0 1rem;
}
#sobre .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem 0;
}
#sobre .container .text .btn {
  width: 100%;
}
#sobre .container #car {
  width: 30vw;
  display: grid;
  place-items: center;
  gap: 1rem 0;
}
#sobre .container #car .swiper {
  width: 100%;
  background: 19px;
  overflow: hidden;
}
#sobre .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  background: 19px;
  overflow: hidden;
}
#sobre .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
}
#sobre .container #car .pagination {
  width: 100%;
  display: grid;
  place-items: center;
}
#sobre .container #car .pagination .swiper-pagination-img {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#sobre .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet {
  background: #f02e36;
  height: 80px;
  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: 15% 0;
  }
  #sobre .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 2rem 0;
    padding: 0 0 5%;
  }
  #sobre .container .text {
    order: 1;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 2rem 0;
  }
  #sobre .container .text .btn {
    width: auto;
  }
  #sobre .container .text .btn button {
    background: #f02e36;
  }
  #sobre .container .text .btn button::after {
    width: 100%;
  }
  #sobre .container #car {
    order: 2;
    width: 80vw;
  }
}
#banner {
  background: url(../assets/img/banner1.webp);
  padding: 25% 0 10%;
  position: relative;
}
#banner::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0, rgba(54, 54, 54, 0.8), rgba(240, 46, 54, 0.3));
  opacity: 0.7;
}
#banner .container {
  z-index: 2;
}
#banner .container .text {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem 0;
}
#banner .container .text h2 {
  color: #fff;
}
#banner .container .text p {
  color: #fff;
}
#banner .container .text button {
  border-color: #fff;
  color: #fff;
}
#banner .container .text button:hover {
  border-color: transparent;
}

@media (max-width: 800px) {
  #banner {
    padding: 80% 0 15%;
    background-position: 60% 50%;
  }
  #banner .container .text {
    width: 100%;
  }
  #banner .container .text h2 {
    font-size: 26px;
    font-weight: 400;
  }
  #banner .container .text p {
    font-size: 18px;
  }
}
#treatments {
  background: #f7f8f8;
}
#treatments .container {
  gap: 1rem 0;
}
#treatments .container .text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#treatments .container .text p {
  font-size: 18px;
}
#treatments .container .seta {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#treatments .container .seta img {
  width: 40px;
  height: auto;
  cursor: pointer;
}
#treatments .container .seta .swiper-button-prev1 {
  transform: rotateZ(180deg);
}
#treatments .container #car {
  width: 80vw;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
}
#treatments .container #car .swiper {
  width: 100%;
  height: 100%;
  border-radius: 19px;
  overflow: hidden;
  position: relative;
}
#treatments .container #car .swiper::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 90%;
  bottom: 0;
  background: rgba(223, 190, 190, 0.5);
  transition: all 0.5s ease;
  border-radius: 19px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.0509803922);
  z-index: -1;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
  padding: 5% 0;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.5s ease;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide h3 {
  width: 80%;
  transition: all 0.5s ease;
  color: #f02e36;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide p {
  width: 80%;
  font-size: 14px;
  transition: all 0.5s ease;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 40px;
  height: auto;
  opacity: 0;
  transition: all 0.5s ease;
  transition-delay: 0;
  transform: scale(0.6);
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0%;
  bottom: 0;
  background: #fff;
  transition: all 0.5s ease;
  z-index: -1;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide:hover {
  border-radius: 19px 19px 0 0;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide:hover::after {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2156862745);
  height: 100%;
}
#treatments .container #car .swiper .swiper-wrapper .swiper-slide:hover img {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.4s;
}

@media (max-width: 800px) {
  #treatments .container {
    gap: 3rem 0;
  }
  #treatments .container .text {
    order: 1;
    width: 100%;
  }
  #treatments .container #car {
    order: 2;
    width: 80vw;
    gap: 2rem 0;
  }
  #treatments .container #car .swiper {
    width: 100%;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1137254902);
  }
  #treatments .container #car .swiper::after {
    display: none;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide::after {
    height: 100%;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    border-radius: 19px;
    transform: scale(1);
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
    border-radius: 0;
    transform: scale(0.9);
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next img {
    opacity: 0;
    transform: scale(0.6);
  }
  #treatments .container .seta {
    order: 3;
    justify-content: center;
  }
}
#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: #f02e36;
  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 #f02e36;
  }
  #modal_container .modal .fechar .btn-x:nth-child(2) {
    bottom: 6%;
  }
  #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%;
  }
}
#depoiments {
  padding: 0 0 5%;
}
#depoiments .container {
  gap: 3rem 0;
  border-radius: 25px;
}
#depoiments .container .text {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#depoiments .container .btn button {
  width: auto;
  padding: 0 15px;
}
#depoiments .container .seta {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#depoiments .container .seta img {
  width: 40px;
  height: auto;
  cursor: pointer;
}
#depoiments .container .seta .swiper-button-prev-dep {
  transform: rotateZ(180deg);
}
#depoiments .container #car {
  width: 80vw;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
}
#depoiments .container #car .swiper {
  width: 100%;
  height: 100%;
  border-radius: 19px;
  overflow: hidden;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
  background: rgba(223, 190, 190, 0.5);
  padding: 5% 0;
  border-radius: 19px;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide h3 {
  width: 80%;
  font-size: 22px;
  color: #f02e36;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide p {
  width: 80%;
  font-size: 17px;
  font-weight: 300;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide .img {
  width: 80%;
  display: grid;
  place-items: center start;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide .img img {
  width: 30%;
}

@media (max-width: 800px) {
  #depoiments {
    padding: 0 0 10%;
  }
  #depoiments .container .text {
    order: 1;
    width: 100%;
  }
  #depoiments .container #car {
    order: 2;
    gap: 2rem 0;
  }
  #depoiments .container #car .swiper {
    width: 100%;
  }
  #depoiments .container #car .swiper .swiper-wrapper .swiper-slide {
    text-align: center;
    padding: 10% 0;
  }
  #depoiments .container #car .swiper .swiper-wrapper .swiper-slide .img {
    width: auto;
  }
  #depoiments .container #car .swiper .swiper-wrapper .swiper-slide .img img {
    width: 100%;
  }
  #depoiments .container .btn {
    order: 3;
  }
  #depoiments .container .seta {
    order: 4;
    justify-content: center;
  }
}
#mapa {
  background: url(../assets/img/mapa-fundo.webp);
}
#mapa::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #363636;
  opacity: 0.7;
}
#mapa .container {
  grid-template-columns: repeat(2, 1fr);
  z-index: 2;
}
#mapa .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  gap: 2rem 0;
}
#mapa .container .text .title {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
#mapa .container .text .title p {
  font-weight: 200;
}
#mapa .container .text .title h2 {
  color: #fff;
}
#mapa .container .text p {
  color: #fff;
}
#mapa .container .text button {
  width: auto;
  padding: 0 25px;
  border-color: #fff;
  color: #fff;
}
#mapa .container .text button:hover {
  border-color: transparent;
}
#mapa .container .img {
  width: 100%;
  display: grid;
  place-items: center end;
}
#mapa .container .img a {
  width: 80%;
}
#mapa .container .img a img {
  width: 100%;
  height: auto;
  border-radius: 19px;
}

@media (max-width: 800px) {
  #mapa {
    place-items: center;
  }
  #mapa .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  #mapa .container .img {
    order: 1;
  }
  #mapa .container .img a {
    width: 100%;
  }
  #mapa .container .text {
    order: 2;
    align-items: center;
    text-align: center;
  }
  #mapa .container .text p {
    width: 100%;
  }
}
#equipe .container .text {
  text-align: center;
}
#equipe .container .seta {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#equipe .container .seta img {
  width: 40px;
  height: auto;
  cursor: pointer;
}
#equipe .container .seta .swiper-button-prev-equipe {
  transform: rotateZ(180deg);
}
#equipe .container #car {
  width: 80vw;
  height: 100%;
  display: grid;
  place-items: center;
}
#equipe .container #car .swiper {
  width: 100%;
  height: 100%;
  padding: 5% 2%;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 19px;
  overflow: hidden;
  transform: scale(0.8);
  transition: all 0.5s ease;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont-after {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: rgba(240, 46, 54, 0.5);
  z-index: -1;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(1);
  z-index: 2;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont {
  position: absolute;
  width: 80%;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
  bottom: 5%;
  background: rgba(240, 46, 54, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: all 0.5s ease;
  border-radius: 19px;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont .h3 {
  font-weight: 300;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont p {
  width: 80%;
  font-size: 13px;
  color: #fff;
  font-weight: 300;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont .p {
  line-height: 0;
  opacity: 0;
}

@media (max-width: 800px) {
  #equipe {
    padding: 15% 0;
  }
  #equipe .container {
    gap: 2rem 0;
  }
  #equipe .container .text {
    order: 1;
    width: 100%;
  }
  #equipe .container #car {
    order: 2;
    gap: 2rem 0;
  }
  #equipe .container #car .swiper {
    width: 100%;
  }
  #equipe .container #car .swiper .swiper-wrapper .swiper-slide {
    transform: scale(1);
  }
  #equipe .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
    transform: scale(0.8);
  }
  #equipe .container .seta {
    order: 3;
    justify-content: center;
  }
}
#banner2 {
  place-items: center end;
  background: #363636;
  padding: 0;
  border-radius: 0 0 0 60px;
}
#banner2 .container {
  width: 90%;
  grid-template-columns: repeat(2, 1fr);
  z-index: 2;
}
#banner2 .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  gap: 2rem 0;
}
#banner2 .container .text p {
  width: 90%;
  color: #fff;
}
#banner2 .container .text button {
  width: auto;
  padding: 0 25px;
  border-color: #fff;
  color: #fff;
}
#banner2 .container .text button:hover {
  border-color: transparent;
}
#banner2 .container .img {
  width: 100%;
  display: grid;
  place-items: center;
}
#banner2 .container .img img {
  width: 100%;
}

@media (max-width: 800px) {
  #banner2 {
    place-items: center;
  }
  #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;
    align-items: center;
    text-align: center;
  }
  #banner2 .container .text p {
    width: 100%;
  }
  #banner2 .container .text button {
    height: auto;
    padding: 15px;
  }
}
#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 .seta {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#insta .container .seta img {
  width: 40px;
  height: auto;
  cursor: pointer;
}
#insta .container .seta .swiper-button-prev-insta {
  transform: rotateZ(180deg);
}
#insta .container #car {
  width: 80vw;
  display: grid;
  place-items: center;
  position: relative;
}
#insta .container #car .swiper {
  width: 100%;
  border-radius: 15px;
  z-index: 2;
  padding: 15px;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  gap: 1rem 0;
  background: #f7f8f8;
  border-radius: 15px;
  overflow: hidden;
  padding: 0 0 15px;
  transition: all 0.5s ease;
  transform: scale(0.8);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.0823529412);
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 80%;
  height: auto;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide .img {
  width: 100%;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide .logo {
  padding: 0 10% 0 0;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(1);
}
#insta .container .btn {
  padding: 2% 0 0;
}

@media (max-width: 800px) {
  #insta {
    padding: 15% 0;
  }
  #insta .container {
    gap: 2rem 0;
  }
  #insta .container .text {
    order: 1;
    width: 100%;
  }
  #insta .container #car {
    order: 2;
    gap: 2rem 0;
  }
  #insta .container #car .swiper {
    width: 100%;
  }
  #insta .container #car .swiper .swiper-wrapper .swiper-slide {
    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;
  }
}
#form {
  background: url(../assets/img/img-form.webp);
  background-position: 50% 20%;
  position: relative;
  padding: 0;
  border-radius: 60px 0 0 0;
}
#form::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 60px 0 0 0;
  opacity: 0.4;
}
#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%;
  height: 100%;
  display: grid;
  place-items: center end;
  gap: 2rem 0;
}
#form .container .cont-form form {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem 0;
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(80px);
          backdrop-filter: blur(80px);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1882352941);
  z-index: 2;
  padding: 10% 0;
  border-radius: 9px;
  position: relative;
  bottom: -20%;
}
#form .container .cont-form form .title {
  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 .title h2 {
  font-size: 20px;
  color: #fff;
}
#form .container .cont-form form .title p {
  font-size: 12px;
  color: #fff;
}
#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: #fff;
  color: #f02e36;
  font-size: 13px;
  padding: 0 10px;
  border: none;
  border-radius: 5px;
}
#form .container .cont-form form .cont textarea::-moz-placeholder, #form .container .cont-form form .cont input::-moz-placeholder, #form .container .cont-form form .cont select::-moz-placeholder {
  color: #f02e36;
  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: #f02e36;
  opacity: 0.8;
}
#form .container .cont-form form .cont textarea {
  padding: 3% 10px 0;
  height: 90px;
}
#form .container .cont-form form .cont select {
  padding: 0 5px;
  cursor: pointer;
}
#form .container .cont-form form .cont select option {
  color: #f02e36;
}
#form .container .cont-form form .cont button {
  height: 35px;
  margin: 5% 0 0;
  color: #fff;
}
#form .container .cont-form form .cont button::after {
  width: 100%;
}
#form .container .cont-text {
  width: 100%;
  display: grid;
  place-items: center;
  gap: 2rem 0;
}
#form .container .cont-text h2 {
  color: #fff;
}

@media (max-width: 800px) {
  #form {
    padding: 20% 0 0;
  }
  #form .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  #form .container .cont-form form {
    width: 100%;
    bottom: -10%;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  background: #f7f8f8;
  padding: 5% 0 1%;
  gap: 1.5rem 0;
}
footer .container {
  display: grid;
  place-items: center start;
}
footer .container .links {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
footer .container .links .icon {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 0.5rem;
  transition: all 0.5s ease;
}
footer .container .links .icon a {
  width: auto;
  transition: all 0.5s ease;
}
footer .container .links .icon a:hover {
  transform: scale(0.9);
}
footer .container .links .icon a img {
  width: 30px;
  height: auto;
}
footer .logo {
  width: 15%;
}
footer .logo img {
  width: 100%;
  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: #000;
}
footer .copyrights .copy svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media (max-width: 800px) {
  footer {
    padding: 20% 0 2%;
  }
  footer .container .links {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  footer .logo {
    width: 50%;
    padding: 2% 0 0;
  }
}/*# sourceMappingURL=style.css.map */