@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400&family=Lato:wght@400;700&family=Roboto:wght@400;500;700;800;900&display=swap");
html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

._container {
  position: relative;
  width: 100%;
  max-width: 1740px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  ._container {
    width: 90%;
  }
}

._btn a,
._btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 20px;
  border: 0;
  outline: 0;
  background-color: #e21a22;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
@media (min-width: 1800px) {
  ._btn a,
  ._btn button {
    gap: 12px;
    padding: 16px 24px;
    font-size: 16px;
  }
}
._btn a img,
._btn button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
._btn a:hover,
._btn button:hover {
  background-color: #ff0000;
}

._h2 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.17;
}
@media (min-width: 1024px) {
  ._h2 {
    font-size: 34px;
  }
}
@media (min-width: 1800px) {
  ._h2 {
    font-size: 44px;
  }
}
._h2 strong {
  color: #e21a22;
  font-weight: 700;
}

._p {
  margin-bottom: 16px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  ._p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  ._p {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

[x-cloak] {
  display: none !important;
}

.no-scroll {
  overflow: hidden;
}

._desktop {
  display: none;
}
@media (min-width: 1023px) {
  ._desktop {
    display: block;
  }
}

._mobile {
  display: block;
}
@media (min-width: 1024px) {
  ._mobile {
    display: none;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: #000;
  transition: transform 420ms ease, box-shadow 220ms ease;
  will-change: transform;
}
header.is-hidden {
  transform: translateY(-110%);
}
header ._container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}
@media (min-width: 1800px) {
  header ._container {
    padding-block: 25px;
  }
}
header .nav_logo {
  position: relative;
  z-index: 60;
}
header .nav_logo img {
  display: block;
  width: 160px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1800px) {
  header .nav_logo img {
    width: 200px;
  }
}
header .nav_toggle {
  z-index: 60;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 1366px) {
  header .nav_toggle {
    display: none;
  }
}
header .nav_toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 200ms ease, opacity 200ms ease;
}
header .nav_toggle .bar:nth-child(1).is-open {
  transform: translateY(8px) rotate(45deg);
}
header .nav_toggle .bar:nth-child(2).is-open {
  opacity: 0;
}
header .nav_toggle .bar:nth-child(3).is-open {
  transform: translateY(-8px) rotate(-45deg);
}
header nav.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 46px;
  width: min(86vw, 360px);
  height: 100vh;
  padding: 90px 20px 24px;
  background: #000;
  transform: translateX(110%);
  transition: transform 220ms ease;
}
@media (min-width: 1366px) {
  header nav.main-nav {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 80%;
    height: auto;
    margin-left: auto;
    padding: 0;
    transform: translateX(0);
  }
}
header nav.main-nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
}
@media (min-width: 1366px) {
  header nav.main-nav ul {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
}
@media (min-width: 1440px) {
  header nav.main-nav ul {
    gap: 18px;
  }
}
@media (min-width: 1600px) {
  header nav.main-nav ul {
    gap: 28px;
  }
}
@media (min-width: 1800px) {
  header nav.main-nav ul {
    gap: 40px;
  }
}
header nav.main-nav ul li {
  list-style: none;
}
header nav.main-nav ul a {
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 1600px) {
  header nav.main-nav ul a {
    font-size: 16px;
  }
}
@media (min-width: 1800px) {
  header nav.main-nav ul a {
    font-size: 20px;
  }
}
header nav.main-nav.is-open {
  transform: translateX(0);
}
header nav.main-nav > ._btn {
  flex-shrink: 0;
}
header nav.main-nav > ._btn a {
  white-space: nowrap;
}
header .nav_backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: block;
  background: rgba(0, 0, 0, 0.55);
}
@media (min-width: 1366px) {
  header .nav_backdrop {
    display: none;
  }
}

