@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900;1000&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: "Mulish", sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  display: grid;
  place-items: center;
}

.container {
  width: 70%;
}

.button {
  background: rgb(0, 0, 83);
  color: #fff;
}

.button:hover {
  color: rgb(0, 0, 83);
  background-color: #fff;
}

button {
  background-color: rgb(0, 0, 83);
  font-size: 12px;
  width: 148px;
  height: 40px;
  border-radius: 6px;
  border: none;
  transition: all 0.75s ease;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}
button:hover {
  /* border-radius: 30px; */
  transform: scale(0.95);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.0901960784);
  background-color: #fff;
  color: rgb(0, 0, 83);
}

h1 {
  font-size: 26px;
  color: #fff;
  font-weight: 600;
}

.h2 {
  color: #fff;
}

h2 {
  color: #191716;
  font-size: 22px;
  font-weight: 600;
}

.p {
  color: #fff;
  font-size: 14px;
}

p {
  color: #191716;
  font-size: 16px;
  font-weight: 400;
}

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

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

@media (max-width: 800px) {
  button {
    width: 168px;
    height: 43px;
    border-radius: 14px;
  }
  button:hover {
    transform: none;
    border-radius: 9px;
  }
}
header {
  background: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  height: 15%;
  border-radius: 0 0 0 50px;
  display: flex;
  transition: all 0.3s ease-in;
  z-index: 99;
}
header[data-active="true"] {
  background-color: #191716;
}
header nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav .cont {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0 2rem;
}
header nav .cont ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style-type: none;
  align-items: center;
  gap: 0;
}
header nav .cont ul a,
header nav .cont ul .trat,
header nav .cont ul .trat2 {
  color: #fff;
  display: block;
  text-align: start;
  font-size: 12px;
  padding: 5px 15px;
  transition: all 0.5s ease;
  opacity: 0.7;
  border-bottom: 0px solid #1d1d1d;
  cursor: pointer;
}
header nav .cont ul a:hover,
header nav .cont ul .trat:hover,
header nav .cont ul .trat2:hover {
  color: rgb(161, 161, 255);
  border-radius: 10px;
  padding: 5px 15px;
  border-bottom: 0.5px solid rgb(62, 62, 255);
  opacity: 1;
}
header nav .cont ul .logo {
  width: 12%;
  height: 100%;
}
header nav .cont ul .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
header nav .cont .icons {
  display: flex;
  flex-direction: row;
  gap: 0 0.8rem;
}
header nav .cont .icons img {
  width: 100%;
  transition: all 0.3s ease-in;
}
header nav .cont .icons img:hover {
  transform: scale(0.8);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: hidden;
}

#home {
  background: url(../assets/img/home.webp);
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0 10%;
}
#home .text {
  width: 36%;
  display: grid;
  gap: 1rem 0;
  margin-left: 6.5%;
  margin-top: 5%;
}
#home .text p {
  color: #fff;
  font-size: 14px;
  font-weight: 200;
}
#home .text .p {
  font-size: 16px;
  font-weight: 400;
}
#home .text button {
  margin-top: 3%;
}

@media (min-width: 800px) {
  #home .text .h1-mob,
  #home .text .p-mob {
    display: none;
  }
  #home .icons {
    display: none;
  }
  #home .mob,
  #home .header-mob,
  #home #sidebar__nav {
    display: none !important;
  }
}
@media (max-width: 800px) {
  header {
    display: none !important;
  }
  #home {
    background: url(../assets/img/home-mobile.webp);
    height: 100vh;
    display: flex;
    width: 100%;
    position: relative;
    background-size: cover;
    flex-direction: column;
    text-align: center;
    justify-content: end;
  }
  #home .text {
    width: 100%;
    padding: 0 0 40%;
    margin: -15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #home .text .h1-mob {
    display: block;
    width: 100%;
    font-size: 15px;
  }
  #home .text .p-mob {
    display: block;
    font-size: 18px;
  }
  #home .text button {
    margin: 10% 0 5%;
  }
  #home .text p,
  #home .text h1 {
    display: none;
  }
  #home .text .icons {
    margin-top: 2%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 1.5rem;
  }
  #home .text .icons img {
    width: 35px;
    height: 35px;
  }
  #home .header-mob {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
  }
  #home .header-mob .logo {
    position: relative;
    width: 40%;
    top: 0;
    left: 0;
  }
  #home .header-mob .logo img {
    width: 50%;
  }
  #home .header-mob #menu__btn {
    position: fixed;
    right: 8%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
    z-index: 10;
    top: 5%;
  }
  #home .header-mob #menu__btn .boll {
    width: 14px;
    height: 14px;
    background: #f1f1f1;
    border: 0.2px solid #000;
    border-radius: 3px;
  }
  #home #sidebar__nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
  }
  #home #sidebar__nav[data-active="true"] {
    visibility: visible;
    opacity: 1;
  }
  #home #sidebar__nav[data-active="true"] ul {
    right: 0;
    transition: all 0.3s ease-out;
    transition-delay: 0.5s;
  }
  #home #sidebar__nav ul {
    position: absolute;
    width: 80%;
    right: -80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem 0;
    top: 0;
    bottom: 0;
    background: #1d1d1d;
    transition: all 0.2s ease;
  }
  #home #sidebar__nav ul li a,
  #home #sidebar__nav ul li .trat,
  #home #sidebar__nav ul li .trat2 {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 1.2rem;
    color: #fff;
  }
  #home #sidebar__nav ul #close__btn {
    position: absolute;
    top: 2%;
    left: 5%;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
  }
  #home #sidebar__nav ul #close__btn svg {
    width: 20px;
    height: 20px;
  }
}
#home-pg {
  background: url(../assets/img/home.webp);
  height: 50vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  margin: 0;
  padding: 0 10%;
}
#home-pg .text {
  width: 36%;
  display: grid;
  gap: 1rem 0;
  margin-left: 6.5%;
  margin-top: 5%;
}
#home-pg .text h1 {
  font-size: 34px;
}
#home-pg .text h1 p {
  font-size: 18px;
  color: #fff;
}

