/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body y fuente */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #FCFBFA;
  color: #3A4036;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  padding: 20px 0;
  background-color: transparent;
}

.logo img {
  max-width: 200px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Main */
main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 15px;
  text-align: center;
}

main h1 {
  font-weight: 600;
  color: #ED8803;
  margin-bottom: 30px;
  font-size: 2rem;
}

/* Enlaces con imágenes */
.image-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  justify-items: center;
}

.image-links a {
  text-decoration: none;
  color: #3A4036;
  font-weight: 500;
  transition: color 0.3s ease;
}

.image-links a:hover {
  color: #ED8803;
}

.image-links img {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.image-links img:hover {
  transform: scale(1.05);
}

.image-links span {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: #3A4036;
  color: #FFF6EA;
  text-align: center;
  padding: 20px 10px;
  margin-top: 60px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
  main {
    margin: 30px 15px;
  }

  .image-links {
    grid-template-columns: 1fr 1fr;
  }
}
