/* style.css */

body {
  font-family: Arial, sans-serif;
  background-color: #f8d7da;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #f8d7da;
  border-bottom: 2px solid #d4af37;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo {
  height: 50px;
}

.site-title {
  font-family: 'Great Vibes', cursive;
  font-size: 28px;
  color: #556b2f;
}

nav ul {
  display: flex;
  gap: 15px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #556b2f;
  font-weight: bold;
}

nav ul li a:hover {
  color: #d4af37;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  color: #556b2f;
}

.btn {
  background-color: #556b2f;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 25px;
  margin-top: 20px;
  display: inline-block;
}

.btn:hover {
  background-color: #d4af37;
}

section {
  padding: 50px 20px;
}

h2 {
  text-align: center;
  color: #556b2f;
  margin-bottom: 20px;
}

.sobre-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.sobre-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  border: 2px solid #d4af37;
}

.sobre-texto {
  flex: 1;
}

.portfolio-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  align-items: center;
}

.portfolio-item.reverse {
  flex-direction: row-reverse;
}

.portfolio-item img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  border: 2px solid #d4af37;
}

.portfolio-desc {
  flex: 1;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.catalogo-grid img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #d4af37;
}

.produto {
  text-align: center;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}

.agendamento, .contato {
  text-align: center;
}

footer {
  background-color: #f8d7da;
  text-align: center;
  padding: 15px;
  color: #556b2f;
  font-size: 14px;
}

.catalogo-desc {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #444;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .catalogo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .catalogo-grid {
    grid-template-columns: 1fr;
  }
}

/* Botões de contato */
.btn-whatsapp, .btn-instagram, .btn-tiktok {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.btn-whatsapp {
  background-color: #25D366;
}

.btn-instagram {
  background: linear-gradient(45deg, #fd1d1d, #e1306c, #c13584, #833ab4);
}

.btn-tiktok {
  background-color: #010101;
}

.btn-whatsapp:hover, .btn-instagram:hover, .btn-tiktok:hover {
  opacity: 0.85;
}

/* Seção de Promoções */
.promocoes {
  background-color: #f8d7da;
  padding: 50px 20px;
  text-align: center;
}

.promocoes h2 {
  color: #556b2f;
  margin-bottom: 30px;
}

.promocoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.promocao {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #d4af37;
  transition: transform 0.3s ease;
}

.promocao:hover {
  transform: scale(1.05);
}

/* Seção de Depoimentos */
.depoimentos {
  background-color: #f8d7da;
  padding: 50px 20px;
  text-align: center;
}

.depoimentos h2 {
  color: #556b2f;
  margin-bottom: 30px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.depoimento {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #d4af37;
  font-style: italic;
}

.depoimento span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #556b2f;
}

/* Seção de Equipe */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
  text-align: center;
}

.equipe-membro img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid #d4af37;
  max-width: 180px;
}

.equipe-membro p {
  margin-top: 10px;
  color: #556b2f;
}

/* Seção de Espaços */
.espacos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.espacos-grid img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid #d4af37;
  transition: transform 0.3s ease;
}

.espacos-grid img:hover {
  transform: scale(1.05);
}

/* Ajustes de responsividade adicionais */
@media (max-width: 900px) {
  .sobre-flex {
    flex-direction: column;
  }

  .portfolio-item, .portfolio-item.reverse {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .hero {
    padding: 40px 10px;
  }

  .btn {
    padding: 10px 20px;
  }
}

.banner-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto 20px auto;
    overflow: hidden;
    border-radius: 10px;
}

.slide {
    display: none;
    width: 100%;
}

.slide img {
    width: 100%;
    border-radius: 10px;
}

/* Animação de fade */
.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