@media (min-width: 800px) {
  #home-pg .icons {
    display: none;
  }
  #home-pg .mob,
  #home-pg .header-mob,
  #home-pg #sidebar__nav {
    display: none !important;
  }
}
@media (max-width: 800px) {
  header {
    display: none !important;
  }
  #home-pg {
    background: url(../assets/img/home-mobile.webp);
    height: 60vh;
    display: flex;
    width: 100%;
    position: relative;
    background-size: cover;
    flex-direction: column;
    text-align: center;
    justify-content: end;
  }
  #home-pg .text {
    width: 100%;
    padding: 0 0 15%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #home-pg .text .icons {
    margin-top: 2%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 1.5rem;
  }
  #home-pg .text .icons img {
    width: 35px;
    height: 35px;
  }
  #home-pg .header-mob {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
  }
  #home-pg .header-mob .logo {
    position: relative;
    width: 40%;
    top: 0;
    left: 0;
  }
  #home-pg .header-mob .logo img {
    width: 50%;
  }
  #home-pg .header-mob #menu__btn {
    position: fixed;
    right: 8%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
    z-index: 10;
    top: 4%;
  }
  #home-pg .header-mob #menu__btn .boll {
    width: 13px;
    height: 13px;
    background: #f1f1f1;
    border: 0.2px solid #000;
    border-radius: 3px;
  }
  #home-pg #sidebar__nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
  }
  #home-pg #sidebar__nav[data-active="true"] {
    visibility: visible;
    opacity: 1;
  }
  #home-pg #sidebar__nav[data-active="true"] ul {
    right: 0;
    transition: all 0.3s ease-out;
    transition-delay: 0.5s;
  }
  #home-pg #sidebar__nav ul {
    position: absolute;
    width: 80%;
    right: -80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem 0;
    top: 0;
    bottom: 0;
    background: #1d1d1d;
    transition: all 0.2s ease;
  }
  #home-pg #sidebar__nav ul li a,
  #home-pg #sidebar__nav ul li .trat,
  #home-pg #sidebar__nav ul li .trat2 {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 1.2rem;
    color: #fff;
  }
  #home-pg #sidebar__nav ul #close__btn {
    position: absolute;
    top: 2%;
    left: 5%;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
  }
  #home-pg #sidebar__nav ul #close__btn svg {
    width: 20px;
    height: 20px;
  }
}

#videos {
  width: 100%;
  height: fit-content;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: #5b5b5b;
}

#videos .container {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

#videos .container h1 {
  width: 50%;
  color: #fff;
  text-align: center;
}

#videos .container .video {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#videos .container .video img {
  width: 30%;
  height: fit-content;
  border-radius: 8px;
  cursor: pointer;
  background-position-y: 10%;
}

@media (max-width: 1024px) {
  #videos {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 10% 0;
  }

  #videos .container {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }

  #videos .container h1 {
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 22px;
  }

  #videos .container .video {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  #videos .container .video img {
    width: 100%;
    height: fit-content;
    border-radius: 8px;
    cursor: pointer;
    background-position-y: 10%;
  }
}

