
.botones-sociales {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.boton-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-top: -4px;
  transition: all 0.3s ease;
}

.boton-pdf img {
  width: 90px;
  height: 90px;
  margin-top: -30px;
  margin-left: 90px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .boton-pdf {
    width: 55px;
    height: 55px;
  }

  .boton-pdf img {
    width: 90px;
    height: 90px;
    margin-top: -12px;
    margin-left: 75px;
  }
}

.obras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  padding: 10px;
}

.obra-box {
  background: #000;
  color: #fff;
  border: 1px solid #999;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.obra-box img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 4px;
}

.titulo-obra {
  font-size: 13pt;
  font-weight: bold;
  color: #00f;
  text-decoration: underline;
  display: block;
  margin-bottom: 8px;
}

.ver-mas {
  font-size: 11pt;
  font-weight: bold;
  color: #0cf;
  text-decoration: underline;
}

.obras-grid {
  display: grid;
  gap: 15px;
  padding: 10px;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

.obra-box {
  text-align: center;
  background-color: #f2f2f2;
  border-radius: 6px;
  padding: 10px;
}

.obra-box img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 6px;
}

.titulo-obra {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.titulo-obra {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2em;
  max-height: 3.6em;
  color: #000;
  font-size: 14px;
  text-decoration: none;
  margin-top: 8px;
}

.obra-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ver-mas {
  display: block;
  font-size: 13px;
  margin-top: 5px;
  color: purple;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .obras-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media screen and (min-width: 1200px) {
  .obras-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.menu-flotante-lateral {
  position: fixed;
  top: 100px;
  left: 15px;
  max-width: 320px;
  z-index: 999;
}

.menu-box {
  background-color: #f8f9fa;
  border: 2px solid #bbb;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.menu-titulo {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.menu-box ul {
  padding-left: 0;
}

.menu-box li {
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .menu-flotante-lateral {
    position: static;
    margin: 20px auto;
    width: 100%;
    max-width: 100%;
  }

  .menu-box {
    border-radius: 0;
    box-shadow: none;
    border: none;
  }
}

.imagen-cuadro {
  background-color: #E9D3AA;
  border: 1px solid #999;
  border-radius: 12px;
  padding: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.imagen-cuadro:hover {
  transform: scale(1.02);
}

.imagen-estilo {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .imagenes-museo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .imagen-cuadro {
    flex: 1 1 45%;
    max-width: 45%;
    padding: 6px;
  }
}

.titulo-con-arrow {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  text-align: left;
}

.titulo-con-arrow img {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.titulo-con-arrow a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
  word-break: break-word;
  line-height: 1.4;
  flex: 1;
  text-align: left;
  display: block;
}

.contenedor-principal {
  flex-grow: 1;
  padding: 0px 12px 0px 12px;
  margin: 0 auto;
  max-width: 1350px;
  box-sizing: border-box;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1600px) {
  .contenedor-principal {
    max-width: 1200px;
    margin-left: 240px;
    margin-right: 40px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
  .contenedor-principal {
    max-width: 1080px;
    margin-left: 240px;
    margin-right: 30px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .contenedor-principal {
    max-width: 960px;
    margin-left: 240px;
    margin-right: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1152px) {
  .contenedor-principal {
    max-width: 880px;
    margin-left: 240px;
    margin-right: 10px;
  }
}