.depoimentos {
	margin: 32px 0;
	width: 100%;
}

.depoimentos
.container {
	gap: var(--lg-spacing);
}

.depoimentos
.header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: var(--md-spacing);
	width: 100%;
	max-width: none;

	@media screen and (min-width: 768px) {
		gap: var(--lg-spacing);
		max-width: 650px;
	}
}

/* .section-group {
	text-align: center;
	justify-items: center;
} */

.depoimentos-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sm-spacing);
	/* margin-top: var(--xxl-spacing); */
	@media screen and (min-width: 768px) {
		gap: var(--lg-spacing);
	}
}

.depoimento-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--md-spacing);
	border-radius: var(--lg-spacing);
	border: 2px solid #EFEFEF;
	padding: var(--lg-spacing);
	text-align: center;
	background-color: var(--white);
	box-shadow: 0 10px 24px -8px #ECECEC;
}

/* .depoimento-card .aspas {
	font-size: 28px;
	color: var(--primary-color);
	margin-bottom: var(--md-spacing);
} */

/* @font-face {
    font-family: 'Dosis';
    src: url('../fonts/Dosis/Dosis-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */

/* .depoimento-card h4 {
	font-family: 'Dosis', sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	color: #2F2F2F;
	margin-bottom: 4px;
} */

/* @font-face {
    font-family: 'REM';
    src: url('../fonts/REM/REM-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */

/* .depoimento-card p {
	font-family: 'REM', sans-serif;
	font-size: 16px;
	color: #757575;
	font-weight: 400;
	margin-bottom: 20px;
} */

/* .depoimento-card .funcao {
	font-family: 'REM', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #9999A3;
} */

/* Responsivo */
@media (max-width: 768px) {
	.depoimentos-grid {
		grid-template-columns: 1fr;
	}

	/* .depoimento-card h4 {
        font-size: 16px;
    }

    .depoimento-card p {
        font-size: 14px;
    }

    .depoimento-card .funcao {
        font-size: 14px;
    } */
}