/*
Theme Name: Divi Child SETCEB
Theme URI: https://www.starfez.com
Description: Tema filho do Divi com identidade visual SETCEB, incluindo tela de login personalizada.
Author: Leandro Gabriel
Author URI: https://www.starfez.com
Version: 1.10.9
Template: Divi
*/

/*============================================================
SETCEB - Tela de login (wp-login.php)
Modelo da branch main: estiliza a tela padrao do WordPress
somente com CSS, sem JS de layout, sem buffer e sem alterar o
core. O login.js aplica apenas placeholder e o texto do botao.
============================================================*/
:root {
	--setceb-blue: #123D73;
	--setceb-blue-light: #1D5B9F;
	--setceb-turquoise: #1FB7C9;
	--setceb-white: #FFFFFF;
	--setceb-gray: #F5F7FA;
	--setceb-ink: #0F172A;
	--setceb-muted: #64748B;
	--setceb-border: #DFE5EE;
}

body.login {
	--setceb-blue: #123D73;
	--setceb-blue-light: #1D5B9F;
	--setceb-turquoise: #1FB7C9;
	--setceb-white: #FFFFFF;
	--setceb-gray: #F5F7FA;
	--setceb-ink: #0F172A;
	--setceb-muted: #64748B;
	--setceb-border: #DFE5EE;

	margin: 0;
	padding: 24px;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background-color: #eef2f7;
}

body.login *,
body.login *::before,
body.login *::after {
	box-sizing: border-box;
}

/* ---------- Remocao dos elementos padrao ---------- */
body.login .language-switcher,
body.login #backtoblog,
body.login .forgetmenot,
body.login #caps-warning,
body.login #login > #nav {
	display: none !important;
}

body.login form label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* ---------- Card central (grid 1 coluna) ---------- */
body.login #login {
	width: 480px;
	max-width: 100%;
	margin: 0;
	padding: 44px 44px 34px;
	position: relative;
	z-index: 2;
	background: var(--setceb-white);
	border: 1px solid #e3e9f0;
	border-radius: 20px;
	box-shadow:
		0 12px 32px rgba(18, 61, 115, 0.10),
		0 4px 12px rgba(18, 61, 115, 0.06);
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 12px;
	animation: setceb-card-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.login #login > h1,
body.login #login > #login_error,
body.login #login > .message,
body.login #login form > p:not(.submit),
body.login #login form > .user-pass-wrap {
	grid-column: 1 / -1;
	margin: 0 0 16px;
}

body.login #login form {
	display: contents;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
}

body.login #login form .submit {
	grid-column: 1 / -1;
	margin: 0 !important;
}

/* ---------- Marca (logo) ---------- */
body.login #login h1 {
	text-align: center;
	margin-bottom: 28px;
}

body.login #login h1 a {
	display: block;
	width: 220px;
	height: 52px;
	margin: 0 auto;
	background: url('logo-cor-02.png') no-repeat center / contain;
	text-indent: -9999px;
	overflow: hidden;
	outline: none;
}

/* ---------- Campos ---------- */
body.login #login form > p:not(.submit),
body.login #login form > .user-pass-wrap {
	position: relative;
}

body.login #login form > p:not(.submit):not(.user-pass-wrap)::before,
body.login #login form > .user-pass-wrap::before {
	content: "";
	position: absolute;
	left: 17px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	z-index: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

body.login #login form > p:not(.submit):not(.user-pass-wrap)::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239aa7b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21v-1a6 6 0 0 1 6-6h4a6 6 0 0 1 6 6v1'/%3E%3C/svg%3E");
}

body.login #login form > .user-pass-wrap::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239aa7b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='9' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E");
}

