/* index-12.css */

:root {
  --primary: #ff7f00;
  --dark-bg: #0e0e0e;
  --text-light: #f5f5f5;
  --text-muted: #ccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--dark-bg);
  color: var(--text-light);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

.header {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #111, #222);
}

.title {
  font-size: 2.5rem;
  font-weight: bold;
}

.subtitle {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: var(--primary);
}

.description {
  max-width: 600px;
  margin: 1rem auto;
}

.cta-buttons {
  margin-top: 1.5rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn.primary:hover {
  background: #e76f00;
}

.btn.secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn.secondary:hover {
  background: var(--primary);
  color: #fff;
}

.preco {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.features {
  background: #121212;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  padding: 2rem 0;
}

.feature {
  flex: 1 1 200px;
  margin: 1rem;
}

.feature i {
  font-size: 2rem;
  color: var(--primary);
}

.feature h3 {
  margin: 0.5rem 0;
}

.gallery {
  background: #181818;
  text-align: center;
  padding: 4rem 2rem;
}

.gallery h2 {
  margin-bottom: 1rem;
}

.gallery-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.card img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.card img:hover {
  transform: scale(1.02);
}

.location {
  background: #101010;
  text-align: center;
  padding: 3rem 2rem;
}

.location-description {
  max-width: 700px;
  margin: 1rem auto 2rem;
  color: var(--text-muted);
}

.local-benefits {
  list-style: none;
  padding: 0;
  color: #fff;
}

.local-benefits li {
  margin: 0.5rem 0;
}

.footer {
  background: #0b0b0b;
  color: var(--text-muted);
  text-align: center;
  padding: 1.5rem 0;
}

/* Botão Flutuante WhatsApp */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
    margin: 0.5rem 0;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }
}
