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

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

._container {
  width: 100%;
  position: relative;
  max-width: 1740px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 20px;
}

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

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

._p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  ._p {
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  ._p {
    font-size: 18px;
    margin-bottom: 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;
  width: 100%;
  background: #000;
  z-index: 50;
  transition: transform 420ms ease, box-shadow 220ms ease;
  will-change: transform;
}
header.is-hidden {
  transform: translateY(-110%);
}
header ._container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  position: relative;
}
@media (min-width: 1800px) {
  header ._container {
    padding-block: 25px;
  }
}
header ._container .nav_logo img {
  max-width: 160px;
  object-fit: contain;
}
@media (min-width: 1800px) {
  header ._container .nav_logo img {
    max-width: 200px;
  }
}
header ._container .nav_toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  z-index: 60;
}
@media (max-width: 1023px) {
  header ._container .nav_toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
}
header ._container .nav_toggle .bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: transform 200ms ease, opacity 200ms ease;
}
header ._container nav.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 360px);
  background: #000;
  padding: 90px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 46px;
  transform: translateX(110%);
  transition: transform 220ms ease;
  z-index: 50;
}
@media (min-width: 1024px) {
  header ._container nav.main-nav {
    position: relative;
    flex-direction: row;
    height: auto;
    padding: 0px;
    transform: translateX(0);
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
  }
}
header ._container nav.main-nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
}
@media (min-width: 1024px) {
  header ._container nav.main-nav ul {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
}
@media (min-width: 1800px) {
  header ._container nav.main-nav ul {
    gap: 30px;
  }
}
header ._container nav.main-nav ul li {
  list-style: none;
}
header ._container nav.main-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  font-family: "Lato", sans-serif;
}
@media (min-width: 1024px) {
  header ._container nav.main-nav ul li a {
    font-size: 10px;
  }
}
@media (min-width: 1400px) {
  header ._container nav.main-nav ul li a {
    font-size: 13px;
  }
}
@media (min-width: 1800px) {
  header ._container nav.main-nav ul li a {
    font-size: 16px;
  }
}
header ._container nav.main-nav.is-open {
  transform: translateX(0);
}
header ._container .nav_backdrop {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 40;
}
@media (min-width: 1023px) {
  header ._container .nav_backdrop {
    display: none;
  }
}

.hero {
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 56px;
  }
}
@media (min-width: 1800px) {
  .hero {
    padding-top: 140px;
    padding-bottom: 70px;
  }
}
.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 {
  width: 100%;
}
@media (min-width: 1024px) {
  .hero .content {
    width: 70%;
  }
}
@media (min-width: 1800px) {
  .hero .content {
    width: 58%;
  }
}
.hero .content .label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  margin-bottom: 20px;
}
@media (min-width: 1800px) {
  .hero .content .label {
    font-size: 14px;
    margin-bottom: 18px;
  }
}
.hero .content h1 {
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .hero .content h1 {
    font-size: 40px;
  }
}
@media (min-width: 1380px) {
  .hero .content h1 {
    font-size: 46px;
  }
}
@media (min-width: 1800px) {
  .hero .content h1 {
    font-size: 56px;
  }
}
.hero .content h1 strong {
  color: #e21a22;
  font-weight: 900;
}
.hero .content p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
}
@media (min-width: 1024px) {
  .hero .content p {
    max-width: 430px;
  }
}
@media (min-width: 1800px) {
  .hero .content p {
    max-width: 600px;
  }
}
.hero .content ._btn {
  margin-top: 30px;
}
@media (min-width: 1800px) {
  .hero .content ._btn {
    margin-top: 40px;
  }
}
.hero .image {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
@media (min-width: 1024px) {
  .hero .image {
    width: 54%;
    justify-content: flex-end;
    transform-origin: right center;
  }
}
.hero .image img {
  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: translateY(20%) scale(1.4);
  }
}
@media (min-width: 1380px) {
  .hero .image img {
    transform: translateX(-12%) translateY(5%) scale(1.25);
  }
}
@media (min-width: 1700px) {
  .hero .image img {
    transform: translateX(-10%) translateY(5%) scale(1.1);
  }
}

