/****************************/
/* TELEMAINTENANCES */
/****************************/

.telemaintenances_cc17 {
	margin: 0;
	padding: 80px 10%;
	background: linear-gradient(to bottom right, #ffffff, #e6f0fa);
	min-height: 80vh;
}

.telemaintenances_cc17 h1 {
	color: var(--cc17-blue);
	font-size: 3.5rem;
	margin-bottom: 20px;
	font-weight: 800;
	text-align: center;
}

.titre_telemaintenances_cc17 {
	font-size: 1.2rem;
	color: #666;
	max-width: 800px;
	margin: 0 auto 50px auto;
}

.grille_telemaintenances_cc17 {
	display: flex;
	flex-direction: column;
	gap: 60px;
	max-width: 1000px;
	margin: 0 auto;
}

.bloc_logiciel {
	background: white;
	padding: 50px;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
	text-align: center;
}

.grille_telemaintenances_cc17 h2 {
	color: var(--cc17-orange);
	font-size: 2rem;
	margin-bottom: 30px;
}

.cellule_telemaintenances_cc17 {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.lien_telemaintenance a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	background: #f8fafc;
	border-radius: 25px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.lien_telemaintenance img {
	width: 50px;
	height: 50px;
	transition: all 0.3s ease;
}

.lien_telemaintenance a:hover {
	background: white;
	border-color: var(--cc17-blue);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,61,133,0.1);
}

.lien_telemaintenance a:hover img {
	filter: brightness(0) saturate(100%) invert(18%) sepia(91%) saturate(2331%) hue-rotate(202deg) brightness(98%) contrast(106%);
}

.separation_horizontale {
	border: 0;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
	margin: 20px 0;
}

@media all and (max-width: 800px) {
	.telemaintenances_cc17 {
		padding: 40px 5%;
	}
	.telemaintenances_cc17 h1 {
		font-size: 2.5rem;
	}
	.bloc_logiciel {
		padding: 30px 20px;
	}
}