@charset "UTF-8";
@import url("https://fonts.cdnfonts.com/css/segoe-ui-4:wght@300;400;500;600;700&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: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background: #E1ECFE;
  overflow-x: hidden;
}

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

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

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

h2 {
  color: #029fdf;
  font-size: 30px;
  font-weight: 700;
}

h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
}
h4 {
  color: #fff;
  font-size: 35px;
  font-weight: 500;
}
h5 {
  color: #013B87;
  font-size: 25px;
  font-weight: 500;
}
b {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
p {
  color: #013B87;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

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

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

@media (max-width: 800px) {
  section {
    padding: 10% 0;
  }
  button {
    width: 172px;
    height: 45px;
  }
  button:hover {
    transform: none;
  }
  h2 {
    font-size: 24px;
  }
  p {
    font-size: 16px !important;
  }
}
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] {
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  background: rgba(1, 59, 135, 0.75);
  box-shadow: 0px 3px 18px rgba(255, 255, 255, 0.1607843137);
}
header[data-active=true] nav .cont .logo img {
  height: 40%;
}
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: auto;
  height: 25%;
  transition: all 0.8s ease;
}
header nav .cont #menu__btn {
  display: none;
}
header nav .cont #sidebar__nav {
  width: auto;
  display: grid;
  place-items: center;
  position: relative;
  padding: 10px 50px;
}
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: #E1ECFE;
  font-size: 14px;
  transition: all 0.5s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3px 10px;
  align-items: center;
  text-decoration: none;
  border-radius: 5px;
  overflow: hidden;
}
header nav .cont #sidebar__nav ul li a::after {
  content: "";
  position: absolute;
  display: grid;
  width: 0;
  left: 0;
  height: 100%;
  background: #4897FE;
  z-index: -1;
  transition: all 0.5s ease;
}
header nav .cont #sidebar__nav ul li a:hover::after {
  height: 100%;
  width: 100%;
}
header nav .cont #sidebar__nav ul li a:hover::before {
  height: 100%;
  width: 100%;
}
header nav .cont #sidebar__nav ul li a.active::after {
  height: 100%;
  width: 100%;
}
header nav .cont #sidebar__nav ul li a.active::before {
  height: 100%;
  width: 100%;
}
header nav .cont .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
header nav .cont .icon a {
  transition: all 0.5s ease;
}
header nav .cont .icon a:hover {
  transform: scale(0.9);
}
header nav .cont .icon a img {
  width: 23px;
  height: auto;
}

@media (max-width: 800px) {
  header {
    height: 10%;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  header[data-active=true] {
    height: 10%;
    width: 100%;
    top: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: transparent;
  }
  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;
    height: 50%;
  }
  header[data-active=true] nav .cont #menu__btn .boll {
    height: 5px;
    border: 0.5px solid #013B87;
  }
  header nav {
    width: 100%;
  }
  header nav .cont {
    width: 90%;
    justify-content: space-between;
  }
  header nav .cont .icon {
    display: none;
  }
  header nav .cont .logo img {
    height: 20%;
  }
  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::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: #013B87;
    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;
  }
}
#home {
  background: url(../assets/img/home.webp);
  height: 100vh;
  padding: 0;
  place-items: center;
}
#home .container {
  display: grid;
  place-items: center start;
}
#home .container .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem 0;
}
#home .container .text h1 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
#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);
    place-items: start center;
  }
  #home .btn-flut {
    width: 50px;
    height: 50px;
  }
  #home .container {
    height: 60%;
    place-items: center;
  }
  #home .container .text {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: end;
    gap: 1rem 0;
  }
  #home .container .text h1 {
    font-size: 26px;
  }
  #home .container .text p {
    width: 100%;
    font-size: 12px;
  }
}
#differ {
  padding: 0;
}
#differ .container {
  width: 90%;
  grid-template-columns: repeat(3, 1fr);
  background: #4897FE;
  padding: 5%;
  border-radius: 30px;
  position: relative;
  top: -5%;
}
#differ .container .cont {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#differ .container .cont p, #differ .container .cont h3 {
  width: 90%;
}

