* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #333;
}

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

/* Header */
.header {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  align-items: center; /* centraliza imagem e texto na vertical */
  gap: 8px; /* espaço entre a imagem e o texto */
}

.logo h1 {
  margin: 0;
  color: #663399;
  font-size: 2em;
}

.logo p {
  margin: 5px 0 0 0;
  color: #290947;
  font-size: 0.9em;
}

/* Hero Section */
.hero {
  height: 500px;
  background: url(banner-topo.jpg) center center;
  background-size: cover;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.85);
  display: flex;
}

.hero-content {
  margin: auto;
  text-align: center;
  max-width: 600px;
  padding: 40px;
}

.hero-content h2 {
  font-size: 2.5em;
  margin: 0 0 30px 0;
  color: #333;
  line-height: 1.2;
}

.hero-button a {
  background: #663399;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
}

.hero-button a:hover {
  background: #552288;
}

/* Services Section */
.services {
  padding: 60px 0;
  background: #f8f9fa;
}

.services h3 {
  text-align: center;
  font-size: 2em;
  margin: 0 0 40px 0;
  color: #333;
}

.services-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.services-list li {
  margin: 0 0 25px 0;
  padding: 0 0 0 20px;
  position: relative;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.services-list li:before {
  content: "•";
  color: #663399;
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: 0;
}

.service-title {
  font-weight: bold;
  color: #663399;
}

/* Gallery */
.gallery {
  padding: 40px 0;
}

.gallery-grid {
  display: block;
  text-align: center;
}

.gallery-grid img {
  width: 200px;
  height: 300px;
  border-radius: 20px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* sombra parecida com a da imagem */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* transição suave */
}

.gallery-grid img:hover {
  transform: scale(1.03); /* leve aumento ao passar o mouse */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); /* sombra mais intensa no hover */
}


/* About Section */
.about {
  background: #663399;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.about h3 {
  font-size: 2em;
  margin: 0 0 30px 0;
  font-family:serif;
  color: white;
}

.about h3 span {
  font-weight: bold;
  font-style: italic;
}

.social-icons a {
  color: white;
  font-size: 2em;
  margin: 0 15px;
  text-decoration: none;
}

.social-icons a:hover {
  opacity: 0.8;
}

/* Brands Section */
.brands {
  padding: 60px 0;
  background: #f8f9fa;
  text-align: center;
}

.brands h3 {
  font-size: 2em;
  margin: 0 0 40px 0;
  color: #400b72;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* espaço entre as imagens */
}

.brands-grid img {
  max-width: 150px;
  margin: 10px;
  object-fit: contain; /* garante que a imagem não fique esticada */
}

/* CTA Section */
.cta {
  background: #663399;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta h3 {
  font-size: 2em;
  margin: 0 0 30px 0;
  font-family:serif;
  color: white;
}

.cta h3 .destaque {
  font-weight: bold;
  font-style: italic;
}

/* Location Section */
.location {
  padding: 60px 0;
  text-align: center;
}

.location h3 {
  font-size: 2em;
  margin: 0 0 20px 0;
  color: #400b72;
}

.location p {
  margin: 0 0 30px 0;
  font-size: 1.1em;
  color: #666;
}

.map-container {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
  border: 0;
  display: block;
}

/* Footer */
.footer {
  background: #663399;
  color: white;
  padding: 30px 0;
  text-align: center;
}

.footer p {
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2em;
  }
  
  .gallery-grid img {
    width: 150px;
    height: 100px;
    margin: 5px;
  }
  
  .brand-logo {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
}