.sec_linhas {
  width: 100%;
  position: relative;
  background: #000;
  padding: 46px 0px 56px;
}
@media (min-width: 1024px) {
  .sec_linhas {
    padding: 70px 0px 70px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas {
    padding: 90px 0px 100px;
  }
}
.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: 120px;
}
@media (min-width: 1024px) {
  .sec_linhas .linhas_head {
    margin-bottom: 150px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linhas_head {
    margin-bottom: 190px;
  }
}
.sec_linhas .linhas_head ._h2 {
  color: #fff;
  text-transform: uppercase;
}
.sec_linhas .linhas_head ._h2 strong {
  color: #e21a22;
}
.sec_linhas .linhas_head ._p {
  color: #CECCCD;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .sec_linhas .linhas_head ._p {
    max-width: 32%;
    margin-inline: auto;
  }
}
.sec_linhas .linhas_swiper {
  position: relative;
}
.sec_linhas .linhas_carousel {
  overflow: visible;
  padding-bottom: 44px;
}
@media (min-width: 1024px) {
  .sec_linhas .linhas_carousel {
    padding-bottom: 52px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linhas_carousel {
    padding-bottom: 62px;
  }
}
.sec_linhas .swiper-slide {
  height: auto;
}
.sec_linhas .linha_card {
  position: relative;
  background: #2A2A2A;
  padding: 110px 20px 20px;
  height: 100%;
  transition: background 0.25s ease, border-color 0.25s ease;
}
@media (min-width: 1024px) {
  .sec_linhas .linha_card {
    padding: 160px 66px 34px;
    min-height: 340px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linha_card {
    padding: 160px 76px 34px;
    min-height: 380px;
  }
}
.sec_linhas .linha_media {
  position: absolute;
  left: 50%;
  top: -78px;
  transform: translateX(-50%);
  width: 200px;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .sec_linhas .linha_media {
    top: -104px;
    width: 300px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linha_media {
    top: -140px;
    width: 340px;
  }
}
.sec_linhas .linha_media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0px 30px rgba(0, 0, 0, 0.4));
}
.sec_linhas .linha_body h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #E21A22;
  margin: 0 0 10px;
}
@media (min-width: 1024px) {
  .sec_linhas .linha_body h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linha_body h3 {
    font-size: 24px;
    margin-bottom: 14px;
  }
}
.sec_linhas .linha_body ._p {
  text-align: center;
  color: white;
  margin: 0 auto 18px;
}
@media (min-width: 1024px) {
  .sec_linhas .linha_body ._p {
    margin-bottom: 22px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linha_body ._p {
    margin-bottom: 26px;
  }
}
.sec_linhas .linha_cols {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .sec_linhas .linha_cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linha_cols {
    gap: 34px;
  }
}
.sec_linhas .linha_col h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}
@media (min-width: 1800px) {
  .sec_linhas .linha_col h4 {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
@media (min-width: 1800px) {
  .sec_linhas .linha_col h4 {
    font-size: 20px;
    margin-bottom: 14px;
  }
}
.sec_linhas .linha_col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1800px) {
  .sec_linhas .linha_col ul {
    gap: 12px;
  }
}
.sec_linhas .linha_col li {
  position: relative;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: white;
  display: flex;
  align-items: center;
}
@media (min-width: 1800px) {
  .sec_linhas .linha_col li {
    font-size: 18px;
  }
}
.sec_linhas .linha_col li::before {
  content: "";
  position: absolute;
  left: -16px;
  width: 6px;
  height: 6px;
  background: #e21a22;
}
.sec_linhas .swiper-slide-active .linha_card {
  background: #E21A22;
}
.sec_linhas .swiper-slide-active .linha_body h3 {
  color: #000;
}
.sec_linhas .swiper-slide-active .linha_col li::before {
  background: #111;
}
.sec_linhas .linhas_nav {
  position: absolute;
  bottom: 2px;
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_linhas .linhas_nav span {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #e21a22;
  border-right: 2px solid #e21a22;
}
.sec_linhas .linhas_nav:hover {
  opacity: 0.85;
}
.sec_linhas .linhas_prev {
  left: calc(50% - 44px);
}
.sec_linhas .linhas_prev span {
  transform: rotate(-135deg);
}
.sec_linhas .linhas_next {
  left: calc(50% + 18px);
}
.sec_linhas .linhas_next span {
  transform: rotate(45deg);
}
.sec_linhas .linhas_pagination {
  bottom: 6px !important;
}
.sec_linhas .linhas_pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  opacity: 1;
  background: #FFF;
  margin: 0 4px !important;
}
.sec_linhas .linhas_pagination .swiper-pagination-bullet-active {
  background: #e21a22;
}

.sec_compatibilidade {
  width: 100%;
  position: relative;
  background: #fff;
  padding: 54px 0px 60px;
}
@media (min-width: 1024px) {
  .sec_compatibilidade {
    padding: 70px 0px 70px;
  }
}
@media (min-width: 1800px) {
  .sec_compatibilidade {
    padding: 90px 0px 90px;
  }
}
.sec_compatibilidade .compat_head {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .sec_compatibilidade .compat_head {
    margin-bottom: 44px;
  }
}
@media (min-width: 1800px) {
  .sec_compatibilidade .compat_head {
    margin-bottom: 54px;
  }
}
.sec_compatibilidade .compat_head ._h2 {
  text-transform: uppercase;
}
.sec_compatibilidade .compat_head ._h2 strong {
  color: #e21a22;
}
.sec_compatibilidade .compat_grid {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media (min-width: 768px) {
  .sec_compatibilidade .compat_grid {
    flex-direction: row;
    justify-content: center;
    gap: 0px;
  }
}
.sec_compatibilidade .compat_item {
  position: relative;
  width: fit-content;
  padding: 18px 0px 0;
}
@media (min-width: 768px) {
  .sec_compatibilidade .compat_item {
    padding: 18px 34px 0;
  }
}
@media (min-width: 1200px) {
  .sec_compatibilidade .compat_item {
    padding: 18px 96px 0;
  }
}
@media (min-width: 1800px) {
  .sec_compatibilidade .compat_item {
    padding: 18px 120px 0;
  }
}
@media (min-width: 768px) {
  .sec_compatibilidade .compat_item::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 1px;
    height: calc(100% - 20px);
    background: rgba(0, 0, 0, 0.18);
  }
  .sec_compatibilidade .compat_item:last-child::after {
    display: none;
  }
}
.sec_compatibilidade .compat_item h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #111;
  line-height: 1.15;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .sec_compatibilidade .compat_item h3 {
    margin-bottom: 18px;
  }
}
@media (min-width: 1800px) {
  .sec_compatibilidade .compat_item h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.sec_compatibilidade .compat_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1800px) {
  .sec_compatibilidade .compat_list {
    gap: 12px;
  }
}
.sec_compatibilidade .compat_list li {
  position: relative;
  padding-left: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #000;
}
@media (min-width: 1024px) {
  .sec_compatibilidade .compat_list li {
    font-size: 16px;
  }
}
@media (min-width: 1800px) {
  .sec_compatibilidade .compat_list li {
    font-size: 18px;
  }
}
.sec_compatibilidade .compat_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: #E21A22;
}

