.faqs-block {
	width: 100%;
	margin: 40px auto;
	font-family: inherit;
}

.faqs-titulo {
	text-align: center;
	margin-bottom: 30px;
	color: #333;
	font-size: 28px;
}

.faqs-container {
	border-radius: 8px;
	overflow: hidden;
}

.faq-item {
	border-bottom: 1px solid #eaeaea;
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	position: relative;
	width: 100%;
	background: #ffffff;
	padding: 20px 60px 20px 20px;
	text-align: left;
	border: none;
	color: #333;
	cursor: pointer;
	transition: background-color 0.3s;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: "PlutoRegular", sans-serif;
	font-size: 21px;
	font-weight: 400;
	line-height: 1.4em;
	letter-spacing: -0.76px;
}

.faq-answer p {
	font-size: 17px !important;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: -0.34px;
}

.faq-question:hover {
	background-color: #f8f9fa;
}

.faq-icon {
	position: absolute;
	right: 20px;
	width: 16px;
	height: 16px;
}

.faq-icon:before,
.faq-icon:after {
	content: '';
	position: absolute;
	background-color: #333;
	transition: transform 0.3s ease;
}

.faq-icon:before {
	width: 16px;
	height: 2px;
	top: 7px;
}

.faq-icon:after {
	width: 2px;
	height: 16px;
	left: 7px;
	top: 0;
}

.faq-question[aria-expanded="true"] .faq-icon:after {
	transform: rotate(90deg);
}

.faq-answer {
	background: #ffffff;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
	padding: 20px;
	max-height: 1000px; /* Valor lo suficientemente alto para mostrar todo el contenido */
}

/* Estilos responsivos */
@media (max-width: 768px) {
	.faqs-block {
		padding: 0 15px;
	}
	
	.faq-question {
		font-size: 15px;
		padding: 15px 50px 15px 15px;
	}
	
	.faq-answer.active {
		padding: 15px;
	}
}