.hero {
  position: relative;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 40px;
  overflow: hidden;
  background-color: #000;
  background-image: url("../assets/img/background_hero_caminhao.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 56px;
  }
}
@media (min-width: 1800px) {
  .hero {
    padding-top: 140px;
    padding-bottom: 70px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.55) 58%, rgba(0, 0, 0, 0.68) 72%, rgba(0, 0, 0, 0.94) 88%, rgba(0, 0, 0, 0.98) 100%);
  pointer-events: none;
}
.hero ._container {
  position: relative;
  z-index: 1;
}
.hero .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero .wrapper {
    flex-direction: row;
    justify-content: space-between;
    min-height: 520px;
  }
}
@media (min-width: 1800px) {
  .hero .wrapper {
    min-height: 620px;
  }
}
.hero .content {
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero .content {
    width: 58%;
  }
}
.hero .content .label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 1800px) {
  .hero .content .label {
    margin-bottom: 18px;
    font-size: 14px;
  }
}
.hero .content h1 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .hero .content h1 {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  .hero .content h1 {
    margin-bottom: 12px;
    font-size: 46px;
  }
}
@media (min-width: 1800px) {
  .hero .content h1 {
    font-size: 56px;
  }
}
.hero .content h1 strong {
  display: block;
  color: #e21a22;
  font-weight: 900;
}
.hero .content p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
}
@media (min-width: 1024px) {
  .hero .content p {
    max-width: 500px;
  }
}
.hero .content p strong {
  color: inherit;
  font-weight: 700;
}
.hero .content ._btn {
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .hero .content ._btn {
    margin-top: 40px;
  }
}
@media (min-width: 1800px) {
  .hero .content ._btn {
    margin-top: 60px;
  }
}
.hero .image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116%;
  margin-top: 14px;
  overflow: visible;
}
@media (min-width: 1024px) {
  .hero .image {
    justify-content: flex-end;
    width: 54%;
    margin-top: 0;
    transform-origin: right center;
  }
}
.hero .image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 50px rgba(0, 0, 0, 0.55));
}
@media (min-width: 1024px) {
  .hero .image img {
    transform: translateX(-9%) translateY(0) scale(1.3);
  }
}
@media (min-width: 1380px) {
  .hero .image img {
    transform: translateX(-9%) translateY(-4%) scale(1.35);
  }
}
@media (min-width: 1800px) {
  .hero .image img {
    transform: translateX(0) translateY(-4%) scale(1.45);
  }
}
.hero > ._container > .wrapper > ._btn {
  margin-top: 20px;
}

.sec_bateria {
  position: relative;
  width: 100%;
  background: #fff;
}
.sec_bateria .sinais {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 46px 0 30px;
}
@media (min-width: 1024px) {
  .sec_bateria .sinais {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 0 40px;
  }
}
@media (min-width: 1800px) {
  .sec_bateria .sinais {
    gap: 90px;
    padding: 80px 0 50px;
  }
}
.sec_bateria .sinais_media {
  width: 100%;
}
@media (min-width: 1024px) {
  .sec_bateria .sinais_media {
    width: 46%;
  }
}
.sec_bateria .sinais_media img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}
@media (min-width: 1024px) {
  .sec_bateria .sinais_media img {
    height: 610px;
  }
}
@media (min-width: 1366px) {
  .sec_bateria .sinais_media img {
    height: 550px;
  }
}
@media (min-width: 1920px) {
  .sec_bateria .sinais_media img {
    height: 666px;
  }
}
.sec_bateria .sinais_content {
  width: 100%;
}
@media (min-width: 1024px) {
  .sec_bateria .sinais_content {
    width: 48%;
  }
}
.sec_bateria .sinais_content ._h2 {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .sec_bateria .sinais_content ._h2 {
    margin-bottom: 38px;
  }
}
@media (min-width: 1800px) {
  .sec_bateria .sinais_content ._h2 {
    margin-bottom: 40px;
  }
}
.sec_bateria .sinais_content .list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
  list-style: none;
}
@media (min-width: 1024px) {
  .sec_bateria .sinais_content .list {
    gap: 24px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1800px) {
  .sec_bateria .sinais_content .list {
    gap: 34px;
    margin-bottom: 32px;
  }
}
.sec_bateria .sinais_content .list li {
  position: relative;
  padding-left: 18px;
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}
@media (min-width: 1800px) {
  .sec_bateria .sinais_content .list li {
    font-size: 18px;
  }
}
.sec_bateria .sinais_content .list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #e21a22;
}
.sec_bateria .sinais_content .note {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 420px;
  padding: 12px 14px;
  border: 1px solid rgba(154, 154, 154, 0.15);
  background: rgba(154, 154, 154, 0.15);
}
@media (min-width: 1024px) {
  .sec_bateria .sinais_content .note {
    padding: 10px 16px;
  }
}
@media (min-width: 1800px) {
  .sec_bateria .sinais_content .note {
    max-width: 580px;
  }
}
.sec_bateria .sinais_content .note .note_icon {
  width: 36px;
  height: 36px;
}
.sec_bateria .sinais_content .note .note_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sec_bateria .sinais_content .note p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.3;
}
@media (min-width: 1800px) {
  .sec_bateria .sinais_content .note p {
    font-size: 14px;
  }
}

