


.filtro_categorias a::after,
.boton, .redes a,
.pie .links a::after, 
.pie .informacion a::after, 
.seccion.foto_texto .imagen a ,
.seccion.foto_texto .titulo a::after,
.seccion.presentacion .texto {
	transition: all 0.3s ease-in-out;
}

.seccion.foto_texto .imagen img,
.seccion.presentacion .secundaria img,
.item_articulo .imagen img {
	transition: transform 0.6s ease;
}

.filtro_categorias a::after,
.seccion.foto_texto .titulo a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--color_rojo);
}

.filtro_categorias a::after{
	
	bottom: 0px;
	left: 10px;
	right: 10px;
	max-width: calc(100% - 20px);
}
.seccion.foto_texto .titulo a {
		position: relative;
		text-decoration: none;
		color: inherit;
		display: inline-block;
	}

	.pie .links a,
	.pie .informacion a{
		position: relative;
	}
	.pie .links a::after ,
	.pie .informacion a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--color_blanco);
    
}
.filtro_categorias a{
	position: relative;
	display: inline-block;
}






.articulo_ficha .fotos .imagen {
    position: relative;
    overflow: hidden;
}


.articulo_ficha .fotos .imagen img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .6s ease;
}


.articulo_ficha .fotos .imagen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--rgba_shadow);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}


.articulo_ficha .fotos .foto span.zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    
	width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--rgba_shadow);

    transform: translate(-50%, -50%) scale(.6);
    opacity: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
    pointer-events: none;
    transition: opacity .3s ease, transform .4s ease;
}


.articulo_ficha .fotos .foto span.zoom:not(.play) {
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2a8 8 0 015.292 13.708l4.828 4.828-1.414 1.414-4.828-4.828A8 8 0 1110 2zm0 2a6 6 0 100 12 6 6 0 000-12z"/></svg>');
}


.articulo_ficha .fotos .foto span.zoom.play {
    
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 5v14l11-7z"/></svg>');
}










@media (hover:hover) and (min-width:1025px) {

	.cabecera .menu a:hover::after {
		width: 100%;
	}

	.redes a:hover,
	.boton:hover {
		background-color: var(--color_negro);
		transform: translateY(-2px);
		box-shadow: 0 5px 15px var(--rgba_shadow);
	}







	.item_articulo .imagen:hover img {
		transform: scale(1.05);
	}

	.checks .check label a:hover,
	.articulo_ficha .navegacion .item_navegacion .txt .tit:hover,
	.item_articulo .titulo a:hover {
		color: var(--color_rojo);
	}




	.seccion.presentacion:hover .secundaria:first-child img {
		transform: translateX(-10px);
	}

	.seccion.presentacion:hover .secundaria:last-child img {
		transform: translateX(10px);
	}



	.seccion.presentacion:hover .texto {
		transform: scale(1.02);
	}







	
	
	.seccion.foto_texto .imagen:hover img {
		transform: scale(1.08);
	}

	

	

	

	.filtro_categorias a:not(.sel):hover::after,
	.seccion.foto_texto .titulo a:hover::after {
		width: 100%;
	}




	

.pie .links a:hover::after ,
.pie .informacion a:hover::after {
    width: 100%;
}
.articulo_ficha .navegacion .item_navegacion .imagen:hover img,
.articulo_ficha .navegacion .item_navegacion .imagen:hover{
	border-radius: 100%;
}





.articulo_ficha .fotos .imagen:hover img {
    transform: scale(1.08);
}

.articulo_ficha .fotos .imagen:hover::before {
    opacity: 1;
}

.articulo_ficha .fotos .imagen:hover span.zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}









}