body.login input[type="text"],
body.login input[type="password"],
body.login input[type="email"] {
	width: 100% !important;
	height: 58px !important;
	margin: 0 !important;
	padding: 14px 48px !important;
	font-size: 15px !important;
	line-height: 1 !important;
	color: var(--setceb-ink) !important;
	background: var(--setceb-white) !important;
	border: 1.5px solid var(--setceb-border) !important;
	border-radius: 14px !important;
	box-shadow: none !important;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.login input[type="password"] {
	padding-right: 52px !important;
}

body.login input:focus {
	border-color: var(--setceb-blue-light) !important;
	box-shadow: 0 0 0 4px rgba(29, 91, 159, 0.12) !important;
}

body.login input::placeholder {
	color: #9aa7b8;
	opacity: 1;
}

body.login input::-ms-input-placeholder {
	color: #9aa7b8;
}

/* ---------- Botao mostrar senha (nativo do WP) ---------- */
body.login #login .wp-hide-pw {
	position: absolute !important;
	right: 8px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: transparent !important;
	border: 0 !important;
	border-radius: 12px;
	cursor: pointer;
	color: #94a3b8;
	transition: background 0.2s ease, color 0.2s ease;
}

body.login #login .wp-hide-pw:hover {
	background: var(--setceb-gray);
	color: var(--setceb-blue-light);
}

body.login #login .wp-hide-pw .dashicons {
	width: 20px;
	height: 20px;
	font-size: 20px;
}

/* ---------- Botao Acessar ---------- */
body.login #login form .submit input[type="submit"] {
	width: 100% !important;
	height: 58px !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	letter-spacing: 0.2px;
	color: #fff !important;
	text-shadow: none !important;
	border: 0 !important;
	border-radius: 14px !important;
	background: linear-gradient(90deg, var(--setceb-blue) 0%, var(--setceb-turquoise) 100%) !important;
	box-shadow: 0 10px 22px rgba(18, 61, 115, 0.3) !important;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

body.login #login form .submit input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 30px rgba(18, 61, 115, 0.38) !important;
	filter: brightness(1.05);
}

body.login #login form .submit input[type="submit"]:active {
	transform: translateY(0);
	box-shadow: 0 8px 18px rgba(18, 61, 115, 0.28) !important;
}

body.login #login form .submit input[type="submit"]:focus-visible {
	outline: 3px solid rgba(31, 183, 201, 0.45);
	outline-offset: 2px;
}

body.login a:focus-visible {
	outline: 3px solid rgba(31, 183, 201, 0.45);
	outline-offset: 2px;
}

/* ---------- Erros e mensagens ---------- */
body.login #login_error,
body.login .message,
body.login .success {
	background: #fff !important;
	border: 0 !important;
	border-left: 4px solid #dc2626 !important;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(6, 28, 60, 0.12) !important;
	color: #b91c1c;
	font-size: 13.5px;
	padding: 12px 14px !important;
	margin: 0 0 18px !important;
}

body.login .message,
body.login .success {
	border-left-color: var(--setceb-turquoise) !important;
	color: #334155;
}

/* ---------- Animacoes ---------- */
@keyframes setceb-card-in {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* ---------- Responsivo ---------- */
@media (max-width: 560px) {
	body.login {
		padding: 16px;
	}

	body.login #login {
		width: 100%;
		max-width: 480px;
		padding: 32px 22px 26px;
		border-radius: 20px;
	}

	body.login #login h1 a {
		width: 180px;
		height: 42px;
	}

	body.login input[type="text"],
	body.login input[type="password"],
	body.login input[type="email"] {
		height: 54px !important;
	}

	body.login #login form .submit input[type="submit"] {
		height: 54px !important;
		font-size: 15px !important;
	}
}

/*============================================================
SETCEB - Area do Associado (perfil fora do painel)
============================================================*/
body.setceb-perfil-associado {
	margin: 0;
	min-height: 100vh;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: var(--setceb-ink);
	background-color: #eef2f7;
}

body.setceb-perfil-associado *,
body.setceb-perfil-associado *::before,
body.setceb-perfil-associado *::after {
	box-sizing: border-box;
}

.setceb-perfil {
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px 24px 56px;
}

.setceb-perfil__card {
	padding: 36px;
	background: var(--setceb-white);
	border: 1px solid #e3e9f0;
	border-radius: 20px;
	box-shadow:
		0 12px 32px rgba(18, 61, 115, 0.10),
		0 4px 12px rgba(18, 61, 115, 0.06);
}

.setceb-perfil__section-title {
	margin: 28px 0 16px;
	font-size: 18px;
	color: var(--setceb-blue);
}

