/* Swiper base */
.swiper-containerid-w-2525-20250831055810-a-168-20250411111053 {
    width: 100%;
    padding-bottom: 50px;
	overflow: hidden;
}

.swiper-wrapper_2id-w-2525-20250831055810-a-168-20250411111053{
	height: auto;
}

/*
.swiper-slide {
    display: flex;
    justify-content: center;
    padding: 10px;
}
*/

.swiper-slide_2id-w-2525-20250831055810-a-168-20250411111053 {
    height: auto !important;
	display: flex;
	justify-content: center;
}

.botonesid-w-2525-20250831055810-a-168-20250411111053{
	z-index: 10;
    justify-content: center;
    display: flex;
    bottom: 72px;
	position: relative;
}

.botonesid-w-2525-20250831055810-a-168-20250411111053 
.swiper-button-next::after,
.swiper-button-prev::after {
    content: none;
}

.botonesid-w-2525-20250831055810-a-168-20250411111053 #botonIzq{
	position: relative;
    left: -15%;
}

.botonesid-w-2525-20250831055810-a-168-20250411111053 #botonDer{
	position: relative;
    left: 15%;
}

.botonesid-w-2525-20250831055810-a-168-20250411111053 #botonDer_2 {
	position: absolute;
	top: -1600px;
	right: -75px;
	z-index: 10;
	cursor: pointer;
	color: #ccc;
}


.swiper-paginationid-w-2525-20250831055810-a-168-20250411111053 {
	font-size: 1.5rem;
    text-align: center;
    margin-top: 50px;
    color: #333;
	position: relative;
}

.swiper-pagination-current{
	font-family: 'Mont-Bold';
}

.swiper-pagination-total{
	font-family: 'Mont-Regular';
}

/* Contenedor general */
.main-containerid-w-2525-20250831055810-a-168-20250411111053 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
	flex-direction: row-reverse;
}

/* Columna izquierda */
.header-leftid-w-2525-20250831055810-a-168-20250411111053 {
    width: 70%;
    display: flex;
    flex-direction: column;
}

/* Filtros */
.top-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.filter-btn {
	font-size: 16px;
	font-family: 'Mont-Regular';
    padding: 10px 12px;
    background-color: transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.filter-btn.active,
.filter-btn:hover {
    color: white;
}

#category-menuid-w-2525-20250831055810-a-168-20250411111053 {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

#category-menuid-w-2525-20250831055810-a-168-20250411111053 li {
	font-family: 'Mont-Regular';
    font-size: 16px;
    margin-bottom: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
	color: black;
}

