.hero-disco {
  position: relative;
  height: 75vh;
  overflow: hidden;
}

.hero-disco .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 20px;
}

.hero-content {
  max-width: 850px;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* INTRO */

.intro-section {
  background: white;
}

.intro-section .lead {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 30px;
}

.intro-section p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* FEATURES */

.features-section {
  background: #f7f7f7;
}

.features-section h2 {
  font-weight: 400;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;

  box-shadow: 0 4px 14px rgba(0,0,0,0.05);

  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #111;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

/* GALLERY */

.gallery-section {
  background: white;
}

.gallery-section h2 {
  font-weight: 400;
}

.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 320px;

  object-fit: cover;

  border-radius: 10px;

  box-shadow: 0 3px 12px rgba(0,0,0,0.08);

  transition: 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.01);
}

/* CTA */

.cta-section-disco {
  background: #111;
  color: white;
}

.cta-section-disco h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 400;
}

.cta-section-disco p {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.boton-secundario {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.3);
}

.boton-secundario:hover {
  background: rgba(255,255,255,0.08) !important;
}

/* MOBILE */

@media (max-width: 768px) {

  .hero-disco {
    height: 65vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .gallery-img {
    min-height: 240px;
  }

}