/* =============================================
   Legal Pages Common Styles
   (politica-privacidade.html, termos-condicoes.html, cookies.html)
   ============================================= */

/* CSS Custom Properties - inherited from bootstrap.css */
:root {
	--primary-color: #00c9db;
	--secondary-color: #201849;
	--text-color: #f1f1f8;
	--botao-cor-fundo: #00c9db;
	--botao-cor-texto: #fff;
	--fas-cor: #00c9db;
	--cor-fundo-nav: #201849;
	--cor-fundo-dropdown: #4633af;
	--cor-fundo-locais: #262431;
	--cor-fundo-wrapper: #2f2c3d;
	--seccao-mobile-fundo: #322f41;
	--cor-texto: #ffffff;
	--cor-texto-js: #00c9db;
	--font-principal: "Montserrat", sans-serif;
	--font-titulo: "Open Sans", sans-serif;
	--cor-fundo-price: #dbdbe4;
	--cor-texto-price: rgb(0, 0, 0);
}

/* Page Title Style */
.titulo {
	color: var(--cor-texto);
	font-size: 3.5rem;
	text-align: center;
	padding-top: 35px;
	white-space: nowrap;
	word-break: break-word;
}

/* Main Content Container */
.conteudoGeral {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 50px 15px 5rem;
}

/* Extra Pages - Header */
.ex-header {
	padding-top: 10rem;
	padding-bottom: 4rem;
	background: linear-gradient(to bottom right, #2c1a7e, #5557db);
	text-align: center;
}

.ex-header h1 {
	color: var(--cor-texto);
	font-size: 3.5rem;
	text-align: center;
	padding-top: 35px;
	white-space: nowrap;
	word-break: break-word;
}

/* Extra Pages - Basic Section with Breadcrumbs */
.ex-basic-1 {
	padding-top: 2rem;
	padding-bottom: 0.875rem;
	background-color: #221f31;
	color: var(--botao-cor-texto);
}

.ex-basic-1 .fa {
	color: var(--botao-cor-texto);
}

.ex-basic-1 .breadcrumbs {
	margin-bottom: 1.125rem;
}

.ex-basic-1 .breadcrumbs .fa {
	margin-right: 0.5rem;
	margin-left: 0.625rem;
}

/* Breadcrumbs Styling */
.breadcrumbs {
	font-size: 1rem;
	color: var(--cor-texto);
}

.breadcrumbs a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumbs a:hover {
	color: var(--cor-texto);
	text-decoration: underline;
}

/* Button Styles */
.button-price {
	background-color: var(--botao-cor-fundo);
	color: var(--botao-cor-texto);
	border: none;
	border-radius: 5px;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-price:hover {
	background-color: var(--cor-fundo-dropdown);
	transform: scale(1.05);
}

.button-price.disabled {
	background-color: var(--cor-fundo-wrapper);
	cursor: not-allowed;
	opacity: 0.5;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
	.titulo {
		font-size: clamp(1.6rem, 4vw, 2rem);
		padding-top: 24px;
	}

	.conteudoGeral {
		padding: 40px 15px 3rem;
	}

	.conteudoGeral h2 {
		font-size: 1.75rem;
	}

	.conteudoGeral h3 {
		font-size: 1.375rem;
	}

	.ex-header {
		padding-top: 5rem;
		padding-bottom: 2.5rem;
	}

	.ex-header h1 {
		font-size: clamp(1.6rem, 4vw, 2rem);
		padding-top: 24px;
	}

	.ex-basic-1 {
		padding-top: 1rem;
		padding-bottom: 0.5rem;
	}
}

/* Responsive Design - Mobile */
@media (max-width: 576px) {
	.titulo {
		font-size: clamp(1.25rem, 5vw, 1.55rem);
		padding-top: 18px;
	}

	.conteudoGeral {
		padding: 30px 15px 2rem;
	}

	.conteudoGeral h2 {
		font-size: 1.375rem;
		margin-top: 1.5rem;
	}

	.conteudoGeral h3 {
		font-size: 1.125rem;
	}

	.conteudoGeral p,
	.conteudoGeral li {
		font-size: 0.9rem;
	}

	.ex-header {
		padding-top: 4.5rem;
		padding-bottom: 2rem;
	}

	.ex-header h1 {
		font-size: clamp(1.25rem, 5vw, 1.55rem);
		padding-top: 18px;
	}

	.breadcrumbs {
		font-size: 0.85rem;
	}
}

/* Section Spacer */
.section-spacer {
	height: 100px;
}

@media (max-width: 768px) {
	.section-spacer {
		height: 60px;
	}
}

@media (max-width: 576px) {
	.section-spacer {
		height: 40px;
	}
}

/* Content Styling */
.conteudoGeral h2 {
	color: var(--cor-texto);
	font-size: 2.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: bold;
}

.conteudoGeral h3 {
	color: var(--cor-texto);
	font-size: 1.875rem;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	font-weight: 600;
}

.conteudoGeral p {
	color: var(--cor-texto);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.conteudoGeral ul,
.conteudoGeral ol {
	color: var(--cor-texto);
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.conteudoGeral li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.conteudoGeral strong {
	color: var(--primary-color);
	font-weight: 600;
}

.conteudoGeral a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.conteudoGeral a:hover {
	color: var(--cor-texto);
	text-decoration: underline;
}