
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #EEE0CB;
  color: #2F241D;
}

header {
  background-color: #3E4C37;
  color: #EEE0CB;
  padding: 10px;
  text-align: center;
}

header img {
  max-width: 400px;
  width: 90%;
  height: auto;
  margin-bottom: 10px;
}

nav {
  background-color: #5E5E5E;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px; /* Agregado para separar mejor */
}

nav a {
  color: #EEE0CB;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #E0A94D;
}

.hero {
  background-color: #8EBAC6;
  background-image: url('../img/nubes_hero.jpg');
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: bold;
  text-shadow: 1px 1px 3px #000;
}

.hero h2 {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.mini-hero {
  background-image: url('../img/zapatillas-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 80px 20px;
  font-size: 28px;
  color: #FFFFFF;
  font-weight: bold;
  text-shadow: 2px 2px 5px #000;
  height: 200px; /* 👈 AGREGAR ESTA LÍNEA */
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  padding: 20px;
}

.lectura {
  max-width: 900px; /* Aumentamos el ancho */
  margin: 40px auto;
  padding: 20px;
  line-height: 1.7;
  font-size: 18px;
  color: #222;
  background-color: #E5E5E5;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.lectura img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  margin: 20px auto;
  display: block;
}

.lectura h2, .lectura h3 {
  text-align: center;
}

.lectura blockquote {
  font-style: italic;
  color: #444;
  border-left: 4px solid #E0A94D;
  background: #fff8e1;
  padding: 15px 20px;
  margin: 30px 0;
  border-radius: 6px;
}

.publicidad {
  background-color: #DDD;
  text-align: center;
  padding: 10px;
  margin: 20px 0;
  border: 2px dashed #999;
}

footer {
  background-color: #3E4C37;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  margin-top: 40px;
}

footer a {
  color: #E0A94D;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.volver-inicio {
  text-align: center;
  margin-top: 40px;
}

.volver-inicio a {
  text-decoration: none;
  font-size: 16px;
  color: #3E4C37;
  font-weight: bold;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .hero {
    font-size: 22px;
    height: 150px;
  }
  .mini-hero {
    font-size: 20px;
    height: 100px;
  }
  .lectura {
    padding: 15px;
    margin: 20px auto;
  }
}

/* Especial para escritorios grandes */
@media (min-width: 1024px) {
  header img {
    max-width: 300px;
    width: 100%;
  }
}
.noticias-recientes {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #EEE0CB;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
}

.noticia-destacada {
  margin-top: 20px;
}

.noticia-destacada img {
  width: 50%;
  max-width: 450px;
  border-radius: 10px;
  margin: 10px auto;
  display: block;
}


.noticia-destacada h3 {
  margin: 15px 0 10px;
  font-size: 24px;
  color: #3E4C37;
}

.noticia-destacada p {
  color: #5E5E5E;
  font-size: 18px;
  margin: 10px 0 20px;
}

.boton-noticia {
  display: inline-block;
  background-color: #3E4C37;
  color: #EEE0CB;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  margin-top: 10px;
}

.boton-noticia:hover {
  background-color: #5E5E5E;
}
