/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
html{
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  color: #f0f0f0;
  min-height: 100vh;
  animation: fadeIn 1.2s ease-in-out;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animação */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

header {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 20;
}

header h1 {
  color: #ff7700;
  font-size: 2.3rem;
  text-align: center;
  letter-spacing: 1.5px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 15px;
  flex-wrap: wrap;
}

nav a {
  color: #f4f4f4;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border 0.3s;
}

nav a:hover {
  background: linear-gradient(90deg, #ff6600, #ff9900);
  color: #000;
  border-color: #ff8800;
}

/* Hero section */
.hero {
  background: linear-gradient(145deg, #ff6600, #1a1a1a);
  color: white;
  text-align: center;
  padding: 100px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
  margin-top: 30px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ff9900;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
  color: #ffe0cc;
}

section {
  margin: 40px 0;
  padding: 60px 30px;
  background: rgba(255, 102, 0, 0.05);
  border-left: 6px solid #ff6600;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.08);
  backdrop-filter: blur(5px);
  transition: transform 0.3s;
}

section:hover {
  transform: translateY(-5px);
}

h3 {
  color: #ff8800;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* Lista */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin: 10px 0;
  padding-left: 18px;
  border-left: 3px solid #ff6600;
  color: #fefefe;
  position: relative;
}

ul li::before {
  content: "⚡";
  color: #ff9900;
  position: absolute;
  left: 0;
}

/* Contato */
.contato p {
  margin: 12px 0;
  color: #ffe6cc;
}

/* Rodapé */
footer {
  background: #000;
  color: #ff6600;
  padding: 25px 20px;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 40px;
  border-top: 3px solid #ff9900;
}

/* Responsivo */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  .hero h2 {
    font-size: 2rem;
  }

  section {
    padding: 40px 20px;
  }
}
.whatsapp-float {
  max-width: 90vw;
  flex-wrap: nowrap;
}

.whatsapp-link {
  background-color: #25D366;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.whatsapp-link:hover {
  background-color: #128C7E;
}


.sobre-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.sobre-texto {
  flex: 1 1 300px;
}

.sobre-imagem {
  flex: 1 1 300px;
}

.sobre-imagem img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.sobre-imagem img:hover {
  transform: scale(1.03);
}

.clientes {
  margin-top: 50px;
  text-align: center;
}

.clientes h4 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #FF6B00;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carrossel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carrossel {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.slide-track {
  display: flex;
  width: calc(240px * 12);
  animation: scroll 25s linear infinite;
}

.slide {
  width: 240px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.slide img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(1.05) contrast(1.05) saturate(1.3);
}

.slide img:hover {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.6);
}

.carrossel:hover .slide-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: bold;
  font-family: sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  background-color: #1ebe57;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.link-instagram {
  color: #ea6a15;
  font-weight: bold;
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.link-instagram:hover {
  color: #e76418;
}

.frota-imagem {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.frota-imagem img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: auto;
}

.frota-imagem img:hover {
  transform: scale(1.03);
}

.contato-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  max-width: 600px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f4f4f4;
}

.icon {
  font-size: 1.8rem;
  color: #ff7e5f; /* Laranja moderno */
  min-width: 30px;
  text-align: center;
}

.btn-link {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  padding: 12px 22px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(255, 126, 95, 0.4);
  transition: background 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.btn-link:hover {
  background: linear-gradient(135deg, #f86f43, #ffb67a);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(248, 111, 67, 0.5);
}

.contato-text {
  font-size: 1rem;
  color: #ffb67a;
  user-select: text;
  overflow-wrap: anywhere;
}

@media (max-width: 480px) {
  .contato-links {
    max-width: 100%;
  }

  .contato-item {
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn-link {
    flex-grow: 1;
    text-align: center;
  }

  .contato-text {
    flex-basis: 100%;
    text-align: center;
    margin-top: 4px;
  }
}

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6600, #ff944d);
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  z-index: 9999;
  font-size: 0.95rem;
  animation: fadeIn 0.5s ease-out;
}

.cookie-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

#accept-cookies {
  background-color: #fff;
  color: #ff6600;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

#accept-cookies:hover {
  background-color: #ffe6cc;
}

/* Responsivo */
@media (max-width: 600px) {
  #cookie-banner {
    font-size: 0.85rem;
    padding: 14px 18px;
  }

  #accept-cookies {
    width: 100%;
    text-align: center;
  }
}