#sobre-nos {
  height: fit-content;
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1d1d1d;
}
#sobre-nos .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#sobre-nos .container .text {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 3rem 0;
}
#sobre-nos .container .text h2 {
  font-size: 34px;
  font-weight: 600;
}
#sobre-nos .container .text h2 p {
  color: #fff;
  font-size: 18px;
  font-weight: 200;
}
#sobre-nos .container .text p {
  line-height: 1.5rem;
  width: 80%;
  font-size: 14px;
}
#sobre-nos .container .img {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
#sobre-nos .container .img img {
  width: 80%;
  height: 400px;
  z-index: 1;
}
#sobre-nos .container .img::after {
  content: "";
  display: block;
  position: absolute;
  width: 35%;
  height: 35%;
  background-color: transparent;
  border: 2px solid #fff;
  right: 0%;
  bottom: -8%;
  z-index: 0;
}
#sobre-nos .btn-flut {
  height: 55px;
  width: 55px;
  position: fixed;
  z-index: 9;
  bottom: 10%;
  right: -5%;
  display: grid;
  place-items: center;
  transition: all 0.4s ease-in;
  z-index: 9;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
#sobre-nos .btn-flut:hover {
  transform: scale(0.9);
}
#sobre-nos .btn-flut[data-active="true"] {
  right: 5%;
  opacity: 1;
  visibility: visible;
}
#sobre-nos .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}

@media (min-width: 800px) {
  #sobre-nos .container .btn {
    display: none;
  }
}
@media (max-width: 800px) {
  #sobre-nos {
    width: 100%;
    padding: 10% 0;
  }
  #sobre-nos .container {
    width: 90%;
    flex-direction: column;
    position: relative;
    gap: 0rem 0;
  }
  #sobre-nos .container .text,
  #sobre-nos .container .img {
    width: 100%;
  }
  #sobre-nos .container .text h2 {
    font-size: 22px;
  }
  #sobre-nos .container .text h2 p {
    font-size: 15px;
  }
  #sobre-nos .container .text .p {
    font-size: 15px;
    width: 100%;
  }
  #sobre-nos .container .text button {
    display: none;
  }
  #sobre-nos .container .btn {
    padding-top: 10%;
  }
  #sobre-nos .btn-flut {
    display: none;
  }
}
#sobre-pg {
  height: fit-content;
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
}
#sobre-pg .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
#sobre-pg .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 2rem 0;
}
#sobre-pg .container .text h2 {
  width: 80%;
  font-size: 18px;
  font-weight: 700;
}
#sobre-pg .container .text p {
  line-height: 1.5rem;
  width: 80%;
  font-size: 14px;
}
#sobre-pg .container .img {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 2rem 0;
}
#sobre-pg .container .img img:nth-child(1) {
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 3px;
  position: relative;
  left: -20%;
  bottom: -10%;
  z-index: 1;
}
#sobre-pg .container .img img:nth-child(2) {
  width: 80%;
  height: 80% !important;
  z-index: 1;
  border-radius: 3px;
  position: relative;
  top: -10%;
  right: -10%;
  z-index: 2;
}

@media (max-width: 1024px) {
  #sobre-pg .container .img {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 2rem 0;
  }

  #sobre-pg .container .img img:nth-child(1) {
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 3px;
    position: relative;
    left: 0%;
    bottom: -30% !important;
    z-index: 1;
  }
  #sobre-pg .container .img img:nth-child(2) {
    width: 100%;
    height: 80% !important;
    z-index: 1;
    border-radius: 3px;
    position: relative;
    top: -50% !important;
    right: 0%;
    z-index: 2;
    margin-bottom: 4rem;
  }
}

#sobre-pg .container .img button {
  background: #1d1d1d;
  width: 213px;
  height: 44px;
}
#sobre-pg .btn-flut {
  height: 55px;
  width: 55px;
  position: fixed;
  z-index: 9;
  bottom: 10%;
  right: -5%;
  display: grid;
  place-items: center;
  transition: all 0.4s ease-in;
  z-index: 9;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
#sobre-pg .btn-flut:hover {
  transform: scale(0.9);
}
#sobre-pg .btn-flut[data-active="true"] {
  right: 5%;
  opacity: 1;
  visibility: visible;
}
#sobre-pg .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}

