body {
  background: linear-gradient(135deg, #000000, #1a1a1a, #2b2b2b);
  color: #d4af37;
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Cabeçalho */
header {
  background: #000;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu ul li a:hover {
  color: #d4af37;
}

/* Parte principal */
.container {
  display: flex;
  max-width: 1100px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 40px 20px;
  margin-top: -40px; /* sobe o bloco */
}

.texto {
  flex: 1;
  min-width: 280px;
}

.texto h2 {
  font-size: 28px;
  margin: 20px 0 10px;
  color: #fff;
}

.texto p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.citacao {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 25px;
}

.citacao span {
  color: #fff;
  font-weight: bold;
}

.imagem-decorativa {
  text-align: center;
  margin-bottom: 20px;
}

.imagem-decorativa img {
  max-width: 400px;
  opacity: 0.7;
}

.foto {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 280px;
}

.foto img {
  max-width: 700px;
  width: 100%;
  border-radius: 20px;
  opacity: 0.7;
    position: relative;
  top: 40px;  /* empurra a foto para baixo, colando no limite */
}

/* Seção Por que nos escolher */
.porque-section {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 80px 20px;
}

.porque-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}

.porque-section p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 18px;
}

/* Contato */
.contato-section {
  padding: 60px 20px;
  text-align: center;
}

.contatos a {
  display: inline-block;
  margin: 10px 20px;
  text-decoration: none;
  font-size: 20px;
  color: #000;
  transition: color 0.3s ease;
}

.contatos a:hover {
  color: #d4af37;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.botoes {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn.instagram:hover {
  opacity: 0.8;
}

/* Rodapé */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* Scroll escurecendo */
body.scroll-down {
  background: linear-gradient(135deg, #000000, #0d0d0d, #1a1a1a);
}

body.scroll-up {
  background: linear-gradient(135deg, #000000, #1a1a1a, #2b2b2b);
}

/* Responsividade */
@media (max-width: 768px) {
  .navbar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .container {
    flex-direction: column;
    text-align: center;
  }

  .foto img {
    max-width: 250px;
  }
}