.erros {
  width: 100%;
  background: linear-gradient(180deg, #f5f5f5 0%, #dcdcdc 100%);
  padding: 32px 0;
}
@media (min-width: 1024px) {
  .erros {
    padding: 46px 0;
  }
}
@media (min-width: 1800px) {
  .erros {
    padding: 60px 0 100px;
  }
}

.erros_head {
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 1366px) {
  .erros_head {
    margin-bottom: 54px;
  }
}

.erros_grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1366px) {
  .erros_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 10px;
  }
  .erros_grid .erro_item:nth-child(5) {
    grid-column: 1/2;
    transform: translateX(50%);
  }
  .erros_grid .erro_item:nth-child(6) {
    grid-column: 2/3;
    transform: translateX(50%);
  }
  .erros_grid .erro_item:nth-child(7) {
    grid-column: 3/4;
    transform: translateX(50%);
  }
}

.erro_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
@media (min-width: 1024px) {
  .erro_item {
    gap: 10px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .erro_item {
    gap: 14px;
  }
}
.erro_item .erro_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #e21a22;
}
@media (min-width: 1024px) {
  .erro_item .erro_icon {
    width: 56px;
    height: 56px;
  }
}
@media (min-width: 1800px) {
  .erro_item .erro_icon {
    width: 76px;
    height: 76px;
    margin-bottom: 10px;
  }
}
.erro_item .erro_icon img {
  width: 74%;
  height: 80%;
  object-fit: contain;
}
.erro_item p {
  max-width: 80%;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}
.erro_item p.description {
  color: #2b2b2b;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  text-transform: none;
}
@media (min-width: 1800px) {
  .erro_item p {
    max-width: 80%;
    font-size: 18px;
  }
}

