/* === RESET GERAL === */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* === HEADER === */
header {
  background-color: #000;
  padding: 15px;
  text-align: center;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: #1dbf1d;
  color: #000;
}

/* === BANNER === */
.banner {
  position: relative;
  color: #fff;
  padding: 160px 15px;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('../img/banner-loja.jpg') center center / cover no-repeat;
}

.logo {
  width: 250px;
  margin-bottom: 20px;
}

.glitter {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  background: linear-gradient(270deg, #1dbf1d, #ffffff, #1dbf1d);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glitter 3s ease infinite;
}

@keyframes glitter {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.frase-destaque {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  color: #fff;
}

/* === CARROSSEL === */
.carrossel {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  padding: 40px 0;
  background-color: #1dbf1d;
}

.slider-manual img {
  width: 300px;
  height: auto;
  margin: 0 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: inline-block;
  transition: transform 0.3s;
}

.slider-manual img:hover {
  transform: scale(1.05);
  cursor: grab;
}

.carrossel::-webkit-scrollbar {
  height: 8px;
}

.carrossel::-webkit-scrollbar-thumb {
  background: #1dbf1d;
  border-radius: 4px;
}

/* === PRODUTOS EM DESTAQUE === */
.produtos-destaque {
  text-align: center;
  padding: 20px 0 10px 0;
  background-color: #1dbf1d;
}

.produtos-destaque h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  font-weight: bold;
}

/* === PRODUTOS LISTA === */
.produtos-lista {
  padding: 60px 20px;
  background: #e0e0e0; /* cinza mais escuro */
  text-align: center;
}

.produtos-lista h1 {
  font-size: 40px;
  margin-bottom: 40px;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.produto-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
}

.produto-card:hover {
  transform: translateY(-5px);
}

.produto-card img {
  width: 100%;
  height: auto;
}

.produto-card h2 {
  font-size: 22px;
  margin: 15px 0;
}

.faixa-cnh {
  position: absolute;
  top:25px;
  right: -60px;
  background: black;
  color: #1dbf1d; /* ✅ Agora branco */
  font-weight: 900; /* ✅ BEM negrito */
  padding: 10px 55px; /* ✅ Faixa mais grossa e larga */
  transform: rotate(45deg);
  font-size: 14px; /* ✅ Um pouco maior */
  text-align: center;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7); /* ✅ Sombra pra destacar */
  letter-spacing: 0.5px; /* ✅ Fica mais “forte” */
  text-transform: uppercase; /* ✅ Fica em CAIXA ALTA se quiser */
}

.botao-compra {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  margin: 20px auto 30px;
  transition: background 0.3s;
}

.botao-compra img {
  width: 20px;
  height: 20px;
}

.botao-compra:hover {
  background: #1dbf1d;
}

/* === PRODUTO DETALHE === */
.produto-detalhe {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.produto-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.produto-img {
  flex: 1;
  min-width: 300px;
}

.produto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.produto-info-dark {
  flex: 1;
  background: #000;
  color: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.produto-info-dark h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
  border-bottom: 2px solid #555;
  padding-bottom: 10px;
}

.produto-info-dark ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.produto-info-dark ul li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.produto-info-dark ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1dbf1d;
  font-weight: bold;
}

.botao-whats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 20px auto 0;
}

.botao-whats:hover {
  background: #1dbf1d;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.5);
}

.botao-whats-icon {
  width: 24px;
  height: 24px;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 999;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
  margin-top: 12px;
}

/* === VANTAGENS === */
.vantagens {
  background-color: #000;
  color: #1dbf1d;
  padding: 40px 15px;
  text-align: center;
}

.vantagens ul {
  list-style: none;
  padding: 0;
}

.vantagens li {
  margin: 12px 0;
  font-weight: bold;
  font-size: 18px;
}

/* === SOBRE SCOOTERS === */
.sobre-scooters {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.sobre-scooters h1 {
  font-size: 60px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 20px;
}

.glow-yellow {
  text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
}

.sobre-scooters h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 60px;
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.vantagem-card {
  background: #333;
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
}

.vantagem-card img {
  width: 50px;
  margin-bottom: 20px;
}

.vantagem-card h3 {
  font-size: 18px;
  color: #FFD700;
  margin-bottom: 10px;
}

.vantagem-card p {
  font-size: 16px;
  line-height: 1.4;
}

.scooters-imgs {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.scooters-imgs img {
  width: 300px;
  border-radius: 10px;
}

/* === FOOTER === */
footer {
  background-color: #000;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  position: relative;
}

footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #1dbf1d;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.footer-info {
  flex: 1 1 300px;
  color: #fff;
}

.footer-info h3 {
  margin-bottom: 15px;
  color: #1dbf1d;
}

.footer-info p {
  margin: 5px 0;
}

.footer-info a {
  color: #1dbf1d;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-map {
  flex: 1 1 300px;
  margin-top: 20px;
}

footer p {
  text-align: center;
  color: #fff;
  margin: 10px 0 0 0;
}


.contato {
  background: #f4f4f4;
  padding: 80px 20px;
  text-align: center;
}

.contato-container {
  max-width: 800px;
  margin: 0 auto;
}

.contato h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  margin-bottom: 40px;
  color: #1dbf1d;
}

.contato-item {
  background: #fff;
  margin: 20px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contato-item h2 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #000;
}

.contato-item p a {
  color: #1dbf1d;
  text-decoration: none;
  font-weight: bold;
}

.contato-item p a:hover {
  text-decoration: underline;
}

/* === FONT === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