@media (max-width: 800px) {
  #differ .container {
    grid-template-columns: repeat(1, 1fr);
    padding: 15% 0;
    gap: 4rem 0;
  }
  #differ .container .cont {
    width: 90%;
  }
}
#doubts .container {
  gap: 2rem 0;
  place-items: center;
}
#doubts .container .conts {
  width: 100%;
  display: grid;
  place-items: center start;
  gap: 2rem 0;
}
#doubts .container .conts h2 {
  width: 70%;
  color: #002152;
}
#doubts .container .conts #car {
  width: 80vw;
  display: grid;
  place-items: center start;
  gap: 1rem 0;
  position: relative;
}
#doubts .container .conts #car .seta {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0 1rem;
}
#doubts .container .conts #car .seta img {
  cursor: pointer;
  width: 20px;
  height: auto;
}
#doubts .container .conts #car .seta .swiper-button-prev-doubts {
  transform: rotateZ(180deg);
}
#doubts .container .conts #car .swiper {
  height: 100%;
  width: 90%;
}
#doubts .container .conts #car .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 9px;
  padding: 20px 0;
  border: 1px solid #013B87;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  transform: scale(0.99);
}
#doubts .container .conts #car .swiper .swiper-wrapper .swiper-slide:hover {
  transform: scale(0.95);
}
#doubts .container .conts #car .swiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  left: 0;
  height: 100%;
  background: #013B87;
  transition: all 0.5s ease;
  z-index: -1;
  opacity: 0.5;
}
#doubts .container .conts #car .swiper .swiper-wrapper .swiper-slide[data-active=true] {
  border: none;
}
#doubts .container .conts #car .swiper .swiper-wrapper .swiper-slide[data-active=true]::after {
  width: 100%;
  opacity: 1;
}
#doubts .container .conts #car .swiper .swiper-wrapper .swiper-slide[data-active=true]:hover {
  transform: scale(1);
}
#doubts .container .conts #car .swiper .swiper-wrapper .swiper-slide[data-active=true] .cont h3 {
  color: #E1ECFE;
}
#doubts .container .conts #car .swiper .swiper-wrapper .swiper-slide .cont {
  width: 80%;
}
#doubts .container .conts #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
  color: #013B87;
  font-size: 18px;
  transition: all 0.5s ease;
}
#doubts .container .video {
  width: 100%;
  display: grid;
  place-items: center;
}
#doubts .container .video #video-doubts {
  min-height: 500px;
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
}
#doubts .container .video #video-doubts iframe {
  position: relative;
  width: 100%;
  height: 100%;
}

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

@media (max-width: 800px) {
  #treatments::after {
    height: 50%;
  }
  #treatments .container {
    width: 80%;
  }
  #treatments .container .text {
    width: 100%;
  }
  #treatments .container .text h2,
  #treatments .container .text p {
    width: 100%;
  }
  #treatments .container #car {
    width: 80vw;
    height: 400px;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
    transform: scale(0.8);
    z-index: 0;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    transform: scale(1);
    z-index: 2;
    border-radius: 9px;
    overflow: hidden;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active::after {
    opacity: 0;
    visibility: hidden;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front {
    border-radius: 9px;
    overflow: hidden;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front img {
    border-radius: 9px;
    filter: grayscale(0);
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front::after {
    opacity: 0.2;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front:hover {
    transform: scale(0.95);
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .back {
    border-radius: 9px;
    overflow: hidden;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper {
    transform: rotateY(180deg);
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper .back {
    opacity: 1;
  }
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper .back p,
  #treatments .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper .back h3 {
    transition: all 0.5s ease-in;
    animation: texto 1s linear;
  }
}
#sobre {
  place-items: center end;
}
#sobre .container {
  width: 90%;
  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: 2rem 0;
}
#sobre .container .text h2 {
  width: 80%;
  color: #029fdf;
}
#sobre .container .text p {
  width: 80%;
  color: #013B87;
}
#sobre .container button {
  background: #029fdf;
  color: #fff;
}
#sobre .container .img {
  width: 100%;
  display: grid;
  place-items: center end;
}
#sobre .container .img #video {
  min-height: 400px;
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
}
#sobre .container .img #video iframe {
  position: relative;
  width: 100%;
  height: 100%;
}
#sobre .container .img button {
  display: none;
}

@media (max-width: 800px) {
  #sobre {
    place-items: center;
  }
  #sobre .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem 0;
  }
  #sobre .container .text h2,
  #sobre .container .text p {
    width: 100%;
  }
  #sobre .container .text button {
    display: none;
  }
  #sobre .container .img {
    gap: 2rem 0;
    place-items: center;
  }
  #sobre .container .img #video {
    min-height: 200px;
  }
  #sobre .container .img button {
    display: block;
  }
}
#banner .container {
  width: 90%;
  background: url(../assets/img/banner1.webp);
  grid-template-columns: repeat(2, 1fr);
  padding: 5% 0;
  border-radius: 50px;
}
#banner .container .text {
  width: 80%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem 0;
  bottom: 10%
}

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

