@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@600&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: "Raleway", sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  display: grid;
  place-items: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5% 0;
  background: #fff;
  overflow-x: hidden;
}

.container {
  width: 80%;
}

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

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

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

h2 {
  color: #0047ba;
  font-size: 26px;
  font-weight: 600;
}

p {
  color: #2e2926;
  font-size: 18px;
  font-weight: 500;
}

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

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

@media (max-width: 800px) {
  section {
    padding: 10% 0;
  }
  h2 {
    font-size: 25px;
  }
  p {
    font-size: 15px;
  }
}
header {
  background: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  height: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: all 0.5s ease-in;
}
header[data-active=true] {
  height: 15%;
  background: #1D1D1C;
}
header nav {
  transition: all 0.3s ease-in;
  border-radius: 10px;
  height: 100%;
  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;
}
header nav .cont .logo {
  width: -moz-fit-content;
  width: fit-content;
}
header nav .cont .logo img {
  height: auto;
  width: 168px;
}
header nav .cont #menu__btn {
  position: fixed;
  right: 8%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem 0;
  z-index: 10;
  cursor: pointer;
  transition: all 0.5s ease-out;
}
header nav .cont #menu__btn .boll {
  width: 25px;
  height: 3px;
  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: 28%;
}
header nav .cont #menu__btn[data-active=true] .boll {
  transition: all 0.8s ease-out;
  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 {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-out;
}
header nav .cont #sidebar__nav[data-active=true] {
  visibility: visible;
  opacity: 1;
}
header nav .cont #sidebar__nav[data-active=true] ul {
  right: 0;
  transition: all 0.3s ease-out;
  transition-delay: 0.5s;
}
header nav .cont #sidebar__nav ul {
  position: absolute;
  width: 30%;
  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: #1D1D1C;
  transition: all 0.2s ease;
}
header nav .cont #sidebar__nav ul li a {
  display: block;
  width: 100%;
  text-align: start;
  font-size: 1.2rem;
  color: #fff;
  position: relative;
}
header nav .cont #sidebar__nav ul li a::after {
  content: "";
  position: absolute;
  display: grid;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease;
}
header nav .cont #sidebar__nav ul li a:hover::after {
  width: 100%;
}

@media (max-width: 800px) {
  header {
    height: 15%;
  }
  header[data-active=true] {
    height: 10%;
  }
  header nav .cont #sidebar__nav ul {
    width: 60%;
  }
  header nav .cont #menu__btn[data-active=true] {
    right: 55%;
  }
}
#home {
  background: transparent;
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  gap: 6rem 0;
}
#home .header-mob,
#home #sidebar__nav {
  display: none;
}
#home .container {
  z-index: 1;
}
#home #car {
  position: absolute;
  width: 100vw;
  height: 100%;
}
#home #car .mySwiper-home {
  width: 100%;
  height: 100%;
}
#home #car .mySwiper-home .swiper-wrapper .swiper-slide img {
  width: 100%;
}
#home #car .mySwiper-home .swiper-wrapper .swiper-slide .img-mob {
  display: none;
}
#home .text {
  position: relative;
  top: 10%;
  width: 70%;
  display: grid;
  gap: 1.5rem 0;
  z-index: 2;
}
#home .text h1 {
  width: 65%;
  line-height: 52px;
}
#home .icon {
  position: absolute;
  bottom: 5%;
  right: 10%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 0.8rem;
}
#home .icon a {
  overflow: hidden;
}
#home .icon img {
  width: 35px;
  height: auto;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
#home .icon img:hover {
  transform: scale(0.9);
}
#home .swiper-pagination-home {
  display: none;
}
#home .btn-flut {
  height: 50px;
  width: 50px;
  position: fixed;
  z-index: 9;
  bottom: 10%;
  right: -25%;
  display: grid;
  place-items: center;
  transition: all 0.4s ease-in;
  z-index: 9;
  cursor: pointer;
}
#home .btn-flut:hover {
  transform: scale(0.9);
}
#home .btn-flut[data-active=true] {
  right: 5%;
}
#home .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}

@media (max-width: 800px) {
  #home {
    height: 95vh;
    display: flex;
    width: 100%;
    position: relative;
    background-size: cover;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    position: relative;
  }
  #home #car .mySwiper-home .swiper-wrapper .swiper-slide img {
    display: none;
  }
  #home #car .mySwiper-home .swiper-wrapper .swiper-slide .img-mob {
    display: block;
  }
  #home .container {
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    place-items: center;
    position: relative;
    top: 15%;
    gap: 2rem 0;
  }
  #home .container .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 80%;
    top: auto;
  }
  #home .container .text h1 {
    width: 100%;
    font-size: 26px;
    line-height: 2rem;
  }
  #home .container .icon {
    position: relative;
    bottom: auto;
    right: auto;
  }
  #home .container .swiper-pagination-home {
    display: block;
  }
  #home .container .swiper-pagination-home .swiper-pagination-bullet {
    background: #fff;
  }
}
#sobre {
  padding: 10% 0 5%;
}
#sobre .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#sobre .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#sobre .container .text .title {
  width: 30%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 0 1rem;
}
#sobre .container .text .title img {
  width: 50px;
  height: -moz-fit-content;
  height: fit-content;
}
#sobre .container .img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 1rem 0;
}
#sobre .container .img img {
  width: 90%;
  height: -moz-fit-content;
  height: fit-content;
}
#sobre .container .img .cont {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 1rem;
}
#sobre .container .img .cont img {
  width: 100%;
}