.sec_tudor_motivos {
  width: 100%;
  position: relative;
  padding: 54px 0px 54px;
  background: #efefef;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .sec_tudor_motivos {
    padding: 70px 0px 70px;
  }
}
@media (min-width: 1800px) {
  .sec_tudor_motivos {
    padding: 90px 0px 90px;
  }
}
.sec_tudor_motivos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #F5F5F5 0%, #DCDCDC 100%);
  pointer-events: none;
  z-index: 0;
}
.sec_tudor_motivos ._container {
  position: relative;
  z-index: 1;
}
.sec_tudor_motivos .motivos_head {
  text-align: center;
}
.sec_tudor_motivos .motivos_head ._h2 {
  text-transform: uppercase;
}
.sec_tudor_motivos .motivos_head ._h2 strong {
  color: #e21a22;
}
.sec_tudor_motivos .motivos_head ._p {
  color: #777;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .sec_tudor_motivos .motivos_head ._p {
    max-width: 32%;
    margin-inline: auto;
  }
}
.sec_tudor_motivos h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: #E21A22;
  line-height: 1.15;
  text-align: center;
  margin: 50px 0 30px;
}
@media (min-width: 1024px) {
  .sec_tudor_motivos h3 {
    margin: 60px 0 40px;
    font-size: 26px;
  }
}
@media (min-width: 1800px) {
  .sec_tudor_motivos h3 {
    font-size: 30px;
  }
}
.sec_tudor_motivos .motivos_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 20px;
  max-width: 920px;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  .sec_tudor_motivos .motivos_grid {
    gap: 30px 22px;
  }
}
@media (min-width: 1024px) {
  .sec_tudor_motivos .motivos_grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 20px;
    max-width: 1300px;
  }
}
@media (min-width: 1800px) {
  .sec_tudor_motivos .motivos_grid {
    gap: 40px 44px;
    max-width: 1540px;
    margin: 0 auto 90px;
  }
}
@media (min-width: 1024px) {
  .sec_tudor_motivos .motivos_grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1000px;
  }
}
@media (min-width: 1800px) {
  .sec_tudor_motivos .motivos_grid.three-cols {
    max-width: 1300px;
  }
}
.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;
}
.sec_tudor_motivos .motivo_text {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  color: #111;
  text-transform: uppercase;
  margin: 0;
}
@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 .motivos_footer {
  width: fit-content;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .sec_tudor_motivos .motivos_footer {
    margin: 80px auto 0;
  }
}
.sec_tudor_motivos .motivos_footer h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
}
@media (min-width: 1024px) {
  .sec_tudor_motivos .motivos_footer h4 {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .sec_tudor_motivos .motivos_footer h4 {
    font-size: 20px;
  }
}

.sec_porque {
  width: 100%;
  position: relative;
  background: #F5F5F5;
  padding: 54px 0px;
}
@media (min-width: 1024px) {
  .sec_porque {
    padding: 70px 0px;
  }
}
@media (min-width: 1800px) {
  .sec_porque {
    padding: 90px 0px;
  }
}
.sec_porque .porque_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
@media (min-width: 1024px) {
  .sec_porque .porque_wrap {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
@media (min-width: 1800px) {
  .sec_porque .porque_wrap {
    gap: 90px;
  }
}
.sec_porque .porque_media {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .sec_porque .porque_media {
    width: 52%;
  }
}
.sec_porque .porque_media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 1024px) {
  .sec_porque .porque_media img {
    height: 520px;
    object-position: bottom;
  }
}
@media (min-width: 1800px) {
  .sec_porque .porque_media img {
    height: 640px;
  }
}
.sec_porque .porque_content {
  width: 100%;
}
@media (min-width: 1024px) {
  .sec_porque .porque_content {
    width: 48%;
  }
}
.sec_porque .header ._h2 {
  margin: 0 0;
}
@media (min-width: 1024px) {
  .sec_porque .header ._h2 {
    margin-bottom: 16px;
  }
}
@media (min-width: 1800px) {
  .sec_porque .header ._h2 {
    margin-bottom: 20px;
  }
}
.sec_porque .header ._p {
  color: #000000;
  margin-bottom: 26px;
  max-width: 500px;
}
@media (min-width: 1800px) {
  .sec_porque .header ._p {
    margin-bottom: 32px;
    max-width: 650px;
  }
}
.sec_porque .porque_list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .sec_porque .porque_list {
    gap: 22px;
    margin-bottom: 28px;
  }
}
@media (min-width: 1800px) {
  .sec_porque .porque_list {
    gap: 24px;
    margin-bottom: 34px;
  }
}
.sec_porque .porque_list li {
  position: relative;
  padding-left: 16px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  line-height: 1.25;
  font-stretch: condensed;
}
@media (min-width: 1800px) {
  .sec_porque .porque_list li {
    font-size: 20px;
  }
}
.sec_porque .porque_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background: #e21a22;
}
.sec_porque .sec_footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.sec_porque .sec_footer h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.15;
}
@media (min-width: 1024px) {
  .sec_porque .sec_footer h3 {
    font-size: 20px;
  }
}
@media (min-width: 1800px) {
  .sec_porque .sec_footer h3 {
    font-size: 22px;
  }
}

