:root {
  --primary: #2c2c2c;
  --accent: #25D366;
  --light: #f8f9fa;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: linear-gradient(to bottom, #e8e6e3, #dcd8d3);
  color: #2c2c2c;
}

.hero {
  background: url('../images/hero.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3); /* Atenuación sutil */
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.hero-content h1,
.hero h1 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

section {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  margin: 2rem auto;
  padding: 4rem 1rem;
  max-width: 1140px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.galeria img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

.btn-accent {
  background-color: var(--accent);
  border: none;
  color: white;
  padding: 0.6rem 2rem;
  border-radius: 25px;
  font-weight: 500;
}

footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--accent);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .galeria img {
    height: 180px;
  }

  .btn-accent {
    width: 100%;
  }

  .whatsapp-float {
    width: 45px;
    height: 45px;
  }
}