/* =============================================
   Terms of Use - Page Styles
   ============================================= */

.terms-of-use-section {
	padding-top: 80px;
	padding-bottom: 80px;
}

/* Card principal */
.terms-of-use-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	padding: 50px 60px;
	backdrop-filter: blur(6px);
}

/* Intro */
.terms-intro {
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terms-intro p {
	color: var(--body-color);
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 10px;
}

.terms-update-date {
	display: inline-block;
	background: rgba(98, 64, 207, 0.15);
	color: #a288f5 !important;
	font-size: 13px !important;
	font-weight: 500;
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 20px !important;
	letter-spacing: 0.03em;
}

.terms-update-date i {
	margin-right: 6px;
}

/* Seções */
.terms-section {
	margin-bottom: 35px;
	padding-bottom: 35px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terms-section:last-of-type {
	border-bottom: none;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

/* Header da seção */
.terms-section-header {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 22px;
}

.terms-section-number {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--theme-color), rgba(98, 64, 207, 0.6));
	color: #fff;
	font-family: var(--title-font);
	font-size: 20px;
	font-weight: 700;
	border-radius: 12px;
	letter-spacing: 0.05em;
}

.terms-section-title {
	font-family: var(--title-font);
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Corpo da seção */
.terms-section-body p {
	color: var(--body-color);
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 12px;
}

.terms-section-body p:last-child {
	margin-bottom: 0;
}

/* Subtítulos */
.terms-subsection-title {
	font-family: var(--title-font);
	font-size: 19px;
	font-weight: 600;
	color: #fff;
	margin-top: 22px;
	margin-bottom: 10px;
	padding-left: 14px;
	border-left: 3px solid var(--theme-color);
}

/* Listas */
.terms-list {
	list-style: none;
	padding: 0;
	margin: 14px 0;
}

.terms-list li {
	position: relative;
	padding-left: 22px;
	color: var(--body-color);
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 8px;
}

.terms-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--theme-color);
	opacity: 0.7;
}

/* Lista com ícones */
.terms-list-icons li {
	padding-left: 34px;
}

.terms-list-icons li::before {
	display: none;
}

.terms-list-icons li i {
	position: absolute;
	left: 0;
	top: 4px;
	color: var(--theme-color);
	font-size: 16px;
	opacity: 0.85;
}

/* Lista com checks */
.terms-list-check li::before {
	content: '\f00c';
	font-family: var(--icon-font);
	font-weight: 900;
	font-size: 10px;
	width: auto;
	height: auto;
	border-radius: 0;
	background: none;
	color: var(--theme-color);
	opacity: 1;
	top: 4px;
}

/* Lista de legislação */
.terms-list-law li {
	padding-left: 30px;
}

.terms-list-law li::before {
	content: '\f0e3';
	font-family: var(--icon-font);
	font-weight: 900;
	font-size: 12px;
	width: auto;
	height: auto;
	border-radius: 0;
	background: none;
	color: var(--theme-color);
	opacity: 0.8;
	top: 4px;
}

/* Footer notice */
.terms-footer-notice {
	margin-top: 30px;
	padding: 28px 30px;
	background: rgba(98, 64, 207, 0.08);
	border: 1px solid rgba(98, 64, 207, 0.18);
	border-radius: 12px;
	text-align: center;
}

.terms-footer-notice p {
	color: var(--body-color);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 8px;
}

.terms-footer-notice p:last-child {
	margin-bottom: 0;
}

.terms-brand {
	color: #fff !important;
	font-family: var(--title-font);
	font-size: 18px !important;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* =============================================
   Responsivo
   ============================================= */

/* Tablet */
@media (max-width: 991px) {
	.terms-of-use-card {
		padding: 40px 35px;
	}

	.terms-section-title {
		font-size: 22px;
	}

	.terms-section-number {
		min-width: 42px;
		height: 42px;
		font-size: 18px;
	}
}

/* Mobile */
@media (max-width: 575px) {
	.terms-of-use-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.terms-of-use-card {
		padding: 28px 20px;
		border-radius: 12px;
	}

	.terms-section-header {
		gap: 12px;
		margin-bottom: 16px;
	}

	.terms-section-number {
		min-width: 36px;
		height: 36px;
		font-size: 15px;
		border-radius: 8px;
	}

	.terms-section-title {
		font-size: 19px;
	}

	.terms-subsection-title {
		font-size: 17px;
	}

	.terms-intro p,
	.terms-section-body p,
	.terms-list li,
	.terms-footer-notice p {
		font-size: 14px;
	}

	.terms-footer-notice {
		padding: 20px 18px;
	}
}

/* =============================================
   Rules Page - Alerts & Table
   ============================================= */

/* Alertas (Tolerância Zero, Avisos da Staff) */
.rules-alert {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 22px;
	border-radius: 10px;
	margin-top: 18px;
	font-size: 15px;
	line-height: 1.7;
	color: #fff;
}

.rules-alert i {
	font-size: 20px;
	margin-top: 2px;
	flex-shrink: 0;
}

.rules-alert-danger {
	background: rgba(242, 0, 58, 0.12);
	border: 1px solid rgba(242, 0, 58, 0.3);
}

.rules-alert-danger i {
	color: #F2003A;
}

.rules-alert-warning {
	background: rgba(255, 190, 24, 0.1);
	border: 1px solid rgba(255, 190, 24, 0.25);
}

.rules-alert-warning i {
	color: var(--theme-color2);
}

/* Tabela de Punições */
.rules-table-wrapper {
	margin: 18px 0;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.rules-table {
	width: 100%;
	border-collapse: collapse;
}

.rules-table thead th {
	background: rgba(98, 64, 207, 0.2);
	color: #fff;
	font-family: var(--title-font);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 14px 20px;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rules-table tbody td {
	padding: 12px 20px;
	color: var(--body-color);
	font-size: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.rules-table tbody tr:last-child td {
	border-bottom: none;
}

.rules-table tbody tr:hover {
	background: rgba(255, 255, 255, 0.02);
}

.rules-table tbody tr:last-child td {
	color: #F2003A;
	font-weight: 600;
}

/* Responsivo - Tabela */
@media (max-width: 575px) {
	.rules-alert {
		padding: 14px 16px;
		gap: 10px;
		font-size: 14px;
	}

	.rules-alert i {
		font-size: 18px;
	}

	.rules-table thead th,
	.rules-table tbody td {
		padding: 10px 14px;
		font-size: 14px;
	}
}