.sec_depoimentos {
  width: 100%;
  position: relative;
  background: #fff;
  padding: 54px 0px 10px;
}
@media (min-width: 1024px) {
  .sec_depoimentos {
    padding: 70px 0px 12px;
  }
}
@media (min-width: 1800px) {
  .sec_depoimentos {
    padding: 90px 0px 20px;
  }
}
.sec_depoimentos .depo_head {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .sec_depoimentos .depo_head {
    margin-bottom: 32px;
  }
}
@media (min-width: 1800px) {
  .sec_depoimentos .depo_head {
    margin-bottom: 40px;
  }
}
.sec_depoimentos .depo_head ._h2 {
  text-transform: uppercase;
}
.sec_depoimentos .depo_head ._h2 strong {
  color: #e21a22;
}
.sec_depoimentos .depo_swiper {
  position: relative;
}
.sec_depoimentos .depoimentos_swiper {
  padding: 10px 0px 38px;
}
@media (min-width: 1024px) {
  .sec_depoimentos .depoimentos_swiper {
    padding-bottom: 44px;
  }
}
@media (min-width: 1800px) {
  .sec_depoimentos .depoimentos_swiper {
    padding-bottom: 54px;
  }
}
.sec_depoimentos .swiper-slide {
  height: auto;
}
.sec_depoimentos .depo_card {
  background: rgba(206, 204, 205, 0.1450980392);
  border: 1px solid #F8F8F8;
  height: 100%;
  padding: 34px 22px;
  position: relative;
}
@media (min-width: 1024px) {
  .sec_depoimentos .depo_card {
    padding: 44px 26px;
    min-height: 150px;
  }
}
@media (min-width: 1800px) {
  .sec_depoimentos .depo_card {
    padding: 58px 32px;
    min-height: 170px;
  }
}
.sec_depoimentos .depo_card .depo_quote {
  left: 18px;
  top: 14px;
  font-size: 44px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  color: rgba(119, 119, 119, 0.1254901961);
  font-weight: 900;
}
@media (min-width: 1800px) {
  .sec_depoimentos .depo_card .depo_quote {
    font-size: 52px;
  }
}
.sec_depoimentos .depo_card h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #111;
  margin: -10px 0px 10px;
}
@media (min-width: 1024px) {
  .sec_depoimentos .depo_card h3 {
    font-size: 20px;
  }
}
@media (min-width: 1800px) {
  .sec_depoimentos .depo_card h3 {
    font-size: 24px;
  }
}
.sec_depoimentos .depo_card p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.65);
  margin: 0;
  max-width: 92%;
}
@media (min-width: 1800px) {
  .sec_depoimentos .depo_card p {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  .sec_depoimentos .depo_card p {
    font-size: 20px;
    max-width: 94%;
  }
}
.sec_depoimentos .depo_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 5;
  display: none;
}
@media (min-width: 1024px) {
  .sec_depoimentos .depo_nav {
    display: block;
  }
}
.sec_depoimentos .depo_nav span {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid #e21a22;
  border-right: 3px solid #e21a22;
}
.sec_depoimentos .depo_nav:hover {
  opacity: 0.8;
}
.sec_depoimentos .depo_prev {
  left: -10px;
}
@media (min-width: 1200px) {
  .sec_depoimentos .depo_prev {
    left: -22px;
  }
}
.sec_depoimentos .depo_prev span {
  transform: rotate(-135deg);
}
.sec_depoimentos .depo_next {
  right: -20px;
}
@media (min-width: 1200px) {
  .sec_depoimentos .depo_next {
    right: -48px;
  }
}
.sec_depoimentos .depo_next span {
  transform: rotate(45deg);
}
.sec_depoimentos .depo_pagination {
  bottom: 0 !important;
}
.sec_depoimentos .depo_pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  opacity: 1;
  background: rgba(0, 0, 0, 0.25);
  margin: 0 4px !important;
}
.sec_depoimentos .depo_pagination .swiper-pagination-bullet-active {
  background: #e21a22;
}

.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;
  text-transform: uppercase;
}
@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-size: cover;
  background-position: 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.95);
}
.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;
    justify-content: center;
    align-items: center;
  }
}
.sec_cta_final .cta_final_media {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .sec_cta_final .cta_final_media {
    width: 40%;
    justify-content: flex-start;
  }
}
.sec_cta_final .cta_final_media img {
  width: 100%;
  height: 180px;
  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: 240px;
  }
}
@media (min-width: 1800px) {
  .sec_cta_final .cta_final_media img {
    height: 300px;
  }
}
.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 */
