/*  Reset CSS  */
* {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*  Menu   */
#veiculos a {
  color: #000;
  font-weight: 500;
}

/*  Hero Section  */
.hero-container {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 120px 0;

  @media (max-width: 768px) {
    padding: 60px 0;
  }
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* border: 1px solid blue; */

  width: 100%;
  max-width: 1280px;

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.hero-content {
  max-width: 32rem;

  /* border: 1px solid blue; */

  @media (max-width: 768px) {
    max-width: 100%;
  }
}

.hero-content h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  font-size: 4rem;
  line-height: 4.875rem;
  letter-spacing: -0.02em;

  color: #000;

  @media (max-width: 768px) {
    font-size: 2rem;
    line-height: 2.375rem;
    text-align: center;

    padding: 0 3rem;
  }
}

.hero-content p {
  max-width: 480px;

  color: #8a8d94;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;

  margin-top: 2rem;

  @media (max-width: 768px) {
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center; 

    padding: 0 2rem;
  }
}

.hero-image {
  height: 288px;

  @media (max-width: 768px) {
    margin-top: 4rem;
    /* height: 176px; */
    height: 10rem;
  }
}

/*  Features  */
.features-container {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  /* border: 1px solid red; */
}

.features-wrapper {
  display: flex;
  max-width: 1280px;
  width: 1280px;

  @media (max-width: 768px) {
    flex-direction: column;
    /* padding: 0 2rem; */
  }
}

.feature {
  width: 100%;
  height: 160px;

  padding: 24px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  color: #8a8d94;

  border: solid 1.5px #d4d6db;

  font-size: 1rem;
  font-weight: 400;
  font-family: "Inter";
  line-height: 22px;

  @media (max-width: 768px) {
    height: 176px;
    padding: 2rem 3rem;

    line-height: 24px;
  }
}

.feature-icon {
  width: 28px;
  height: 28px;

  @media (max-width: 768px) {
    width: 2rem;
    height: 2rem;
  }
}

.feature--highlight {
  background: #f87900;
  color: #ffffff;
}

.highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;
  padding: 1rem 2rem;

  border-radius: 999px;
  border: solid 1px #d4d6db;

  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  margin-bottom: 2rem;
  color: #666970;

  @media (max-width: 768px) {
    margin: 0 auto;
    margin-bottom: 2rem;
  }
}

.highlight-icon {
  width: 20px;
  height: 20px;
}

/* .about-company-image {
  width: 50%;
} */

.about-buttom {
  /* background: #f5f5f7; */
  height: 736px;
  display: flex;
  align-items: center;
  padding: 0px 134px;
  justify-content: space-between;
}

/*  Company  */
.company-container {
  display: flex;
  flex-direction: column;
  align-items: center;

  background: #f5f5f7;
  /* border: 1px solid red; */

  gap: 90px;
  padding: 150px 0px;

  @media (max-width: 768px) {
    padding: 90px 0px;
    padding-bottom: 0;
    gap: 0px;
  }
}

.company-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  width: 1280px;
  max-width: 1280px;

  /* border: 10px solid red; */

  /* border: 1px solid green; */
  @media (max-width: 768px) {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    padding-bottom: 4rem;
    justify-content: flex-start;
  }
}

.company-wrapper:last-child {
  @media (max-width: 768px) {
    flex-direction: column-reverse;
  }
}

.img-about-nos {
  display: flex;
  align-items: end;
  justify-content: end;

  width: 600px;
  height: 736px;

  object-fit: cover;

  border-radius: 8px;

  @media (max-width: 768px) {
    height: 512px;
    width: 100%;
  }
}

.company-content {
  max-width: 488px;

  /* border: 1px solid blue; */

  @media (max-width: 768px) {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.company-content h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.875rem;
  letter-spacing: -0.02em;

  margin-bottom: 1.5rem;

  /* border: 10px solid green; */

  @media (max-width: 768px) {
    font-size: 2rem;
    line-height: 2.375rem;
    text-align: center;

    padding: 0;

    text-align: center;
  }
}

.company-content p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666970;

  margin-bottom: 16px;

  @media (max-width: 768px) {
    text-align: center;
  }
}

.about-us-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* width: 277px;
  height: 64px; */

  margin-top: 40px;

  color: #fff;
  background: #000000;

  gap: 80px;
  padding: 20px 24px 20px 32px;

  border-radius: 999px;

  font-weight: 400;
  font-size: 1rem;
  line-height: 24px;
  white-space: nowrap;
  text-decoration: none;

  @media (max-width: 768px) {
    margin-bottom: 4rem;
  }
}

.bar-container {
    margin-top: 4rem;
    width: 100%;
}

.barra-gasolina {
  font-family: "Inter", sans-serif;
  background: #f87900;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: end;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  white-space: nowrap;
  width: 100%;
  height: 56px;
  margin-bottom: 40px;
  margin-top: 16px;
  padding: 0 14px;
}

.barra-gas {
  font-family: "Inter", sans-serif;
  background: #f87900;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: end;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  white-space: nowrap;
  width: 33%;
  height: 56px;
  margin-bottom: 40px;
  margin-top: 16px;
  padding: 0 14px;
}

/*   Frota   */
.carfleet-container {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 150px 0px;

  @media (max-width: 768px) {
    padding: 90px 0 16rem 0;
  }
}

.carfleet-wrapper {
  width: 1280px;
  max-width: 1280px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 28px;

  @media (max-width: 768px) {
    width: 100%;
    padding: 0 1.5rem;
  }
}

.carfleet-container h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.875rem;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  max-width: 706px;
  margin-bottom: 4rem;

  @media (max-width: 768px) {
    /* font-size: 28px;
    line-height: 34px;
    text-align: center; */

    font-size: 2rem;
    line-height: 2.375rem;
    text-align: center;

    padding: 0;

    text-align: center;

    /* padding: 0 1rem; */
  }
}

.carfleet-cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 72px;

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.carfleet-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(16, 17, 18, 0.06);
}

.carfleet-icon {
  width: 48px;
  height: 48px;

  margin-bottom: 2rem;
}

 .frota-cards {
    flex-direction: column;
    gap: 16px;
    padding: 0px 32px;
  }

.carfleet-card h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #1b1d1f;
}

.frota-card p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #8a8d94;
}

.carfleet-partners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  margin-top: 48px;
  height: 72px;
  width: 100%;

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.carfleet-partners img {
  height: 72px;
  width: auto;

  @media (max-width: 768px) {
    height: 40px;
  }
}

.frota-carro {
    @media (max-width: 768px) {
    height: 272px;
  }
}