.setceb-perfil__boletos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.setceb-perfil__boleto {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 26px 16px;
	text-align: center;
	text-decoration: none;
	color: var(--setceb-ink);
	background: var(--setceb-gray);
	border: 1.5px solid var(--setceb-border);
	border-radius: 16px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.setceb-perfil__boleto:hover {
	transform: translateY(-3px);
	background: #fff;
	border-color: var(--setceb-turquoise);
	box-shadow: 0 14px 28px rgba(18, 61, 115, 0.14);
}

.setceb-perfil__boleto-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--setceb-blue) 0%, var(--setceb-turquoise) 100%);
	color: #fff;
}

.setceb-perfil__boleto-icon svg {
	width: 26px;
	height: 26px;
}

.setceb-perfil__boleto-label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--setceb-ink);
}

.setceb-perfil__boleto-cta {
	font-size: 12.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--setceb-blue-light);
}

/* ---------- Estados (convidado / sem permissao) ---------- */
.setceb-perfil__state {
	text-align: center;
	padding: 16px 0;
}

.setceb-perfil__state .setceb-perfil__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 18px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--setceb-blue) 0%, var(--setceb-turquoise) 100%);
	color: #fff;
}

.setceb-perfil__state .setceb-perfil__icon svg {
	width: 30px;
	height: 30px;
}

.setceb-perfil__state h1 {
	margin: 0 0 8px;
	font-size: 24px;
	color: var(--setceb-ink);
}

.setceb-perfil__state p {
	margin: 0 auto 22px;
	max-width: 420px;
	font-size: 15px;
	line-height: 1.55;
	color: var(--setceb-muted);
}

.setceb-perfil__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 26px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(90deg, var(--setceb-blue) 0%, var(--setceb-turquoise) 100%);
	border-radius: 12px;
	box-shadow: 0 10px 22px rgba(18, 61, 115, 0.28);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.setceb-perfil__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(18, 61, 115, 0.34);
}

.setceb-perfil__btn--ghost {
	background: #fff;
	color: var(--setceb-blue-light);
	border: 1.5px solid var(--setceb-blue-light);
	box-shadow: none;
}

/* ---------- Gate de noticia restrita ---------- */
.setceb-news-gate {
	margin: 24px 0;
	padding: 28px 24px;
	text-align: center;
	background: #fff;
	border: 1.5px dashed var(--setceb-border);
	border-radius: 16px;
}

.setceb-news-gate__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--setceb-blue) 0%, var(--setceb-turquoise) 100%);
	color: #fff;
}

.setceb-news-gate__icon svg {
	width: 28px;
	height: 28px;
}

.setceb-news-gate h3 {
	margin: 0 0 8px;
	font-size: 20px;
	color: var(--setceb-ink);
}

.setceb-news-gate p {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.55;
	color: var(--setceb-muted);
}

.setceb-news-gate__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	font-size: 14.5px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(90deg, var(--setceb-blue) 0%, var(--setceb-turquoise) 100%);
	border-radius: 12px;
	box-shadow: 0 10px 22px rgba(18, 61, 115, 0.28);
}

.setceb-news-gate__btn:hover {
	transform: translateY(-2px);
}

.setceb-restricted-teaser {
	font-style: italic;
	color: var(--setceb-muted);
}

@media (max-width: 640px) {
	.setceb-perfil {
		padding: 16px 14px 40px;
	}

	.setceb-perfil__card {
		padding: 24px 18px;
		border-radius: 20px;
	}

	.setceb-perfil__boletos {
		grid-template-columns: 1fr;
	}
}

/*============================================================
SETCEB - Header global customizado (v1.10.9)
Estrutura renderizada no topo via hook et_before_main_content.
O header nativo do Divi e ocultado abaixo.
============================================================*/

/* ---------- Ocultar o header nativo do Divi ---------- */
#page-container #top-header,
#page-container #main-header,
#page-container .et-l--header {
	display: none !important;
}

#page-container {
	padding-top: 0 !important;
}

/* ---------- Estrutura ---------- */
.setceb-header {
	position: relative;
	z-index: 1000;
	margin-bottom: 20px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background: #fff;
	box-shadow: 0 4px 14px rgba(18, 35, 56, 0.08);
}

.setceb-header a {
	text-decoration: none;
}

/* Faixa topo azul-marinho */
.setceb-header__top {
	height: 8px;
	background: #122338;
}

/* Barra principal */
.setceb-header__main {
	background: #fff;
}

