* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  transition: 0.3s;
}

.dark-mode {
  background: #111;
  color: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #111;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

#dark-mode-toggle {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

.hero {
  height: 100vh;
  background:
  linear-gradient(rgba(0,0,0,0.5),
  rgba(0,0,0,0.5)),
  url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1400')
  center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-content {
  animation: fadeIn 1s ease;
}

.hero h2 {
  font-size: 3rem;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: #00a86b;
  color: white;
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
}

.section {
  padding: 80px 0;
  animation: fadeIn 1s ease;
}

.gray {
  background: #f5f5f5;
}

.dark-mode .gray {
  background: #1c1c1c;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

.cards,
.gallery,
.price-table {
  display: grid;
  gap: 20px;
}

.cards {
  grid-template-columns:
  repeat(auto-fit, minmax(250px, 1fr));
}

.card,
.price-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.dark-mode .card,
.dark-mode .price-card {
  background: #222;
  color: white;
}

.gallery {
  grid-template-columns:
  repeat(auto-fit, minmax(300px, 1fr));
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.03);
}

.price {
  color: #00a86b;
  font-size: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input,
textarea {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  padding: 15px;
  border: none;
  background: #00a86b;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

#success-message {
  margin-top: 20px;
  color: green;
  text-align: center;
}

.map-container {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.legal {
  padding: 60px 0;
}

.whatsapp-button {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  text-decoration: none;
  z-index: 999;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111;
  color: white;
  text-align: center;
  padding: 15px;
  z-index: 9999;
}

@keyframes fadeIn {

  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@media(max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #111;
    margin-top: 20px;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 15px 0;
    border-top: 1px solid #333;
  }

  .nav {
    flex-direction: column;
  }

  .hero h2 {
    font-size: 2rem;
  }

}