:root{
	--fondo: #f5f5f5;
	--table: #f4f1ed;
}



/* Header */
.header{
	background-color: var(--fondo);

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;

	width: 100%;
	height: 50vh;

	& div{
		font-size: 2.5rem;
		text-align: center;

		margin: 0 auto;

		& strong{
			font-size: 2.9rem;
		}
	}

	& img{
		width: auto;
		height: 100%;
	}
}

/* Header */


/* Table */
.content{
	max-width: 1500px;
	width: 100%;
	margin: 0 auto;
}
.table-bg{
	padding: 5rem 0;
	background-color: var(--table);
}

table{
	border-collapse: separate;
    border-spacing: 20px 0px;
}

table thead tr th img{
	width: 100%;
	height: auto;
	object-fit: contain;
	margin-bottom: 20px;
}

table tbody tr td{
	padding: 1rem;
	margin: 1rem;
	text-align: center;

	position: relative;
	background-color: #fff;

	& strong{
		font-size: 1.5rem;
		display: block;
		text-align: center;
		width: 100%;
	}
}

table tbody tr td:has(*)::after{
	content: '';
    display: block;

	width: 80%;
    height: 1px;

    position: absolute;
    bottom: 5px;
    left: 10%;

    background-color: black;
}

table tbody tr:last-child td::after{
	display: none;
}

table tbody tr td:has(strong){
	background-color: transparent;
}

table tbody tr td:nth-child(1){
	width: 15rem;
	border: none;

	border-radius: 20px;

	margin: 5px auto;
    display: inline-block;

	& img{
		display: block;
		margin: 0 auto 1rem;
	}
}

table tbody tr td:nth-child(1)::after{
	content: '';
	display: block;
	width: 76%;
	height: 2px;

	position: absolute;
	bottom: 0;

	background-color: transparent;
}

table tbody tr:nth-child(1) td:nth-child(n+2){
	border-top: 2px solid black;
	border-radius: 10px 10px 0 0;
}

table tbody tr:last-child td{
	border-bottom: 2px solid black;
}

table tbody tr:last-child td:nth-child(n+2){
	border-radius: 0 0 10px 10px;
}

table tbody tr:last-child td:nth-child(1){
	border-bottom: none;
}


table tbody tr td{
	border-left: 2px solid black;
	border-right: 2px solid black;
}

table tbody tr td img{
	width: 30px;
	height: auto;
	object-fit: contain;

}
/* Table */

.compatibilidad img{
	width: 10rem;
	margin: 0 auto;
	display: block;

	object-fit: contain;
}


.reconocimientos img{
	margin: 0 auto;
	display: block;

	object-fit: contain;
}



.reconocimientos img#av_test{
	width: 6rem;
}
.reconocimientos img#pc_editors_choice{
	width: 100%;
}
.reconocimientos img#se_labs{
	width: 13rem;
}
