body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #1C1C1C;
  color: #fff;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle at top, #2a2a2a, #000);
}



.logo {
  width: 100%;
  max-width: 420px; /* tamanho no desktop */
  height: auto;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .logo {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }
}



h1 {
  font-size: 22px;
  line-height: 1.3;
  text-align: center;

}



.top-info {
  color: #B08D57;
  margin-top: 10px;
}


.hero-sub {
  color: #bbb;
  font-size: 18px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}



@media (max-width: 768px) {
  .hero-sub {
    max-width: 90%;
    margin: 0 auto;
  }
}
.hero h1 {
  margin-top: 15px;
  margin-bottom: 10px;
}

.hero-sub {
  margin-top: 10px;
}

.top-info {
  margin-top: 10px;
}

h1, h2 {
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(176,141,87,0.5);
}

.gold {
  color: #B08D57;
}

/* BOTÃO */
.btn {
  background: linear-gradient(90deg, #B08D57, #e5c27a);
  color: #000;
  padding: 16px 40px;
  border-radius: 40px;
  display: inline-block;
  margin-top: 25px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(176,141,87,0.5);
}

.btn i {
  margin-right: 8px;
}

/* SEÇÃO */
.section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section.dark {
  background: #111;
}

.grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* CARD */
.card {
  background: linear-gradient(180deg, #2a2a2a, #1c1c1c);
  padding: 25px;
  border-radius: 12px;
}

.card:hover {
  border: 1px solid #B08D57;
}

.obs {
  margin-top: 20px;
  color: #B08D57;
}

/* CARROSSEL */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.media-item {
  min-width: 300px;
  max-width: 300px;
  height: 220px;
  flex-shrink: 0;
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* SETAS */
.arrow {
  position: absolute;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #B08D57;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.left { left: 0; }
.right { right: 0; }

/* CTA */

.cta {
  background: radial-gradient(circle at center, #111, #000);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.cta h2,
.cta p {
  text-align: center;
}

.cta .btn {
  margin-top: 25px;
}

/* FRASE DE DOR */
.cta-alert {
  color: #ff4d4d;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

/* DESCRIÇÃO */
.cta-desc {
  color: #bbb;
  margin-top: 10px;
  font-size: 16px;
}

/* BOTÃO MAIS FORTE */
.cta .btn {
  background: linear-gradient(90deg, #B08D57, #e5c27a);
  color: #000;
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 18px;
  margin-top: 25px;
  box-shadow: 0 0 25px rgba(176,141,87,0.7);
  transition: 0.3s;
}

.cta .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(176,141,87,1);
}

/* WHATS FIXO */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.footer {
  background: #000;
  padding: 50px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* CONTAINER */
.footer-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* LOGO */
.footer-logo {
  color: #B08D57;
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* DESCRIÇÃO */
.footer-desc {
  color: #bbb;
  font-size: 15px;
  margin-bottom: 10px;
}

/* LOCAL */
.footer-location {
  color: #B08D57;
  margin-bottom: 20px;
}

/* SERVIÇOS */
.footer-services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #888;
  font-size: 14px;
  margin-bottom: 25px;
}

.footer-services span {
  background: #111;
  padding: 6px 12px;
  border-radius: 20px;
}

/* BOTÃO */
.footer-btn {
  display: inline-block;
  background: linear-gradient(90deg, #B08D57, #e5c27a);
  color: #000;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: 0.3s;
}

.footer-btn i {
  margin-right: 8px;
}

.footer-btn:hover {
  transform: scale(1.05);
}

/* COPYRIGHT */
.footer-copy {
  color: #666;
  font-size: 13px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

/* ÍCONES */
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111;
  border: 1px solid rgba(176,141,87,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B08D57;
  font-size: 18px;
  text-decoration: none;
  transition: 0.2s;
}

/* HOVER SUAVE */
.footer-social a:hover {
  transform: translateY(-2px);
  border-color: #B08D57;
}


.footer-social a:hover {
  box-shadow: 0 0 10px rgba(176,141,87,0.3);
}


@media (max-width: 768px) {

  h1 {
    font-size: 20px; 
  }

}
@media (max-width: 768px) {

  .hero {
    padding: 50px 20px;
  }

  .hero-sub {
    margin-top: 10px;
  }

  .top-info {
    margin-top: 8px;
    font-size: 14px;
  }

}

@media (max-width: 768px) {

  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }

}