@media (min-width: 800px) {
  #sobre-pg .container .btn {
    display: none;
  }
}
@media (max-width: 800px) {
  #sobre-pg {
    width: 100%;
    padding: 10% 0;
  }
  #sobre-pg .container {
    width: 80%;
    flex-direction: column-reverse;
    position: relative;
    gap: 2rem 0;
  }
  #sobre-pg .container .text,
  #sobre-pg .container .img {
    width: 100%;
  }
  #sobre-pg .container .text {
    align-items: start;
  }
  #sobre-pg .container .text h2 {
    font-size: 22px;
  }
  #sobre-pg .container .text p {
    font-size: 15px;
    width: 100%;
  }
  #sobre-pg .container .text button {
    display: none;
  }
  #sobre-pg .container .img img {
    width: 100%;
  }
  #sobre-pg .container .btn {
    padding-top: 10%;
  }
  #sobre-pg .btn-flut {
    display: none;
  }
}
#profolio {
  height: fit-content;
  padding: 5% 0 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #191716;
}
#profolio .container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 5rem;
  position: relative;
  left: -15%;
}
#profolio .container .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem 0;
}
#profolio .container .text p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
#profolio .container .text .p {
  width: 100%;
  font-weight: 300;
  font-size: 15px;
  opacity: 0.9;
  padding-top: 5%;
  line-height: 1.5rem;
}
#profolio .container #car {
  width: 65%;
  height: 100%;
  position: relative;
}
#profolio .container #car .mySwiper-pg {
  width: 100%;
}
#profolio .container #car .mySwiper-pg .swiper-wrapper {
  width: 100%;
}
#profolio .container #car .mySwiper-pg .swiper-wrapper .swiper-slide {
  padding: 0 5%;
  height: 400px;
}
#profolio .container #car .mySwiper-pg .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#profolio .container #car .swiper-button-prev-pg,
#profolio .container #car .swiper-button-next-pg {
  width: 10px;
  height: 19px;
  bottom: -15%;
  cursor: pointer;
  position: absolute;
  z-index: 1;
}
#profolio .container #car .swiper-button-prev-pg img,
#profolio .container #car .swiper-button-next-pg img {
  width: 100%;
  height: 100%;
}
#profolio .container #car .swiper-button-prev-pg {
  right: 8%;
  transform: rotateY(180deg);
}
#profolio .container #car .swiper-button-next-pg {
  right: 4%;
}

@media (min-width: 800px) {
  #profolio .container #car .seta-mob {
    display: none;
  }
}
@media (max-width: 800px) {
  #profolio {
    height: fit-content;
    justify-content: start;
    padding: 15% 0 30% 0;
  }
  #profolio .container {
    width: 80%;
    flex-direction: column-reverse;
    left: 0;
    gap: 3rem 0;
  }
  #profolio .container .text {
    width: 100%;
  }
  #profolio .container .text p {
    font-size: 14px;
  }
  #profolio .container .text .p {
    width: 95%;
    font-size: 16px;
  }
  #profolio .container #car {
    width: 100%;
  }
  #profolio .container #car .mySwiper .swiper-wrapper .swiper-slide {
    height: 350px;
    padding: 0 8%;
    gap: 1rem 0;
  }
  #profolio .container #car .mySwiper .swiper-wrapper .swiper-slide p {
    font-size: 14px;
    line-height: 1.5rem;
  }
  #profolio .container #car .mySwiper .swiper-wrapper .swiper-slide h3 {
    font-size: 15px;
  }
  #profolio .container #car .swiper-button-prev-pg,
  #profolio .container #car .swiper-button-next-pg {
    display: none;
  }
  #profolio .container #car .swiper-button-next-pg {
    right: 30%;
  }
  #profolio .container #car .swiper-button-prev-pg {
    left: 30%;
  }
  #profolio .container #car .seta-mob {
    display: block;
    width: 50px;
    height: 51px;
    bottom: -20%;
  }
}
#sorriso1 {
  background: #c4c4c4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding: 5% 0;
  position: relative;
}
#sorriso1 .text {
  width: 60%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem 0;
}
#sorriso1 .text p {
  width: 85%;
}
#sorriso1 .text img {
  position: absolute;
  bottom: -7%;
}
#sorriso1 .text button {
  margin-top: 5%;
}

@media (max-width: 800px) {
  #sorriso1 {
    padding: 10% 0;
  }
  #sorriso1 .text {
    width: 70%;
  }
  #sorriso1 .text p {
    width: 100%;
  }
  #sorriso1 .text img {
    bottom: -6%;
  }
}
#trat {
  height: fit-content;
  padding: 5% 0;
  background: #1d1d1d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#trat .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 0;
}
#trat .container .text {
  width: 55%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
#trat .container .text p {
  font-weight: 300;
  line-height: 1.2rem;
}
#trat .container .cont {
  display: flex;
  gap: 0 3rem;
  height: 60%;
}
#trat .container .cont .img {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
#trat .container .cont .img:hover {
  transform: scale(0.95);
}
#trat .container .cont .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}
#trat .container .cont .img p {
  display: grid;
  place-items: center;
  width: 70%;
  position: absolute;
  bottom: 0;
  z-index: 2;
  color: #fff;
  background: #1d1d1d;
  border-bottom: 1px solid #fff;
  height: 39px;
  border-radius: 6px;
}