.sec_linhas {
  width: 100%;
  position: relative;
  background: #000;
  padding: 46px 0px 76px;
}
@media (min-width: 1024px) {
  .sec_linhas {
    padding: 70px 0px 90px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas {
    padding: 90px 0px 120px;
  }
}
.sec_linhas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000 0%, #242424 100%);
  pointer-events: none;
  z-index: 0;
}
.sec_linhas ._container {
  position: relative;
  z-index: 1;
}
.sec_linhas .linhas_head {
  text-align: center;
  margin-bottom: 140px;
}
@media (min-width: 1024px) {
  .sec_linhas .linhas_head {
    margin-bottom: 110px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linhas_head {
    margin-bottom: 130px;
  }
}
.sec_linhas .linhas_head ._h2 {
  color: #fff;
  text-transform: uppercase;
}
.sec_linhas .linhas_head ._h2 strong {
  color: #e21a22;
}
.sec_linhas .linhas_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 110px;
  margin-bottom: 46px;
}
@media (min-width: 768px) {
  .sec_linhas .linhas_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .sec_linhas .linhas_grid {
    gap: 24px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linhas_grid {
    gap: 28px;
    margin-bottom: 30px;
  }
}
.sec_linhas .linha_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 130px 16px 24px;
}
.sec_linhas .linha_card::after {
  content: "";
  transition: all 220ms ease;
  position: absolute;
  inset: 0;
  background: #2a2a2a;
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 768px) {
  .sec_linhas .linha_card {
    padding: 100px 10px 20px;
  }
}
@media (min-width: 1024px) {
  .sec_linhas .linha_card {
    padding: 110px 18px 24px;
  }
}
@media (min-width: 1200px) {
  .sec_linhas .linha_card {
    padding: 170px 18px 24px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linha_card {
    padding: 200px 22px 40px;
  }
}
.sec_linhas .linha_img {
  position: absolute;
  top: -80px;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 500ms ease;
}
.sec_linhas .linha_img img {
  width: 240px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.6));
}
@media (min-width: 768px) {
  .sec_linhas .linha_img img {
    width: 180px;
  }
}
@media (min-width: 1024px) {
  .sec_linhas .linha_img img {
    width: 220px;
  }
}
@media (min-width: 1200px) {
  .sec_linhas .linha_img img {
    width: 320px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linha_img img {
    width: 350px;
  }
}
.sec_linhas .linha_card:nth-child(1) .linha_img {
  top: -70px;
}
.sec_linhas .linha_card:nth-child(1) .linha_img img {
  width: 210px;
}
@media (min-width: 768px) {
  .sec_linhas .linha_card:nth-child(1) .linha_img img {
    width: 160px;
  }
}
@media (min-width: 1024px) {
  .sec_linhas .linha_card:nth-child(1) .linha_img img {
    width: 190px;
  }
}
@media (min-width: 1200px) {
  .sec_linhas .linha_card:nth-child(1) .linha_img img {
    width: 260px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linha_card:nth-child(1) .linha_img img {
    width: 300px;
  }
}
.sec_linhas .linha_body {
  width: 100%;
}
.sec_linhas .linha_body h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #e21a22;
  transition: all 220ms ease;
  margin-bottom: 6px;
}
@media (min-width: 1024px) {
  .sec_linhas .linha_body h3 {
    font-size: 22px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linha_body h3 {
    font-size: 24px;
  }
}
.sec_linhas .linha_body ul {
  list-style: none;
  width: fit-content;
  text-align: center;
  margin-inline: auto;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .sec_linhas .linha_body ul {
    max-width: 80%;
    margin-inline: auto;
  }
}
.sec_linhas .linha_body ul li {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.sec_linhas .linha_body p {
  position: relative;
  color: #fff;
  display: flex;
  text-align: center;
  max-width: 80%;
  padding: 0px 12px;
  margin: 0 auto;
}
.sec_linhas .linha_body p::before {
  content: "";
  position: absolute;
  transform: translateY(6px);
  left: -10px;
  width: 6px;
  height: 6px;
  background: #e21a22;
  transition: all 220ms ease;
}
.sec_linhas .linha_card:hover::after {
  background: #e21a22;
  transform: scale(1.06);
}
.sec_linhas .linha_card:hover .linha_img {
  transform: scale(1.07);
}
.sec_linhas .linha_card:hover .linha_body h3 {
  color: #fff;
}
.sec_linhas .linha_card:hover .linha_body p::before {
  background: #fff;
}

.sec_tudor_motivos {
  width: 100%;
  position: relative;
  padding: 54px 0;
  background: #000;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .sec_tudor_motivos {
    padding: 70px 0;
  }
}
@media (min-width: 1800px) {
  .sec_tudor_motivos {
    padding: 90px 0;
  }
}
.sec_tudor_motivos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000 0%, #242424 100%);
  pointer-events: none;
  z-index: 0;
}
.sec_tudor_motivos ._container {
  position: relative;
  z-index: 1;
}
.sec_tudor_motivos .motivos_head {
  text-align: center;
  margin-bottom: 34px;
}
@media (min-width: 1024px) {
  .sec_tudor_motivos .motivos_head {
    margin-bottom: 44px;
  }
}
@media (min-width: 1800px) {
  .sec_tudor_motivos .motivos_head {
    margin-bottom: 56px;
  }
}
.sec_tudor_motivos .motivos_head ._h2 {
  color: #fff;
  text-transform: uppercase;
}
.sec_tudor_motivos .motivos_head ._h2 strong {
  color: #e21a22;
}
.sec_tudor_motivos .motivos_head ._p {
  color: #cecccd;
  max-width: 780px;
  margin: 20px auto 0;
}
@media (min-width: 1800px) {
  .sec_tudor_motivos .motivos_head ._p {
    max-width: 900px;
  }
}
.sec_tudor_motivos .motivos_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 20px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sec_tudor_motivos .motivos_grid {
    gap: 38px 22px;
  }
}
@media (min-width: 1024px) {
  .sec_tudor_motivos .motivos_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 28px;
    max-width: 88%;
  }
}
@media (min-width: 1800px) {
  .sec_tudor_motivos .motivos_grid {
    gap: 52px 44px;
    max-width: 82%;
  }
}
.sec_tudor_motivos .motivo_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sec_tudor_motivos .motivo_icon {
  width: 50px;
  height: 50px;
  background: #e21a22;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .sec_tudor_motivos .motivo_icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1800px) {
  .sec_tudor_motivos .motivo_icon {
    width: 76px;
    height: 76px;
    margin-bottom: 24px;
  }
}
.sec_tudor_motivos .motivo_icon img {
  width: 64%;
  height: 64%;
  object-fit: contain;
  display: block;
}
.sec_tudor_motivos .motivo_text {
  margin: 0;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .sec_tudor_motivos .motivo_text {
    font-size: 16px;
  }
}
@media (min-width: 1800px) {
  .sec_tudor_motivos .motivo_text {
    font-size: 18px;
  }
}
.sec_tudor_motivos .motivo_description {
  max-width: 310px;
  margin: 14px auto 0;
  color: #cecccd;
}