@media (max-width: 800px) {
  #sobre .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 0;
  }
  #sobre .container .img {
    align-items: center;
  }
  #sobre .container .img img, #sobre .container .img .cont {
    width: 100%;
  }
}
#parceiros {
  padding: 5% 0 0;
}
#parceiros .container {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5% 0 3%;
  display: grid;
  place-items: center;
  background: #e6e6e6;
  gap: 2rem 0;
  border-radius: 50px 50px 0 0;
}
#parceiros .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#parceiros .container #car {
  width: 80vw;
}
#parceiros .container #car .mySwiper-img {
  width: 100%;
}
#parceiros .container #car .mySwiper-img .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#parceiros .container #car .mySwiper-img .swiper-wrapper .swiper-slide img {
  width: 80%;
  height: auto;
}
#parceiros .container #car .pagination {
  width: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#parceiros .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet {
  background: #1D1D1C;
}

@media (max-width: 800px) {
  #parceiros .container {
    padding: 15% 0;
    gap: 1rem 0;
  }
  #parceiros .container #car {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0;
  }
  #parceiros .container #car .pagination {
    display: flex;
  }
  #parceiros .container #car .pagination .swiper-pagination-img {
    width: -moz-fit-content;
    width: fit-content;
  }
}
#banner {
  background: url(../assets/img/banner.jpg);
  padding: 10% 0;
}
#banner .container {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}
#banner .container .text {
  width: 40%;
  text-align: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 0.2rem 0;
}
#banner .container .text h2, #banner .container .text p {
  color: #fff;
}
#banner .container .text p {
  font-weight: 300;
  padding: 0 0 5%;
}

@media (max-width: 800px) {
  #banner {
    height: 80vh;
    background: url(../assets/img/banne-mob.jpg);
  }
  #banner .container {
    width: 90%;
    height: 65%;
    justify-content: end;
    align-items: center;
  }
  #banner .container .text {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 0.5rem 0;
  }
}
#atuamos .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#atuamos .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#atuamos .container .text h2 {
  width: 60%;
  font-weight: 700;
}
#atuamos .container .text p {
  width: 60%;
  font-weight: 700;
}
#atuamos .container .text .p {
  font-size: 90px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fc4238;
  font-family: "Fira Sans", sans-serif;
  position: relative;
  z-index: 1;
}
#atuamos .container .text .p::after {
  content: "";
  position: absolute;
  display: block;
  width: 75px;
  height: 55px;
  background: #abc3eb;
  bottom: 3%;
  left: -5%;
  z-index: -1;
}
#atuamos .container .img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}
#atuamos .container .img img {
  width: 80%;
}

@media (max-width: 800px) {
  #atuamos .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem 0;
  }
  #atuamos .container .text {
    align-items: center;
  }
  #atuamos .container .text h2 {
    width: 80%;
  }
  #atuamos .container .text p {
    width: 70%;
    font-size: 18px;
  }
  #atuamos .container .img {
    align-items: center;
  }
}
#depoiments .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#depoiments .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#depoiments .container .text h2, #depoiments .container .text p {
  width: 60%;
}
#depoiments .container #car {
  width: 40vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
#depoiments .container #car .mySwiper-dep {
  display: flex;
  align-items: center;
  justify-content: center;
}
#depoiments .container #car .mySwiper-dep .swiper-wrapper .swiper-slide {
  background: rgba(217, 217, 217, 0.3294117647);
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  border-radius: 19px;
  position: relative;
  border-top: 10px solid #fff;
  border-left: 10px solid #fff;
}
#depoiments .container #car .mySwiper-dep .swiper-wrapper .swiper-slide .cont {
  height: 95%;
  width: 99%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
  position: relative;
  left: -10px;
}
#depoiments .container #car .mySwiper-dep .swiper-wrapper .swiper-slide .cont h3 {
  width: 90%;
  z-index: 2;
}
#depoiments .container #car .mySwiper-dep .swiper-wrapper .swiper-slide .cont p {
  width: 90%;
  z-index: 2;
  font-size: 16px;
}
#depoiments .container #car .mySwiper-dep .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  display: block;
  width: 99%;
  height: 98%;
  background: #d9d9d9;
  opacity: 1;
  border-radius: 19px;
  top: -10px;
  left: -10px;
  z-index: 1;
}
#depoiments .container #car .seta {
  width: 60px;
  cursor: pointer;
}
#depoiments .container #car .seta img {
  width: 100%;
}
#depoiments .container #car .seta-mob {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1.5rem;
}
#depoiments .container #car .seta-mob img {
  width: 45px;
}
#depoiments .container #car .seta-mob .swiper-button-prev-dep {
  transform: rotateZ(180deg);
}

