.card-header{
	cursor: pointer;
}

:root {
	--dark: #14556b;
	--light: #348fac;
	--light-grey: #eef3f9;
	--almost-white: #fefefe;
	--dark-grey: #888;
	--break: #07e9de;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

html {
	scroll-behavior: smooth;
}

.sessao-principal {
	background-image: url("https://www.unifeso.edu.br/confeso/assets/images/2025/bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	background-color: var(--light);
	height: 100vh;
	width: auto;
	position: relative;
}

.sessao-principal img {
	max-width: 100%;
	height: auto;
}

.waves {
	position: absolute;
	width: 100%;
	height: 15vh;
	margin-bottom: -7px;
	/*Fix for safari gap*/
	min-height: 100px;
	max-height: 150px;
	bottom: 0;
}

.effect>use {
	animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.effect>use:nth-child(1) {
	animation-delay: -2s;
	animation-duration: 7s;
}

.effect>use:nth-child(2) {
	animation-delay: -3s;
	animation-duration: 10s;
}

.effect>use:nth-child(3) {
	animation-delay: -4s;
	animation-duration: 13s;
}

.effect>use:nth-child(4) {
	animation-delay: -5s;
	animation-duration: 20s;
}

@keyframes move-forever {
	0% {
		transform: translate3d(-90px, 0, 0);
	}

	100% {
		transform: translate3d(85px, 0, 0);
	}
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
	.waves {
		position: absolute;
		width: 100%;
		height: 15vh;
		margin-bottom: -7px;
		/*Fix for safari gap*/
		min-height: 100px;
		max-height: 150px;
		bottom: 0;
	}

	.sessao-principal img {
		max-width: 90%;
		height: auto;
	}
}