.sec_faq {
  width: 100%;
  position: relative;
  background: #fff;
  padding: 50px 0px;
}
@media (min-width: 1024px) {
  .sec_faq {
    padding: 70px 0px;
  }
}
@media (min-width: 1800px) {
  .sec_faq {
    padding: 90px 0px;
  }
}
.sec_faq .faq_head {
  text-align: center;
  margin-bottom: 28px;
}
@media (min-width: 1024px) {
  .sec_faq .faq_head {
    margin-bottom: 30px;
  }
}
@media (min-width: 1800px) {
  .sec_faq .faq_head {
    margin-bottom: 40px;
  }
}
.sec_faq .faq_list {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1024px) {
  .sec_faq .faq_list {
    gap: 16px;
  }
}
.sec_faq .faq_item {
  border: 1px solid #CECCCD;
  background: #fff;
}
.sec_faq .faq_item.is-open .faq_trigger .faq_icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.sec_faq .faq_item.is-open .faq_trigger .faq_icon::after {
  opacity: 0;
}
.sec_faq .faq_trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: none;
  text-align: left;
  padding: 18px 18px 14px 18px;
}
@media (min-width: 1024px) {
  .sec_faq .faq_trigger {
    padding: 24px 24px 20px 24px;
  }
}
@media (min-width: 1800px) {
  .sec_faq .faq_trigger {
    padding: 30px 30px 24px 30px;
  }
}
.sec_faq .faq_trigger .faq_q {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #000;
}
@media (min-width: 1024px) {
  .sec_faq .faq_trigger .faq_q {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .sec_faq .faq_trigger .faq_q {
    font-size: 20px;
  }
}
.sec_faq .faq_trigger .faq_icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
@media (min-width: 1800px) {
  .sec_faq .faq_trigger .faq_icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }
}
.sec_faq .faq_trigger .faq_icon::before, .sec_faq .faq_trigger .faq_icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #E21A22;
  transform: translate(-50%, -50%);
  transition: all 220ms ease;
}
.sec_faq .faq_trigger .faq_icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.sec_faq .faq_panel {
  padding: 0px 18px 18px;
}
@media (min-width: 1024px) {
  .sec_faq .faq_panel {
    padding: 0px 24px 22px;
  }
}
.sec_faq .faq_panel p {
  color: #777;
  margin-bottom: 0px;
}