@media (max-width: 800px) {
  #depoiments .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
  }
  #depoiments .container .text h2, #depoiments .container .text p {
    width: 100%;
  }
  #depoiments .container #car {
    width: 80vw;
    flex-direction: column;
    gap: 2rem 0;
  }
  #depoiments .container #car .mySwiper-dep {
    width: 100%;
  }
  #depoiments .container #car .mySwiper-dep .swiper-wrapper .swiper-slide {
    height: 300px;
  }
  #depoiments .container #car .mySwiper-dep .swiper-wrapper .swiper-slide .cont p {
    font-size: 15px;
  }
  #depoiments .container #car .seta {
    display: none;
  }
  #depoiments .container #car .seta-mob {
    display: flex;
  }
}
#form {
  background: url(../assets/img/form.jpg);
  padding: 10% 0;
}
#form .container {
  width: 50%;
  display: grid;
  place-items: center;
  gap: 2rem 0;
}
#form .container .cont-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem 0;
}
#form .container .cont-text h2, #form .container .cont-text p {
  color: #fff;
}
#form .container .cont-text p {
  width: 95%;
  opacity: 0.9;
}
#form .container .cont-form {
  display: grid;
  place-items: center;
  gap: 2rem 0;
}
#form .container .cont-form h2 {
  color: #fff;
}
#form .container .cont-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
}
#form .container .cont-form form input {
  width: 100%;
  height: 50px;
  background: #d9d9d9;
  padding: 5%;
  border-radius: 9px;
}
#form .container .cont-form form button {
  width: 190px;
  padding: 0;
}

@media (max-width: 800px) {
  #form .container {
    width: 80%;
  }
}
#options .container {
  width: 100%;
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
#options .container .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#options .container .text h2 {
  font-weight: 700;
}
#options .container .text p {
  width: 90%;
}
#options .container #car {
  width: 90vw;
}
#options .container #car .mySwiper .swiper-wrapper .swiper-slide {
  position: relative;
  display: grid;
  place-items: center;
}
#options .container #car .mySwiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
#options .container #car .mySwiper .swiper-wrapper .swiper-slide .cont {
  position: absolute;
  width: 100%;
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 1rem 0;
}
#options .container #car .mySwiper .swiper-wrapper .swiper-slide .cont img {
  width: 40px;
}
#options .container #car .mySwiper .swiper-wrapper .swiper-slide .cont p {
  z-index: 2;
  color: #fff;
}

@media (max-width: 800px) {
  #options .container .text {
    width: 100%;
  }
}
#banner2 {
  background: #0047ba;
}
#banner2 .container {
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem 0;
}
#banner2 .container .text {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
}
#banner2 .container .text h2 {
  font-size: 30px;
}
#banner2 .container .text h2, #banner2 .container .text p {
  color: #fff;
  width: 90%;
}
#banner2 .container .links {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
#banner2 .container .links a button {
  width: 200px;
}

@media (max-width: 800px) {
  #banner2 .container {
    width: 80%;
    flex-direction: column;
    gap: 2rem 0;
  }
  #banner2 .container .text {
    width: 100%;
  }
  #banner2 .container .text h2, #banner2 .container .text p {
    width: 100%;
  }
  #banner2 .container .links {
    flex-direction: column;
    gap: 2rem 0;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fff;
  padding: 5% 0 1%;
  gap: 2.5rem 0;
}
footer .container {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
}
footer .container .numero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
footer .container .numero p {
  font-size: 20px;
  font-weight: 500;
  transition: all 0.5s ease;
}
footer .container .numero p:hover {
  color: #0047ba;
  font-weight: 700;
}
footer .container .logo {
  display: grid;
  place-items: center;
}
footer .container .logo img {
  width: 200px;
}
footer .container .links {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
footer .container .links a {
  transition: all 0.5s ease;
}
footer .container .links a:hover {
  transform: scale(0.9);
}
footer .copyrights {
  max-width: 80%;
  display: grid;
  place-items: center;
  text-align: center;
}
footer .copyrights span {
  font-size: 0.5rem;
  opacity: 1;
  color: #000;
}
footer .copyrights span a{
    color:#0047ba;
}

@media (max-width: 800px) {
  footer .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
  }
  footer .container .logo {
    order: 1;
  }
  footer .container .numero {
    order: 2;
  }
  footer .container .links {
    order: 3;
  }
 
}/*# sourceMappingURL=style.css.map */