@media (max-width: 800px) {
  #trat {
    padding: 10% 0;
  }
  #trat .container {
    width: 80%;
    gap: 3rem;
  }
  #trat .container .text {
    width: 90%;
  }
  #trat .container .text h2 {
    font-size: 22px;
  }
  #trat .container .text p {
    font-size: 16px;
  }
  #trat .container .cont {
    flex-direction: column;
    gap: 2rem 0;
  }
  #trat .container .cont .img {
    width: 100%;
  }
  #trat .container .cont .img:hover {
    transform: none;
  }
}
#sorriso2 {
  width: 100%;
  height: fit-content;
}
#sorriso2 .container {
  width: 100%;
  display: flex;
  flex-direction: row;
  background: #5b5b5b;
}
#sorriso2 .container .text {
  height: fit-content;
  padding: 4% 0;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #c4c4c4;
}
#sorriso2 .container .text .cont {
  width: 75%;
  display: grid;
  gap: 1rem 0;
}
#sorriso2 .container .text .cont h2 {
  width: 50%;
}
#sorriso2 .container .text .cont p {
  width: 80%;
  color: #1d1d1d;
}
#sorriso2 .container .img {
  width: 30%;
}
#sorriso2 .container .img img {
  width: 100%;
  height: auto;
  border-radius: 0px 0px 20px 20px;
}

@media (max-width: 800px) {
  #sorriso2 .container {
    height: 100%;
    flex-direction: column;
    background: #c4c4c4;
  }
  #sorriso2 .container .img {
    width: 100%;
  }
  #sorriso2 .container .img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0px 0px 20px 20px;
  }
  #sorriso2 .container .text {
    width: 100%;
    justify-content: start;
    padding: 8% 0;
  }
  #sorriso2 .container .text .cont {
    width: 80%;
  }
  #sorriso2 .container .text .cont h2 {
    width: 90%;
  }
  #sorriso2 .container .text .cont p {
    width: 90%;
    font-size: 16px;
  }
}
#dep {
  height: fit-content;
  padding: 5% 0 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #5b5b5b;
}
#dep .container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 5rem;
  position: relative;
  left: -15%;
}
#dep .container .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem 0;
}
#dep .container .text p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
#dep .container .text .p {
  width: 100%;
  font-weight: 300;
  font-size: 15px;
  opacity: 0.9;
  padding-top: 5%;
  line-height: 1.5rem;
}
#dep .container #car {
  width: 65%;
  height: 100%;
  position: relative;
}
#dep .container #car .mySwiper .swiper-wrapper .swiper-slide {
  width: 445px;
  height: 300px;
  background: #1d1d1d;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  padding: 0 2%;
  gap: 0.5rem 0;
  border-radius: 30px;
}
#dep .container #car .mySwiper .swiper-wrapper .swiper-slide p {
  font-size: 17px;
  color: #f1f1f1;
}
#dep .container #car .mySwiper .swiper-wrapper .swiper-slide h3 {
  color: #fff;
  font-size: 18px;
}
#dep .container #car .swiper-button-prev1,
#dep .container #car .swiper-button-next1 {
  width: 10px;
  height: 19px;
  bottom: -15%;
  cursor: pointer;
  position: absolute;
  z-index: 1;
}
#dep .container #car .swiper-button-prev1 img,
#dep .container #car .swiper-button-next1 img {
  width: 100%;
  height: 100%;
}
#dep .container #car .swiper-button-prev1 {
  right: 8%;
  transform: rotateY(180deg);
}
#dep .container #car .swiper-button-next1 {
  right: 4%;
}

@media (min-width: 800px) {
  #dep .container #car .seta-mob {
    display: none;
  }
}
@media (max-width: 800px) {
  #dep {
    padding: 10% 0 25%;
    justify-content: start;
  }
  #dep .container {
    width: 80%;
    flex-direction: column-reverse;
    left: 0;
    gap: 3rem 0;
  }
  #dep .container .text {
    width: 100%;
  }
  #dep .container .text p {
    font-size: 14px;
  }
  #dep .container .text .p {
    width: 95%;
    font-size: 16px;
  }
  #dep .container #car {
    width: 100%;
  }
  #dep .container #car .mySwiper .swiper-wrapper .swiper-slide {
    height: 350px;
    padding: 0 8%;
    gap: 1rem 0;
  }
  #dep .container #car .mySwiper .swiper-wrapper .swiper-slide p {
    font-size: 14px;
    line-height: 1.5rem;
  }
  #dep .container #car .mySwiper .swiper-wrapper .swiper-slide h3 {
    font-size: 15px;
  }
  #dep .container #car .swiper-button-prev1,
  #dep .container #car .swiper-button-next1 {
    display: none;
  }
  #dep .container #car .swiper-button-next1 {
    right: 30%;
  }
  #dep .container #car .swiper-button-prev1 {
    left: 30%;
  }
  #dep .container #car .seta-mob {
    display: block;
    width: 50px;
    height: 51px;
    bottom: -20%;
  }
}
#sorriso3 {
  height: fit-content;
}
#sorriso3 .container {
  width: 100%;
  display: flex;
  flex-direction: row;
  background: #5b5b5b;
}
#sorriso3 .container .text {
  height: fit-content;
  padding: 4% 0;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #c4c4c4;
}
#sorriso3 .container .text .cont {
  width: 68%;
  display: grid;
  gap: 1rem 0;
}
#sorriso3 .container .text .cont p {
  width: 80%;
  color: #1d1d1d;
}
#sorriso3 .container .img {
  width: 30%;
}
#sorriso3 .container .img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0px 0px 20px 20px;
}