.sec_noticias {
  width: 100%;
  position: relative;
  background: #F5F5F5;
  padding: 50px 0px;
}
@media (min-width: 1024px) {
  .sec_noticias {
    padding: 70px 0px;
  }
}
@media (min-width: 1800px) {
  .sec_noticias {
    padding: 90px 0px;
  }
}
.sec_noticias .noticias_head {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .sec_noticias .noticias_head {
    margin-bottom: 40px;
  }
}
@media (min-width: 1800px) {
  .sec_noticias .noticias_head {
    margin-bottom: 50px;
  }
}
.sec_noticias .noticias_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 46px;
}
@media (min-width: 768px) {
  .sec_noticias .noticias_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .sec_noticias .noticias_grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 50px;
  }
}
.sec_noticias .noticia_card {
  border: 1px solid #e5e5e5;
  background: #fff;
  height: 100%;
}
.sec_noticias .noticia_media {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .sec_noticias .noticia_media {
    height: 220px;
  }
}
@media (min-width: 1800px) {
  .sec_noticias .noticia_media {
    height: 280px;
  }
}
.sec_noticias .noticia_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sec_noticias .noticia_body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
@media (min-width: 1024px) {
  .sec_noticias .noticia_body {
    padding: 24px;
  }
}
@media (min-width: 1800px) {
  .sec_noticias .noticia_body {
    padding: 30px;
  }
}
.sec_noticias .noticia_body .noticia_tag {
  display: inline-block;
  width: fit-content;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #fff;
  background: #e21a22;
  padding: 6px 8px;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .sec_noticias .noticia_body .noticia_tag {
    font-size: 12px;
    padding: 6px 10px;
  }
}
@media (min-width: 1800px) {
  .sec_noticias .noticia_body .noticia_tag {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.sec_noticias .noticia_body a {
  text-decoration: none;
}
.sec_noticias .noticia_body h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #000;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .sec_noticias .noticia_body h3 {
    font-size: 20px;
  }
}
@media (min-width: 1800px) {
  .sec_noticias .noticia_body h3 {
    font-size: 22px;
  }
}
.sec_noticias .noticia_body .noticia_date {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .sec_noticias .noticia_body .noticia_date {
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .sec_noticias .noticia_body .noticia_date {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.sec_noticias .noticia_body p {
  color: #444;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 16px;
}
@media (min-width: 1800px) {
  .sec_noticias .noticia_body p {
    margin-bottom: 20px;
  }
}
.sec_noticias .noticia_body .noticia_link {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #e21a22;
  text-decoration: none;
  margin-top: auto;
}
@media (min-width: 1800px) {
  .sec_noticias .noticia_body .noticia_link {
    font-size: 16px;
  }
}
.sec_noticias .noticias_cta {
  display: flex;
  justify-content: center;
}

.sec_sobre {
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #000 0%, #242424 100%);
  padding: 50px 0px;
}
@media (min-width: 1024px) {
  .sec_sobre {
    padding: 70px 0px;
  }
}
@media (min-width: 1800px) {
  .sec_sobre {
    padding: 90px 0px;
  }
}
.sec_sobre ._container {
  position: relative;
  z-index: 1;
}
.sec_sobre .sobre_head {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .sec_sobre .sobre_head {
    margin-bottom: 46px;
  }
}
@media (min-width: 1800px) {
  .sec_sobre .sobre_head {
    margin-bottom: 60px;
  }
}
.sec_sobre .sobre_head ._h2 {
  color: #fff;
}
.sec_sobre .sobre_top {
  width: 100%;
  position: relative;
  padding-top: 26px;
  border-top: 1px solid rgba(119, 119, 119, 0.5019607843);
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 768px) {
  .sec_sobre .sobre_top {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 30px;
  }
}
@media (min-width: 1024px) {
  .sec_sobre .sobre_top {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 34px;
    padding-top: 32px;
  }
}
@media (min-width: 1800px) {
  .sec_sobre .sobre_top {
    gap: 34px;
    margin-bottom: 44px;
    padding-top: 40px;
  }
}
.sec_sobre .sobre_card {
  position: relative;
  padding-right: 8px;
}
@media (min-width: 1024px) {
  .sec_sobre .sobre_card {
    padding-right: 18px;
  }
}
@media (min-width: 1024px) {
  .sec_sobre .sobre_card::after {
    content: "";
    position: absolute;
    top: 0;
    right: -11px;
    width: 1px;
    height: 100%;
    background: rgba(119, 119, 119, 0.5019607843);
  }
  .sec_sobre .sobre_card:last-child::after {
    display: none;
  }
}
.sec_sobre .sobre_card .sobre_icon {
  width: 44px;
  height: 44px;
  background: #e21a22;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
@media (min-width: 1024px) {
  .sec_sobre .sobre_card .sobre_icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
  }
}
@media (min-width: 1800px) {
  .sec_sobre .sobre_card .sobre_icon {
    width: 70px;
    height: 70px;
    margin-bottom: 26px;
  }
}
.sec_sobre .sobre_card .sobre_icon img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}
.sec_sobre .sobre_card h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .sec_sobre .sobre_card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1800px) {
  .sec_sobre .sobre_card h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }
}
.sec_sobre .sobre_card p {
  color: #FFFFFF;
}
.sec_sobre .sobre_bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1300px) {
  .sec_sobre .sobre_bottom {
    flex-direction: row;
  }
}
.sec_sobre .sobre_media {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1300px) {
  .sec_sobre .sobre_media {
    width: 50%;
  }
}
.sec_sobre .sobre_media img {
  width: 100%;
  height: 100%;
  height: 280px;
  object-fit: cover;
  object-position: 100% 80%;
  display: block;
}
@media (min-width: 1024px) {
  .sec_sobre .sobre_media img {
    height: 260px;
  }
}
@media (min-width: 1800px) {
  .sec_sobre .sobre_media img {
    height: 320px;
  }
}
.sec_sobre .sobre_stats {
  width: 100%;
  background: #2A2A2A;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .sec_sobre .sobre_stats {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1300px) {
  .sec_sobre .sobre_stats {
    width: 50%;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    padding: 32px 32px 32px 60px;
  }
}
@media (min-width: 1800px) {
  .sec_sobre .sobre_stats {
    padding: 36px 36px 36px 90px;
    gap: 34px;
  }
}
.sec_sobre .stat_item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 1024px) {
  .sec_sobre .stat_item {
    flex-direction: row;
    align-items: center;
    gap: 26px;
  }
}
@media (min-width: 1800px) {
  .sec_sobre .stat_item {
    gap: 32px;
  }
}
.sec_sobre .stat_item .stat_num {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: #E21A22;
}
@media (min-width: 1024px) {
  .sec_sobre .stat_item .stat_num {
    font-size: 58px;
  }
}
@media (min-width: 1800px) {
  .sec_sobre .stat_item .stat_num {
    font-size: 74px;
  }
}
.sec_sobre .stat_item .stat_txt h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .sec_sobre .stat_item .stat_txt h4 {
    font-size: 20px;
  }
}
@media (min-width: 1800px) {
  .sec_sobre .stat_item .stat_txt h4 {
    font-size: 22px;
  }
}
.sec_sobre .stat_item .stat_txt p {
  color: #F5F5F5;
  margin-top: 12px;
  margin-bottom: 0;
}