.setceb-header__main-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 16px 24px;
}

/* Logo */
.setceb-header__logo {
	display: flex;
	align-items: center;
	gap: 14px;
}

.setceb-header__logo img {
	display: block;
	height: 54px;
	width: auto;
}

/* Busca central */
.setceb-header__search {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
	background: #f2f2f2;
	border: 1px solid #e6e9ef;
	border-radius: 999px;
	overflow: hidden;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.setceb-header__search:focus-within {
	border-color: #0d8199;
	box-shadow: 0 0 0 4px rgba(13, 129, 153, 0.12);
}

.setceb-header__search input[type="search"] {
	flex: 1;
	min-width: 0;
	padding: 12px 18px;
	font-size: 14px;
	color: #0f172a;
	background: transparent;
	border: 0;
	outline: none;
	-webkit-appearance: none;
}

.setceb-header__search input::placeholder {
	color: #94a3b8;
	opacity: 1;
}

.setceb-header__search button {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	width: 48px;
	border: 0;
	background: #0d8199;
	color: #fff;
	cursor: pointer;
	transition: background 0.18s ease;
}

.setceb-header__search button:hover {
	background: #0b6f84;
}

.setceb-header__search button svg {
	width: 18px;
	height: 18px;
}

/* Acoes (Area do Associado + icone de usuario) */
.setceb-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.setceb-header__area {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 18px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #fff;
	background: #163459;
	border-radius: 10px;
	transition: background 0.18s ease, transform 0.18s ease;
}

.setceb-header__area:hover {
	background: #123159;
	transform: translateY(-1px);
}

.setceb-header__area--user {
	text-transform: none;
	font-size: 13.5px;
	letter-spacing: 0.2px;
}

.setceb-header__user {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	color: #fff;
	background: #163459;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.18s ease;
}

.setceb-header__user:hover {
	background: #123159;
}

.setceb-header__user svg {
	width: 20px;
	height: 20px;
}

/* Dropdown do icone de usuario (menu Sair) */
.setceb-header__user-wrap {
	position: relative;
}

.setceb-header__user-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 190px;
	padding: 8px;
	background: #fff;
	border: 1px solid #eceff4;
	border-radius: 12px;
	box-shadow: 0 18px 40px rgba(18, 35, 56, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
	z-index: 30;
}

.setceb-header__user-wrap.is-open .setceb-header__user-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.setceb-header__user-name {
	display: block;
	padding: 8px 10px;
	font-size: 13px;
	font-weight: 700;
	color: #123159;
	white-space: nowrap;
}

.setceb-header__user-menu a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 10px;
	font-size: 13.5px;
	font-weight: 600;
	color: #334155;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.16s ease, color 0.16s ease;
}

.setceb-header__user-menu a:hover {
	background: #f1f5f9;
	color: #0d8199;
}

.setceb-header__user-menu a svg {
	width: 17px;
	height: 17px;
}

/* Botao hamburguer (mobile) */
.setceb-header__burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background: #163459;
	color: #fff;
	cursor: pointer;
}

.setceb-header__burger:hover {
	background: #123159;
}

.setceb-header__burger svg {
	width: 22px;
	height: 22px;
}

/* Menu principal */
.setceb-header__nav {
	position: relative;
	background: #fff;
}

.setceb-header__list,
.setceb-header__list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.setceb-header__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.setceb-header__list > li {
	position: relative;
}

.setceb-header__list > li > a {
	display: block;
	padding: 16px 13px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: #123159;
	white-space: nowrap;
	transition: color 0.18s ease;
}

.setceb-header__list > li > a:hover {
	color: #0d8199;
}

/* Item ativo (pagina atual) */
.setceb-header__list > li.current-menu-item > a,
.setceb-header__list > li.current_page_item > a,
.setceb-header__list > li.current-menu-ancestor > a,
.setceb-header__list > li.current_page_ancestor > a {
	color: #0d8199;
}

.setceb-header__list > li.current-menu-item > a:not(.setceb-header__associe)::after,
.setceb-header__list > li.current_page_item > a:not(.setceb-header__associe)::after {
	content: "";
	position: absolute;
	left: 13px;
	right: 13px;
	bottom: 0;
	height: 3px;
	background: #0d8199;
	border-radius: 3px 3px 0 0;
}

