/* GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #3A4036; /* color verde oscuro como en recursos */
  background-color: #FCFBFA; /* beige claro */
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* HEADER */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background-color: transparent;
  box-shadow: none;
}
.logo img {
      max-width: 200px;
      height: auto;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .logo img:hover {
      transform: scale(1.05);
    }
.icon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.icon-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #3A4036;
  text-align: center;
}
.icon-links img {
  max-height: 60px;
  margin-bottom: 6px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.icon-links img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(237, 136, 3, 0.5); /* naranja suave */
}

/* CARRUSEL */
.mural-carrusel {
  padding: 40px 20px;
  text-align: center;
}
.mural-carrusel h2 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 22px;
  color: #A57741; /* marrón suave */
  border-bottom: 2px solid #ED8803; /* naranja */
  display: inline-block;
  padding-bottom: 6px;
}
.carrusel {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.slide {
  display: none;
}
.slide.active {
  display: block;
}
.carrusel img {
  width: 100%;
  height: auto;
  display: block;
}
.carrusel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ED8803; /* naranja */
  color: #FFF6EA; /* beige claro */
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(237,136,3,0.5);
  transition: background-color 0.3s ease;
}
.carrusel button:hover {
  background: #A57741; /* marrón */
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* IMAGE LINKS */
.image-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 40px 20px;
}
.image-links a {
  flex: 1 1 250px;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-links a:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(237,136,3,0.35);
}
.image-links img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
}

/* FOOTER */
footer {
  background-color: #3A4036; /* verde oscuro */
  color: #FFF6EA; /* beige claro */
  padding: 40px 20px;
  text-align: center;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
}
.footer-grid div {
  max-width: 250px;
}
.footer-grid h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ED8803; /* naranja */
  text-transform: uppercase;
}
.footer-grid p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.social-icons a {
  color: #FFF6EA;
  font-size: 26px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
  color: #ED8803;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .icon-links {
    gap: 20px;
  }
  .image-links {
    gap: 20px;
  }
  .footer-grid {
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .icon-links {
    flex-direction: column;
    gap: 15px;
  }
  .image-links {
    flex-direction: column;
    gap: 20px;
  }
  .footer-grid {
    flex-direction: column;
    gap: 20px;
  }
}