@media (max-width: 800px) {
  #sorriso3 .container {
    height: 100%;
    flex-direction: column-reverse;
    background: #c4c4c4;
  }
  #sorriso3 .container .img {
    width: 100%;
  }
  #sorriso3 .container .text {
    width: 100%;
    justify-content: start;
    padding: 8% 0;
  }
  #sorriso3 .container .text .cont {
    width: 80%;
  }
  #sorriso3 .container .text .cont h2 {
    width: 90%;
  }
  #sorriso3 .container .text .cont p {
    width: 90%;
    font-size: 16px;
  }
}
#insta {
  height: fit-content;
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1d1d1d;
}
#insta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem 0;
}
#insta .container .text {
  width: 48%;
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}
#insta .container .cont {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 2rem;
}
#insta .container .cont .cont-img {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  gap: 1rem 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  position: relative;
}
#insta .container .cont .cont-img img {
  width: 100%;
}
#insta .container .cont .cont-img .img {
  position: absolute;
  width: 80%;
  height: 70%;
  border-radius: 8px;
}
#insta .container .btn {
  display: flex;
}

@media (min-width: 800px) {
  #insta .container #car {
    display: none;
  }
}
@media (max-width: 800px) {
  #insta .container #car {
    display: none;
  }
}
@media (max-width: 800px) {
  #insta {
    padding: 10% 0;
    justify-content: center;
  }
  #insta .container {
    width: 80%;
    flex-direction: column;
  }
  #insta .container .text {
    width: 75%;
    gap: 1rem 0;
  }
  #insta .container .text p {
    line-height: 1.5rem;
  }
  #insta .container .text h2 {
    line-height: 2rem;
  }
  #insta .container .text button {
    display: none;
  }
  #insta .container .imgs {
    display: none;
  }
  #insta .container .cont {
    display: none;
  }
  #insta .container #car {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem 0;
  }
  #insta .container #car .mySwiper-img2 {
    width: 100%;
  }
  #insta .container #car .mySwiper-img2 .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 1.5%;
    gap: 1.5rem 0;
  }
  #insta .container #car .mySwiper-img2 .swiper-slide img {
    width: 100%;
  }
  #insta .container #car .mySwiper-img2 .swiper-slide .img {
    position: absolute;
    width: 80%;
    height: 70%;
  }
  #insta .container #car .mySwiper-img2 .swiper-pagination {
    bottom: 6.2%;
  }
  #insta .container #car .mySwiper-img2 .swiper-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    background-color: #1d1d1d;
  }
}
#form {
  height: fit-content;
  padding: 5% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #5b5b5b;
}
#form .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#form .container .cont-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem 0;
}
#form .container .cont-text .cont {
  width: 60%;
}
#form .container .cont-text .links {
  width: 100%;
  display: grid;
  gap: 1.2rem 0;
}
#form .container .cont-text .links button {
  position: relative;
  width: 168px;
  height: 34px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#form .container .cont-text .links button img {
  position: absolute;
  left: 5%;
}
#form .container .cont-text .links .icons {
  width: 168px;
  display: flex;
  gap: 0 1.5rem;
}
#form .container .cont-text .links .icons a {
  width: 100%;
}
#form .container .cont-text .links .icons img {
  width: 39px;
  height: 39px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in;
}
#form .container .cont-text .links .icons img:hover {
  transform: scale(0.9);
}
#form .container .cont-text .links p {
  width: 50%;
  font-size: 12px;
}
#form .container .cont-form {
  background-color: #dedede;
  width: 80%;
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  border-radius: 24px;
  left: 15%;
  top: 15%;
}
#form .container .cont-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#form .container .cont-form p {
  width: 90%;
  text-align: start;
  font-size: 12px;
  margin: 0 0 5%;
}
#form .container .cont-form .cont {
  width: 95%;
  display: grid;
  place-items: center;
  gap: 1rem 0;
}
#form .container .cont-form .cont textarea,
#form .container .cont-form .cont input,
#form .container .cont-form .cont select {
  overflow: hidden;
  resize: none;
  background: #fff;
  color: rgba(0, 0, 0, 0.5960784314);
  font-size: 13px;
}
#form .container .cont-form .cont select {
  width: 90%;
  padding: 2% 3.5%;
  border-radius: 9px;
  cursor: pointer;
}
#form .container .cont-form .cont select option {
  color: #000;
}
#form .container .cont-form .cont .ip {
  padding: 2% 5%;
  width: 90%;
  border-radius: 9px;
  outline: none;
}
#form .container .cont-form .cont .ip3 {
  padding: 2% 5% 20%;
  width: 90%;
  border-radius: 9px;
  height: 0px;
  outline: none;
}
#form .container .cont-form .cont button {
  width: 93px;
  height: 31px;
  margin: 5% 0 0;
  color: #fcfffc;
  background-color: #191716;
}