@media (max-width: 800px) {
  #aesthetics::after {
    height: 55%;
  }
  #aesthetics .container {
    width: 80%;
  }
  #aesthetics .container .text {
    width: 100%;
  }
  #aesthetics .container .text h2,
  #aesthetics .container .text p {
    width: 100%;
  }
  #aesthetics .container #car {
    width: 80vw;
    height: 400px;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
    transform: scale(0.8);
    z-index: 0;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    transform: scale(1);
    z-index: 2;
    border-radius: 9px;
    overflow: hidden;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active::after {
    opacity: 0;
    visibility: hidden;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front {
    border-radius: 9px;
    overflow: hidden;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front img {
    border-radius: 9px;
    filter: grayscale(0);
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front::after {
    opacity: 0.2;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front:hover {
    transform: scale(0.95);
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .back {
    border-radius: 9px;
    overflow: hidden;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper {
    transform: rotateY(180deg);
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper .back {
    opacity: 1;
  }
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper .back p,
  #aesthetics .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper .back h3 {
    transition: all 0.5s ease-in;
    animation: texto 1s linear;
  }
}
#banner2 .container {
  width: 90%;
  background: url(../assets/img/banner.webp);
  padding: 5% 0;
  border-radius: 50px;
}
#banner2 .container .cont {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#banner2 .container .cont .text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1.5rem 0;
}
#banner2 .container .cont .text h2 {
  width: 70%;
}
#banner2 .container .cont .text p {
  font-size: 18px;
  font-weight: 400;
}
#banner2 .container .cont .btn {
  width: 40%;
  display: grid;
  place-items: center end;
}
#banner2 .container .cont .btn button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
  background: #4897FE;
  color: #fff;
  height: 55px;
}
#banner2 .container .cont .btn button img {
  width: 25px;
  height: auto;
}

@media (max-width: 800px) {
  #banner2 .container {
    padding: 15% 0;
  }
  #banner2 .container .cont {
    flex-direction: column;
    gap: 2rem 0;
  }
  #banner2 .container .cont .text {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #banner2 .container .cont .text h2 {
    width: 100%;
  }
  #banner2 .container .cont .btn {
    width: auto;
  }
}
#equipe .container {
  gap: 2rem 0;
  place-items: center start;
}
#equipe .container .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#equipe .container .text h2 {
  color: #029fdf;
}
#equipe .container .text p {
  width: 90%;
  color: #013B87;
}
#equipe .container .seta {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#equipe .container .seta img {
  width: 30px;
  height: auto;
  cursor: pointer;
}
#equipe .container .seta .swiper-button-prev-equipe {
  transform: rotateZ(180deg);
}
#equipe .container #car {
  width: 80vw;
  display: grid;
  place-items: center;
}
#equipe .container #car .swiper {
  width: 100%;
  border-radius: 19px;
  overflow: hidden;
}
#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%;
  height: auto;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont {
  width: 80%;
  position: absolute;
  bottom: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
  font-size: 18px;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont p {
  font-size: 16px;
  font-weight: 300;
}

@media (max-width: 800px) {
  #equipe .container {
    place-items: center;
    gap: 3rem 0;
  }
  #equipe .container .text {
    width: 100%;
    order: 1;
  }
  #equipe .container #car {
    order: 2;
  }
  #equipe .container .seta {
    order: 3;
    justify-content: center;
  }
}
#result {
  padding: 5% 0 10%;
}
#result .container {
  width: 100%;
  gap: 2rem 0;
}
#result .container .text {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#result .container .text h2 {
  width: 50%;
  color: #029fdf;
}
#result .container .text p {
  width: 50%;
  color: #013B87;
}
#result .container .seta {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#result .container .seta img {
  width: 30px;
  height: auto;
  cursor: pointer;
}
#result .container .seta .swiper-button-prev-result {
  transform: rotateZ(180deg);
}
#result .container #car {
  width: 99vw;
  height: 450px;
  display: grid;
  place-items: center;
}
#result .container #car .swiper {
  width: 100%;
  height: 100%;
}
#result .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  transition: all 0.5s ease;
  transform: scale(1);
  height: 100%;
}
#result .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in;
  filter: grayscale(1);
}
#result .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(1.1);
  z-index: 2;
}
#result .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next img {
  filter: grayscale(0);
  border-radius: 9px;
}

