
body {
    background-color: #3a1f0d;
    color: #FFD700;
    font-family: sans-serif;
    margin: 0;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #1f1105;
}
.logo {
    height: 60px;
}
nav a {
    margin: 0 10px;
    color: #ff9900;
    text-decoration: none;
}
.logo-title {
    display: flex;
    align-items: center;
}
.brand-name {
    color: #FFD700;
    font-weight: bold;
    font-size: 1.5rem;
    margin-left: 10px;
}
.hero {
    text-align: center;
    padding: 2rem;
    background-color: #4b2a12;
}
.benefits {
    background: #2e180a;
    padding: 2rem;
}
footer {
    text-align: center;
    padding: 1rem;
    background-color: #1f1105;
}
.content {
    padding: 2rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.gallery-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    background-color: #2e180a;
    border-radius: 10px;
}
form label {
    font-weight: bold;
}
form input, form select, form textarea {
    padding: 0.5rem;
    border-radius: 5px;
    border: none;
}
form button {
    background-color: #ff9900;
    color: #000;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}
form button:hover {
    background-color: #ffc107;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  .content {
    padding: 1rem;
    font-size: 16px;
  }
  header, nav a {
    font-size: 16px;
  }
  .logo-title {
    flex-direction: column;
    align-items: center;
  }
  .logo {
    width: 80px;
  }
  .brand-name {
    font-size: 20px;
    margin-top: 0.5rem;
  }
  input, select, textarea, button {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0.5rem;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