@media (max-width: 800px) {
  #form {
    padding: 15% 0;
  }
  #form .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 0;
  }
  #form .container .cont-text {
    width: 90%;
    align-items: center;
  }
  #form .container .cont-text .links {
    place-items: center;
  }
  #form .container .cont-text .links p {
    width: 90%;
    text-align: center;
  }
  #form .container .cont-text .links .icons img:hover {
    transform: none;
  }
  #form .container .cont-text .cont {
    width: 100%;
    text-align: center;
  }
  #form .container .cont-form {
    width: 100%;
    height: 371px;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 0 0.8rem 0;
  background: #1d1d1d;
}
footer .container {
  display: grid;
  place-items: center;
  gap: 1rem 0;
}
footer .container img {
  width: 10%;
}
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 screen and (max-width: 64rem) {
  footer .container img {
    width: 50%;
  }
}
#modal_container,
#modal_container2 {
  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;
  display: grid;
  place-items: center;
}
#modal_container[data-active="true"],
#modal_container2[data-active="true"] {
  opacity: 1;
  visibility: visible;
}
#modal_container[data-active="true"] .modal,
#modal_container[data-active="true"] .modal2,
#modal_container2[data-active="true"] .modal,
#modal_container2[data-active="true"] .modal2 {
  margin-top: 0;
  opacity: 1;
}
#modal_container .modal,
#modal_container .modal2,
#modal_container2 .modal,
#modal_container2 .modal2 {
  position: fixed;
  background-color: #1d1d1d;
  z-index: 999;
  width: 80%;
  height: 85%;
  max-width: 80%;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: start center;
  padding: 2% 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
}
#modal_container .modal #car,
#modal_container .modal2 #car,
#modal_container2 .modal #car,
#modal_container2 .modal2 #car {
  width: 40vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#modal_container .modal #car .mySwiper-img,
#modal_container .modal2 #car .mySwiper-img,
#modal_container2 .modal #car .mySwiper-img,
#modal_container2 .modal2 #car .mySwiper-img {
  position: relative;
  width: 416px;
  height: 453px;
}
#modal_container .modal #car .mySwiper-img .swiper-wrapper .swiper-slide img,
#modal_container .modal2 #car .mySwiper-img .swiper-wrapper .swiper-slide img,
#modal_container2 .modal #car .mySwiper-img .swiper-wrapper .swiper-slide img,
#modal_container2 .modal2 #car .mySwiper-img .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#modal_container .modal #car .mySwiper-img .swiper-wrapper .swiper-slide:nth-child(1),
#modal_container .modal2 #car .mySwiper-img .swiper-wrapper .swiper-slide:nth-child(1),
#modal_container2 .modal #car .mySwiper-img .swiper-wrapper .swiper-slide:nth-child(1),
#modal_container2 .modal2 #car .mySwiper-img .swiper-wrapper .swiper-slide:nth-child(1) {
  display: none;
}
#modal_container .modal #car .mySwiper-img .swiper-pagination .swiper-pagination-bullet,
#modal_container .modal2 #car .mySwiper-img .swiper-pagination .swiper-pagination-bullet,
#modal_container2 .modal #car .mySwiper-img .swiper-pagination .swiper-pagination-bullet,
#modal_container2 .modal2 #car .mySwiper-img .swiper-pagination .swiper-pagination-bullet {
  width: 31px;
  height: 6px;
  border-radius: 3px;
  background: #fff;
}
#modal_container .modal .fechar,
#modal_container .modal2 .fechar,
#modal_container2 .modal .fechar,
#modal_container2 .modal2 .fechar {
  position: absolute;
  width: 34px;
  height: 34px;
  background-color: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  top: 5%;
  right: 3%;
  cursor: pointer;
}
#modal_container .modal .fechar svg,
#modal_container .modal2 .fechar svg,
#modal_container2 .modal .fechar svg,
#modal_container2 .modal2 .fechar svg {
  width: 40%;
  height: 40%;
  z-index: 2;
}
#modal_container .modal .text,
#modal_container .modal2 .text,
#modal_container2 .modal .text,
#modal_container2 .modal2 .text {
  width: 95%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem 0;
  padding: 5%;
}
#modal_container .modal .text p,
#modal_container .modal2 .text p,
#modal_container2 .modal .text p,
#modal_container2 .modal2 .text p {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  line-height: 1.4rem;
  opacity: 0.9;
}

