/* CSS extraido exactamente del <style> funcional de detalles_museos_exposiciones_perm.php */
.botones-sociales {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px; /* Espacio uniforme entre todos los Ã­conos */
    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;
}

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

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

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

/* Cada obra */
.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);
}

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

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

/* BotÃ³n ver mÃ¡s */
.ver-mas {
  font-size: 11pt;
  font-weight: bold;
  color: #0cf;
  text-decoration: underline;
}

/* Al final de portalguarani2.css */
.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; /* gris claro */
  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; /* negro */
  text-decoration: none;
}
.titulo-obra {
  display: -webkit-box;
  -webkit-line-clamp: 3;          /* ðŸ”¢ mostrar 3 lÃ­neas como mÃ¡ximo */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2em;             /* ajusta segÃºn tu diseÃ±o */
  max-height: 3.6em;              /* 3 lÃ­neas Ã— line-height */
  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; /* morado */
  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; /* mÃ¡s abajo del top */
  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;
}

/* Responsive */
@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;
  }
}


	
/* Estilo original desktop se mantiene intacto */
.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;
}

/* âœ… Ajuste solo para mÃ³viles */
@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;
  }
}


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

/* Cada obra */
.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);
}

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

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

/* BotÃ³n ver mÃ¡s */
.ver-mas {
  font-size: 11pt;
  font-weight: bold;
  color: #0cf;
  text-decoration: underline;
}

/* Al final de portalguarani2.css */
.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; /* gris claro */
  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; /* negro */
  text-decoration: none;
}
.titulo-obra {
  display: -webkit-box;
  -webkit-line-clamp: 3;          /* ðŸ”¢ mostrar 3 lÃ­neas como mÃ¡ximo */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2em;             /* ajusta segÃºn tu diseÃ±o */
  max-height: 3.6em;              /* 3 lÃ­neas Ã— line-height */
  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; /* morado */
  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));
  }
}
	
.info-registros-box {
  margin: 30px auto;
  text-align: center;
  padding: 15px 25px;
  border: 2px solid #ccc;
  border-radius: 12px;
  background-color: #fffef5;
  display: inline-block;
  font-family: 'Segoe UI', sans-serif;
  max-width: 90%;
}

.info-registros-label {
  font-size: 15pt;
  color: #444;
  font-weight: bold;
}

.info-registros-numero {
  font-size: 15pt;
  color: #d35400;
  font-weight: bold;
  margin: 0 5px;
}

/* âœ… Ajuste para mÃ³viles */
@media (max-width: 768px) {
  .info-registros-box {
    padding: 12px 18px;
  }

  .info-registros-label {
    font-size: 13pt;
  }

  .info-registros-numero {
    font-size: 13pt;
  }
}

/* POR DEFECTO (pantallas grandes, 1920px o mÃ¡s) */
.contenedor-principal {
  flex-grow: 1;
  padding: 0px 12px 0px 12px; /* MÃ¡s espacio a la derecha */
  margin: 0 auto;
  max-width: 1350px; /* Aumentado desde 1350px */
  box-sizing: border-box;
  text-align: center;
}
	
/* SOLO APLICA A PANTALLAS DE ESCRITORIO O TABLETS GRANDES */
@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;
  }
}
