/* ==============================
   Estilos generales
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #111, #222);
  color: #f2f2f2;
  line-height: 1.6;
}

/* ==============================
   Encabezado
============================== */
header {
  background: #181818;
  color: #f7c948;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

header h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2em;
  color: #ccc;
}

/* ==============================
   Imagen principal
============================== */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.hero img {
  width: 80%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}

.hero img:hover {
  transform: scale(1.05);
}

/* ==============================
   Contenido
============================== */
section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

h2 {
  color: #f7c948;
  border-left: 5px solid #f7c948;
  padding-left: 10px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
  text-align: justify;
}

/* ==============================
   Galería de fotos
============================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* ==============================
   Pie de página
============================== */
footer {
  text-align: center;
  padding: 30px;
  background: #181818;
  color: #aaa;
  margin-top: 40px;
  font-size: 0.9em;
}

footer span {
  color: #f7c948;
  font-weight: bold;
}