.sec_cta_final {
  width: 100%;
  position: relative;
  background-image: url("../assets/img/bg_fale_agora_especialista_caminhao.webp");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 50px 0px;
}
.sec_cta_final::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.86);
}
.sec_cta_final::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, #F5F5F5 0%, #CDCDCD 100%);
  mix-blend-mode: multiply;
}
@media (min-width: 1024px) {
  .sec_cta_final {
    padding: 70px 0px;
  }
}
@media (min-width: 1800px) {
  .sec_cta_final {
    padding: 90px 0px;
  }
}
.sec_cta_final ._container {
  position: relative;
  z-index: 2;
}
.sec_cta_final .cta_final_wrap {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media (min-width: 1024px) {
  .sec_cta_final .cta_final_wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}
@media (min-width: 1800px) {
  .sec_cta_final .cta_final_wrap {
    gap: 80px;
  }
}
.sec_cta_final .cta_final_media {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .sec_cta_final .cta_final_media {
    width: 50%;
    justify-content: flex-start;
  }
}
.sec_cta_final .cta_final_media img {
  width: 100%;
  height: 200px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(6px 22px 14px rgba(0, 0, 0, 0.45));
}
@media (min-width: 1024px) {
  .sec_cta_final .cta_final_media img {
    filter: drop-shadow(16px 38px 24px rgba(0, 0, 0, 0.45));
    height: 300px;
  }
}
@media (min-width: 1800px) {
  .sec_cta_final .cta_final_media img {
    height: 360px;
  }
}
.sec_cta_final .cta_final_content {
  width: 100%;
}
@media (min-width: 1024px) {
  .sec_cta_final .cta_final_content {
    width: 44%;
  }
}
.sec_cta_final ._h2 {
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .sec_cta_final ._h2 {
    margin-bottom: 12px;
  }
}
.sec_cta_final ._p {
  margin-bottom: 22px;
}
@media (min-width: 1024px) {
  .sec_cta_final ._p {
    max-width: 50%;
    margin-bottom: 26px;
  }
}
@media (min-width: 1800px) {
  .sec_cta_final ._p {
    margin-bottom: 32px;
  }
}

.footer {
  width: 100%;
  position: relative;
  background: #E21A22;
  color: #fff;
}
.footer .footer_top {
  padding: 36px 0px;
}
@media (min-width: 1024px) {
  .footer .footer_top {
    padding: 30px 0px;
  }
}
.footer .footer_top_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 38px;
}
@media (min-width: 1024px) {
  .footer .footer_top_wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 20px;
  }
}
.footer .footer_brand img {
  width: auto;
  height: 36px;
  object-fit: contain;
  display: block;
}
@media (min-width: 1800px) {
  .footer .footer_brand img {
    height: 44px;
  }
}
.footer .footer_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
@media (min-width: 1024px) {
  .footer .footer_nav {
    justify-content: center;
    gap: 18px;
  }
}
.footer .footer_nav a {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 1800px) {
  .footer .footer_nav a {
    font-size: 14px;
  }
}
.footer .footer_social {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .footer .footer_social {
    gap: 12px;
  }
}
.footer .footer_social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media (min-width: 1800px) {
  .footer .footer_social a {
    width: 38px;
    height: 38px;
  }
}
.footer .footer_social a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}
.footer .footer_bottom {
  background: #DA0C14;
  padding: 14px 0px;
}
@media (min-width: 1024px) {
  .footer .footer_bottom {
    padding: 16px 0px;
  }
}
.footer .footer_bottom_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer .footer_bottom_wrap {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 16px;
  }
}
.footer .footer_bottom_wrap p {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
@media (min-width: 1800px) {
  .footer .footer_bottom_wrap p {
    font-size: 14px;
  }
}
.footer .footer_by img {
  height: 16px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (min-width: 1800px) {
  .footer .footer_by img {
    height: 18px;
  }
}

/*# sourceMappingURL=styles.css.map */
