* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif !important;
}

body {
  line-height: 2;
  color: #9a2525;
  background-color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-premium {
  width: 200px;
}

.logo-detroit {
  width: 120px;
}

.nav-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-menu a {
  font-weight: bold;
  color: #000;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #e91111;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

.nav-menu.active ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1100;
}

.hero {
  margin-top: 80px;
  background: url("Imagens%20premium/capa.jpg") center/cover no-repeat;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.produtos {
  color: #000;
  padding: 50px 20px;
  text-align: center;
}

.produtos h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.cards-carousel {
  overflow: hidden;
  position: relative;
}

.cards-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.card {
  flex: 0 0 80%;
  background-color: #eceaea;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgb(249, 249, 249);
  margin-right: 20px;
}

.carousel-buttons {
  display: flex;
  justify-content: center;
  margin: 60px 0 80px;
  gap: 10px;
}

.carousel-buttons button {
  background-color: #560404e8;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 24px;
  transition: background-color 0.3s;
}

.carousel-buttons button:hover {
  background-color: #c42020;
}

.scroll-wrapper {
  width: 100vw;
  overflow: hidden;
  padding: 10px 0;
  margin-top: 60px;
}

.scroll-container {
  display: flex;
  gap: 10px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.scroll-container img {
  width: 150px;
  border-radius: 8px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel {
  width: 100%;
  max-width: 1100px;
  height: 250px;
  margin: 40px auto;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}

.slide-track {
  display: flex;
  gap: 10px;
  width: calc(260px * 16);
  animation: scroll 40s linear infinite;
}

.slide {
  width: 250px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 15px;
  overflow: hidden;
  background-color: #ffffff;
}

.slide img {
  max-width: 80%;
  max-height: 50%;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-260px * 8));
  }
}

.mapas {
  display: flex;
  gap: 80px;
  justify-content: center;
  margin-top: 20px;
  text-align: center;
}

.mapa-card {
  width: 500px;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mapa-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contatos {
  color: #000;
  background-color: #eef3f2;
  padding: 40px 20px;
  text-align: center;
}

.contatos h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2d2c2c;
}

.contatos-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.contatos-card {
  width: 350px;
  border-radius: 15px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contatos-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contatos-links {
  margin-top: 10px;
}

.contatos-links .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 8px;
  background-color: #841313;
  color: #fff;
  transition: background-color 0.3s ease;
}

.contatos-links .btn:hover {
  background-color: #ff0000;
}

.contatos-links .btn img {
  width: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background-color: #b00707b6;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: #e91010;
  transform: scale(1.05);
}

.midias {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.footer {
  background-color: #fff;
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 40px 20px;
}

.footer nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin-bottom: 20px;
}

.footer a {
  color: #555;
  font-size: 14px;
  transition: color 0.3s;
}

.footer a:hover {
  color: #770303;
}

.footer p {
  font-size: 13px;
  color: #999;
}

@media (max-width: 768px) {
  .nav-menu ul {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu.active ul {
    display: flex;
  }

  .card {
    flex: 0 0 100%;
  }

  .hero {
    height: 60vh;
    padding: 15px;
  }

  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }

  .mapas {
    flex-direction: column;
    gap: 30px;
  }
  .mapa-card {
    width: 90%;
    height: 400px;
  }

  .contatos-card {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .mapa-card {
    height: 300px;
  }
}

/* ==== AJUSTE DO CARROSSEL PARA CELULAR ==== */
@media (max-width: 768px) {
  .carousel {
    width: 100%;
    height: 180px;
    margin: 20px auto;
  }

  .slide-track {
    gap: 5px;
    animation: scrollMobile 25s linear infinite;
  }

  .slide {
    width: 160px;
    height: 160px;
    border-radius: 10px;
  }

  .slide img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
  }

  @keyframes scrollMobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-165px * 8));
    }
  }
}

@media (max-width: 480px) {
  .carousel {
    height: 150px;
  }

  .slide {
    width: 140px;
    height: 140px;
  }

  .slide-track {
    gap: 4px;
    animation: scrollMobileSmall 25s linear infinite;
  }

  @keyframes scrollMobileSmall {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-145px * 8));
    }
  }
}
