/* 
.faq-title span {
background-image: linear-gradient(to bottom, transparent 0%, transparent 60%, #fd0 61%, #fd0 82%, transparent 0%);
background-repeat: no-repeat;
background-position: 0vw;
}
*/
.accordion-container {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.accordion-item {
	display: block;
	border-radius: 16px;
	border: none;
	padding: 0;
	background-color: #fff;
	width: 100%;
	min-width: 280px;
}

.accordion-item:first-of-type {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

.accordion-item:last-of-type {
	border-bottom-right-radius: 16px;
	border-bottom-left-radius: 16px;
}

.accordion-header {
	display: flex;
	align-items: center;
	padding: 24px;
	border-radius: 16px;
	cursor: pointer;
	transition: border-radius 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	justify-content: space-between
}

.accordion-header.expanded {
	border-radius: 16px 16px 0 0;
}

.header-content {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 1;
}

.icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
}

.icon svg {
	width: 100%;
	height: 100%;
}

.accordion-header .title {
	font-family: Montserrat;
	font-size: 16px;
	line-height: 20px;
	font-style: normal;
	font-weight: 700;
	flex: 1;
	letter-spacing: 0.32px;
	color: var(--grey-900, #212121);
	display: flex;
	align-items: center;
	gap: 24px;
}

.accordion-header .title img, .accordion-header .title svg {
	width: 100%;
	height: 100%;
}

.controls {
	display: flex;
	justify-content: center;
	align-items: center;
}

.arrow {
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center;
	transform: rotate(0deg);
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.divider {
	width: 2px;
	height: 58px;
	background: #d6d6d6;
	position: relative;
	margin-right: 12px;
}

.arrow.rotated {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 0 0 16px 16px;
}

.accordion-content-inner {
	padding: 0;
	color: #1a1b1a;
	color: var(--grey-900, #1a1b1a);
	font-family: Montserrat;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.313rem;
	padding: 0 24px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.accordion-content-inner p,
.accordion-content-inner span {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.313rem;
	color: var(--grey-900, #1a1b1a);
}

.box-faq,
.list-faq {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.list-dont-style {
	padding-left: 32px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.title-box-faq {
	font-family: Montserrat;
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.5rem;
}

.text-box-faq {
	font-family: Montserrat;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.25rem;
}

.text-box-faq strong {
	font-weight: 600;
}

.number-faq {
	width: 16px;
	display: inline-block;
	font-weight: 600;
}

.load-more {
	font-family: Montserrat;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.32px;
	font-weight: 600;
	color: var(--Primria-Preto, #171717);

	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 48px;
	background-color: #fd0;
	border-radius: 192px;
	gap: 9px;
	padding: 2px;
	position: relative;
	margin: 48px auto 0;
	border: none !important;
}

.load-more::after {
	position: absolute;
	content: "";
	width: 44px;
	height: 44px;
	background-color: #fff;
	z-index: 1;
	left: 2px;
	top: 2px;
	transition: width 0.3s ease-in-out;
	border-radius: 192px;
}

.span-cta-faq {
	background-color: #fff;
	border-radius: 100%;
	width: 44px;
	height: 44px;
	padding: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.span-cta-faq.reverse {
	transform: rotate(180deg);
}

.text-label-faq {
	padding-right: 24px;
	z-index: 2;
}

.load-more:hover::after {
	width: calc(100% - 4px);
	transition: width 0.3s ease-in-out;
}

.container-box-list {
	display: flex;
	flex-direction: column;
}

.container-box-list .list-dont-style {
	width: 50%;
}

.info {
	font-family: Montserrat;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px;
}

/* End Section FAQ  */

@media screen and (min-width: 600px) {
	/* Section FAQ */

	/* 	
	.faq-title span {
	background-image: linear-gradient(to bottom, transparent 0%, transparent 66%, #fd0 67%, #fd0 90%, transparent 0%);
	background-repeat: no-repeat;
	background-position: 0vw;
} */

	.accordion-item {
		display: block;
		background-color: #fff;
		border-radius: 16px;
		border: none;
		width: 100%;
		max-width: none;
	}

	.accordion-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 24px;
		padding: 24px 32px;
		cursor: pointer;
		border-radius: 16px;
		background: #fff;
		transition: border-radius 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.accordion-header.expanded {
		border-radius: 16px 16px 0 0;
	}

	.header-content {
		display: flex;
		align-items: center;
		gap: 24px;
		flex: 1;
	}

	.icon {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		width: 40px;
		height: 40px;
	}

	.icon svg {
		width: 100%;
		height: 100%;
	}

	.accordion-header .title {
		color: var(--grey-900, #1a1b1a);
		font-family: Montserrat;
		font-style: normal;
		font-weight: 600;
		font-size: 1rem;
		line-height: 1.313rem;
		white-space: nowrap;
	}

	.controls {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.divider {
		width: 2px;
		height: 40px;
		background: #d6d6d6;
		position: relative;
		margin-right: 12px;
	}

	.arrow {
		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		transform-origin: center;
		transform: rotate(0deg);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.accordion-content {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		border-radius: 0 0 16px 16px;
	}

	.accordion-content-inner {
		padding: 0 32px 24px 32px;
		color: var(--grey-900, #1a1b1a);
		font-family: Montserrat;
		font-size: 1rem;
		font-style: normal;
		font-weight: 400;
		line-height: 1.25rem;
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.load-more {
		font-family: Montserrat;
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.32px;
		font-weight: 600;
		color: var(--Primria-Preto, #171717);
		width: fit-content;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		height: 48px;
		background-color: #fd0;
		border-radius: 192px;
		gap: 9px;
		padding: 2px;
		position: relative;
		margin: 48px auto 0;
	}

	.load-more::after {
		position: absolute;
		content: "";
		width: 44px;
		height: 44px;
		background-color: #fff;
		z-index: 1;
		left: 2px;
		top: 2px;
		transition: width 0.3s ease-in-out;
		border-radius: 192px;
	}

	.span-cta-faq {
		background-color: #fff;
		border-radius: 100%;
		width: 44px;
		height: 44px;
		padding: 6px;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		z-index: 2;
	}

	.text-label-faq {
		padding-right: 24px;
		z-index: 2;
	}

	.load-more:hover::after {
		width: calc(100% - 4px);
		transition: width 0.3s ease-in-out;
	}

	.box-faq,
	.list-faq {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.container-box-list {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
	}

	.container-box-list .list-dont-style {
		width: 50%;
	}

	.list-dont-style {
		padding-left: 64px;
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.container-box-list .list-dont-style:nth-child(n + 2) {
		padding: 0;
	}

	.title-box-faq {
		font-family: Montserrat;
		font-weight: 600;
		font-size: 1.125rem;
		line-height: 1.5rem;
	}

	.text-box-faq {
		font-family: Montserrat;
		font-weight: 400;
		font-size: 1rem;
		line-height: 1.25rem;
	}

	.text-box-faq strong {
		font-weight: 600;
	}

	.text-box-faq i {
		font-style: italic;
		font-weight: 500;
	}

	.number-faq {
		width: 16px;
		display: inline-block;
		font-weight: 600;
	}

	.accordion-item:last-of-type {
		border-radius: 16px;
	}

	/* End Section FAQ 	 */
}
