body {
    margin: 0 auto;
    background-color: #0d0d0d;
    color: #fff;
    font-family: Arial, sans-serif;
}

header {
    background-color: #000;
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid gold;
}

.logo-img {
    width: 400px;
    height: auto;
    margin-bottom: 15px;
}

.main {
    padding: 60px 20px;
    text-align: center;
}

.main h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.main p {
    color: #ccc;
    margin-bottom: 35px;
}

.btn {
  background: gold;
  color: #000;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block; /* Importante para o transform funcionar bem */
  transform: scale(1);   /* Tamanho normal inicial */
  transition: all 0.3s ease;
}

.btn:hover {
  background: #b8962e;
  transform: scale(1.1); /* Aumenta 10% apenas no hover */
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.section {
  padding: 40px 0;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
  text-align: center;
}

.services {
  overflow: hidden;
  position: relative;
  text-align: center;
}

.services-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 50s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.card {
background-color:#1b1b1b ;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #393939;
  border-radius: 10px;
}

.main2 {
    text-align: center;
    margin: 80px 80px;
}

footer {
  background: #000;
  text-align: center;
  padding: 20px;
  border-top: 2px solid gold;
}