@media (max-width: 800px) {
  #result {
    padding: 10% 0 15%;
  }
  #result .container {
    width: 80%;
  }
  #result .container .text {
    order: 1;
    width: 100%;
  }
  #result .container .text h2,
  #result .container .text p {
    width: 100%;
  }
  #result .container #car {
    order: 2;
    width: 80vw;
  }
  #result .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
    transform: scale(0.8);
    z-index: 0;
  }
  #result .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    transform: scale(1);
    z-index: 2;
    border-radius: 9px;
    overflow: hidden;
  }
  #result .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
    filter: grayscale(0);
    border-radius: 9px;
  }
  #result .container .seta {
    order: 3;
    justify-content: center;
  }
}
#form {
  padding: 0;
  position: relative;
  place-items: center;
}
#form .mapa {
  position: absolute;
  top: 8%;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#form .mapa img {
  width: 100%;
  height: 100%;
}
#form .mapa .mapa-mob {
  display: none;
}
#form .mapa::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.4156862745);
}
#form .container {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 2rem;
  z-index: 2;
}
#form .container .cont-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem 0;
  border-radius: 13px;
}
#form .container .cont-text .title {
  width: 70%;
}
#form .container .cont-text .title h2 {
  color: #fff;
}
#form .container .cont-text .icon {
  width: 70%;
  display: grid;
  place-items: center start;
  gap: 1rem 0;
}
#form .container .cont-text .icon a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
#form .container .cont-text .icon a img {
  width: auto;
  height: 20px;
  transition: all 0.5s ease;
}
#form .container .cont-text .icon a img:hover {
  transform: scale(0.9);
}
#form .container .cont-text .icon a p {
  font-size: 15px;
  color: #fff;
  font-weight: 300;
}
#form .container .cont-form {
  width: 100%;
  display: grid;
  place-items: center end;
  padding: 0 0 15%;
}
#form .container .cont-form form {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 0;
  background: #029fdf;
  padding: 10% 0;
  border-radius: 20px;
}
#form .container .cont-form form .text {
  width: 70%;
  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: #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: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  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;
  background: transparent;
  color: #fff;
  font-size: 13px;
  padding: 0 10px;
  border: none;
  border-bottom: 1px solid #E1ECFE;
}
#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% 10px 0;
}
#form .container .cont-form form .cont select {
  padding: 0 5px;
  cursor: pointer;
}
#form .container .cont-form form .cont select option {
  color: #013B87;
}
#form .container .cont-form form .cont button {
  width: 150px;
  height: 35px;
  margin: 5% 0 0;
  color: #E1ECFE;
  background: transparent;
  border: 1px solid #E1ECFE;
  position: relative;
  overflow: hidden;
}
#form .container .cont-form form .cont button::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: #E1ECFE;
  transition: all 0.5s ease;
  z-index: -1;
}
#form .container .cont-form form .cont button:hover {
  color: #013B87;
}
#form .container .cont-form form .cont button:hover::after {
  width: 100%;
}

@media (max-width: 800px) {
  #form {
    padding: 10% 0;
    place-items: center;
  }
  #form .mapa {
    top: 0;
    height: 50%;
  }
  #form .mapa .mapa-desk {
    display: none;
  }
  #form .mapa .mapa-mob {
    display: block;
  }
  #form .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 0;
    place-items: center;
  }
  #form .container .cont-text .title {
    width: 100%;
  }
  #form .container .cont-text .icon {
    width: 50%;
  }
  #form .container .cont-text .icon a img {
    height: 25px;
  }
  #form .container .cont-form {
    padding: 0;
    place-items: center;
  }
  #form .container .cont-form form {
    width: 100%;
    border-radius: 19px;
    padding: 15% 0;
  }
  #form .container .cont-form form .text {
    text-align: center;
    align-items: center;
  }
  #form .container .cont-form form .text p {
    width: 100%;
  }
  #form .container .cont-form form .cont {
    align-items: center;
  }
  #form .container .cont-form form .cont button::after {
    display: none;
  }
  #form .container .cont-form form .cont button:hover {
    color: #E1ECFE;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5% 0 1%;
  background: #013B87;
  gap: 1rem 0;
  border-radius: 40px 0 0 0;
}
footer .container {
  display: grid;
  place-items: center;
}
footer .container img {
  width: 25vh;
  height: auto;
}
footer .copyrights {
  display: grid;
  place-items: center;
  text-align: center;
}
footer .copyrights .copy {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
  font-size: 0.45rem;
  opacity: 1;
  color: #fff;
}
footer .copyrights .copy svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media (max-width: 800px) {
  footer {
    border-radius: 30px 30px 0 0;
    padding: 10% 0 2%;
    gap: 3rem 0;
  }
  footer .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem 0;
  }
  footer .container img {
    width: 80%;
    right: 0;
  }
}/*# sourceMappingURL=style.css.map */