/* RESET */
body {
  background-color: #b4b4b4;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}
footer {
  background-color: #292929;
}
header {
  background-color: #292929;
}
main {
  background-color: #3d3c3c00;
}


/* CONTAINER GERAL */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* TOPO / CABEÇALHO */
.topo-profissional {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo img {
  height: 100px;
}

.menu-profissional {
  display: flex;
  gap: 25px;
  align-items: center;
}

.menu-profissional a {
  text-decoration: none;
  color: #1b1b1b;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.menu-profissional a:hover {
  color: #ff6600;
}

.botao-loja {
  background-color: #ff6600;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: bold;
}

/* HERO SEÇÃO PRINCIPAL */
.hero {
  position: relative;
  background-color: #b4b4b4;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 4rem;
  font-family: 'Pacifico', cursive;
  color: #2e1e0f;
  margin-bottom: 20px;
}

.hero-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 1;
  opacity: 0.95;
}

.carros-estacionados {
background-color: #b4b4b4;
  padding: 0;
  margin: 0;
  text-align: center;
}

.linha-carros {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 80px;
  padding: 20px 0;
}

.linha-carros img {

  height: 200px;
  transform: scale(1.50);
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.linha-carros img:hover {
  transform: scale(2.15);
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.2));
  z-index: 2;
}

.hero p {
  font-family: 'Lobster', cursive;
  margin-top: 30px;
  font-size: 1.8rem;
  color: #444;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25d366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.painel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
}

.card {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 280px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
  max-width: 300px;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card h3 {
  margin-top: 0;
  color: #222;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  min-height: 60px;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  background-color: #ff6600;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.card a:hover {
  background-color: #d85904ff;
}