@media (max-width: 800px) {

  #modal_container .modal,
  #modal_container2 .modal2 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 90%;
    height: 95%;
    max-width: 100%;
    gap: 2rem;
  }


  #modal_container .modal #car, #modal_container2 .modal2 #car {
    width: 100%;
    height: 50%;
    align-items: start;
    background: aqua;
  }

  #modal_container2 .modal2 #car .mySwiper-img {
    height: 40%;
    width: 80vw;
    align-items: start;
  }
  #modal_container .modal #car .mySwiper-img,
  #modal_container2 .modal2 #car .mySwiper-img {
    margin-top: 0%;
    width: 100%;
    height: 100%;
    align-items: start;
    justify-content: start;
  }

  #modal_container .modal .fechar,
  #modal_container .modal2 .fechar,
  #modal_container2 .modal .fechar,
  #modal_container2 .modal2 .fechar {
    position: absolute;
    padding: 0;
    background-color: #fff;
    top: 3%;
    right: 5%;
    z-index: 2;
  }
  #modal_container .modal .text,
  #modal_container2 .modal2 .text {
    margin-top: -5%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: fit-content;
    gap: 1rem;
  }

  #modal_container2 .modal2 .text {
    height: 50%;
    width: 100%;
    align-items: start;
    justify-content: center;
    gap: 1rem;
    margin-top: -10%;
  }
  #modal_container .modal .text p,
  #modal_container2 .modal2 .text p {
    font-size: 13px;
    line-height: 1rem;
  }
  #modal_container2 .modal2 #car .mySwiper-img .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
  }

}
@media (max-width: 380px){
  #modal_container .modal .text p,
  #modal_container2 .modal2 .text p {
    font-size: 10px;
    line-height: .9rem;
  }
}
 /*# sourceMappingURL=style.css.map */

#modal_container3 {
  position: fixed;
  z-index: 999999999999;
  background-color: rgba(#000, 85%);
  backdrop-filter: blur(8px);
  top: 0 !important;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}

#modal_container3[data-active="true"] {
  opacity: 1;
  pointer-events: all;
}

#modal_container3 .modal3 {
  background-color: #3b3b3b;
  width: fit-content;
  height: 65%;
  text-align: center;
  padding-top: 0;
  line-height: 1.3;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  position: relative;
  overflow: visible;
  border-radius: 12px;
}

#modal_container3 .modal3 video {
  height: fit-content;
  width: 300px;
  border-radius: 12px;
}

#modal_container3 .modal3 #fecharr {
  width: fit-content;
  position: absolute;
  z-index: 99999999999999999999999999999999;
  cursor: pointer;
  top: 5%;
  right: -15%;
  background-color: transparent;
}

#modal_container3 .modal3 #fecharr {
  width: 1.2rem !important;
  height: 1.2rem;
}

@media (max-width: 1024px) {
  #modal_container3 {
    position: fixed;
    z-index: 999999999999;
    background-color: rgba(#000, 85%);
    backdrop-filter: blur(8px);
    top: 0 !important;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
  }

  #modal_container3[data-active="true"] {
    opacity: 1;
    pointer-events: all;
  }

  #modal_container3 .modal3 {
    background-color: #3b3b3b;
    width: fit-content;
    height: 65%;
    text-align: center;
    padding-top: 0;
    line-height: 1.3;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr;
    position: relative;
    overflow: visible;
    border-radius: 12px;
  }

  #modal_container3 .modal3 video {
    height: fit-content;
    width: 300px;
    border-radius: 12px;
  }

  #modal_container3 .modal3 #fecharr {
    width: fit-content;
    position: absolute;
    z-index: 99999999999999999999999999999999;
    cursor: pointer;
    top: -10%;
    right: 5%;
    background-color: transparent;
  }

  #modal_container3 .modal3 #fecharr {
    width: 1.2rem !important;
    height: 1.2rem;
  }
}
