* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

.image-product-slider {
  background-color: black;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* =========================
   CAROUSEL
========================= */

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: translateY(-50%) scale(1.1);
}

/* =========================
   SEÇÃO CARDS LOGÍSTICA
========================= */

.section-width-full {
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.container-flex-log-nest {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.card-truck-runner {
  width: 100%;
  max-width: 460px;
  height: 350px;
  border: 2px solid #e5d5b1;
  border-radius: 10px;
  text-decoration: none;
  color: #242424;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.card-truck-runner:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.img-truck-run {
  height: 110px;
  background: linear-gradient(135deg, #e5d5b1, #e2cc99);
  display: flex;
  align-items: center;
  justify-content: center;
}

.truck-runner {
  width: 150px;
  transition: transform 0.3s ease;
}

.card-truck-runner:hover .truck-runner {
  transform: scale(1.05);
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.card-content h2 {
  font-family: "Lato", sans-serif;
  font-size: 22px;
}

.text-card-truck-runner {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}

.card-action {
  font-family: "Lato", sans-serif;
  margin-top: auto;
  font-weight: 600;
  color: #e5d5b1;
  transition: color 0.3s ease;
}

.card-truck-runner:hover .card-action {
  color: #8c6b35;
}

/* =========================
   SEÇÃO VÍDEO
========================= */

.section-width-full-two {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.video-wrapper {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 300px;
  aspect-ratio: 9 / 16;
  z-index: 2;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.video-nav svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

.video-nav.prev {
  left: -44px;
}

.video-nav.next {
  right: -44px;
}

.video-nav:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(187, 150, 80, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.video-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.control-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.control-btn:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(187, 150, 80, 0.9);
  transform: translateY(-1px);
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

.play-icon {
  display: none;
}

.paused .pause-icon {
  display: none;
}

.paused .play-icon {
  display: block;
}

.muted .mute-slash {
  display: block;
}

.mute-slash {
  display: none;
}

.section-width-full-two > div:last-child {
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
  z-index: 2;
}

.section-width-full-two h3 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: #bb9650;
  margin-bottom: 20px;
  font-family: "Lato", sans-serif;
}

.section-width-full-two p {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #000000;
  opacity: 0.9;
}

.img-anos-cdsc {
  height: 150px;
}

.img-anos-container {
  display: flex;
  justify-content: center;
}

/* =========================
   PRODUTOS
========================= */

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  justify-items: center;
}

.product {
  border-radius: 5px;
  width: 220px;
  height: 180px;
  background-color: #ececec;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product > img {
  height: 90%;
  width: 90%;
}

.title-section-products {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 50px;
  padding: 0 20px;
}

.title-section-products > h3 {
  font-family: "Lato", sans-serif;
  font-size: 27px;
  color: #666666;
}

.title-section-products > p {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  color: #d3ba7e;
  margin-top: 7px;
}

/* =========================
   BRANDS
========================= */

.section-brand {
  width: 100%;
  padding: 60px 0;
  background: #f8f8f8;
  position: relative;
}

.brand-slider {
  background: #f8f8f8;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
  overflow: hidden;
}

.brand-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease-in-out;
}

.brand-card {
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-8px);
}

.brand-card img {
  max-width: 140px;
  height: 120px;
  margin-bottom: 20px;
}

.brand-card h3 {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 8px;
}

.brand-card p {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #666;
}

.brand-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #666;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  border-radius: 2px;
}

.brand-arrow:hover {
  background: #e5d5b1;
  transform: translateY(-50%) scale(1.05);
}

.brand-arrow.prev {
  left: 90px;
}

.brand-arrow.next {
  right: 90px;
}

/* =========================
   VANTAGENS
========================= */

.advantages-section {
  width: 100%;
  padding: 50px;
  background: linear-gradient(135deg, #f3ead6 0%, #fff4d9 30%, #d8c39a 100%);
}

.advantages-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.advantages-title {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  color: #242424;
  margin-bottom: 10px;
}

.advantages-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.advantage-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
}

.advantage-card h3 {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #242424;
}

.advantage-card p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

.advantages-cta {
  margin-top: 60px;
}

.advantages-cta p {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  color: #242424;
}

.advantages-btn {
  font-family: "Lato", sans-serif;
  display: inline-block;
  padding: 14px 30px;
  background-color: #bb9650;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.advantages-btn:hover {
  background-color: #a88545;
}

/* =========================
   FOOTER
========================= */

.footer-page {
  background-color: #242424;
  color: #b5b5b5;
  padding: 50px 40px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
}

.footer-page h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.contact-footer .container-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-footer .list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-footer img {
  width: 16px;
  height: auto;
  margin-top: 3px;
}

.contact-footer p {
  margin: 0;
  color: #b5b5b5;
}

.social-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.social-footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
}

.social-footer a {
  text-decoration: none;
}

.social-footer li {
  width: 36px;
  height: 36px;
  background-color: #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-footer li img {
  width: 16px;
  height: auto;
}

.social-footer li:hover {
  background-color: #f0c26a;
}

.news-footer {
  font-size: 14px;
  line-height: 1.6;
}

.news-footer a {
  color: #f0c26a;
  text-decoration: none;
}

.news-footer a:hover {
  text-decoration: underline;
}

.bottom-footer {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid #3a3a3a;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #8c8c8c;
}

.bottom-footer > a {
  text-decoration: none;
  color: #f0c26a;
}

/* =========================
   RESPONSIVO 1024px
========================= */

@media (max-width: 1024px) {
  .carousel-track img {
    height: 420px;
  }

  .video-wrapper {
    width: 240px;
  }

  .text-div-video {
    width: auto;
    padding-right: 20px;
  }

  .text-div-video h3 {
    font-size: 26px;
  }

  .text-div-video p {
    font-size: 15px;
  }

  .text-div-video > .img-anos-container img {
    width: 120px;
    height: 120px;
  }

  .products-container {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    max-width: 900px;
  }

  .product {
    width: 180px;
    height: 180px;
  }

  .brand-slider {
    max-width: 900px;
    padding: 0 100px;
  }

  .brand-track {
    justify-content: center;
    gap: 30px;
  }

  .brand-card {
    min-width: 240px;
    margin: 0 10px;
  }

  .brand-arrow.prev {
    left: 20px;
  }

  .brand-arrow.next {
    right: 20px;
  }
}

/* =========================
   RESPONSIVO 900px
========================= */

@media (max-width: 900px) {
  .carousel-track img {
    height: 360px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .container-flex-log-nest {
    gap: 30px;
  }

  .card-truck-runner {
    max-width: 300px;
    max-height: 260px;
  }

  .card-content h2 {
    font-size: 14px;
  }

  .text-card-truck-runner {
    font-size: 15px;
  }

  .img-truck-run {
    height: 90px;
  }

  .truck-runner {
    width: 120px;
  }
}

/* =========================
   RESPONSIVO 768px
========================= */

@media (max-width: 768px) {
  .brand-slider {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 80px;
  }

  .brand-track {
    justify-content: center;
    gap: 20px;
  }

  .brand-card {
    flex: 0 0 calc(50% - 20px);
    max-width: 220px;
    padding: 20px 16px;
  }

  .brand-arrow.prev {
    left: 10px;
  }

  .brand-arrow.next {
    right: 10px;
  }
}

/* =========================
   RESPONSIVO 600px
========================= */

@media (max-width: 600px) {
  .section-width-full-two {
    position: relative;
    min-height: 860px;
    display: block;
    padding: 24px 16px 32px;
    overflow: hidden;
  }

  .bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
  }

  .video-wrapper {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 230px;
    max-width: 100%;
    margin: 0 auto;
    z-index: 2;
  }

  .section-width-full-two > div:last-child {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    z-index: 2;
    padding: 0;
    margin-top: 170px;
    text-align: center;
  }

  .text-div-video {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .text-div-video h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.2;
    color: #d8b56a;
  }

  .text-div-video p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto;
    color: #111;
    max-width: 95%;
  }

  .img-anos-container {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .img-anos-cdsc,
  .text-div-video > .img-anos-container img {
    width: 82px;
    height: auto;
  }

  .video-nav {
    width: 28px;
    height: 28px;
  }

  .video-nav.prev {
    left: -30px;
  }

  .video-nav.next {
    right: -30px;
  }

  .video-nav svg {
    width: 13px;
    height: 13px;
  }

  .video-controls {
    bottom: 8px;
    gap: 8px;
  }

  .control-btn {
    width: 30px;
    height: 30px;
  }

  .icon {
    width: 14px;
    height: 14px;
  }
}

/* =========================
   RESPONSIVO ENTRE 601px E 768px
========================= */

@media (min-width: 601px) and (max-width: 768px) {
  .section-width-full-two {
    position: relative;
    min-height: 520px;
    height: 520px;
    overflow: hidden;
  }

  .bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    z-index: 0;
  }

  .video-wrapper {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    width: 190px;
    z-index: 2;
  }

  .section-width-full-two > div:last-child {
    position: absolute;
    left: 43%;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    max-width: none;
    z-index: 2;
    text-align: left;
    padding-right: 16px;
  }

  .text-div-video {
    width: 100%;
    padding: 0;
  }

  .text-div-video h3 {
    margin-top: 0;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .text-div-video p {
    font-size: 14px;
    line-height: 1.5;
  }

  .img-anos-cdsc,
  .text-div-video > .img-anos-container img {
    width: 90px;
    height: auto;
  }

  .video-nav {
    width: 28px;
    height: 28px;
  }

  .video-nav.prev {
    left: -34px;
  }

  .video-nav.next {
    right: -34px;
  }

  .control-btn {
    width: 32px;
    height: 32px;
  }

  .icon {
    width: 15px;
    height: 15px;
  }
}

/* =========================
   RESPONSIVO 480px
========================= */

@media (max-width: 480px) {
  .brand-arrow {
    display: none;
  }

  .brand-slider {
    overflow-x: auto;
    padding: 0 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .brand-slider::-webkit-scrollbar {
    display: none;
  }

  .brand-track {
    display: flex;
    gap: 16px;
    scroll-snap-type: x mandatory;
  }

  .brand-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

/* =========================
   RESPONSIVO 400px
========================= */

@media (max-width: 400px) {
  .carousel-track img {
    height: 220px;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .carousel-btn.prev {
    left: 6px;
  }

  .carousel-btn.next {
    right: 6px;
  }

  .section-width-full {
    padding: 24px 12px;
    min-height: auto;
  }

  .container-flex-log-nest {
    gap: 18px;
  }

  .card-truck-runner {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .img-truck-run {
    height: 80px;
  }

  .truck-runner {
    width: 95px;
  }

  .card-content {
    padding: 16px;
    gap: 10px;
  }

  .card-content h2 {
    font-size: 16px;
    line-height: 1.3;
  }

  .text-card-truck-runner {
    font-size: 13px;
    line-height: 1.4;
  }

  .card-action {
    font-size: 13px;
  }

  .section-width-full-two {
    padding: 28px 12px 28px;
    gap: 18px;
  }

  .video-wrapper {
    width: 190px;
  }

  .video-nav {
    width: 26px;
    height: 26px;
  }

  .video-nav.prev {
    left: -28px;
  }

  .video-nav.next {
    right: -28px;
  }

  .video-nav svg {
    width: 12px;
    height: 12px;
  }

  .video-controls {
    bottom: 8px;
    gap: 8px;
  }

  .control-btn {
    width: 30px;
    height: 30px;
  }

  .icon {
    width: 14px;
    height: 14px;
  }

  .section-width-full-two > div:last-child {
    margin-top: 130px;
  }

  .text-div-video {
    max-width: 100%;
  }

  .text-div-video h3 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .text-div-video p {
    font-size: 13px;
    line-height: 1.5;
  }

  .img-anos-container {
    margin-bottom: 12px;
  }

  .img-anos-cdsc,
  .text-div-video > .img-anos-container img {
    width: 72px;
    height: auto;
  }

  .products-container {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 30px 12px;
    justify-items: center;
    padding: 0;
  }

  .product {
    width: 100%;
    max-width: 240px;
    height: 130px;
  }

  .product > img {
    width: 85%;
    height: 85%;
    object-fit: contain;
  }

  .title-section-products {
    margin-top: 30px;
    padding: 0 12px;
  }

  .title-section-products > h3 {
    font-size: 19px;
    line-height: 1.3;
  }

  .title-section-products > p {
    font-size: 14px;
    line-height: 1.4;
  }

  .section-brand {
    padding: 35px 0;
  }

  .brand-slider {
    padding: 0 12px;
  }

  .brand-track {
    gap: 12px;
  }

  .brand-card {
    flex: 0 0 92%;
    min-width: unset;
    padding: 20px 14px;
  }

  .brand-card img {
    max-width: 100px;
    height: 90px;
    margin-bottom: 14px;
  }

  .brand-card h3 {
    font-size: 16px;
  }

  .brand-card p {
    font-size: 13px;
  }

  .advantages-section {
    padding: 30px 12px;
  }

  .advantages-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .advantages-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .advantage-card {
    padding: 20px 16px;
  }

  .advantage-card h3 {
    font-size: 17px;
  }

  .advantage-card p {
    font-size: 14px;
  }

  .advantages-cta p {
    font-size: 16px;
  }

  .advantages-btn {
    width: 100%;
    max-width: 260px;
    padding: 12px 18px;
    font-size: 14px;
    text-align: center;
  }

  .footer-page {
    padding: 35px 16px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-page h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .contact-footer .list-item {
    font-size: 13px;
    gap: 10px;
  }

  .news-footer {
    font-size: 13px;
  }

  .social-footer ul {
    flex-wrap: wrap;
  }

  .bottom-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 12px;
  }
}