.col_producto {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;  /* Alinea el contenido al fondo */
	min-height: 200px;         /* Altura mínima (ajusta según necesites) */
	position: relative;        /* Necesario para el posicionamiento del cintillo */
}

.producto {
	text-align: center;
	width: 90%;
	margin: 0 auto;
	position: relative;        /* Contenedor relativo para el cintillo */
}

/* Asegura que la imagen esté al fondo */
.producto img {
	display: block;            /* Elimina espacio fantasma debajo de la imagen */
	width: 100%;
	margin-top: auto;          /* Empuja la imagen hacia abajo */
}

/* Cintillo superpuesto SOBRE la imagen */
.cintillo {
	height: 80px;
	text-align: center;
	font-size: 1.4rem;
	color: #ffffff;
	background-color: rgba(156, 156, 156, 0.85);
	transition: background-color 0.3s ease;
	position: absolute;
	padding-left: 10px;
	padding-right: 10px;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	line-height: 1.2;
	
	/* Añade estas propiedades para centrado vertical */
	display: flex;
	flex-direction: column;
	justify-content: center; /* Centra verticalmente */
	align-items: center;     /* Centra horizontalmente (opcional) */
}
.cintillo:hover{
	background-color: rgba(247, 183, 30, 0.85); 
}
/*PARA PC*/
@media (min-width: 768px) {
  .cintillo {
	font-size: 1.8rem; /* Para tablets y desktop */
	line-height: 1.1;
  }
}
/* PARA CELULARES */
@media (max-width: 768px) {
  .datoscel {
	margin-top: 10px;
	justify-content: center; /* Centra horizontalmente */
	text-align: center; /* Para contenido de texto */
	flex-direction: column; /* Opcional: si quieres apilar elementos */
  }
  .caption caption2{
	  top: 100px !important; /* Mueve el texto más abajo */
	}
	
}

.texto_ingles {
	font-size: 1.6rem;
	color: #c7c4c4;
}

.contenedor_productos {
	width: 95%;
	margin: 15px auto;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: white;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.contenedor_productos:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}
.titulo_cintillo {
	background-color: #ababab;
	color: #ffffff;
	min-height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	padding: 10px 15px;
	transition: background-color 0.4s ease;
	text-align: center;
	flex-shrink: 0;
}
.titulo_cintillo:hover {
	background-color: #f7c154;
}
.contenedor_imagen {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: #f8f9fa;
}
.foto_producto {
	max-width: 100%;
	height: auto;
	max-height: 180px;
	object-fit: contain;
	transition: transform 0.3s ease;
}
.contenedor_productos:hover .foto_producto {
	transform: scale(1.05);
}
.row.equal-height {
	display: flex;
	flex-wrap: wrap;
}
.col-producto {
	margin-bottom: 25px;
	display: flex;
}
@media (max-width: 767px) {
	.col-xs-6 {
		width: 50%;
		float: left;
	}
	.titulo_cintillo {
		font-size: 1.4rem;
		min-height: 60px;
		padding: 8px 10px;
	}
	.contenedor_imagen {
		padding: 15px;
	}
	.foto_producto {
		max-height: 150px;
	}
}
@media (max-width: 480px) {
	.titulo_cintillo {
		font-size: 1.2rem;
		min-height: 55px;
	}
	.foto_producto {
		max-height: 130px;
	}
}
.product-description {
	text-align: center;
	margin: 30px auto;
	max-width: 800px;
	color: #555;
	font-size: 1.1rem;
	line-height: 1.6;
}


table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}
th, td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}
th {
	background-color: #f7c154;
	
	/*color: white;*/
	color: #000000;
	position: sticky;
	top: 0;
	font-size: 1rem;
}
tr:hover {
	background-color: #f5f5f5;
}
td{
	font-size: .8rem;
}
.color-badge {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	margin-right: 5px;
}
.blanco { background-color: #FFFFFF; border: 1px solid #ccc; }
.gris { background-color: #808080; }
.negro { background-color: #000000; }


/* WHATSAPP */
 /* WhatsApp flotante */
.whatsapp-float {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	color: white;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
	background-color: #128C7E;
}

.whatsapp-float i {
	margin-top: 2px;
}

/* Animación de pulso */
@keyframes pulse-whatsapp {
	0% {
		box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
	}
	50% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
	}
	100% {
		box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
	}
}

/* Para móviles */
@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
		font-size: 24px;
	}
}
/* FIN WHATSAPP*/