.tchile-acc {
	display: flex;
	flex-direction: column;
	gap: 12px;
	/* separación entre items */
}

.tchile-acc-item {
	border: 2px solid #468728;
	/* borde verde */
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}


.tchile-acc-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 16px;
	background: #fff;
	border: none;
	cursor: pointer;
	font-size: 18px;
}


.tchile-acc-header  span{
	font-size: 18px;
	font-weight: bold;
	color: #468728;
}

.tchile-acc-header:hover {
	background-color: #f1f8e9;

}

.tchile-acc-header.active span,
.tchile-acc-header:hover span{
	color: var(--e-global-color-secondary);
}

.tchile-acc-icon {
	transition: transform 0.3s ease;
	font-size: 18px;
	color: #468728;
}

.tchile-acc-header.active .tchile-acc-icon {
	transform: rotate(-90deg);
	/* flecha hacia abajo */
}

.tchile-acc-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 16px;
	background: #fff;
}

.tchile-acc-content p {
	margin: 12px 0;
}