@charset "utf-8";
/* CSS Document */
body{
	background:rgb(0,0,0);
}

.cabezal{
	width:100%;
	background-color:rgb(0,0,0);
	height:73px;
	margin:0px;
	margin-bottom:73px;
	margin-top:-100px;
	float:left;
	position: fixed;
	z-index:10000;

}
.contenido{
	width:100%;
	max-width:900px;
	margin:0 auto;
	margin-top:0px;
}

.link-productos{
	width:100%;
	max-width:870px;
	margin-top:0px;
	padding-left:0px;
	float:left;
}

.caja-texto{
	width: 100%;
	max-width: 850px;
	padding: 10px;
	float:left;
	
}

.lacaja{
	background: rgba(0,0,0,0.9);
	padding: 20px;
	border-radius: 10px;
	border-color: #CCCCCC;
	border-width: thin;
}
.texto{font-family: 'Oswald', sans-serif;
       font-family: 'Signika', sans-serif;
       color: rgb(255,255,255);
	   	font-variant: small-caps;

}

mark {
	 background-color: transparent;
	 color:rgb(255,255,255);
	font-weight: bold;
	font-style: normal;
}

hr /*linea*/ {
	background-color:#1E0622;
	height: 2px;
	-webkit-box-shadow: inset 1px 0px 2px #FFFFFF;
	box-shadow: inset 1px 0px 2px #FFFFFF;
}

/*------------------------ocultar--------------------------*/

.ocultar         { visibility: visible; display:inline;
					
				}




@media only screen and (min-width: 0px) and (max-width: 768px) {  
 .ocultar         { 
					 visibility: hidden;
					  display:none; }
					  
.link-productos{
	width:100%;
	max-width:350px;
	margin:0 auto;
	margin-top:-250px;
	padding-bottom:30px;
}

.caja-texto{
	width: 100%;
	max-width: 350px;
	height: auto;
	padding: 10px;
	margin: 0 auto;
}
}

/** galeria **/

/* Estilos generales de la galería */

/* Estilos generales de la galería */
#galeria {
    columns: 3;
    column-gap: 10px;
    -moz-column-rule: 0px solid #bbb;
    -webkit-column-rule: 0px solid #bbb;
    column-rule: 0px solid #bbb;
	width: 100%;
}

.image-container {
    display: inline-block;
    width: 100%;
    margin: 0 0 10px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    break-inside: avoid;
    page-break-inside: avoid;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease; /* Añadir transición a la imagen */
}

.image-container:hover img {
    transform: scale(1.05); /* Efecto de zoom en la imagen */
}

.image-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(12, 10, 10, 0.493);
    text-align: center;
    padding: 5px 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

/* Estilos para el modal */
.modal {
    display: none; /* Asegurarse de que el modal esté oculto inicialmente */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    margin: auto;
    display: block;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Deshabilitar scroll cuando el modal está abierto */
body.modal-open {
    overflow: hidden;
}

/* Móviles en horizontal o tablets en vertical */
@media (max-width: 767px) { 
    #galeria {
        columns: 2;
    }
}

/* Móviles en vertical */
@media (max-width: 480px) {
    #galeria {
        columns: 1;
    }
}



#whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: opacity 1s;
    z-index: 100000000;
}

#whatsapp-icon img {
    width: 50px;
    height: 50px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.show {
    display: block;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.show {
  display: block;
  opacity: 1;
  animation: fadeIn 1s;
}

@media screen and (max-width: 600px) {
    #whatsapp-icon {
        bottom: 10px;
        right: 10px;
    }
}