.category-listid-w-2525-20250831055810-a-168-20250411111053 li {
    display: flex;
    align-items: center; /* Alinea verticalmente el cuadrado y el texto */
    gap: 10px; /* Espacio entre cuadrado y texto */
    padding: 0px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.arrow-indicator {
	
}


/* Columna derecha */
.header-rightid-w-2525-20250831055810-a-168-20250411111053 {
    width: 30%;
    display: flex;
    flex-direction: column;
}

/* Tarjetas */
.card-linkid-w-2525-20250831055810-a-168-20250411111053 {
    display: block;
    text-decoration: none;
    width: 100%;
}

.cardid-w-2525-20250831055810-a-168-20250411111053 {
    background: #fff;
    border-radius: 10px;
	padding: 15px;
    border: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 490px;
}


.card-imageid-w-2525-20250831055810-a-168-20250411111053 {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-imageid-w-2525-20250831055810-a-168-20250411111053 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
	border-radius: 10px 10px 10px 40px;
}

.card:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-fechaid-w-2525-20250831055810-a-168-20250411111053{
	font-family: 'Mont-Bold';
	border-bottom: 2px solid;
	font-size: 1rem;
	padding-top: 25px;
    padding-bottom: 5px;
}

.card-infoid-w-2525-20250831055810-a-168-20250411111053 {
    padding: 15px 0px;
    display: flex;
    flex-direction: column;
    color: black;
}

.card-infoid-w-2525-20250831055810-a-168-20250411111053 .titulo {
    font-size: 1rem;
	line-height: 1.2;
	font-family: 'Mont-Regular';
    color: black;
	
	display: -webkit-box;
    -webkit-line-clamp: 5; /* Límite de líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-infoid-w-2525-20250831055810-a-168-20250411111053 .descripcion {
    margin-top: 15px;
}

.card-infoid-w-2525-20250831055810-a-168-20250411111053 .descripcion p {
    font-size: 0.8rem;
    margin-bottom: 5px;
	font-family: 'Mont-Regular';
	color: #6c757d;
	
	display: -webkit-box;
    -webkit-line-clamp: 6; /* Límite de líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-infoid-w-2525-20250831055810-a-168-20250411111053 .descripcion img {
    width: 22px;
    height: 20px;
    flex-shrink: 0;
	filter: invert(100%) brightness(2);
}

.card-infoid-w-2525-20250831055810-a-168-20250411111053 .descripcion strong {
    font-weight: bold;
	font-family: 'Mont-Bold';
}

.card-enlaceid-w-2525-20250831055810-a-168-20250411111053 {
    display: flex;
    color: black;
}

.card-enlaceid-w-2525-20250831055810-a-168-20250411111053 .e-col_1 strong {
	font-family: 'Mont-Bold';
}

.card-enlaceid-w-2525-20250831055810-a-168-20250411111053 .e-col_1 {
	margin-right: 50px;
	font-family: 'Mont-Regular';
}

.card-enlaceid-w-2525-20250831055810-a-168-20250411111053 .e-col_1 button {
    border-radius: 5px;
}

.card-enlaceid-w-2525-20250831055810-a-168-20250411111053 .e-col_2 img {
    width: 30px;
}

/* Responsivo */
/* SM */
@media (max-width: 576px) {
	.botonesid-w-2525-20250831055810-a-168-20250411111053 #botonIzq{
		left: -30%;
	}

	.botonesid-w-2525-20250831055810-a-168-20250411111053 #botonDer{
		left: 30%;
	}
	
	.card-infoid-w-2525-20250831055810-a-168-20250411111053 .titulo{
		line-height: 1.2;
    	font-size: 1.5rem;
	}
	
	.card-infoid-w-2525-20250831055810-a-168-20250411111053 .descripcion p {
		font-size: 1.1rem;
	}
	
	.card-enlaceid-w-2525-20250831055810-a-168-20250411111053 .e-col_1 {
		font-size: 1.1rem;
	}
}

/* MD */
@media (max-width: 768px) {
    .main-containerid-w-2525-20250831055810-a-168-20250411111053 {
        flex-direction: column;
    }
	
	.top-filters {
		flex-direction: column;
	}
	
    .header-leftid-w-2525-20250831055810-a-168-20250411111053,
    .header-rightid-w-2525-20250831055810-a-168-20250411111053 {
        width: 100%;
    }
	
	.header-rightid-w-2525-20250831055810-a-168-20250411111053{
		padding: 0px 20px;
	}

    .card-linkid-w-2525-20250831055810-a-168-20250411111053 {
    }
	
	.swiper-containerid-w-2525-20250831055810-a-168-20250411111053 {
	}
	
	.cardid-w-2525-20250831055810-a-168-20250411111053{
		min-height: 510px;
	}
	
	/*
	.card-info .titulo{
		line-height: 1.2;
    	font-size: 1.5rem;
	}
	
	.card-info .descripcion p {
		font-size: 1.1rem;
	}
	
	.card-enlace .e-col_1 {
		font-size: 1.1rem;
	}

*/
}

/* LG */
@media (min-width: 992px) {
	.header-leftid-w-2525-20250831055810-a-168-20250411111053{
		width: 60%;
	}
    .header-rightid-w-2525-20250831055810-a-168-20250411111053 {
        width: 40%;
    }	
}

/* XL */
@media (min-width: 1200px) {
	.header-leftid-w-2525-20250831055810-a-168-20250411111053{
		width: 70%;
	}
    .header-rightid-w-2525-20250831055810-a-168-20250411111053 {
        width: 30%;
    }
	
	.cardid-w-2525-20250831055810-a-168-20250411111053{
		min-height: 510px;
	}
	
	.botonesid-w-2525-20250831055810-a-168-20250411111053 #botonIzq{
		left: -10%;
	}

	.botonesid-w-2525-20250831055810-a-168-20250411111053 #botonDer{
		left: 10%;
	}
}

/* XXL */
@media (min-width: 1400px) {
	.header-leftid-w-2525-20250831055810-a-168-20250411111053{
		width: 70%;
	}
    .header-rightid-w-2525-20250831055810-a-168-20250411111053 {
        width: 30%;
    }
}