@charset "utf-8";
/* CSS Document */

/*
nombre: style-certificaciones_giratorias
versión: V.01-25
fecha: 23-07-2025
*/

*{
	margin:0;
	padding:0;
	border:0;
	text-decoration:none;
	box-sizing: border-box;
}


/* =======================
			certificaciones
======================== */

.certificaciones {
	width: 100%;
	margin: auto;
	margin-top: 4rem;
	margin-bottom: 4rem;
	max-width: 1000px;
	min-width: 310px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 210px;
	box-sizing: border-box;
}

.conte_lider {
	position: relative;
	width: 100%;
	max-width: 180px;
	height: 110px;
	transform-style: preserve-3d;
	animation: animate 10s linear infinite;
}

@keyframes animate {
	0%{
		transform: perspective(800px) rotateY(0deg);
	}
	100%{
		transform: perspective(800px) rotateY(360deg);
	}
}

.conte_lider span {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	background: rgba(255,255,255,0.85);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform-origin: center;
	transform-style: preserve-3d;
	transform: rotateY(calc(var(--i) * 120deg)) translateZ(250px);
	-webkit-box-reflect: below -10px linear-gradient(transparent,transparent,#0002);
	border-radius: 10px;
}

.conte_lider span img {
	width: 100%;
	height: auto;
	max-height: 105px;
	padding: 0.5rem;
}

@media screen and (max-width: 540px) {
	.conte_lider span {
		transform: rotateY(calc(var(--i) * 120deg)) translateZ(150px);
	}
}

@media screen and (max-width: 414px) {
	.certificaciones { margin: 2rem 0; }
}

@media screen and (max-width: 320px) {
	.conte_lider span {
		transform: rotateY(calc(var(--i) * 120deg)) translateZ(120px);
	}
	
	.conte_lider span img { max-height: 80px; }
}

/**/