.setceb-header__list .sub-menu li.current-menu-item > a,
.setceb-header__list .sub-menu li.current_page_item > a {
	color: #0d8199;
}

/* Item ASSOCIE-SE em destaque */
.setceb-header__list > li > a.setceb-header__associe {
	margin: 6px 0 6px 10px;
	padding: 8px 16px;
	color: #fff;
	background: #0e94a8;
	border-radius: 8px;
}

.setceb-header__list > li > a.setceb-header__associe:hover {
	color: #fff;
	background: #0b8296;
}

/* Dropdowns */
.setceb-header__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	padding: 6px 0;
	background: #fff;
	border: 1px solid #eceff4;
	border-top: 3px solid #0d8199;
	border-radius: 0 0 10px 10px;
	box-shadow: 0 18px 40px rgba(18, 35, 56, 0.16);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 20;
}

.setceb-header__list > li:hover > .sub-menu,
.setceb-header__list > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.setceb-header__list .sub-menu .sub-menu {
	top: 0;
	left: 100%;
	margin-left: 1px;
	border-top: 0;
	border-left: 3px solid #0d8199;
	border-radius: 0 10px 10px 0;
}

.setceb-header__list .sub-menu a {
	display: block;
	padding: 10px 18px;
	font-size: 13px;
	font-weight: 600;
	color: #334155;
}

.setceb-header__list .sub-menu a:hover {
	color: #0d8199;
	background: #f7f9fb;
}

/* Acoes do menu mobile (visiveis apenas no hamburguer) */
.setceb-header__mobile-actions {
	display: none;
}

.setceb-header__mobile-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin-top: 10px;
	padding: 0 18px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: #fff;
	border-radius: 10px;
}

.setceb-header__mobile-btn--area {
	background: #163459;
}

.setceb-header__mobile-btn--area.setceb-header__area--user {
	text-transform: none;
	letter-spacing: 0.2px;
}

.setceb-header__mobile-btn--associe {
	background: #0d8199;
}

/* ---------- Responsivo ---------- */
@media (max-width: 1199px) {
	.setceb-header__main-inner {
		gap: 20px;
	}

	.setceb-header__list > li > a {
		padding: 16px 10px;
		font-size: 12px;
	}
}

@media (max-width: 1023px) {
	.setceb-header__search {
		display: none;
	}

	.setceb-header__main-inner {
		grid-template-columns: 1fr auto;
		padding: 14px 16px;
	}

	.setceb-header__logo img {
		height: 44px;
	}

	.setceb-header__area {
		display: none;
	}

	.setceb-header__burger {
		display: inline-flex;
	}

	/* Menu vira painel deslizante sob a barra */
	.setceb-header__nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		max-height: calc(100vh - 80px);
		overflow-y: auto;
		z-index: 100;
	}

	.setceb-header__nav.is-open {
		display: block;
	}

	.setceb-header__list {
		flex-direction: column;
		align-items: stretch;
		padding: 10px 16px;
	}

	.setceb-header__list > li > a {
		padding: 13px 4px;
		font-size: 13px;
		border-bottom: 1px solid #f1f3f7;
	}

	/* O destaque ASSOCIE-SE sai do menu e vira botao proprio */
	.setceb-header__list > li > a.setceb-header__associe,
	.setceb-header__list > li.setceb-header__associe-item {
		display: none;
	}

	.setceb-header__list .sub-menu {
		position: static;
		min-width: 0;
		padding: 0 0 4px 14px;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: 0;
		border-left: 3px solid #0d8199;
		border-radius: 0;
		box-shadow: none;
	}

	.setceb-header__list .sub-menu .sub-menu {
		left: 0;
		padding-left: 14px;
		border-left: 3px solid #0d8199;
	}

	.setceb-header__list .sub-menu a {
		padding: 10px 4px;
		border-bottom: 1px solid #f8fafc;
	}

	.setceb-header__mobile-actions {
		display: flex;
		flex-direction: column;
		padding: 8px 16px 18px;
	}
}

@media (max-width: 480px) {
	.setceb-header__main-inner {
		padding: 12px;
		gap: 12px;
	}

	.setceb-header__logo img {
		height: 38px;
	}
}
