/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Tipografía pensada para móvil */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #faf7f5;
  color: #333;
  line-height: 1.6;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f6d1d1, #fbe8e7);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

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

/* CONTENIDO */
.content {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
}

.section {
  margin-bottom: 3rem;
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* GALERÍA */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* VIDEO */
video {
  width: 100%;
  border-radius: 12px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #777;
}

/* PANTALLAS MÁS GRANDES */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
