:root {
	--font-header: "Alexandria", sans-serif;
	--font-body: "DM Serif Display", serif;
	--primary-dark-purple: #27153C;
	--primary-black: #231F20;
	--primary-vibrant-purple: #6638B6;
	--secondary-magenta: #C92FBF;
	--secondary-pink: #E31C79;
	--secondary-wine: #991E66;
	--text: #231F20;
	--background: #FFFFFF;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	vertical-align: baseline;
}

html {
	scroll-behavior: smooth;
}

body {
	font-size: 16px;
	font-style: normal;
	font-optical-sizing: auto;
	font-family: var(--font-body);
	background-color: var(--background) !important;
	overflow-x: hidden;
}



h1,
.header-1 {
	font-family: var(--font-header);
	font-weight: 400;
	/* Regular */
	font-size: 32px;
}

h2,
.header-2 {
	font-family: var(--font-header);
	font-weight: 400;
	font-size: 4rem;
	line-height: 4.8rem;
}

h3,
.header-3 {
	font-family: var(--font-header);
	font-weight: 400;
	font-size: 48px;
}

h4,
.header-4 {
	font-family: var(--font-header);
	font-weight: 400;
	font-size: 32px;
}

h5,
.header-5 {
	font-family: var(--font-header);
	font-weight: 400;
	font-size: 24px;
}

h6,
.header-6 {
	font-family: var(--font-header);
	font-weight: 400;
	font-size: 24px;
}

/* Subtitle */
.subtitle {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 18px;
}

/* Body (Corpo de texto) */
.body-medium-16 {
	font-family: var(--font-header);
	font-weight: 500;
	/* Medium */
	font-size: 16px;
}

.body-regular-16 {
	font-family: var(--font-header);
	font-weight: 400;
	font-size: 16px;
}

.body-normal-16 {
	font-family: var(--font-header);
	font-weight: 300;
	font-size: 1rem;
}


.body-medium-14 {
	font-family: var(--font-header);
	font-weight: 500;
	font-size: 14px;
}

.body-regular-14 {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 14px;
}

/* Caption */
.caption {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 12px;
}

.accordion {
	transition: all 0.3s ease-in-out;
}

.stroked_number {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--primary);
}


/* --- Estilo Base dos Botões --- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	font-family: sans-serif;
	font-weight: 500;
	transition: all 0.2s ease;
	border-radius: 4px;
	padding: 12px 24px;
	font-size: 16px;
	gap: 8px;
	/* Espaço para os ícones */
}

/* Tamanho Menor */
.btn-small {
	padding: 8px 16px;
	font-size: 14px;
}

/* --- 1. BOTÃO PRIMÁRIO (Roxo) --- */
.btn-primary {
	background-color: #6638B6;
	color: #FFFFFF;
}

.btn-primary:hover {
	background-color: #8C65C9;
}

.btn-primary:disabled {
	background-color: #808080;
	color: #C9C4CF;
	cursor: not-allowed;
}

/* --- 2. BOTÃO SECUNDÁRIO (Lilás Claro / Outline) --- */
.btn-secondary {
	background-color: #F2F0F7;
	/* Fundo bem claro */
	color: #6638B6;
	border: 1px solid #D9CBED;
}

.btn-secondary:hover {
	background-color: #6638B6;
	color: #FFFFFF;
}

.btn-secondary:disabled {
	background-color: #E0E0E0;
	color: #918F8F;
	border-color: #C8C7C7;
	cursor: not-allowed;
}

/* --- 3. BOTÃO LINK --- */
.btn-link {
	background-color: transparent;
	color: #231F20;
	/* Preto da paleta */
	padding-left: 0;
	padding-right: 0;
}

.btn-link:hover {
	color: #8C65C9;
	text-decoration: underline;
}

.btn-link:disabled {
	color: #C8C7C7;
	text-decoration: none;
	cursor: not-allowed;
}

/* Estilo para os ícones (simulados por texto/emoji) */
.icon {
	font-size: 1.1em;
}


.ui_container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 0px;
	width: 100%
}

.ui_inner_container {
	max-width: 1030px;
	margin: 0 auto;
	padding: 0 0px;
	width: 100%
}


.ui_link {
	background: var(--primary-vibrant-purple);
	font-family: var(--font-body);
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	color: #ffffff;
	width: fit-content;
	cursor: pointer;
	display: flex;
	transition: all 0.2s ease-in-out;
	padding: 15px 20px;
	justify-content: center;
	align-items: center;
	gap: 0.375rem;
}

.ui_link:hover {
	background: #8C65C9;
}

.ui_link:hover i {
	color: var(--primary);
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}

label {
	color: #282828;
	font-family: var(--font-header);
	font-size: 1rem;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4rem;
}

input,
select,
textarea {
	height: 56px;
	font-size: 16px !important;
	color: #5E5E5E;
	font-weight: 300 !important;
	padding: 16px 16px !important;
	border: 1px solid #C9C9C9;
	background: #FFF;
}

.select {
	padding-right: 2rem;
}

.textarea {
	height: 120px;
	resize: vertical;
}


.form-group span {
	color: var(--secondary);
	font-size: 14px;
	font-weight: 400;
}


.divider {
	width: 100%;
	height: 1px;
	background: #D7D9DE;
	margin: 40px 0;
}

.enable_all_styles ul{
	list-style: disc;
	list-style-position: inside;
}


@media (max-width: 1440px) {
	.ui_container{
		max-width: 1280px;
	}
}
@media (max-width: 1024px) {


	.ui_container,
	.ui_inner_container {
		padding: 0 20px;
	}

	.form-group {
		margin-bottom: 24px;
	}

	#ui_header.shrunk {
		border-radius: 0px;
	}

}

@media (max-width: 768px) {
	

}

