/* === TOKENS DE MARCA — fonte única de cor === */
:root {
	/* Marca */
	--gn-primary: #1c3555;
	--gn-primary-dark: #142640;
	--gn-primary-soft: #e7ecf3;

	/* Acento (azul das seções superiores — botões, CTAs, ícones de ação) */
	--gn-accent: #3f7ca8;        /* bordas / detalhes (não texto longo) */
	--gn-accent-solid: #245a82;  /* fundo de botão */
	--gn-accent-text: #1c3555;   /* link, ícone e texto (= primary) */

	/* Neutros */
	--gn-text: #222222;
	--gn-muted: #6f675a;
	--gn-secondary: #a89f8d;     /* só decoração */
	--gn-bg: #f5f5f5;
	--gn-surface: #ffffff;
	--gn-inverse: #ffffff; /* texto/ícone sobre navy ou acento */
	--gn-border: #d5dde6;        /* divisórias em tom azulado suave */

	/* Detalhes */
	--gn-detail-yellow: #f2c14e;
	--gn-detail-blue: #7fa8c9;
	--gn-detail-blue-text: #3f7ca8;

	/* Semântica */
	--gn-danger: #9b2c1b;        /* erros / alertas (mantém contraste semântico) */
	--gn-success: #1c7a4f;
	--gn-warning-text: #8a5a00;
	--gn-warning-bg: #fef3c7; /* fundo suave de alerta (V2) */

	/* Foco visível (WCAG 2.4.7) */
	--gn-focus-ring: #3f7ca8;

	/* Hover de botões e hovers sem duração explícita (teto). */
	--gn-btn-hover-duration: 0.3s;

	/* Palco home: faixa de publicidade e enquete (mesma altura) */
	--gn-home-faixa-height: 200px;

	/* Oferta comercial (card /negocios — badge % OFF e a prazo) */
	--gn-offer-badge: #16a34a;
	--gn-offer-prazo: #15803d;

	/*
	 * Auth — aliases da marca (V2: dourado removido).
	 */
	--gn-auth-accent: var(--gn-accent-solid);
	--gn-auth-accent-hover: var(--gn-accent-text);
	--gn-auth-text: var(--gn-text);
	--gn-auth-muted: var(--gn-muted);
	--gn-auth-border: var(--gn-border);
	--gn-auth-surface: var(--gn-surface);
	--gn-modal-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
	--gn-auth-shadow: var(--gn-modal-shadow);
	--gn-auth-radius: 8px;

	/*
	 * CTAs com nome (alteracaocss.md etapa 0–1). Não substitui --gn-primary do menu.
	 * --gn-btn-hover-duration (0.3s) = teto das famílias antigas e widgets.
	 * --gn-btn-cta-hover-duration (0.15s) = família .gn-btn.
	 */
	--gn-btn-create: #008cba;
	--gn-btn-create-hover: #007399;
	--gn-btn-send-bg: #e7e7e7;
	--gn-btn-send-bg-hover: #d4d4d4;
	--gn-btn-send-border: #008cba;
	--gn-btn-send-border-hover: #007399;
	--gn-btn-danger: #f44336;
	--gn-btn-danger-hover: #d32f2f;
	--gn-btn-access: #04aa6d;
	--gn-btn-access-hover: #038a58;
	--gn-btn-fg-on-solid: #ffffff;
	--gn-btn-fg-on-muted: #000000;
	--gn-btn-radius: 4px;
	--gn-btn-height: 2.5rem;
	--gn-btn-cta-hover-duration: 0.15s;

	/* Layout unificado — decisao_layouts.md etapa 0 */
	--gn-font-display: "Montserrat", Arial, Helvetica, sans-serif;
	--gn-font-ui: "Open Sans", Arial, Helvetica, sans-serif;
	--gn-type-h1: 34px;
	--gn-type-h2: 20px;
	--gn-type-h3: 16px;
	--gn-type-body: 14px;
	--gn-type-excerpt: 16px;
	--gn-type-meta: 12px;
	--gn-type-nav: 20px;
	--gn-nav-color: var(--gn-accent-text);
	--gn-page-bg: var(--gn-surface);
	--gn-gap-ad: 20px;
	--gn-card-radius: 8px;
	--gn-img-radius: 8px;
	--gn-card-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
	--gn-card-shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.1);
	--gn-card-lift: -5px;
	--gn-title-bar-size: 4px;
	--gn-title-bar: linear-gradient(90deg, var(--gn-primary) 0%, var(--gn-accent) 40%, var(--gn-detail-blue) 68%, transparent 100%);
}

/* === GRID (ex-bootstrap.css, V7.4 / D7) === */
/*
 * Apenas o grid vivo: container, row, col-md-*, offsets, col-sm-12,
 * clearfix, sr-only + box-sizing e html 62.5% (base rem do tema).
 */

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-family: var(--gn-font-ui);
	font-size: 62.5%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.row:before,
.row:after {
	display: table;
	content: " ";
}

.clearfix:after,
.container:after,
.row:after {
	clear: both;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.container {
	margin-right: auto;
	margin-left: auto;
	padding-left: 10px;
	padding-right: 10px;
}

@media (min-width: 480px) {
	.container {
		width: 440px;
	}
}

@media (min-width: 768px) {
	.container {
		width: 727px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1152px;
	}
}

.row {
	margin-left: -10px;
	margin-right: -10px;
}

.col-md-2,
.col-md-3,
.col-md-4,
.col-md-6,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-12,
.col-sm-12 {
	position: relative;
	min-height: 1px;
	padding-left: 10px;
	padding-right: 10px;
}

@media (min-width: 768px) {
	.col-sm-12 {
		float: left;
		width: 100%;
	}

	.col-sm-offset-0 {
		margin-left: 0%;
	}
}

@media (min-width: 992px) {
	.col-md-2,
	.col-md-3,
	.col-md-4,
	.col-md-6,
	.col-md-8,
	.col-md-9,
	.col-md-10,
	.col-md-12 {
		float: left;
	}

	.col-md-12 {
		width: 100%;
	}

	.col-md-10 {
		width: 83.33333333%;
	}

	.col-md-9 {
		width: 75%;
	}

	.col-md-8 {
		width: 66.66666667%;
	}

	.col-md-6 {
		width: 50%;
	}

	.col-md-4 {
		width: 33.33333333%;
	}

	.col-md-3 {
		width: 25%;
	}

	.col-md-2 {
		width: 16.66666667%;
	}

	.col-md-offset-3 {
		margin-left: 25%;
	}

	.col-md-offset-1 {
		margin-left: 8.33333333%;
	}
}

/* === LAYOUT LEGADO (ex-style.css, V7.3) === */
/* Inserido apos :root e antes das overrides de cor, para a cascata de tokens vencer. */

/* Reset
-------------------------------------------------------------- */
	html {
	   overflow-y: scroll;
	   -webkit-text-size-adjust: 100%;
	       -ms-text-size-adjust: 100%;
	}

	body {
	   line-height: 1;
	   -webkit-font-smoothing: antialiased;
	   -webkit-text-size-adjust: 100%;
	       -ms-text-size-adjust: 100%;
	}

	a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, caption, canvas, center, cite, code,
	dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, form, footer, header, hgroup, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, tt, table, tbody, textarea, tfoot, thead, time, tr, th, td, u, ul, var, video  { 
	   font-family: inherit; 
	   font-size: 100%; 
	   font-weight: inherit; 
	   font-style: inherit; 
	   vertical-align: baseline; 
	   white-space: normal; 
	   margin: 0; 
	   padding: 0; 
	   border: 0; 
	   outline: 0;
	   background: transparent;
	}

	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
	   display: block;
	}
	                          
	ol, ul {
	   list-style: none;
	}

	blockquote, q { 
	   -webkit-hyphens: none;
	      -moz-hyphens: none;
	       -ms-hyphens: none;
	           hyphens: none;
	            quotes: none;
	}

	figure {
	   margin: 0;
	}

	:focus {
	   outline: 0;
	}

	table { 
	   border-collapse: collapse; 
	   border-spacing: 0; }

	img {
	   border: 0;
	   -ms-interpolation-mode: bicubic;
	   vertical-align: middle;
	}

	::selection { background-color: #ddf1ff; color: #191919; }
	::-moz-selection { background-color: #ddf1ff; color: #191919; }

	legend {
	   white-space: normal;
	}

	button,
	input,
	select,
	textarea {
	   font-size: 100%;
	   margin: 0;
	   max-width: 100%;
	   vertical-align: baseline;
	   -webkit-box-sizing: border-box;
	      -moz-box-sizing: border-box;
	           box-sizing: border-box;
	}

	button,
	input {
	   line-height: normal;
	}

	input,
	textarea {
	   background-image: -webkit-linear-gradient(hsla(0,0%,100%,0), hsla(0,0%,100%,0)); /* Removing the inner shadow, rounded corners on iOS inputs */
	}

	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		line-height: 1;
		cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
		-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
		border: none;
	}

	input[type="checkbox"],
	input[type="radio"] {
		padding: 0; /* Addresses excess padding in IE8/9 */
	}

	input[type="search"] {
		-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	}

	input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
		-webkit-appearance: none;
	}

	button::-moz-focus-inner,
	input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
		border: 0;
		padding: 0;
	}

/* Repeatable Patterns
-------------------------------------------------------------- */
	*,
	*:before,
	*:after {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}

	body {
		background-color: var(--gn-page-bg);
		color: var(--gn-text);
		font-family: var(--gn-font-ui);
		font-size: var(--gn-type-body);
		font-weight: 400;
		letter-spacing: 0.01em;
		line-height: 1.6;
	}

	a,
	a:hover,
	a:focus,
	a:active {
	    -webkit-transition: all 0.3s ease-in-out;
	       -moz-transition: all 0.3s ease-in-out;
	        -ms-transition: all 0.3s ease-in-out;
	         -o-transition: all 0.3s ease-in-out;
	            transition: all 0.3s ease-in-out;
	}

	img {
	   height: auto;
		max-width: 100%;
	}

	strong {
		font-weight: 700;
	}

	.entry-content p {
		margin-bottom: 27px;
	}

	h1, h2, h3, h4, h5, h6 {
		color: var(--gn-text);
		font-family: var(--gn-font-display);
		letter-spacing: -0.02em;
		line-height: 1.2;
		margin: 47px 0 25px;
	}

	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
		font-weight: inherit;
		color: var(--gn-text);
	}

	h1 { font-size: var(--gn-type-h1); font-weight: 700; }
	h2 { font-size: var(--gn-type-h2); font-weight: 700; }
	h3 { font-size: var(--gn-type-h3); font-weight: 700; }
	h4 { font-size: var(--gn-type-h2); font-weight: 700; }
	h5 { font-size: 18px; font-weight: 700; margin: 26px 0 0; }
	h6 { font-size: var(--gn-type-h3); font-weight: 700; margin: 16px 0 0; }

	.text-dark { color: var(--gn-text) !important;}

	/* alteracaocss.md etapa 1: reset de controlo, sem skin de CTA 50px.
	   Cursor/appearance/border: regra anterior. Canónico em .gn-btn.
	   Famílias absorvidas: aliases na etapa 4. Tabelas fora de âmbito: .gn-admin-btn. */
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		display: inline-block;
		position: relative;
	}

	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	textarea {
		color: #3f3f3f;
		border: 1px solid #cecece;
		height: 42px;
		padding: 4px 14px;
		-webkit-border-radius: 4px;
		   -moz-border-radius: 4px;
			 -o-border-radius: 4px;
				border-radius: 4px;
	}

	input[type="text"]:focus,
	input[type="email"]:focus,
	input[type="url"]:focus,
	input[type="password"]:focus,
	input[type="search"]:focus,
	textarea:focus {
		border: 1px solid var(--gn-muted);
	}

	textarea {
		overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
		vertical-align: top; /* Improves readability and alignment in all browsers */
		padding: 8px 14px;
		height: 200px;
		width: 100%;
	}

	::-webkit-input-placeholder {
	   color: #b0b0b0;
	}

	:-moz-placeholder { /* Firefox 18- */
	   color: #b0b0b0;  
	}

	::-moz-placeholder {  /* Firefox 19+ */
	   color: #b0b0b0;  
	}

	:-ms-input-placeholder {  
	   color: #b0b0b0;  
	}

	.gn-animation {
	   /* V7.1: fallback visível; esconder só com html.gn-animations-ready (ver gn-portal.css) */
	   opacity: 1;
	}
	.gn-animation.animated {
	   opacity: 1;
	}

	/* bootstrap resetting elements */
	.btn {
		background-image: none;
	}

	textarea,
	input[type="text"],
	input[type="submit"],
	input[type="password"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="date"],
	input[type="month"],
	input[type="time"],
	input[type="week"],
	input[type="number"],
	input[type="email"],
	input[type="url"],
	input[type="search"],
	input[type="tel"],
	input[type="color"],
	.dropdown-menu {
	  -webkit-appearance: none;
		text-shadow: none;
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
			  -o-box-shadow: none;
				  box-shadow: none;
	}

/* Header
-------------------------------------------------------------- */
	.top-wrap {
	   padding: 20px 0 16px;
	}

	.top-wrap .logo,
	.top-wrap .follow-us {
		float: left;
	}

	.top-wrap .logo {
		margin-top: 5px;
		height: auto;
	}

	.top-wrap .follow-us {
		position: relative;
		margin-left: 16px;
	}

	.top-wrap .follow-title {
		position: relative;
		display: inline-block;
		font-size: 14px;
		color: #fff;
		line-height: 44px;
		padding-right: 29px;
		padding-bottom: 6px;
		cursor: pointer;
	}

	.top-wrap .follow-title:after {
		font-family: "FontAwesome";
		content: "\f0d7";
		font-size: 12px;
		position: absolute;
		right: 0;
		top: 11px;
		border: 1px solid rgba(255,255,255,0.4);
		line-height: 20px;
		width: 22px;
		height: 22px;
		text-align: center;
		-webkit-border-radius: 50%;
		   -moz-border-radius: 50%;
			  -o-border-radius: 50%;
				  border-radius: 50%;
	}

	.top-wrap .social-links {
		position: absolute;
		right: left;
		top: 50px;
		z-index: 999;
		width: 234px;
		border: 1px solid #e6e8e9;
		box-shadow: 0 0 4px rgba(194, 194, 194, 0.4);
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
		opacity: 0;
		visibility: hidden;
		-webkit-border-radius: 1px;
		   -moz-border-radius: 1px;
			  -o-border-radius: 1px;
				  border-radius: 1px;
		-webkit-transform: translate(0px, 10px);
		   -moz-transform: translate(0px, 10px);
		    -ms-transform: translate(0px, 10px);
		     -o-transform: translate(0px, 10px);
		        transform: translate(0px, 10px);
	   -webkit-transition: all 0.2s ease-in-out;
	      -moz-transition: all 0.2s ease-in-out;
	       -ms-transition: all 0.2s ease-in-out;
	        -o-transition: all 0.2s ease-in-out;
	           transition: all 0.2s ease-in-out;
	}

	.top-wrap .follow-us:hover .social-links {
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter: alpha(opacity=100);
		opacity: 1;
		visibility: visible;
		-webkit-transform: translate(0,0);
		   -moz-transform: translate(0,0);
		    -ms-transform: translate(0,0);
		     -o-transform: translate(0,0);
		        transform: translate(0,0);
	}

	.top-wrap .social-links:before,
	.top-wrap .social-links:after {
		content: "";
		position: absolute;
		left: 38px;
		border-width: 12px 10px;
		border-style: solid;
		z-index: 9999;
	}

	.top-wrap .social-links:before {
		top: -25px;
		border-color: transparent transparent #e6e8e9 transparent;

	}

	.top-wrap .social-links:after {
		top: -24px;
		border-color: transparent transparent #fff transparent;
	}

	.top-wrap .social-links li {
		position: relative;
		background-color: var(--gn-surface);
	}

	.top-wrap .social-links li:after {
		content: "";
		position: absolute;
		left: 50%;
		margin-left: -112px;
		top: 0;
		width: 224px;
		height: 1px;
		background-color: var(--gn-border);
	}

	.top-wrap .social-links li:first-child:after {
		height: 0;
	}

	.top-wrap .social-links li a {
		position: relative;
		padding-left: 47px;
		font-size: 14px;
		color: var(--gn-muted);
		line-height: 51px;
		display: block;
		text-decoration: none;
	   -webkit-transition: all 0.3s ease-in-out;
	      -moz-transition: all 0.3s ease-in-out;
	       -ms-transition: all 0.3s ease-in-out;
	        -o-transition: all 0.3s ease-in-out;
	           transition: all 0.3s ease-in-out;
	}

	.top-wrap .social-links li a:before {
		font-family: "FontAwesome";
		font-size: 17px;
		position: absolute;
		left: 18px;
		top: 0;
	   -webkit-transition: all 0.3s ease-in-out;
	      -moz-transition: all 0.3s ease-in-out;
	       -ms-transition: all 0.3s ease-in-out;
	        -o-transition: all 0.3s ease-in-out;
	           transition: all 0.3s ease-in-out;
	}

	.top-wrap .social-links li.facebook a:before {
		content: "\f09a";
	}

	.top-wrap .social-links li.youtube a:before {
		content: "\f167";
	}

	.top-wrap .social-links li.instagram a:before {
		content: "\f16d";
	}

	.top-wrap .social-links li.x a:before {
		content: "X";
		font-family: inherit;
		font-size: 15px;
		font-weight: 800;
	}

	.top-wrap .social-links li.whatsapp a:before {
		content: none;
	}

	.top-wrap .social-links li.whatsapp .gn-social-whatsapp-icon {
		color: inherit;
		height: 17px;
		left: 18px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 17px;
	}

	.top-wrap .social-links li.twitter a:before {
		content: "\f099";
	}

	.top-wrap .social-links li.google a:before {
		content: "\f0d5";
	}

	.top-wrap .social-links li.linkedin a:before {
		content: "\f0e1";
	}

	.top-wrap .social-links li.pinterest a:before {
		content: "\f0d2";
	}

	.top-wrap .social-links li.facebook a:hover:before,
	.top-wrap .social-links li.facebook a:hover {
		color: #3a5795;
	}

	.top-wrap .social-links li.youtube a:hover:before,
	.top-wrap .social-links li.youtube a:hover {
		color: #cf1312;
	}

	.top-wrap .social-links li.instagram a:hover:before,
	.top-wrap .social-links li.instagram a:hover {
		color: #c13584;
	}

	.top-wrap .social-links li.x a:hover:before,
	.top-wrap .social-links li.x a:hover {
		color: #111111;
	}

	.top-wrap .social-links li.whatsapp a:hover:before,
	.top-wrap .social-links li.whatsapp a:hover {
		color: #25d366;
	}

	.top-wrap .social-links li.twitter a:hover:before,
	.top-wrap .social-links li.twitter a:hover {
		color: #1fc1f1;
	}

	.top-wrap .social-links li.google a:hover:before,
	.top-wrap .social-links li.google a:hover {
		color: #dd4b39;
	}

	.top-wrap .social-links li.linkedin a:hover:before,
	.top-wrap .social-links li.linkedin a:hover {
		color: #0077b5;
	}

	.top-wrap .social-links li.pinterest a:hover:before,
	.top-wrap .social-links li.pinterest a:hover {
		color: #bd081c;
	}

	.top-wrap .member-area {
		float: right;
		color: #fff;
		font-size: 14px;
	}

	.top-wrap .login-popup a {
		line-height: 40px;
		margin-right: 24px;
		color: #fff;
	}

	.top-wrap .signup-popup a {
		line-height: 25px;
		display: inline-block;
		background-color: var(--gn-surface);
		color: var(--gn-text);
		font-weight: 500;
		padding: 10px 29px;
		-webkit-border-radius: 2px;
		   -moz-border-radius: 2px;
			  -o-border-radius: 2px;
				  border-radius: 2px;
	}

	.top-wrap .signup-popup a:hover {
		text-decoration: none;
		cursor: pointer;
	}

	.header-wrap {
		border-bottom: none;
	}

	.header-wrap #searchform {
		width: 270px;
		height: 42px;
		position: relative;
		margin-top: 23px;
		float: right;
	}

	.header-wrap #searchform #s {
		font-size: 18px;
		font-weight: 300;
		height: 42px;
		width: 268px;
		border: 1px solid #dfdfdf;
		padding-left: 17px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
			-ms-box-sizing: border-box;
			 -o-box-sizing: border-box;
				box-sizing: border-box;
	}

	.header-wrap .search-close {
		display: none;
	}

	.header-wrap #searchform #s:focus {
		border: 1px solid var(--gn-muted);
	}

	.header-wrap #searchform #searchsubmit {
		position: absolute;
		right: 0;
		top: 0;
		font-family: "FontAwesome";
		height: 42px;
		width: 48px;
		border: none;
		background: transparent;
		color: #989a9e;
		font-size: 18px;
		line-height: 42px;
		font-weight: normal;
		padding: 0;
		margin: 0;
		-webkit-transition: all 0.3s ease-in-out;
		   -moz-transition: all 0.3s ease-in-out;
			-ms-transition: all 0.3s ease-in-out;
			 -o-transition: all 0.3s ease-in-out;
				transition: all 0.3s ease-in-out;
	}

	.header-wrap #searchform #searchsubmit:hover {
		color: #000;
	}

	/* navigation */
	#mainnav {
		display: block;
	}

	#mainnav ul {
	   list-style: none;
	   margin: 0;
	   padding: 0;
	}

	#mainnav ul li {
	   position: relative;
	}

	#mainnav > ul > li {
	   display: block;
	   float: left;
	   padding: 0 24px;
	}

	#mainnav > ul > li > a {
	   position: relative;
	   display: block;
	   text-decoration: none;
	   height: 88px;
	   line-height: 88px;
	   outline: none;
	}

	#mainnav > ul > li.has-children > a:after {
		content: "\f0d7";
		font-family: "FontAwesome";
		font-size: 14px;
		color: #c2c2c2;
		position: absolute;
		right: -16px;
		top: 2px;
	}

	#mainnav > ul > li:first-child {
		padding-left: 0;
	}

	/* submenu */
	#mainnav .sub-menu {
		position: absolute;
		left: 22px;
		top: 70px;
		width: 210px;
		background-color: var(--gn-surface);
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
		opacity: 0;
		visibility: hidden;
		z-index: 998;
		border: 1px solid #e6e8e9;
		box-shadow: 0 0 4px rgba(194, 194, 194, 0.4);
		-webkit-border-radius: 1px;
		   -moz-border-radius: 1px;
			 -o-border-radius: 1px;
				border-radius: 1px;
		-webkit-transform: translate(0px, 10px);
		   -moz-transform: translate(0px, 10px);
		    -ms-transform: translate(0px, 10px);
		     -o-transform: translate(0px, 10px);
		        transform: translate(0px, 10px);
	   -webkit-transition: all 0.2s ease-in-out;
	      -moz-transition: all 0.2s ease-in-out;
	       -ms-transition: all 0.2s ease-in-out;
	        -o-transition: all 0.2s ease-in-out;
	           transition: all 0.2s ease-in-out;
	}

	#mainnav > ul > li:first-child > .sub-menu {
		left: 0;
	}

	/* right sub-menu */
	#mainnav ul.right-sub-menu {
	    left: auto;
	    right: 0;
	}

	#mainnav ul li:hover > .sub-menu {
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter: alpha(opacity=100);
		opacity: 1;
		visibility: visible;
		-webkit-transform: translate(0, 0);
		   -moz-transform: translate(0, 0);
		    -ms-transform: translate(0, 0);
		     -o-transform: translate(0, 0);
		        transform: translate(0, 0);
	}

	#mainnav ul li ul li {
		margin-left: 0;
	}

	#mainnav ul.sub-menu li ul {
		position: absolute;
		left: 100%;
		top: -1px;
	}

	#mainnav ul.sub-menu > li {
		position: relative;
	}

	#mainnav ul.sub-menu > li:after {
		content: "";
		position: absolute;
		left: 50%;
		top: 0;
		margin-left: -93px;
		width: 188px;
		height: 1px;
		background-color: #f0f0f0;
	}

	#mainnav ul.sub-menu > li:first-child:after {
		height: 0;
	}

	#mainnav ul.sub-menu > li > a {
		position: relative;
		display: block;
		font-size: 16px;
		color: var(--gn-text);
		text-decoration: none;
		line-height: 40px;
		padding: 0 18px;
	}

	#mainnav ul.sub-menu > li.has-children > a:after {
		content: "\f0da";
		font-family: "FontAwesome";
		font-size: 14px;
		color: #c2c2c2;
		position: absolute;
		right: 11px;
		top: 1px;
	}

	/* Mobile navigation */
	#mainnav-mobi {
	   display: block;
	   margin: 0 auto;
	   width: 100%;
	   position: absolute;
	   background-color: rgba(37,37,37,0.95);
	   z-index: 1000;
	}

	#mainnav-mobi ul {
	   display: block;
	   list-style: none;
	   margin: 0;
	   padding: 0;
	}

	#mainnav-mobi ul li {
	   margin: 0;
	   position: relative;
	   text-align: center;
	   border-top: 1px solid rgba(225,225,225,0.1);
	   cursor: pointer;
	}

	#mainnav-mobi > ul > li:first-child {
		border-top: none;
	}

	#mainnav-mobi ul > li > a {
	   text-decoration: none;
	   height: 75px;
	   line-height: 75px;
	   color: #fff;
	}

	#mainnav-mobi ul.sub-menu {
	   top: 100%;
	   left: 0;
	   z-index: 2000;
	   position: relative;
	   background-color: rgba(85,85,85,0.2);
	}

	#mainnav-mobi > ul > li > ul > li,
	#mainnav-mobi > ul > li > ul > li > ul > li {
	   position: relative;
	}

	#mainnav-mobi ul.sub-menu > li > a:hover,
	#mainnav-mobi > ul > li > ul > li.active > a {
		color: #fff;
	}

	#mainnav-mobi > ul > li.menu-addon {
		padding: 25px 0 28px;
	}

	#mainnav-mobi > ul > li.menu-addon span {
		display: block;
		margin-top: 10px;
	}

	#mainnav-mobi > ul > li.menu-addon span a {
		display: inline-block;
		color: #fff;
		font-size: 19px;
		line-height: 60px;
		font-weight: 300;
		width: 282px;
		height: 60px;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
			 -o-border-radius: 3px;
				border-radius: 3px;
	}

	#mainnav-mobi > ul > li.menu-addon span.login-link a {
		border: 1px solid var(--gn-border);
	}

	#mainnav-mobi #search-form-menu {
		padding: 12px 0;
	   	border-bottom: 1px solid rgba(225,225,225,0.1);
	}

	#mainnav-mobi #search-form-menu .search-text-menu {
		background-color: transparent;
	    background: url(/images/search-mobi-f7e8482d9584183458e985d347a509d5.png) no-repeat center center;
	    background-position: 15px center;
	    background-repeat: no-repeat;
	    border: 0 none;
	    cursor: pointer;
	    font-size: 20px;
	    color: #fff;
	    height: 51px;
	    padding-left: 41px;
	    width: 51px;
		-webkit-transition: all 0.2s ease-out;
		   -moz-transition: all 0.2s ease-out;
		    -ms-transition: all 0.2s ease-out;
		     -o-transition: all 0.2s ease-out;
		        transition: all 0.2s ease-out;
	}

	.btn-menu {
		position: absolute;
		right: 10px;
		top: -22px;
		width: 68px;
		text-align:center;
		cursor: pointer;
		background-color: rgba(37,37,37,0.2);
		height: 86px;
		-webkit-transition: all 0.2s ease-out;
		   -moz-transition: all 0.2s ease-out;
		    -ms-transition: all 0.2s ease-out;
		     -o-transition: all 0.2s ease-out;
		        transition: all 0.2s ease-out;
	}

	@-moz-document url-prefix() {
		.btn-menu {
			top: -21px;
		}
	}

	.btn-menu:before{
		content: "";
		position: absolute;
		left: 15px;
		top: 30px;
		width: 39px;
		height: 24px;
		background: url(/images/menu-f0881df5671c792dcf69b4120599094d.png) no-repeat center center;
	}

	.btn-menu:hover {
		background-color: rgba(24,24,24,1);
	}

	.btn-submenu {
	    cursor: pointer;
	    font-family: "FontAwesome";
	    font-size: 24px;
	    height: 40px;
	    line-height: 38px;
	    position: absolute;
	    right: 30px;
	    text-align: center;
	    top: 18px;
	    width: 30px;
	}

	.btn-submenu:before {
	   content: "\f105";
	   color: #fff;
	}

	.btn-submenu.active:before {
	   content: "\f107"
	}

	.btn-menu {
	   display: none 
	}

	.hide-navigation .top-wrap {
		padding: 8px 0 2px;
	}

	.top-wrap .member {
		position: relative;
	}

	.member-area .welcome {
		line-height: 40px;
	}

	.member-area .name {
		cursor: pointer;
	}

	.member-area .name {
		position: relative;
		font-weight: 700;
		padding-right: 15px;
		display: inline-block;
	}

	.member-area .name:before {
		content: "";
		position: absolute;
		right: 0;
		top: 20px;
		border-width: 4px;
		border-style: solid;
		border-color: #fff transparent transparent transparent;
	}

	.member-area .avatar {
		overflow: hidden;
		border-bottom: 1px solid #e7e7e7;
		height: 73px;
	}

	.member-area .avatar .thumb {
		width: 60px;
		height: 60px;
		float: left;
		margin-right: 15px;
	}

	.member-area .avatar .thumb img {
		-webkit-border-radius: 50%;
		   -moz-border-radius: 50%;
			 -o-border-radius: 50%;
				border-radius: 50%;
	}

	.member-area .logout {
		line-height: normal;
	}

	.member-area .logout {
		background-color: #ebebeb;
		text-align: center;
		padding: 5px 0 7px;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
			 -o-border-radius: 3px;
				border-radius: 3px;
	}

	.member-area .logout a {
		color: var(--gn-text);
	}

	.floatPanel #sidebar2 {
		position: fixed;
		top: 0;
		left: -300px;
		width: 314px;
		height: 100%;
		background-color: var(--gn-surface);
		z-index: 10000000;
		display: block;
		z-index: 1000;
	}

	.toggle-panel {
		position: absolute;
		top: 0;
		right: -23px;
		width: 23px;
		height: 93px;
		background: url(/images/toggle-panel-4ae7f9fd31261d180d3a82216f20f2ca.png) no-repeat center center;
		z-index: 1000000;
		display: block;
		z-index: 10001;
		cursor: pointer;
		-webkit-border-radius: 0 2px 2px 0;
		   -moz-border-radius: 0 2px 2px 0;
			 -o-border-radius: 0 2px 2px 0;
				border-radius: 0 2px 2px 0;
	}

	#hide-menu {
		position: relative;
		cursor: pointer;
		float: left;
		width: 23px;
		height: 23px;
		margin: 10px 15px 0 0;
	}

	#hide-menu:before {
		position: absolute;
		left: 0;
		top: 0;
		content: "\f0c9";
		font-family: "FontAwesome";
		color: #fff;
		font-size: 24px;
	    -webkit-transition: opacity 0.3s ease-in-out;
	       -moz-transition: opacity 0.3s ease-in-out;
	        -ms-transition: opacity 0.3s ease-in-out;
	         -o-transition: opacity 0.3s ease-in-out;
	            transition: opacity 0.3s ease-in-out;
	}

	#hide-menu:hover:before {
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
		filter: alpha(opacity=50);
		opacity: 0.5;
	}

/* Login Page
-------------------------------------------------------------- */
	.section.login-page {
		background-color: var(--gn-page-bg);
		padding: 80px 0;
	}

/* 404 Page
-------------------------------------------------------------- */
	.error-page {
		padding: 120px 0;
		color: var(--gn-text);
	}

	.error-wrap h2 {
		margin: 0;
		font-size: 48px;
		line-height: 60px;
		font-weight: 700;
		margin-bottom: 20px;
	}

	.error-wrap p {
		font-size: 18px;
		line-height: 30px;
		margin-bottom: 20px;
	}

	.error-wrap #searchform {
		position: relative;
		overflow: hidden;
		line-height: 53px;
		width: 510px;
		padding-bottom: 40px;
	}

	.error-wrap #s {
		width: 100%;
		height: 53px;
		border: 1px solid #e7e9ea;
	}

	.error-wrap #searchsubmit {
		position: absolute;
		right: 0;
		top: 0;
		padding: 0;
		width: 59px;
		height: 53px;
		text-indent: -9999px;
		background: url(/images/search-cd6eea5fbc3bbc847032dc1ba5bc34c6.png) no-repeat center center;
		margin: 0;
	}

	.error-wrap .spacer {
		position: relative;
	}

	.error-wrap .spacer:before {
		position: absolute;
		left: 0;
		top: 0;
		content: "";
		width: 510px;
		height: 1px;
		z-index: 1;
		background-color: #e8eaec;
	}

	.error-wrap .spacer:after {
		position: absolute;
		left: 50px;
		top: -13px;
		color: var(--gn-muted);
		content: "or";
		font-size: 18px;
		width: 30px;
		height: 30px;
		background-color: var(--gn-surface);
		z-index: 2222;
		text-align: center;
	}

	.error-wrap .go-home {
		margin-top: 50px;
		font-weight: normal;
	}

/* About Page
-------------------------------------------------------------- */
.about-page-wrap {
	overflow: hidden;
	padding: 22px 96px 0 0;
}

.about-page .content-left {
	float: left;
	width: 22.97%;
	margin-right: 4.82%;
}

.about-page .content-right {
	float: right;
	width: 72.2%;
}

.about-page .content-left h5.title {
	font-size: 16px;
	font-weight: 500;
	margin: 0 0 8px;
}

.about-page .about-links,
.about-page .about-updates,
.about-page .about-contact {
	font-size: 14px;
	padding: 30px;
	border: 1px solid var(--gn-border);
	margin-bottom: 30px;
	border-radius: 4px;
}

.about-page .about-links {
	padding: 0 30px 0 20px;
}

.about-page .about-links li {
	line-height: 50px;
	border-top: 1px solid var(--gn-border);
}

.about-page .about-links li:first-child {
	border-top: 0;
}

.about-page .about-links li a {
	font-size: 16px;
	color: var(--gn-text);
}

.about-page .about-links li a:hover {
	font-weight: 700;
	text-decoration: none;
}

.about-page .about-updates__list li {
	margin-bottom: 10px;
}

.about-page .about-updates__time {
	display: block;
	font-size: 12px;
	line-height: 18px;
	color: var(--gn-muted);
	padding-top: 7px;
}

.about-page .about-updates__text {
	display: block;
	line-height: 22px;
}

.about-page .about-contact {
	line-height: 22px;
}

.about-page .about-contact p {
	margin-bottom: 10px;
}

.about-page h1.title {
	font-size: 36px;
	margin: -7px 0 20px;
}

.about-page .subtitle {
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 37px;
}

.about-page .flexslider {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.about-page .flexslider img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* Legal / termos
-------------------------------------------------------------- */
.gn-legal-page {
	padding-bottom: 48px;
}

.gn-legal-page__article {
	background-color: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 4px;
	margin: 24px auto 0;
	max-width: 820px;
	padding: 36px 40px 48px;
}

.gn-legal-page__header {
	border-bottom: 2px solid var(--gn-primary);
	margin-bottom: 24px;
	padding-bottom: 16px;
}

.gn-legal-page__header h1 {
	color: var(--gn-primary);
	font-size: 28px;
	line-height: 1.25;
	margin: 0 0 8px;
}

.gn-legal-page__kicker {
	color: var(--gn-muted);
	font-size: 16px;
	margin: 0;
}

.gn-legal-page__info {
	background-color: var(--gn-primary-soft);
	border-radius: 4px;
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 24px;
	padding: 16px 20px;
}

.gn-legal-page__info p {
	margin: 0 0 6px;
}

.gn-legal-page__info p:last-child {
	margin-bottom: 0;
}

.gn-legal-page__article p,
.gn-legal-page__article li {
	color: var(--gn-text);
	font-size: 16px;
	line-height: 1.6;
	text-align: justify;
}

.gn-legal-page__article p {
	margin: 0 0 14px;
}

.gn-legal-page__article ul {
	margin: 0 0 16px;
	padding-left: 22px;
}

.gn-legal-page__article li {
	margin-bottom: 8px;
}

.gn-legal-page__part {
	border-left: 4px solid var(--gn-accent);
	color: var(--gn-primary);
	font-size: 20px;
	line-height: 1.3;
	margin: 36px 0 18px;
	padding-left: 12px;
}

.gn-legal-page__section h3 {
	color: var(--gn-primary-dark);
	font-size: 18px;
	line-height: 1.35;
	margin: 22px 0 10px;
}

.gn-legal-page__article a {
	color: var(--gn-accent-text);
}

.gn-legal-page__article a:hover,
.gn-legal-page__article a:focus-visible {
	text-decoration: underline;
}

@media only screen and (max-width: 767px) {
	.gn-legal-page__article {
		margin-top: 12px;
		padding: 24px 18px 32px;
	}

	.gn-legal-page__header h1 {
		font-size: 22px;
	}

	.gn-legal-page__article p,
	.gn-legal-page__article li {
		text-align: left;
	}
}

/* Contact Page
-------------------------------------------------------------- */
	.contact-page .content-left {
		padding-right: 96px;
	}

	.contact-page h2 {
		font-size: 18px;
		font-weight: 700;
		margin: 18px 0 32px;
	}

	.contact-page h2.title-map {
		margin: 18px 0 15px;
	}

	.contact-page .input-wrap {
		float: left;
		width: 48.66%;
		margin-right: 2.67%;
		margin-bottom: 20px;
	}

	.contact-page .input-wrap.last {
		margin-right: 0;
	}

	.contact-page .input-wrap input {
		width: 100%;
	}

	.contact-page .contact-info {
		margin: -12px 0 40px;
		color: #a6a6a6;
		line-height: 30px;
	}

	.contact-page .contact-info .title {
		font-size: 16px;
		color: var(--gn-text);
	}

	.contact-page .contact-social li {
		float: left;
		margin: 20px 21px 0 0;
	}

	.contact-page .contact-social i {
		font-size: 20px;
		color: #d5d5d5;
	    -webkit-transition: color 0.3s ease-in-out;
	       -moz-transition: color 0.3s ease-in-out;
	        -ms-transition: color 0.3s ease-in-out;
	         -o-transition: color 0.3s ease-in-out;
	            transition: color 0.3s ease-in-out;
	}

	.contact-page #map {
		margin-bottom: 40px;
	}

/* Home Page
-------------------------------------------------------------- */
	#main {
		margin: 0;
		padding-bottom: var(--gn-gap-ad);
		padding-top: var(--gn-gap-ad);
	}

	#main.article-endless {
		margin-top: 0;
		margin-bottom: 0;
	}

	.section-title {
		padding: 7px 0 13px;
	}

	.section-title h1,
	.section-title h4 {
		margin: 0;
	}

	.section-title h1,
	.section-title h1 a,
	.section-title h4 a {
		font-size: 24px;
		font-weight: 300 !important;
		line-height: 40px;
	}

	.section-title h1 a,
	.section-title h4 a {
		text-decoration: none;
	}

	.post h3 a:hover {
		text-decoration: none;
	}

	.thumb img {
	    -webkit-transition: all 0.3s ease-in-out;
	       -moz-transition: all 0.3s ease-in-out;
	        -ms-transition: all 0.3s ease-in-out;
	         -o-transition: all 0.3s ease-in-out;
	            transition: all 0.3s ease-in-out;
	}

	.thumb img:hover {
	   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	   filter: alpha(opacity=90);
	   opacity: 0.9;
	}

	.featured-posts,
	.highlights-posts,
	.editors-posts,
	.trending-posts,
	.popular-posts {
		overflow: hidden;
		padding-bottom: 57px;
	}

	.highlights-posts {
		padding-bottom: 7px;
	}

	.featured-posts:after,
	.highlights-posts:after,
	.editors-posts:after {
		content: "";
		display: table;
		clear: both;
	}

	.featured-posts .cat a,
	.featured-posts .cat span,
	.highlights-posts .cat a,
	.highlights-posts .cat span,
	.editors-posts .cat a,
	.editors-posts .cat span,
	.popular-posts .cat a,
	.popular-posts .cat span,
	.social-media-posts .cat a,
	.social-media-posts .cat span {
		display: inline-block;
		font-size: 10px;
		color: var(--gn-muted);
		font-weight: 700;
		text-transform: uppercase;
		line-height: 21px;
	}

	/* Featured posts */
	.featured-posts .content-left {
		float: left;
		width: 61.49%;
		margin-right: 2.67%;
	}

	.featured-posts .content-right {
		float: left;
		width: 35.82%;
	}

	.featured-posts .content-left .cat {
		margin-top: 5px;
	}

	.featured-posts .content-left h3 {
		margin: 0 0 17px;
	}

	.featured-posts .content-left h3 a {
		font-size: 24px;
		line-height: 1.3;
		font-weight: 700;
	}

	.featured-posts .excerpt-entry {
		margin-bottom: 10px;
	}

	.featured-posts .author {
		font-size: 14px;
		display: block;
		margin-bottom: 23px;
	}

	.featured-posts .content-right .post {
		margin-top: 40px;
	}

	.featured-posts .content-right .post:first-child {
		margin-top: 0;
	}

	.featured-posts .content-right h3 {
		margin: 0 0 25px;
		line-height: 27px;
	}

	.featured-posts .content-right h3 a {
		font-size: 18px;
		line-height: 27px;
		font-weight: normal;
	}

	.featured-posts .content-right .cat {
		margin-top: 13px;
	}

	/* Highlights posts */
	.highlights-posts .post {
		float: left;
		width: 48.66%;
		margin-right: 2.67%;
		margin-bottom: 50px;
	}

	.highlights-posts .post.last {
		margin-right: 0;
	}

	.highlights-posts .cat {
		margin-top: 12px;
	}

	.highlights-posts h3 {
		line-height: 27px;
		margin: 0 0 23px;
	}

	.highlights-posts h3 a {
		font-size: 18px;
		font-weight: 700;
		line-height: 22px;
	}

	/* Editors posts */
	.editors-posts .post {
		clear: both;
		overflow: hidden;
	}

	.editors-posts .post {
		padding-top: 30px;
		margin-top: 25px;
		border-top: 1px solid var(--gn-border);
	}

	.editors-posts .post-wrap .post:first-child {
		padding-top: 0;
		margin-top: 0;
		border: none;
	}

	.editors-posts .post .thumb {
		float: left;
		margin-right: 20px;
		width: 172px; /* largura inalterada; altura A4 ≈ 122px (antes 16:9 ≈ 97px) */
	}

	.editors-posts .post .content {
		min-width: 0;
		overflow: hidden;
	}

	.editors-posts .cat {
		margin-top: -8px;
	}

	.editors-posts h3 {
		font-size: 18px;
		font-weight: 700;
		line-height: 27px;
		margin: 0;
	}

	.editors-posts .excerpt-entry {
		margin-bottom: 3px;
	}

	/* Popular posts */
	.popular-posts .content-left {
		float: left;
		width: 48.66%;
		margin-right: 2.67%;
	}

	.popular-posts .content-left .post {
		margin-bottom: 28px;
	}

	.popular-posts .content-left .post:last-child {
		margin-bottom: 0;
	}

	.popular-posts .content-right .post {
		clear: left;
		min-height: 78px;
		overflow: hidden;
		padding-top: 15px;
		margin-top: 15px;
		border-top: 1px solid var(--gn-border);
	}

	.popular-posts .content-right .post:first-child {
		padding-top: 0;
		margin-top: 0;
		border-top: none;
	}

	.popular-posts .content-right {
		float: left;
		width: 48.66%;
	}

	.popular-posts .content-left .cat {
		margin-top: 7px;
	}

	.popular-posts .content-left .excerpt-entry {
		font-size: 18px;
		line-height: 30px;
		margin-bottom: 10px;
	}

	.popular-posts .content-left h3 {
		line-height: 30px;
		margin: 0 0 3px;
	}

	.popular-posts .content-left h3 a {
		font-size: 24px;
		font-weight: 700;
	}

	.popular-posts .content-left .author {
		display: block;
		font-size: 14px;
		margin-bottom: 24px;
	}

	.popular-posts .content-right .thumb {
		float: left;
		margin-right: 15px;
		width: 111px;
	}

	.popular-posts .content-right .content {
		overflow: hidden;
		min-height: 77px;
	}

	.popular-posts .content-right h3 {
		margin: -3px 0 0;
		font-size: 16px;
		font-weight: normal !important;
		line-height: 24px;
	}

	.popular-posts .content-right .date {
		font-size: 14px;
		color: #959595;
	}

	.trending-posts .post .thumb {
		margin-bottom: 20px;
	}

	.trending-posts .post .date {
		font-size: 14px;
		color: var(--gn-muted);
	}

	.trending-posts .post {
		border-bottom: 1px solid #e9e9e9;
		padding-bottom: 17px;
		padding-top: 11px;
	}

	.trending-posts .post.first {
		padding-top: 0;
		padding-bottom: 21px;
	}

	.trending-posts .post h3 {
		font-size: 18px;
		line-height: 30px;
		margin: 0;
		font-weight: normal !important;
	}

	.trending-posts .post h3 a {
		color: #2d3340;
	}

	.trending-posts .post.first h3 {
		font-weight: 700 !important;
	}

	.social-media-posts .post {
		margin-bottom: 40px;
		overflow: hidden;
	}

	.social-media-posts .thumb {
		float: left;
		margin-right: 20px;
		width: 364px;
	}

	.social-media-posts .content {
		overflow: hidden;
		min-height: 244px;
	}

	.social-media-posts .cat {
		margin-top: -10px;
	}

	.social-media-posts h3 {
		margin: 0 0 2px;
		line-height: 28px;
	}

	.social-media-posts h3 a {
		font-size: 24px;
		font-weight: 700;
		line-height: 30px;
	}

	.social-media-posts .excerpt-entry {
		font-size: 18px;
		line-height: 30px;
		margin-bottom: 22px;
	}

/* Sidebar Widgets
-------------------------------------------------------------- */
	.sidebar-widget-1 .widget {
		margin-bottom: 30px;
	}

	.sidebar-widget-1 .widget-title {
		font-size: 24px;
		font-weight: 300 !important;
		margin: 0 0 20px;
	}

	.sidebar-widget-1 .widget {
		border: 1px solid #ebebeb;
		padding: 22px 27px;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
			 -o-border-radius: 3px;
				border-radius: 3px;
	}

	.sidebar-widget-1 .widget-tabs,
	.sidebar-widget-1 .widget-destaque {
		border: none;
		padding: 0;
	}

	#sidebar2 {
		border-left: 1px solid var(--gn-border);
		border-right: 1px solid var(--gn-border);
		margin-right: 20px;
		padding: 17px 0;
	}

	/* Widget recent */
	.widget-recent ul li {
		clear: left;
	    border-top: 1px solid var(--gn-border);
	    margin-top: 15px;
	    min-height: 78px;
	    overflow: hidden;
	    padding-top: 15px;
	}

	.widget-recent ul li:first-child {
		margin-top: 0;
		padding: 5px 0 0;
		border: none;
	}

	.widget-recent .thumb {
		float: left;
		margin-right: 15px;
		width: 111px;
	}

	.widget-recent .content {
		overflow: hidden;
		min-height: 77px;
	}

	.widget-recent .content h3 {
		margin: -3px 0 0;
		font-size: 16px;
		line-height: 24px;
		font-weight: normal !important;
	}

	.widget-recent .content h3 a {
		color: var(--gn-text);
	}

	.widget-recent .content a:hover {
		text-decoration: none;
	}

	.widget-recent .content .date {
		font-size: 14px;
		color: #959595;
	}

	/* Widget advertisement */
	.widget-destaque .gn-faixa-legenda {
		color: #959595;
		font-size: 12px;
		line-height: 20px;
		text-align: right;
	}

	.widget-destaque img {
		display: block;
		width: 100%;
		height: auto;
	}

	/* Widget most popular */
	.widget-most-popular .order,
	.most-popular .order {
		float: left;
		line-height: 25px;
		padding: 0 17px 0 0;
	}

	.widget-most-popular li,
	.most-popular li {
		border-top: 1px solid #ededed;
		padding-top: 15px;
		margin-top: 14px;
	}

	.widget-most-popular li:first-child,
	.most-popular li:first-child {
		border: none;
		padding: 8px 0 0;
		margin: 0;
	}

	.widget-most-popular li p,
	.most-popular li p {
		overflow: hidden;
	}

	.widget-most-popular li a,
	.most-popular li a {
		color: var(--gn-text);
		font-size: 16px;
		line-height: 24px;
		overflow: hidden;
		text-decoration: none;
	}

	.widget-most-popular li a:hover,
	.most-popular li a:hover {
		text-decoration: none;
	}

	/* Widget tabs */
	.tabs ul {
		overflow: hidden;
		margin:0;
	}

	.tabs .menu-tab li {
		position: relative;
		bottom: -1px;
		float: left;
		margin-right: 2px;
	}

	.tabs .menu-tab li a,
	.tabs .menu-tab li button {
		display: block;
		color: #2d3340;
		background-color: #f5f5f5;
		padding: 11px 20px;
		text-decoration: none;
		-webkit-border-radius: 3px 3px 0 0;
		   -moz-border-radius: 3px 3px 0 0;
			 -o-border-radius: 3px 3px 0 0;
				border-radius: 3px 3px 0 0;
	}

	.tabs .menu-tab li button {
		appearance: none;
		border: 0;
		font: inherit;
		cursor: pointer;
		width: 100%;
		text-align: left;
	}

	.tabs .menu-tab li a:hover,
	.tabs .menu-tab li button:hover {
		background-color: #efefef;
		text-decoration: none;
	}

	.tabs .menu-tab li.active a,
	.tabs .menu-tab li.active button {
		background-color: var(--gn-surface);
		border: 1px solid #ebebeb;
		transition: none;
		-webkit-border-radius: 3px 3px 0 0;
		   -moz-border-radius: 3px 3px 0 0;
			 -o-border-radius: 3px 3px 0 0;
				border-radius: 3px 3px 0 0;
	}

	.tabs .content-tab {
		margin-top: 50px;
		border: 1px solid #ebebeb;
		padding: 0 20px 20px;
		margin-top: -1px;
		background-color: var(--gn-surface);
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
			 -o-border-radius: 3px;
				border-radius: 3px;
	}

	.tabs .comments li,
	.tabs .pop-posts li {
		clear: left;
		margin-top: 10px;
		padding-top: 14px;
		min-height: 81px;
		border-top: 1px solid #e9e9e9;
	}

	.tabs .comments li:first-child,
	.tabs .pop-posts li:first-child {
		margin-top: 0;
		border-top: none;
	}

	.tabs .pop-posts li:first-child {
		margin-top: 5px;
	}

	.tabs .comments .avatar {
		float: left;
		margin-right: 17px;
		width: 60px;
		height: 60px;
		overflow: hidden;
	}

	.tabs .comments .avatar img {
		display: block;
		width: 60px;
		height: 60px;
		object-fit: cover;
		-webkit-border-radius: 50%;
		   -moz-border-radius: 50%;
			 -o-border-radius: 50%;
				border-radius: 50%;
	}

		.tabs .comments p {
		font-size: 14px;
		line-height: 21px;
		color: var(--gn-muted);
		padding-top: 8px;
	}

	.tabs .comments .gn-sidebar-comment-body {
		color: #2d3340;
		font-family: var(--gn-font-ui);
		font-style: italic;
	}

	.tabs .comments .gn-sidebar-comment-time {
		white-space: nowrap;
	}

	.tabs .comments p a,
	.tabs .comments .gn-sidebar-comment-author,
	.tabs .pop-posts .text a {
		color: #2d3340;
		text-decoration: none;
	}

	.tabs .comments .gn-sidebar-comment-author {
		color: #000;
		font-family: var(--gn-font-ui);
		font-weight: 700;
	}

	.tabs .comments .gn-sidebar-comment-link {
		color: var(--gn-accent-solid);
		font-weight: 700;
		text-decoration: none;
	}

	.tabs .comments p a:hover,
	.tabs .comments .gn-sidebar-comment-link:hover,
	.tabs .comments .gn-sidebar-comment-link:focus-visible,
	.tabs .pop-posts .text a:hover {
		text-decoration: none;
	}

	.tabs .pop-posts .thumb {
		float: left;
		margin-right: 15px;
		margin-top: 3px;
		width: 91px;
	}

	.tabs .pop-posts li {
		margin-top: 17px;
	}

	.tabs .pop-posts .text {
		font-size: 16px;
		line-height: 24px;
		overflow: hidden;
	}

	.tabs .pop-posts .text i {
		display: block;
		font-size: 11px;
		color: #acacac;
		line-height: 16px;
	}

	.tabs .pop-posts .text a:hover {
		text-decoration: none;
	}

	.tabs .tags a {
		color: #2d3340;
		display: inline-block;
		background-color: #f4f4f4;
		padding: 5px 12px;
		margin: 0 1px 5px 0;
		text-decoration: none;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
			 -o-border-radius: 3px;
				border-radius: 3px;
	}

	.tabs .tags a:hover {
		color: #fff;
		font-size: 16px;
		text-decoration: none;
	}

	/* Widget tabs width scroll */
	.tabs.style2 .content-tab.scroll .content {
		height: 3800px;
		overflow: auto;
		position: relative;
	   -webkit-box-sizing: border-box;
	      -moz-box-sizing: border-box;
	           box-sizing: border-box;
	}

	.tabs.style2 ul.menu-tab {
		padding: 0 17px;
		text-align: center;
	}

	.tabs.style2 .menu-tab li {
		float: left;
		bottom: 0;
		width: 50%;
		display: inline;
		margin: 0;
		padding: 7px 0;
		border: 1px solid #efefef;
		-webkit-border-radius: 0 3px 3px 0;
		   -moz-border-radius: 0 3px 3px 0;
			 -o-border-radius: 0 3px 3px 0;
				border-radius: 0 3px 3px 0;
	}

	.tabs.style2 .menu-tab li.active:first-child {
		-webkit-border-radius: 3px 0 0 3px;
		   -moz-border-radius: 3px 0 0 3px;
			 -o-border-radius: 3px 0 0 3px;
				border-radius: 3px 0 0 3px;
	}

	.tabs.style2 .menu-tab li:first-child {
		margin-right: -1px;
	}

	.tabs.style2 .menu-tab li.active {
		background-color: #f3f3f3;
	}

	.tabs.style2 .menu-tab li a,
	.tabs.style2 .menu-tab li button {
		display: inline;
		background-color: transparent;
		font-size: 12px;
		color: #929292;
		text-transform: uppercase;
		font-weight: 700;
	}

	.tabs.style2 .menu-tab li.active a,
	.tabs.style2 .menu-tab li.active button {
		border: none;
		color: var(--gn-text);
	}

	.tabs.style2 .content-tab {
		border: none;
		margin: 10px 0 0;
		padding: 0;
	}

	.tabs.style2 .content-tab li {
		position: relative;
		border-top: 1px solid #ebebeb;
		padding: 11px 17px;
	}

	.tabs.style2 .content-tab.scroll li:before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 5px;
		height: 100%;
		background-color: transparent;
	    -webkit-transition: all 0.3s ease-in-out;
	       -moz-transition: all 0.3s ease-in-out;
	        -ms-transition: all 0.3s ease-in-out;
	         -o-transition: all 0.3s ease-in-out;
	            transition: all 0.3s ease-in-out;
	}

	.tabs.style2 .content-tab.scroll li:hover {
		background-color: #f7f7f7;
	}

	.tabs.style2 .content-tab.scroll li:hover a {
		font-weight: 700;
		text-decoration: none;
	}

	.tabs.style2 .content-tab li:first-child {
		border-top: none;
	}

	.tabs.style2 .content-tab li a {
		font-size: 16px;
		line-height: 24px;
	}

	#sidebar2 .tabs.style2 .content-tab li a {
		color: var(--gn-text);
	}

	/* Widget follow us */
	.widget-follow-us {
		text-align: center;
	}

	.widget-follow-us a {
		display: inline-block;
		width: 45px;
		height: 45px;
		line-height: 45px;
		text-align: center;
		color: #fff;
		font-size: 20px;
		margin: 0;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
			 -o-border-radius: 3px;
				border-radius: 3px;
	    -webkit-transition: opacity 0.3s ease-in-out;
	       -moz-transition: opacity 0.3s ease-in-out;
	        -ms-transition: opacity 0.3s ease-in-out;
	         -o-transition: opacity 0.3s ease-in-out;
	            transition: opacity 0.3s ease-in-out;
	}

	.widget-follow-us a:hover {
	   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	   filter: alpha(opacity=70);
	   opacity: 0.7;
	}

	.widget-follow-us a.facebook {
		background-color: #3c5a9b;
	}

	.widget-follow-us a.twitter {
		background-color: #1fc1f1;
	}

	.widget-follow-us a.google {
		background-color: #df4932;
	}

	.widget-follow-us a.youtube {
		background-color: #cf1312;
	}

	.widget-follow-us a.instagram {
		background-color: #c13584;
	}

	.widget-follow-us a.x {
		background-color: #111111;
	}

	.widget-follow-us a.whatsapp {
		background-color: #25d366;
	}

	.widget-follow-us a.x,
	.widget-follow-us a.whatsapp {
		align-items: center;
		display: inline-flex;
		justify-content: center;
		line-height: 1;
	}

	.widget-follow-us a.whatsapp .gn-social-whatsapp-icon {
		height: 20px;
		width: 20px;
	}

	.widget-follow-us a.linkedin {
		background-color: #007bb9;
	}

	.widget-follow-us a.tumblr {
		background-color: #2b4763;
	}

	.widget-follow-us .socials {
		align-items: center;
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
		justify-content: center;
	}

	/* Widget categories */
	.widget-categories li {
		border-top: 1px solid #ededed;
		line-height: 30px;
		padding-top: 8px;
		margin-top: 7px;
	}

	.widget-categories li:first-child {
		border-top: none;
		padding: 5px 0 0;
		margin: 0;
	}

	.widget-categories li a {
		color: #2d3340;
	}

	.widget-categories li a:hover {
		text-decoration: none;
	}

	.widget-categories li a span {
		color: #acacac;
	}

/* Article
-------------------------------------------------------------- */
	.posts {
		margin-top: 25px;
	}

	.posts.posts-list .post {
		border-top: 4px solid #ebebeb;
		padding: 41px 0 67px;
	}

	.posts .post:first-child {
		border-top: none;
		padding-top: 0;
	}

	.posts .post:last-child {
		padding-bottom: 0;
	}

	.posts h1,
	.posts h2 {
		font-size: 48px;
		line-height: 55px;
		font-weight: 700;
		margin: 0 0 28px;
	}

	.post-single .head-post > h1 {
		font-size: 24px;
		line-height: 1.3;
	}

	.posts h1:hover a,
	.posts h2:hover a {
		text-decoration: none;
	}

	.posts .head-post {
		padding-bottom: 39px;
		border-bottom: 1px solid #e1e1e1;
	}

	.posts .head-post p {
		font-size: 24px;
		line-height: 36px;
		font-weight: 300;
		margin-bottom: 26px;
	}

	.posts .meta {
		color: var(--gn-muted);
	}

	.posts .gn-article-byline,
	.post-single .gn-article-byline {
		align-items: center;
		display: flex;
		gap: 0.65rem;
	}

	.post-single .gn-article-byline__avatar {
		border-radius: 50%;
		flex: 0 0 2.25rem;
		height: 2.25rem;
		overflow: hidden;
		width: 2.25rem;
	}

	.post-single .gn-article-byline__avatar img {
		border-radius: 50%;
		display: block;
		height: 100%;
		max-width: none;
		object-fit: cover;
		object-position: center;
		width: 100%;
	}

	.post-single .gn-article-byline__text {
		line-height: 1.4;
		min-width: 0;
	}

	.posts .body-post {
		margin-top: 40px;
	}

	.posts .main-post {
		overflow: hidden;
	}

	.posts .entry-post p,
	.entry-page p {
		margin-bottom: 27px;
		font-size: 18px;
		line-height: 27px;
	}

	.posts .entry-post ul.list li,
	.entry-page ul.list li {
		position: relative;
		font-size: 18px;
		line-height: 48px;
		padding-left: 25px;
	}

	.entry-page ul.list li:before {
		content: "";
		position: absolute;
		left: 0;
		top: 23px;
		margin-top: -1px;
		width: 5px;
		height: 5px;
		background-color: var(--gn-text);
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
			 -o-border-radius: 3px;
				border-radius: 3px;
	}

	.posts .entry-post img {
		margin: 18px 0 44px;
	}

	.posts .entry-post h1,
	.posts .entry-post h2,
	.posts .entry-post h3,
	.entry-page h1,
	.entry-page h2,
	.entry-page h3,
	.entry-page h4,
	.entry-page h5,
	.entry-page h6 {
		font-weight: 700;
	}

	.posts .tags h4 {
		font-size: 16px;
		color: var(--gn-muted);
		margin: 0 0 30px;
	}

	.posts .tags a {
		display: inline-block;
		padding: 7px 25px;
		border: 1px solid var(--gn-border);
		color: var(--gn-muted);
		margin-right: 6px;
		line-height: 31px;
		-webkit-border-radius: 2px;
		   -moz-border-radius: 2px;
			 -o-border-radius: 2px;
				border-radius: 2px;
	}

	.posts .tags a:hover {
		border-color: #cacaca;
		color: #959595;
		text-decoration: none;
	}

/* Article Detail
-------------------------------------------------------------- */
	.post-wrap.post-single {
		max-width: 832px;
		margin-top: 15px;
	}

	.gn-article-layout,
	.gn-negocio-layout {
		display: flex;
		flex-wrap: wrap;
	}

	.gn-article-destaques,
	.gn-negocio-destaques {
		margin-top: 15px;
	}

	.gn-article-destaques .widget-destaque img,
	.gn-negocio-destaques .widget-destaque img {
		display: block;
		width: 100%;
		height: auto;
	}

	@media (min-width: 992px) {
		.gn-article-destaques,
		.gn-negocio-destaques {
			position: sticky;
			top: 1.25rem;
			align-self: flex-start;
		}
	}

	.post-single .share-post {
		float: left;
		width: 140px;
		margin: 8px 40px 0 0;
	}

	.post-single .share-post ul {
		border: 1px solid #e1e1e1;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
			 -o-border-radius: 3px;
				border-radius: 3px;
	}

	.post-single .share-post ul li {
		line-height: 40px;
		border-top: 1px solid #e1e1e1;
		padding-left: 43px;
	}

	.post-single .share-post ul li a {
		position: relative;
	}

	.post-single .share-post ul li a:before {
		position: absolute;
		left: -28px;
		top: -10px;
		font-family: "FontAwesome";
		font-size: 16px;
		color: #d7d7d7;
	    -webkit-transition: all 0.3s ease-in-out;
	       -moz-transition: all 0.3s ease-in-out;
	        -ms-transition: all 0.3s ease-in-out;
	         -o-transition: all 0.3s ease-in-out;
	            transition: all 0.3s ease-in-out;
	}

	.post-single .share-post ul li.email a:before {
		content: "\f0e0";
	}

	.post-single .share-post ul li.facebook a:before {
		content: "\f09a";
	}

	.post-single .share-post ul li.twitter a:before {
		content: "\f099";
	}

	.post-single .share-post ul li.more a:before {
		content: "\f064";
	}

	.post-single .share-post ul li a:hover,
	.post-single .share-post ul li a:hover:before {
		color: #1fc1f1;
		text-decoration: none;
	}

	.post-single .share-post ul li:first-child {
		border-top: none;
	}

	.post-single .share-post ul li.count-share {
		text-align: center;
		font-size: 18px;
		padding: 29px 0 8px;
	}

	.post-single .share-post ul li.count-share .numb {
		font-size: 48px;
		line-height: 36px;
		font-weight: 700;
	}

	.post-single .share-post ul li a {
		font-size: 14px;
		color: var(--gn-muted);
	}

	.post-single .share-post ul span {
		display: block;
	}

	.post-single .helpful {
		margin-top: 35px;
		line-height: 35px;
	}

	.post-single .helpful a,
	.post-single .helpful button.like {
		display: inline-block;
		position: relative;
		font-size: 14px;
		line-height: 35px;
		padding: 0 20px 0 49px;
		margin: 0 10px 10px 0;
		-webkit-border-radius: 2px;
		   -moz-border-radius: 2px;
			 -o-border-radius: 2px;
				border-radius: 2px;
	}

	.post-single .helpful button.like {
		border: none;
		cursor: pointer;
		font-family: inherit;
	}

	.post-single .helpful a:before,
	.post-single .helpful button.like:before {
		position: absolute;
		left: 25px;
		top: 0;
		font-family: "FontAwesome";
		font-size: 16px;
		color: #fff;
	    -webkit-transition: all 0.3s ease-in-out;
	       -moz-transition: all 0.3s ease-in-out;
	        -ms-transition: all 0.3s ease-in-out;
	         -o-transition: all 0.3s ease-in-out;
	            transition: all 0.3s ease-in-out;
	}

	.post-single .helpful a.like:before,
	.post-single .helpful button.like:before {
		content: "\f087";
	}

	.post-single .helpful a.dislike:before {
		content: "\f088";
		color: #7d7d7d;
	}

	.post-single .helpful a.like,
	.post-single .helpful button.like {
		color: #fff;
		background-color: #1ca458;
	}

	.post-single .helpful button.like.is-liked {
		background-color: #148a48;
	}

	.post-single .helpful .gn-reacao-count {
		margin-left: 0.4rem;
		font-weight: 600;
	}

	.post-single .helpful a.dislike {
		color: #7d7d7d;
		background-color: #ebebeb;
	}

	.post-single .tags {
		margin-top: 40px;
	}

	.post-single .comment-post .title {
		font-size: 24px;
		line-height: 30px;
		font-weight: 300;
		margin: 0 0 17px;
		color: #292c33;
	}

	.comments-list {
		margin-bottom: 50px;
	}

	.comments-list .comment {
		position: relative;
		color: var(--gn-text);
		padding: 12px 14px;
		margin-bottom: 12px;
	}

	.comments-list .comment .avatar {
		float: left;
		margin-right: 12px;
		width: 40px;
		height: 40px;
	}

	.comments-list .comment .avatar img {
		-webkit-border-radius: 50%;
		   -moz-border-radius: 50%;
			 -o-border-radius: 50%;
				border-radius: 50%;
	}

	.comments-list .comment-text {
		overflow: hidden;
	}

	.comments-list .comment-head {
		margin: 4px 0 8px;
	}

	.comments-list .comment-head,
	.comments-list .comment-head a {
		color: #acacac;
	}

	.comments-list .comment-head a:hover {
		text-decoration: none;
	}

	.comments-list .comment-head span {
		margin-right: 12px;
	}

	.comments-list .comment-head .comment-delete form {
		display: inline;
	}

	.comments-list .comment-head .comment-delete button {
		background: none;
		border: 0;
		padding: 0;
		color: inherit;
		cursor: pointer;
		font: inherit;
	}

	.comments-list .comment-head .comment-delete button:hover {
		text-decoration: none;
	}

	.comments-list .comment-head .author {
		color: #343434;
		font-weight: 700;
	}

	.comments-list .comment-body {
		line-height: 24px;
	}

	.comments-list .comment-body--removed {
		color: var(--gn-muted);
		font-style: italic;
		margin: 0;
	}

	.comments-list .comment-head .comment-in-reply {
		font-weight: 400;
	}

	.comments-list .comment-head .comment-in-reply__name {
		color: #343434;
		font-weight: 600;
	}

	.comments-list .comment-replies {
		list-style: none;
		margin: 0 0 8px;
		padding: 0 0 0 16px;
	}

	.comments-list .comment-replies .comment-replies {
		padding-left: 0;
	}

	.comments-list .comment.comment-reply {
		background: var(--gn-bg);
		padding: 12px 14px;
	}

	.comments-list .comment.is-reply-target {
		border-color: var(--gn-primary, #1a6b8a);
	}

	.gn-comments-thread:not(.is-expanded) > li:nth-child(n+7) {
		display: none;
	}

	.comments-more-wrap {
		margin: 0 0 24px;
	}

	.gn-comments-thread .comment-respond {
		margin: 0 0 20px;
	}

	.comment-form {
		overflow: hidden;
	}

	.comment-respond {
		margin-bottom: 74px;
	}

	.comment-respond .name-comment input,
	.comment-respond .email-comment input {
		width: 368px;
		margin-bottom: 10px;
	}

	.comment-respond .name-comment input {
		margin-top: 3px;
	}

	.comment-respond .email-comment span {
		font-size: 14px;
		font-style: italic;
		color: #b0b0b0;
		margin-left: 18px;
	}

	.comment-respond .submit-comment {
		padding-bottom: 1px;
		margin-top: 20px;
	}

/* Footer
-----------.-------------------------------------------------- */
	.footer-widgets,
	.footer-widgets a {
		color: #b0b1b4;
	}

	.footer-widgets {
		background-color: #252525;
		padding: 48px 0 20px;
	}

	.footer-widgets .widget {
		margin-bottom: 30px;
	}

	.footer-widgets .widget-title {
		font-size: 14px;
		line-height: 24px;
		font-weight: 700;
		color: #fff;
		margin: 8px 0 20px;
	}

	/* Widget brand */
	.footer-widgets .widget-brand {
		border-bottom: 2px solid #2e2e2e;
		padding-bottom: 20px;
	}

	.footer-widgets .widget-brand .logo {
		margin-bottom: 19px;
	}

	.footer-widgets .widget-brand p {
		font-size: 18px;
		line-height: 27px;
		font-weight: 300 !important;
		margin-bottom: 11px;
	}

	/* Widget social */
	.footer-widgets .widget-social .social-list {
		margin-bottom: 12px;
	}

	.footer-widgets .widget-social .social-list:after {
		content: "";
		display: table;
		clear: left;
	}

	.footer-widgets .widget-social .social-list a {
		display: block;
		float: left;
		width: 40px;
		height: 40px;
		background-color: #343434;
		text-align: center;
		line-height: 38px;
		margin-left: 10px;
		-webkit-border-radius: 3px;
		   -moz-border-radius: 3px;
			 -o-border-radius: 3px;
				border-radius: 3px;
	}

	.footer-widgets .widget-social .social-list a:first-child {
		margin-left: 0;
	}

	.footer-widgets .widget-social .social-list img {
	   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
	   filter: alpha(opacity=40);
	   opacity: 0.4;
	   -webkit-transition: opacity 0.3s ease-in-out;
	      -moz-transition: opacity 0.3s ease-in-out;
	       -ms-transition: opacity 0.3s ease-in-out;
	        -o-transition: opacity 0.3s ease-in-out;
	           transition: opacity 0.3s ease-in-out;
	}

	.footer-widgets .widget-social .social-list a:hover img {
	   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	   filter: alpha(opacity=80);
	   opacity: 0.8;
	}

	.footer-widgets .widget-social .email {
		font-size: 14px;
		color: #acacac;
	}

	/* Widget updates (ex-widget-twitter) */
	.footer-widgets .widget-updates p,
	.footer-widgets .widget-updates a {
		font-size: 14px;
		line-height: 24px;
	}

	.footer-widgets .widget-updates a {
		color: #b0b1b4;
	}

	.footer-widgets .widget-updates a:hover {
		text-decoration: none;
		color: var(--gn-accent-text);
	}

	/* Widget links */
	.footer-widgets .widget-list li {
		border-bottom: 2px solid #2e2e2e;
		padding-bottom: 11px;
		margin-top: 8px;
	}
	.footer-widgets .widget-list li a {
		font-size: 14px;
		color: #b0b1b4;
	}

	.footer-widgets .widget-list li a:hover {
		text-decoration: none;
	}

	/* Footer copyright */
	.footer-copyright {
		background-color: #1e1e1e;
		color: #949494;
		line-height: 50px;
		font-size: 14px;
		font-weight: 300 !important;
	}

/* GoTop
-------------------------------------------------------------- */
	.go-top {
		position: fixed !important;
		right: -35px;
		bottom: 15px;
		color: var(--gn-text); 
		background-color: var(--gn-surface);
		display: block;
		font-size: 18px;
		line-height: 30px;
		text-align: center;
		width: 35px;
		height: 35px;
		visibility: hidden;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
		opacity: 0;
		z-index: 9999;
		cursor: pointer;
		-webkit-border-radius: 50%;
		   -moz-border-radius: 50%;
			 -o-border-radius: 50%;
				border-radius: 50%;
		-webkit-transition: all 0.3s ease-in-out;
		  -moz-transition: all 0.3s ease-in-out;
		   -ms-transition: all 0.3s ease-in-out;
		    -o-transition: all 0.3s ease-in-out;
		       transition: all 0.3s ease-in-out;
	}

	.go-top.show {
		right: 15px;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter: alpha(opacity=100);
		opacity: 1;
		visibility: visible;
	}

/* Media Queries
-------------------------------------------------------------- */
	/* Smaller than standard 1200 */
	@media only screen and (max-width: 1199px) {
		.header-wrap #searchform,
		.header-wrap #searchform #s {
			width: 220px;
		}

		.tabs.style2 .menu-tab li a,
		.tabs.style2 .menu-tab li button {
			padding: 11px 10px;
		}

		.about-page-wrap {
			padding: 22px 0 0;
		}

		.contact-page .content-left {
		    padding-right: 50px;
		}
	}

	/* Smaller than standard 992 */
	@media only screen and (max-width: 991px) {
		.header-wrap .col-md-9,
		.header-wrap .col-md-3 {
			float: auto;
		}

		#mainnav > ul > li {
			padding: 0 18px;
		}

		#mainnav > ul > li.has-children > a:after {
			font-size: 13px;
			top: 1px;
		}

		.header-wrap .col-md-9,
		.header-wrap .col-md-3 {
			float: auto;
		}

		.search-wrap {
			position: relative;
		}

		.search-wrap .search-icon {
			position: absolute;
			right: 0;
			top: 26px;
			width: 30px;
			height: 32px;
			cursor: pointer;
		    -webkit-transition: opacity 0.3s ease-in-out;
		       -moz-transition: opacity 0.3s ease-in-out;
		        -ms-transition: opacity 0.3s ease-in-out;
		         -o-transition: opacity 0.3s ease-in-out;
		            transition: opacity 0.3s ease-in-out;
		}

		.search-wrap .search-icon:hover {
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
			filter: alpha(opacity=70);
			opacity: 0.7;
		}

		.search-wrap .search-icon:before {
			position: absolute;
			right: 0;
			top: 3px;
			content: "\f002";
			font-family: "FontAwesome";
			color: #989a9e;
			font-size: 18px;
		    -webkit-transition: opacity 0.3s ease-in-out;
		       -moz-transition: opacity 0.3s ease-in-out;
		        -ms-transition: opacity 0.3s ease-in-out;
		         -o-transition: opacity 0.3s ease-in-out;
		            transition: opacity 0.3s ease-in-out;
		}

		.header-wrap #searchform {
			float: none;
			position: absolute;
			right: 0;
			top: -1px;
			display: none;
			margin: 0;
		    -webkit-transition: all 0.2s ease-in-out;
		       -moz-transition: all 0.2s ease-in-out;
		        -ms-transition: all 0.2s ease-in-out;
		         -o-transition: all 0.2s ease-in-out;
		            transition: all 0.2s ease-in-out;
		}

		.header-wrap #searchform #searchsubmit {
			display: none;
		}

		.header-wrap #searchform,
		.header-wrap #searchform #s {
			width: 100% !important;
		}

		.header-wrap #searchform #s {
			position: absolute;
			right: 0;
			font-size: 20px;
			font-weight: 400;
			border: none;
			padding: 0;
			height: 88px;
			background-color: var(--gn-surface);
			border-radius: 0;
		}

		.header-wrap #searchform #s:focus {
			border: none;
		}

		.header-wrap .search-close {
			display: block;
			position: absolute;
			right: 0;
			top: 30px;
			font-size: 24px;
			color: #989a9e;
		}

		.widget-destaque .gn-faixa-legenda {
			text-align: left;
		}

		.gnSlider .slides li .item {
		    font-size: 18px;
		    font-weight: 300;
		    line-height: 24px;
		    max-width: 500px;
		    padding: 20px 23px;
		}

		
		.posts .tags a {
			margin-bottom: 10px;
		}

		.comment-respond .email-comment span {
			display: none;
		}

		.gnSlider .flex-control-nav {
			text-align: right;
		}

		.contact-page .content-left {
		    padding: 0 0 30px 0;
		}
	}

	/* All Mobile Sizes */
	@media only screen and (max-width: 767px) {
		#main {
		    margin: 0;
		}

		.btn-menu {
			display: block ;
		}

		#mainnav {
			display: none;
		}

		.top-wrap .member-area {
			display: none;
		}

		.top-wrap .follow-us {
			display: none;
		}

		.top-wrap .logo {
			margin-bottom: 5px;
		}

		.menu-addon {
			display: block;
		}

		.featured-posts .content-left,
		.featured-posts .content-right,
		.popular-posts .content-left,
		.popular-posts .content-right {
			width: 100%;
			margin-right: 0;
			float: none;	
		}

		.featured-posts .content-left,
		.popular-posts .content-left {
			margin-bottom: 35px;
		}

		.featured-posts .content-right {
			margin: 0 -2%;
		}

		.featured-posts .content-right .post {
			float: left;
			width: 46%;
			margin: 0 2% 10px;
		}

		.highlights-posts .post {
			width: 100%;
			float: none;
		}

		.social-media-posts .thumb {
			float: none;
			margin-bottom: 15px;
			width: 100%;
		}

		.post-single .share-post {
			display: none;
		}

		.gnSlider .slides li .item {
			max-width: 100%;
		    font-size: 15px;
		    font-weight: 300;
		    line-height: 20px;
		    padding: 12px 18px;
		}

		.hide-navigation .top-wrap {
			padding: 8px 0 10px;
		}

		.social-media-posts .content {
			min-height: auto;
		}

		.section.login-page {
			padding: 25px 0 0;
		}

		#login-modal, #login-modal.login, #signup-modal {
			width: 100%;
			padding: 30px 35px 35px;
		}

		#login-modal.login .form-title .signup,
		#signup-modal .form-title .signup {
			font-size: 13px;
		}

		.error-wrap #searchform {
			width: 100%;
		}

		.error-wrap .spacer:before {
			width: 100%;
		}

		.featured-posts .content-left h3,
		.posts h1,
		.posts h2 {
			margin: 0 0 10px;
		}

		.featured-posts .content-left h3 a,
		.posts h1,
		.posts h2 {
			font-size: 36px;
			line-height: 43px;
		}

		.featured-posts,
		.highlights-posts,
		.editors-posts,
		.trending-posts,
		.popular-posts {
		    padding-bottom: 45px;
		}

		.posts .head-post {
			padding-bottom: 28px;
		}

		.posts .body-post {
		    margin-top: 28px;
		}

		.highlights-posts .post {
			margin-bottom: 40px;
		}

		.highlights-posts .margin-b0 {
			margin-bottom: 10px;
		}

		.about-page .content-left,
		.about-page .content-right {
			float: none;
			width: 100%;
		}

		.about-page .content-right {
			margin-bottom: 50px;
		}
	}

	/* Mobile Portrait Size */
	@media only screen and (max-width: 479px) {
		h1, h2, h3, h4 {
    		margin: 40px 0 22px;
		}

		#main {
		    margin: 0;
		}

		.posts .entry-post p {
			margin-bottom: 22px;
		}

		.article-endless .posts.posts-list .post {
			padding-left: 20px;
		}
		.top-wrap .logo {
			max-width: 200px;
			height: auto;
		}

		.btn-menu {
			height: 84px;
			top: -25px;
		}

		.editors-posts .post .thumb {
		    float: none;
		    margin-right: 0;
		    width: 100%;
		    margin-bottom: 10px;
		}

		.widget-recent .thumb {
			float: none;
			margin-bottom: 10px;
		}

		.tabs .menu-tab li a,
		.tabs .menu-tab li button {
			padding: 8px 12px;
		}

		#login-modal, #login-modal.login, #signup-modal {
			padding: 20px 15px 35px;
		}

		.post-single .gn-article-byline__avatar {
			flex-basis: 2rem;
			height: 2rem;
			width: 2rem;
		}

		.posts .entry-post img {
			margin: 5px 0 30px;
		}

		.posts .entry-post ul.list li, .entry-page ul.list li {
			line-height: 35px;
		}

		.entry-page ul.list li:before {
			top: 18px;
		}

		.about-page-wrap {
			padding: 0;
		}

		.contact-page .input-wrap {
			width: 100%;
			margin-right: 0;
		}

		.contact-page h2 {
			margin: 0 0 15px;
		}

		.contact-page .contact-info {
			margin-bottom: 20px;
		}
	}

	/* Mobile Portrait small size */
	@media only screen and (max-width: 320px) {
		#login-modal.login .form-title .signup,
		#signup-modal .form-title .signup {
			font-size: 11px;
		}

		#login-modal .option-login .forgot a,
		#signup-modal .option-login .forgot a {
			font-size: 12px;
		}

	}

	/* Retina Devices */
	@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
		#mainnav-mobi #search-form-menu .search-text-menu {
		    background: url(/images/search-mobi@2x-94fa54db6e1c1431138a8d6accd5bc90.png) no-repeat center center;
		    background-size: 27px 27px;
		}

		.btn-menu:before{
			background: url(/images/menu@2x-cb922db89471644e2cec34f6159097be.png) no-repeat center center;
			background-size: 39px 24px;
		}

		.toggle-panel {
			background: url(/images/toggle-panel@2x-c9d015207c84c3f91f23f0e33685262b.png) no-repeat center center;
			background-size: 10px 50px;
		}

		.error-wrap #searchsubmit {
			background: url(/images/search@2x-6250fbc701f5238d7d09b6c17c268ee9.png) no-repeat center center;
			background-size: 20px 20px;
		}

	}

/* === MARCA — absorvido de colors/color1.css (V1) === */

/* Links e ênfases de texto */
a,
a:hover,
a:active,
#mainnav ul.sub-menu > li > a:hover,
#mainnav > ul > li > ul > li.active > a,
#mainnav ul.sub-menu > li.has-children > a:hover:after,
.sidebar-widget-1 .widget-title,
.widget-most-popular .order,
.most-popular .order,
.widget-categories li a:hover,
.comments-list .comment-head a:hover,
.comments-list .comment-head .comment-delete button:hover,
.go-top:hover,
.toggle .toggle-title.active:before,
.contact-page .contact-social li:hover i,
.about-page .about-links li a:hover {
	color: var(--gn-accent-text);
}

/* Nav hover / ativo (itens do #mainnav: cor fixa em --gn-nav-color, sem hover) */
.trending-posts .post h3 a:hover,
.widget-recent .content a:hover,
.tabs .comments p a:hover,
.tabs .pop-posts .text a:hover,
.footer-widgets .widget-social .email:hover,
.footer-widgets .widget-updates a:hover,
.footer-widgets .widget-list li a:hover,
.widget-most-popular li a:hover,
.most-popular li a:hover,
.tabs.style2 .content-tab.scroll li:hover:before {
	color: var(--gn-accent-text);
}

/* Meta de post */
.posts .meta .author a {
	color: var(--gn-muted);
}

/* Cabeçalho e rodapé — azul petróleo */
.top-wrap,
#footer,
.footer-widgets {
	background-color: var(--gn-primary);
}

/* Botões e superfícies de ação — sem `button` nativo (etapa 1). CTA: .gn-btn */
#mainnav-mobi > ul > li.menu-addon span.signup-link a,
.toggle-panel,
.tabs .tags a:hover,
.dropdown li:hover,
.error-wrap #searchsubmit,
.tabs.style2 .content-tab.scroll li:hover:before,
.flex-control-nav li a.flex-active {
	background-color: var(--gn-accent-solid);
}

.floatPanel #sidebar2 {
	border-right: 14px solid var(--gn-accent-solid);
}

.error-wrap #searchsubmit:hover {
	background-color: var(--gn-primary-dark);
}

/* === SUPERFÍCIES — texto, fundo, bordas e foco (V3) === */
/* Fundo da página: único em body { background-color: var(--gn-page-bg) } (etapa 0). */

:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-content-type-badge,
.gn-content-type-label {
	font-size: 0.85em;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	opacity: 0.85;
}

img {
	border-radius: var(--gn-img-radius);
}

/* ================================================================
   CARD PADRÃO — chrome unificado (decisao_layouts.md etapa 5)
   ================================================================ */

.gn-card,
#main.gn-home-page .featured-posts .post,
#main.gn-home-page .highlights-posts .post,
#main.gn-home-page .editors-posts .post,
#main.gn-home-page .popular-posts .post,
#main.gn-home-page .social-media-posts .post,
.gn-trending-carousel__slide,
.gn-classified-card,
.gn-giro360-card,
.posts.posts-list.gn-noticias-list .post.gn-noticias-card,
.posts.posts-list.gn-videos-list .post.gn-videos-card,
.gn-writer-article-card,
.gn-admin-card,
.gn-quick-actions-section,
.gn-negocio-store__card,
.gn-home-enquete__card,
.gn-negocios-detail__card,
.gn-videos-aside__item,
.comments-list .comment,
.gn-admin-users__card,
.gn-advertiser-stat-card,
.gn-advertiser-panel,
.gn-negocios-hub-section,
.gn-admin-users-search,
.gn-admin-users-stats,
.gn-admin-users-list,
.gn-slide-reader__related-card {
	background: var(--gn-surface);
	border: none;
	border-radius: var(--gn-card-radius);
	box-shadow: var(--gn-card-shadow);
	overflow: hidden;
}

.gn-card,
#main.gn-home-page .featured-posts .post,
#main.gn-home-page .highlights-posts .post,
#main.gn-home-page .editors-posts .post,
#main.gn-home-page .popular-posts .post,
#main.gn-home-page .social-media-posts .post,
.gn-trending-carousel__slide,
.gn-classified-card,
.gn-giro360-card,
.posts.posts-list.gn-noticias-list .post.gn-noticias-card,
.posts.posts-list.gn-videos-list .post.gn-videos-card,
.gn-writer-article-card,
.gn-negocio-store__card,
.gn-home-enquete__card,
.gn-videos-aside__item,
.gn-advertiser-stat-card,
.gn-slide-reader__related-card {
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gn-card:hover,
#main.gn-home-page .featured-posts .post:hover,
#main.gn-home-page .highlights-posts .post:hover,
#main.gn-home-page .editors-posts .post:hover,
#main.gn-home-page .popular-posts .post:hover,
#main.gn-home-page .social-media-posts .post:hover,
.gn-trending-carousel__slide:hover,
.gn-classified-card:hover,
.gn-classified-card:focus-visible,
.gn-giro360-card:hover,
.posts.posts-list.gn-noticias-list .post.gn-noticias-card:hover,
.posts.posts-list.gn-videos-list .post.gn-videos-card:hover,
.gn-writer-article-card:hover,
.gn-writer-article-card:focus-within,
a.gn-negocio-store__card:hover,
a.gn-negocio-store__card:focus-visible,
.gn-home-enquete__card:hover,
.gn-home-enquete__card:focus-within,
.gn-videos-aside__item:hover,
.gn-videos-aside__item:focus-visible,
.gn-advertiser-stat-card:hover,
.gn-slide-reader__related-card:hover,
.gn-slide-reader__related-card:focus-visible {
	box-shadow: var(--gn-card-shadow-hover);
	transform: translateY(var(--gn-card-lift));
}

.gn-admin-sidebar.gn-admin-card,
.gn-home-enquete__card,
.posts.posts-list.gn-videos-list .post.gn-videos-card,
.gn-videos-aside__item,
.comments-list .comment,
.gn-negocios-hub-section,
.gn-advertiser-panel,
.gn-admin-users-search,
.gn-admin-users-stats,
.gn-admin-users-list,
.gn-admin-users__card {
	overflow: visible;
}

.gn-home-enquete__card--resultado:hover,
.gn-home-enquete__card--resultado:focus-within {
	box-shadow: var(--gn-card-shadow);
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.gn-card,
	#main.gn-home-page .featured-posts .post,
	#main.gn-home-page .highlights-posts .post,
	#main.gn-home-page .editors-posts .post,
	#main.gn-home-page .popular-posts .post,
	#main.gn-home-page .social-media-posts .post,
	.gn-trending-carousel__slide,
	.gn-classified-card,
	.gn-giro360-card,
	.posts.posts-list.gn-noticias-list .post.gn-noticias-card,
	.posts.posts-list.gn-videos-list .post.gn-videos-card,
	.gn-writer-article-card,
	.gn-negocio-store__card,
	.gn-home-enquete__card,
	.gn-videos-aside__item,
	.gn-advertiser-stat-card,
	.gn-slide-reader__related-card {
		transition: none;
	}

	.gn-card:hover,
	#main.gn-home-page .featured-posts .post:hover,
	#main.gn-home-page .highlights-posts .post:hover,
	#main.gn-home-page .editors-posts .post:hover,
	#main.gn-home-page .popular-posts .post:hover,
	#main.gn-home-page .social-media-posts .post:hover,
	.gn-trending-carousel__slide:hover,
	.gn-classified-card:hover,
	.gn-classified-card:focus-visible,
	.gn-giro360-card:hover,
	.posts.posts-list.gn-noticias-list .post.gn-noticias-card:hover,
	.posts.posts-list.gn-videos-list .post.gn-videos-card:hover,
	.gn-writer-article-card:hover,
	.gn-writer-article-card:focus-within,
	a.gn-negocio-store__card:hover,
	a.gn-negocio-store__card:focus-visible,
	.gn-home-enquete__card:hover,
	.gn-home-enquete__card:focus-within,
	.gn-videos-aside__item:hover,
	.gn-videos-aside__item:focus-visible,
	.gn-advertiser-stat-card:hover,
	.gn-slide-reader__related-card:hover,
	.gn-slide-reader__related-card:focus-visible {
		transform: none;
	}
}

.gn-video-embed-wrap iframe,
.gn-video-embed iframe {
	display: block;
	width: 100%;
	max-width: 100%;
	min-height: 360px;
	border: 0;
}

.gn-video-embed--local video {
	width: 100%;
	max-width: 100%;
}

.post-single .gn-entry-post--video {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 0.35rem;
}

.post-single .gn-entry-post--video .gn-video-embed-wrap,
.post-single .gn-entry-post--video .gn-video-fallback {
	margin: 0;
}

.post-single .gn-entry-post--video .gn-video-body {
	margin: 0;
}

.gn-video-thumb {
	max-width: 100%;
	height: auto;
	margin-bottom: 1rem;
}

.gn-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1rem;
	margin: 1rem 0;
}

.gn-gallery-item img {
	aspect-ratio: 297 / 210;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.gn-gallery-item figcaption {
	font-size: 0.9em;
	margin-top: 0.35rem;
	color: var(--gn-muted);
}

.gn-entry-post--nota-rapida {
	padding: 1.25rem 1.5rem;
	border-radius: 6px;
	border-left: 4px solid var(--gn-accent);
}

.gn-nota-rapida-texto {
	font-size: 1.15em;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.gn-admin-login,
.gn-admin-panel {
	max-width: 480px;
	margin: 2rem auto;
	padding: 1.5rem;
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	background: var(--gn-page-bg);
}

.gn-admin-login-hint,
.gn-admin-note {
	margin-top: 1rem;
	font-size: 0.95em;
	color: var(--gn-muted);
}

.gn-auth-mobi-welcome {
	display: none;
}

/* Header — login/cadastro de leitor (Etapa 1) */
.gn-auth-area {
	float: right;
	display: flex;
	align-items: center;
	gap: 8px;
}

.gn-auth-avatar {
	border-radius: 50%;
	flex-shrink: 0;
	height: 32px;
	object-fit: cover;
	width: 32px;
}

.gn-auth-avatar--guest {
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.65);
	color: var(--gn-inverse);
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
}

.gn-auth-avatar--guest:hover,
.gn-auth-avatar--guest:focus-visible {
	border-color: var(--gn-inverse);
	color: var(--gn-inverse);
	outline: none;
	text-decoration: none;
}

.gn-auth-avatar--guest:focus-visible {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.gn-auth-area--logged {
	position: relative;
	z-index: 1300;
}

.gn-auth-user {
	display: inline-block;
	position: relative;
	z-index: 1;
}

.gn-auth-user-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--gn-inverse);
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 500;
	gap: 8px;
	line-height: 38px;
	max-width: 220px;
	overflow: hidden;
	padding: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gn-auth-user-toggle:hover,
.gn-auth-user-toggle:focus-visible {
	border: 0;
	outline: none;
}

.gn-auth-user-dropdown {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 4px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	display: none;
	min-width: 168px;
	padding: 6px 0;
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	z-index: 2;
}

.gn-auth-user-dropdown.is-open,
.gn-auth-user-dropdown:not([hidden]) {
	display: block;
}

.gn-auth-user-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-auth-user-menu-item {
	background: transparent;
	border: 0;
	color: var(--gn-text);
	cursor: pointer;
	display: block;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 16px;
	text-align: left;
	text-decoration: none;
	width: 100%;
}

.gn-auth-user-menu-item:hover,
.gn-auth-user-menu-item:focus-visible {
	background: var(--gn-bg);
	color: var(--gn-auth-accent);
	outline: none;
	text-decoration: none;
}

.gn-auth-logout-form {
	margin: 0;
}

.gn-auth-mobi-logout button {
	background: var(--gn-bg);
	border: 0;
	border-radius: 3px;
	color: var(--gn-text);
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 12px;
	width: 100%;
}

.gn-auth-mobi-logout button:hover,
.gn-auth-mobi-logout button:focus-visible {
	background: var(--gn-border);
	outline: none;
}

.top-wrap .gn-auth-area .login-popup a {
	transition: color 0.2s ease, opacity 0.2s ease;
}

.top-wrap .gn-auth-area .login-popup a:hover,
.top-wrap .gn-auth-area .login-popup a:focus-visible {
	color: var(--gn-auth-accent);
	opacity: 1;
	outline: none;
	text-decoration: none;
}

.top-wrap .gn-auth-area .signup-popup a {
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.top-wrap .gn-auth-area .signup-popup a:hover,
.top-wrap .gn-auth-area .signup-popup a:focus-visible {
	background-color: var(--gn-auth-accent);
	color: var(--gn-inverse);
	outline: none;
	text-decoration: none;
	transform: translateY(-1px);
}

.gn-auth-login-trigger:focus-visible,
.gn-auth-signup-trigger:focus-visible {
	outline: 2px solid var(--gn-inverse);
	outline-offset: 2px;
}

#mainnav-mobi .gn-auth-mobi-guest .signup-link a {
	background-color: var(--gn-auth-accent);
	border-color: var(--gn-auth-accent);
	color: var(--gn-inverse);
	font-weight: 600;
}

#mainnav-mobi .gn-auth-mobi-guest .login-link a:hover,
#mainnav-mobi .gn-auth-mobi-guest .signup-link a:hover {
	opacity: 0.92;
	text-decoration: none;
}

.gn-auth-user-dropdown:not([hidden]) {
	animation: gn-auth-dropdown-in 0.16s ease;
}

@keyframes gn-auth-dropdown-in {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.gn-auth-mobi-name {
	color: var(--gn-text);
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
}

.gn-auth-mobi-admin {
	color: var(--gn-text);
	display: inline-block;
	font-weight: 600;
	margin-bottom: 8px;
}

.gn-auth-mobi-logout {
	margin-top: 4px;
}

.gn-auth-mobile-source {
	display: none !important;
}

/* Modais de auth (Etapa 2) */
.gn-sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.gn-is-hidden {
	display: none !important;
}

.gn-form-feedback {
	border-radius: 4px;
	font-size: 0.92em;
	margin: 0 0 14px;
	padding: 10px 12px;
}

.gn-form-feedback--error {
	background: var(--gn-surface);
	border: 1px solid var(--gn-danger);
	color: var(--gn-danger);
}

.gn-form-feedback--success {
	background: var(--gn-surface);
	border: 1px solid var(--gn-success);
	color: var(--gn-success);
}

.gn-form-feedback--info {
	background: var(--gn-primary-soft);
	border: 1px solid var(--gn-detail-blue);
	color: var(--gn-primary);
}

/* Modais unificados (Etapas 2–3 + polish Etapa 7) */
#login-modal.gn-auth-modal,
#login-modal.gn-auth-modal.login,
#signup-modal.gn-auth-modal,
#forgot-password-modal.gn-auth-modal,
#forgot-password-modal.gn-auth-modal.popup {
	width: 440px;
	max-width: calc(100vw - 24px);
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	padding: 40px 44px 44px;
	position: relative;
	background-color: var(--gn-auth-surface);
	border: 1px solid var(--gn-auth-border);
	border-radius: var(--gn-auth-radius);
	box-shadow: var(--gn-modal-shadow);
	-webkit-overflow-scrolling: touch;
}

.gn-auth-modal.gn-auth-modal--open {
	animation: gn-auth-modal-in 0.22s ease;
}

@keyframes gn-auth-modal-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.gn-auth-modal .form-title {
	margin-bottom: 20px;
	overflow: hidden;
}

.gn-auth-modal .form-title h4 {
	color: var(--gn-auth-text);
	float: left;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
}

.gn-auth-modal .form-title .signup {
	color: var(--gn-auth-muted);
	float: right;
	font-size: 0.92rem;
	line-height: 1.8rem;
	margin: 0;
}

.gn-auth-modal .form-title .signup a {
	color: var(--gn-auth-accent);
	font-weight: 600;
	text-decoration: none;
}

.gn-auth-modal .form-title .signup a:hover,
.gn-auth-modal .form-title .signup a:focus-visible {
	color: var(--gn-auth-accent-hover);
	text-decoration: underline;
}

.gn-auth-modal .name-wrap:before,
.gn-auth-modal .email-wrap:before,
.gn-auth-modal .pass-wrap:before {
	display: none;
}

.gn-auth-modal .gn-auth-form input[type="email"],
.gn-auth-modal .gn-auth-form input[type="password"],
.gn-auth-modal .gn-auth-form input[type="text"] {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 4px;
	box-sizing: border-box;
	color: var(--gn-auth-text);
	font-size: 15px;
	height: 46px;
	margin-bottom: 12px;
	margin-top: 0;
	padding: 0 14px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	width: 100%;
}

.gn-auth-modal .gn-pass-wrap-toggle input {
	padding-right: 72px;
}

.gn-auth-modal .gn-auth-form input:focus {
	border-color: var(--gn-auth-accent);
	box-shadow: 0 0 0 3px rgba(36, 90, 130, 0.18);
	outline: none;
}

.gn-auth-modal .option-login {
	margin-bottom: 18px;
	overflow: hidden;
}

.gn-auth-modal .option-login .forgot a {
	color: var(--gn-auth-muted);
	float: right;
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
}

.gn-auth-modal .option-login .forgot a:hover,
.gn-auth-modal .option-login .forgot a:focus-visible {
	color: var(--gn-auth-accent);
	text-decoration: underline;
}

.gn-auth-modal .submit-login input.gn-auth-submit,
.gn-auth-page .gn-auth-submit {
	display: block;
	width: 100%;
}

.gn-auth-modal .submit-login input.gn-auth-submit:focus-visible,
.gn-auth-page .gn-auth-submit:focus-visible {
	box-shadow: 0 0 0 3px rgba(36, 90, 130, 0.35);
	outline: none;
}

.gn-auth-modal .close-modal {
	align-items: center;
	appearance: none;
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 4px;
	color: var(--gn-text);
	cursor: pointer;
	display: inline-flex;
	font-size: 22px;
	font-weight: 600;
	height: 32px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 32px;
	z-index: 2;
}

.gn-auth-modal .close-modal:hover {
	background: var(--gn-primary-soft);
	border-color: var(--gn-accent);
	color: var(--gn-primary);
}

.gn-auth-modal .close-modal:focus-visible {
	background: var(--gn-primary-soft);
	border-color: var(--gn-accent);
	box-shadow: 0 0 0 2px rgba(36, 90, 130, 0.45);
	color: var(--gn-primary);
	outline: none;
}

.gn-auth-success-panel {
	padding-top: 4px;
	text-align: center;
}

.gn-auth-success-panel .gn-form-feedback--success {
	text-align: left;
}

.gn-auth-success-icon {
	color: var(--gn-success);
	display: block;
	font-size: 2rem;
	line-height: 1;
	margin: 0 auto 12px;
}

.gn-auth-modal-subtitle {
	color: var(--gn-muted);
	font-size: 0.95em;
	line-height: 1.45;
	margin: 0 0 18px;
}

.gn-auth-modal-footer-link {
	margin-top: 16px;
	text-align: center;
}

.gn-auth-modal-footer-link a {
	color: var(--gn-text);
	font-weight: 600;
}

.gn-auth-modal-footer-link a:hover,
.gn-auth-modal-footer-link a:focus-visible {
	color: var(--gn-accent-solid);
}

.gn-pass-wrap-toggle {
	position: relative;
}

.gn-pass-wrap-toggle input {
	padding-right: 72px;
}

.gn-password-toggle {
	background: transparent;
	border: 0;
	color: var(--gn-muted);
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	padding: 0 8px;
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
}

.gn-password-toggle:hover,
.gn-password-toggle:focus-visible {
	color: var(--gn-text);
	outline: none;
	text-decoration: underline;
}

.gn-password-strength {
	margin: 4px 0 14px;
}

.gn-password-strength-track {
	background: var(--gn-border);
	border-radius: 3px;
	height: 6px;
	overflow: hidden;
}

.gn-password-strength-bar {
	background: var(--gn-accent-solid);
	height: 100%;
	transition: width 0.2s ease, background-color 0.2s ease;
	width: 0;
}

.gn-password-strength-bar[data-level="1"] {
	background: var(--gn-danger);
	width: 33%;
}

.gn-password-strength-bar[data-level="2"] {
	background: var(--gn-auth-accent);
	width: 66%;
}

.gn-password-strength-bar[data-level="3"] {
	background: var(--gn-success);
	width: 100%;
}

.gn-password-strength-label {
	color: var(--gn-muted);
	display: block;
	font-size: 0.85em;
	margin-top: 6px;
}

.gn-auth-terms {
	font-size: 0.9em;
	line-height: 1.45;
	margin-bottom: 16px;
}

.gn-auth-terms label {
	cursor: pointer;
	font-weight: 400;
}

.gn-auth-terms input {
	margin-right: 6px;
	vertical-align: middle;
}

.gn-auth-terms a {
	font-weight: 600;
}

.gn-auth-submit {
	cursor: pointer;
}

.gn-auth-submit:disabled,
.gn-auth-submit.is-loading {
	cursor: wait;
	opacity: 0.75;
}

.gn-field-wrap {
	margin-bottom: 4px;
}

.gn-field-error {
	color: var(--gn-danger);
	font-size: 0.85em;
	line-height: 1.35;
	margin: 6px 0 10px;
}

.gn-field-wrap input[aria-invalid="true"] {
	border-color: var(--gn-danger);
	outline-color: var(--gn-danger);
}

.gn-auth-form-actions {
	margin-bottom: 12px;
	text-align: right;
}

#lean_overlay {
	position: fixed;
	z-index: 10990;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #000;
	display: none;
	backdrop-filter: blur(1px);
}

/* Páginas standalone de auth (login editorial, redefinir senha) */
.gn-auth-page {
	background: var(--gn-auth-surface);
	border: 1px solid var(--gn-auth-border);
	border-radius: var(--gn-auth-radius);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
	margin: 2rem auto;
	max-width: 480px;
	padding: 2rem 2rem 1.75rem;
}

.gn-auth-page h2 {
	color: var(--gn-auth-text);
	font-size: 1.65rem;
	font-weight: 700;
	margin: 0 0 1.25rem;
}

.gn-auth-page .gn-auth-form input[type="email"],
.gn-auth-page .gn-auth-form input[type="password"],
.gn-auth-page .gn-auth-form input[type="text"],
.gn-auth-page input[type="email"],
.gn-auth-page input[type="password"] {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 15px;
	height: 46px;
	margin-bottom: 12px;
	padding: 0 14px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	width: 100%;
}

.gn-auth-page .gn-pass-wrap-toggle input {
	padding-right: 72px;
}

.gn-auth-page input:focus {
	border-color: var(--gn-auth-accent);
	box-shadow: 0 0 0 3px rgba(36, 90, 130, 0.18);
	outline: none;
}

.gn-auth-page .gn-auth-page-lead {
	color: var(--gn-auth-muted);
	font-size: 0.95rem;
	line-height: 1.5;
	margin: -0.5rem 0 1.25rem;
}

.gn-auth-page .gn-auth-page-actions {
	margin-top: 1rem;
}

.gn-auth-page .gn-auth-page-link {
	color: var(--gn-auth-accent);
	font-weight: 600;
	text-decoration: none;
}

.gn-auth-page .gn-auth-page-link:hover,
.gn-auth-page .gn-auth-page-link:focus-visible {
	color: var(--gn-auth-accent-hover);
	text-decoration: underline;
}

.gn-admin-login.gn-auth-page,
.gn-auth-page.gn-admin-login {
	background: var(--gn-auth-surface);
}

@media (max-width: 767px) {
	.gn-auth-area {
		gap: 4px;
	}

	.top-wrap .row {
		align-items: center;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
	}

	.top-wrap .col-md-6 {
		float: none;
		width: auto;
	}

	.top-wrap .col-md-6:first-child {
		flex: 1 1 auto;
		min-width: 0;
		padding-right: 0.5rem;
	}

	.top-wrap .col-md-6:last-child {
		flex: 0 1 auto;
		padding-right: 6.25rem;
	}

	.gn-auth-mobi-welcome {
		color: #fff;
		display: block;
		font-size: 0.95rem;
		font-weight: 600;
		line-height: 1.3;
		margin: 0 0.85rem 0 0;
		overflow: hidden;
		text-align: right;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.top-wrap .login-popup a {
		margin-right: 12px;
	}

	.top-wrap .signup-popup a {
		padding: 5px 14px;
	}

	#login-modal.gn-auth-modal,
	#login-modal.gn-auth-modal.login,
	#signup-modal.gn-auth-modal,
	#forgot-password-modal.gn-auth-modal {
		padding: 28px 20px 32px;
	}

	.gn-auth-modal .form-title h4 {
		float: none;
		font-size: 1.35rem;
		margin-bottom: 6px;
	}

	.gn-auth-modal .form-title .signup {
		float: none;
		line-height: 1.4;
	}

	.gn-auth-page {
		margin: 1.25rem auto;
		padding: 1.5rem 1.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gn-auth-modal.gn-auth-modal--open,
	.gn-auth-user-dropdown:not([hidden]),
	.gn-password-strength-bar,
	.top-wrap .gn-auth-area .signup-popup a,
	.gn-auth-modal .gn-auth-form input,
	.gn-auth-modal .submit-login input.gn-auth-submit,
	.gn-auth-page .gn-auth-submit {
		animation: none;
		transition: none;
	}
}

/* ================================================================
   PERFIL DE CONTA  (gn-profile-*)
   Documentação: docs/perfil-conta-plano.md §4
   ================================================================ */

/* --- Hero --------------------------------------------------------
   Card .gn-profile-cover recebe capa + avatar. Com foto, o card usa
   a média contain/cover (1920×360); o avatar escala e recua 12%. */
.gn-profile-hero {
	--gn-cover-band: 200px;
	--gn-avatar-overlap: 52px;
	--gn-avatar-max: 96px;
	--gn-avatar-size: var(--gn-avatar-max);
	--slot-h: calc(var(--gn-cover-band) + var(--gn-avatar-max) - var(--gn-avatar-overlap) + 5rem);
	--hybrid-w: calc((100vw + var(--slot-h) * 1920 / 360) / 2);
	--hybrid-h: calc((100vw * 360 / 1920 + var(--slot-h)) / 2);
	isolation: isolate;
	margin-bottom: 2rem;
	overflow: hidden;
	position: relative;
}

.gn-profile-cover {
	background-color: var(--gn-primary-dark);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: var(--slot-h);
	overflow: hidden;
	position: relative;
	width: 100%;
}

.gn-profile-cover:has(.gn-profile-cover__img) {
	--gn-avatar-size: min(var(--gn-avatar-max), max(40px, calc(var(--hybrid-h) * 0.42)));
	--gn-avatar-overlap: calc(var(--gn-avatar-size) * 0.54);
	background-color: transparent;
	height: var(--hybrid-h);
	left: 0;
	min-height: 0;
	width: min(100%, var(--hybrid-w));
}

.gn-profile-cover__img {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	object-position: center;
	position: absolute;
	width: 100%;
	z-index: 0;
}

.gn-profile-cover > .container {
	position: relative;
	width: 100%;
	z-index: 1;
}

.gn-profile-cover:has(.gn-profile-cover__img) > .container {
	margin-left: 0;
	margin-right: 0;
	max-width: none;
	padding-left: 0;
	padding-right: 0.75rem;
	width: 100%;
}

.gn-profile-hero__body {
	align-items: flex-end;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.25rem;
	padding-bottom: 0.65rem;
	padding-top: 0;
}

.gn-profile-cover:has(.gn-profile-cover__img) .gn-profile-hero__body {
	padding-left: 12%;
}

/* --- Avatar ----------------------------------------------------- */
.gn-profile-avatar-wrap {
	flex-shrink: 0;
	margin-top: calc(var(--gn-avatar-overlap) * -1);
	position: relative;
	z-index: 1;
}

.gn-profile-avatar {
	border: 4px solid var(--gn-inverse);
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
	display: block;
	height: var(--gn-avatar-size);
	object-fit: cover;
	width: var(--gn-avatar-size);
}

/* --- Dados do perfil -------------------------------------------- */
.gn-profile-info {
	flex: 1;
	min-width: 0;
	padding-top: 0.4rem;
}

.gn-profile-name-row {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	margin: 0 0 0.15rem;
	min-width: 0;
}

.gn-profile-name {
	color: var(--gn-inverse);
	flex: 1;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
	white-space: nowrap;
}

.gn-profile-edit-icon {
	align-items: center;
	color: rgba(255, 255, 255, 0.88);
	display: inline-flex;
	flex-shrink: 0;
	font-size: 16px;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
	transition: color 0.12s;
}

.gn-profile-edit-icon:hover,
.gn-profile-edit-icon:focus-visible {
	color: #fff;
	outline: none;
	text-decoration: none;
}

.gn-profile-nick {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.85rem;
	margin: 0 0 0.35rem;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* --- Badge de papel --------------------------------------------- */
.gn-required-mark {
	color: var(--gn-danger);
}

.gn-profile-role-badge {
	border-radius: 4px;
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 2px 8px;
	text-transform: uppercase;
}

.gn-profile-role-badge--admin {
	background: var(--gn-primary);
	color: var(--gn-inverse);
}

.gn-profile-role-badge--editor {
	background: var(--gn-surface);
	border: 2px solid var(--gn-primary);
	color: var(--gn-primary);
}

.gn-profile-role-badge--redator {
	background: var(--gn-surface);
	border: 2px dashed var(--gn-success);
	color: var(--gn-success);
}

.gn-profile-role-badge--anunciante {
	background: var(--gn-warning-bg);
	border: 1px solid var(--gn-detail-yellow);
	color: var(--gn-warning-text);
}

.gn-profile-role-badge--leitor {
	background: var(--gn-border);
	color: var(--gn-muted);
}

.gn-profile-verified,
.gn-admin-users__verified {
	align-items: center;
	background: rgba(28, 122, 79, 0.12);
	border-radius: 999px;
	color: var(--gn-success);
	display: inline-flex;
	flex-shrink: 0;
	font-size: 0.72rem;
	font-weight: 700;
	gap: 0.3rem;
	padding: 0.2rem 0.6rem 0.2rem 0.5rem;
}

.gn-profile-verified {
	background: rgba(28, 122, 79, 0.28);
	color: #8ee0b5;
}

/* --- Botão editar: visual em .gn-btn -------------------------------- */

/* Hero já separa capa e conteúdo: sem faixa, padding-top 0 (não o --gn-gap-ad do #main). */
.gn-profile-page .gn-profile-hero {
	margin-bottom: 1.25rem;
}

.gn-profile-page #main {
	margin-top: 0;
	padding-bottom: var(--gn-gap-ad);
	padding-top: 0;
}

/* --- CMS /conta: Acesso rápido ------ */
.gn-cms-layout {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.gn-cms-layout__main {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
	width: 100%;
}

/* --- CMS HUB / QUICK ACTIONS (gn-quick-*) ----------------------- */
.gn-quick-actions-section {
	margin-bottom: 1.5rem;
	padding: 1.5rem 1.5rem 1.75rem;
}

.gn-quick-actions__header {
	align-items: center;
	border-bottom: 2px solid var(--gn-auth-accent);
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	padding-bottom: 0.75rem;
}

.gn-quick-actions__header h3,
.gn-quick-actions__title {
	color: var(--gn-text);
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0;
}

.gn-quick-actions__header-icon {
	color: var(--gn-auth-accent);
	font-size: 1.1rem;
}

.gn-quick-actions__lead {
	color: var(--gn-muted);
	font-size: 0.9rem;
	line-height: 1.45;
	margin: 0 0 1.25rem;
}

.gn-quick-actions {
	display: grid;
	gap: 1.2rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gn-quick-action {
	align-items: center;
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: var(--gn-card-radius);
	color: inherit;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.gn-quick-action:hover,
.gn-quick-action:focus-visible {
	background: var(--gn-surface);
	border-color: var(--gn-auth-accent);
	box-shadow: var(--gn-card-shadow-hover);
	color: inherit;
	outline: none;
	text-decoration: none;
	transform: translateY(var(--gn-card-lift));
}

.gn-quick-action__icon {
	color: var(--gn-auth-accent);
	font-size: 2rem;
	line-height: 1;
	margin-bottom: 1rem;
	transition: transform 0.25s ease;
}

.gn-quick-action:hover .gn-quick-action__icon,
.gn-quick-action:focus-visible .gn-quick-action__icon {
	transform: scale(1.08);
}

/* Variantes de cor só no ícone (cards permanecem neutros) */
.gn-quick-action__icon--artigos {
	color: var(--gn-primary);
}

.gn-quick-action__icon--galerias {
	color: var(--gn-success);
}

.gn-quick-action__icon--videos {
	color: var(--gn-danger);
}

.gn-quick-action__icon--slides {
	color: var(--gn-warning-text);
}

.gn-quick-action__icon--editoria {
	color: var(--gn-muted);
}

.gn-quick-action__icon--anunciante {
	color: var(--gn-accent-text);
}

.gn-quick-action__icon--usuarios,
.gn-quick-action__icon--admin {
	color: var(--gn-primary);
}

.gn-quick-action__title {
	color: var(--gn-text);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 0.5rem;
}

.gn-quick-action__desc {
	color: var(--gn-muted);
	font-size: 0.85rem;
	line-height: 1.4;
	margin: 0;
}

.gn-quick-action__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	justify-content: center;
	margin-top: 0.75rem;
}

.gn-quick-action__badge {
	background: var(--gn-primary-soft);
	border-radius: 999px;
	color: var(--gn-primary);
	font-size: 0.72rem;
	font-weight: 600;
	padding: 0.12rem 0.55rem;
	white-space: nowrap;
}

.gn-quick-action__badge--on {
	background: var(--gn-primary-soft);
	color: var(--gn-success);
}

.gn-quick-action__badge--muted {
	background: var(--gn-bg);
	color: var(--gn-muted);
}

.gn-alert-badge {
	align-items: center;
	background: var(--gn-danger);
	border-radius: 999px;
	box-sizing: border-box;
	color: var(--gn-inverse);
	display: inline-flex;
	font-size: 0.65rem;
	font-weight: 700;
	height: 1.15rem;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1;
	min-width: 1.15rem;
	padding: 0 0.28rem;
	position: absolute;
	right: 0.4rem;
	top: 0.4rem;
	z-index: 1;
}

.gn-alert-badge--icon {
	font-size: 0.7rem;
	padding: 0;
}

.gn-alert-badge--icon .fa {
	font-size: 0.7rem;
	line-height: 1;
}

@media (max-width: 991px) {
	.gn-quick-actions {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.gn-quick-actions-section {
		padding: 1.25rem 1rem 1.5rem;
	}

	.gn-quick-actions {
		gap: 1rem;
		grid-template-columns: 1fr;
	}

	.gn-quick-action {
		padding: 1.15rem 1rem;
	}

	.gn-quick-action__icon {
		font-size: 1.75rem;
		margin-bottom: 0.75rem;
	}

	.gn-quick-action__title {
		font-size: 1.05rem;
	}
}

/* --- Empty state (padrão portal — docs/estados-v1.md) ------------ */
.gn-empty-state,
.gn-profile-empty {
	align-items: center;
	color: var(--gn-muted);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 2.5rem 1rem;
	text-align: center;
}

.gn-empty-state--inline {
	padding: 1rem 0;
}

.gn-empty-state__icon,
.gn-profile-empty__icon {
	font-size: 2rem;
	line-height: 1;
	margin: 0;
	opacity: 0.6;
}

.gn-empty-state__title {
	color: var(--gn-muted);
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
}

.gn-empty-state__text,
.gn-profile-empty__text {
	font-size: 0.9rem;
	margin: 0;
}

/* --- Flash messages -------------------------------------------- */
.gn-profile-flash {
	border-radius: 6px;
	font-size: 0.9rem;
	margin-bottom: 1.25rem;
	padding: 0.75rem 1rem;
}

.gn-profile-flash--success {
	background: var(--gn-primary-soft);
	border: 1px solid var(--gn-success);
	color: var(--gn-success);
}

.gn-profile-flash--error {
	background: var(--gn-surface);
	border: 1px solid var(--gn-danger);
	color: var(--gn-danger);
}

.gn-profile-cpf-dialog {
	background: var(--gn-surface);
	border: 1px solid var(--gn-danger);
	border-radius: 8px;
	box-shadow: var(--gn-modal-shadow);
	color: var(--gn-text);
	height: fit-content;
	inset: 0;
	margin: auto;
	max-width: 28rem;
	padding: 1.25rem 1.5rem;
	position: fixed;
	width: calc(100% - 2rem);
}

.gn-profile-cpf-dialog::backdrop {
	background: rgb(0 0 0 / 45%);
}

.gn-profile-cpf-dialog__title {
	font-size: 1.1rem;
	margin: 0 0 0.5rem;
}

.gn-profile-cpf-dialog__body {
	margin: 0 0 1.15rem;
}

.gn-profile-cpf-dialog__actions {
	display: flex;
	justify-content: flex-end;
	margin: 0;
}

/* --- Formulário de edição -------------------------------------- */
.gn-profile-edit-form {
	box-sizing: border-box;
	max-width: 100%;
	min-width: 0;
	width: 100%;
}

/* Layout de duas colunas do formulário editorial */
.gn-writer-form {
	align-items: start;
	display: grid;
	gap: 1.5rem 2.5rem;
	grid-template-columns: minmax(0, 1fr) 300px;
	max-width: none;
}

.gn-writer-form__main {
	min-width: 0;
}

.gn-writer-form__sidebar {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 10px;
	min-width: 0;
	padding: 1.25rem;
	position: sticky;
	top: 1rem;
}

.gn-writer-form__sidebar .gn-profile-form-group {
	margin-bottom: 1rem;
}

.gn-writer-form__sidebar .gn-profile-form-group:last-child {
	margin-bottom: 0;
}

/* Prévia de imagem ocupa largura total da sidebar */
.gn-writer-form__sidebar .gn-writer-article-form__image-preview-frame {
	max-width: 100%;
}

/* Ações dentro da sidebar: coluna, botões largura total */
.gn-writer-form__sidebar-actions {
	border-top: 1px solid var(--gn-border);
	flex-direction: column;
	gap: 0.6rem;
	margin-top: 1.25rem;
	padding-top: 1rem;
}

.gn-writer-form__save-btn {
	box-sizing: border-box;
	display: block;
	text-align: center;
	width: 100%;
}

.gn-writer-form__sidebar-extra {
	border-top: 1px solid var(--gn-border);
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-top: 0.75rem;
	padding-top: 0.75rem;
}

.gn-writer-autosave-status {
	font-size: 0.82rem;
	text-align: center;
}

@media (max-width: 900px) {
	.gn-writer-form {
		grid-template-columns: 1fr;
	}

	.gn-writer-form__sidebar {
		position: static;
	}
}

.gn-profile-form-group {
	margin-bottom: 1.25rem;
}

.gn-profile-form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.gn-profile-form-group input[type="text"],
.gn-profile-form-group input[type="url"],
.gn-profile-form-group input[type="tel"],
.gn-profile-form-group input[type="email"],
.gn-profile-form-group input[type="date"],
.gn-profile-form-group select {
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 0.9375rem;
	height: 42px;
	max-width: 100%;
	min-width: 0;
	padding: 0 12px;
	transition: border-color 0.15s, box-shadow 0.15s;
	width: 100%;
}

.gn-profile-form-group .gn-field-phone-with-wa input[type="tel"] {
	width: auto;
}

.gn-profile-form-group .gn-field-wa-check {
	display: inline-flex;
	font-weight: 500;
	margin-bottom: 0;
}

.gn-profile-form-group input:focus {
	border-color: var(--gn-auth-accent);
	box-shadow: 0 0 0 3px rgba(36, 90, 130, 0.15);
	outline: none;
}

.gn-profile-form-hint {
	color: var(--gn-muted);
	font-size: 0.8rem;
	margin: 0.25rem 0 0;
}

.gn-profile-excluir-conta__link,
.gn-profile-excluir-conta__link:link,
.gn-profile-excluir-conta__link:visited,
.gn-profile-excluir-conta__link:hover,
.gn-profile-excluir-conta__link:active,
.gn-profile-excluir-conta__link:focus-visible {
	align-self: center;
	background: none;
	border: 0;
	color: LinkText;
	cursor: pointer;
	display: inline-block;
	flex: 0 0 auto;
	font-size: 0.92em;
	margin: 0;
	max-width: 100%;
	padding: 0;
	position: relative;
	text-align: left;
	text-decoration: none;
	white-space: nowrap;
	z-index: 1;
}

.gn-profile-excluir-conta__link.is-disabled,
.gn-profile-excluir-conta__link[aria-disabled="true"] {
	cursor: not-allowed;
	opacity: 0.65;
	pointer-events: none;
}

.gn-email-verify {
	margin: 0 0 1rem;
}

.gn-email-verify__form {
	margin: 0.5rem 0 0;
}

.gn-profile-verify-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1rem;
	margin: 0.5rem 0 0;
}

.gn-profile-verify-actions .gn-email-verify__form,
.gn-phone-verify-send,
.gn-cpf-check-form {
	margin: 0;
}

.gn-cpf-check-form .gn-btn:disabled,
.gn-phone-verify-send .gn-btn:disabled {
	cursor: not-allowed;
	opacity: 0.65;
}

.gn-phone-verify-form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	margin: 0.5rem 0 0;
}

.gn-phone-verify-code {
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 0.9375rem;
	font-variant-numeric: tabular-nums;
	height: 42px;
	letter-spacing: 0.18em;
	padding: 0 12px;
	text-align: center;
	width: 8.5rem;
}

.gn-profile-verify__hint {
	font-size: 0.85rem;
	margin: 0.4rem 0 0;
}

.gn-profile-form-status {
	font-size: 0.8rem;
	font-weight: 600;
	margin: 0.25rem 0 0;
}

.gn-profile-form-status--available {
	color: var(--gn-success);
}

.gn-profile-form-status--taken,
.gn-profile-form-status--invalid {
	color: var(--gn-danger);
}

.gn-profile-form-group input.is-usuario-available {
	border-color: var(--gn-success);
}

.gn-profile-form-group input.is-usuario-invalid {
	border-color: var(--gn-danger);
}

.gn-profile-form-preview img {
	border-radius: 6px;
	display: block;
	height: 80px;
	margin-top: 6px;
	max-width: 120px;
	object-fit: cover;
}

.gn-profile-form-preview img[hidden],
.gn-profile-form-preview span[hidden] {
	display: none;
}

.gn-profile-form-error {
	color: var(--gn-danger);
	font-size: 0.8rem;
	margin: 0.25rem 0 0;
}

.gn-profile-form-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
	width: 100%;
}

.gn-profile-form-actions__buttons {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-left: auto;
}

/* --- Responsivo ----------------------------------------------- */
@media (max-width: 600px) {
	.gn-profile-hero {
		--gn-cover-band: 130px;
		--gn-avatar-overlap: 40px;
		--gn-avatar-max: 78px;
	}

	.gn-profile-name {
		font-size: 1.2rem;
	}

	.gn-profile-form-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.gn-profile-form-actions__buttons {
		flex-direction: column;
		margin-left: 0;
		width: 100%;
	}

	.gn-profile-form-actions .gn-profile-excluir-conta__link {
		align-self: flex-start;
		margin-left: 0;
		order: 1;
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gn-profile-edit-icon {
		transition: none;
	}
}

@media (max-width: 640px) {
	.gn-profile-page #main .container {
		padding-left: 0.85rem;
		padding-right: 0.85rem;
	}
}
/* ================================================================
   DASHBOARD EDITORIAL  (gn-writer-*)
   Documentação: docs/perfil-conta-plano.md §4.3–4.4
   Atalhos de tipo (artigos/galerias/…) migraram para gn-quick-* no hub /conta.
   ================================================================ */

.gn-writer-kpis {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
}

.gn-writer-kpi {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0.9rem 1rem;
	text-align: center;
}

.gn-writer-kpi--link {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.12s, border-color 0.12s, transform 0.12s;
}

.gn-writer-kpi--link:hover,
.gn-writer-kpi--link:focus-visible {
	background: var(--gn-surface);
	border-color: var(--gn-auth-accent);
	outline: none;
	text-decoration: none;
	transform: translateY(-1px);
}

.gn-writer-kpi--static {
	cursor: default;
}

.gn-writer-kpi--placeholder {
	background: var(--gn-bg);
}

.gn-writer-kpi__value {
	color: var(--gn-text);
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.2;
}

.gn-writer-kpi__value--muted {
	color: var(--gn-muted);
}

.gn-writer-kpi__label {
	color: var(--gn-muted);
	font-size: 0.8rem;
	font-weight: 500;
}

.gn-writer-kpi__hint {
	color: var(--gn-muted);
	font-size: 0.7rem;
}

.gn-writer-published__title {
	color: var(--gn-text);
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.85rem;
}

.gn-writer-published__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-writer-published__item {
	align-items: center;
	border-bottom: 1px solid var(--gn-bg);
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	justify-content: space-between;
	padding: 0.75rem 0;
}

.gn-writer-published__item:last-child {
	border-bottom: 0;
}

.gn-writer-published__main {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.gn-writer-published__link {
	color: var(--gn-primary-dark);
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
}

.gn-writer-published__link:hover,
.gn-writer-published__link:focus-visible {
	text-decoration: underline;
}

.gn-writer-published__date {
	color: var(--gn-muted);
	font-size: 0.8rem;
}

.gn-writer-published__views {
	color: var(--gn-muted);
	font-size: 0.8rem;
	white-space: nowrap;
}

.gn-writer-published__note {
	color: var(--gn-muted);
	font-size: 0.8rem;
	margin: 1rem 0 0;
}

/* ================================================================
   CRUD ARTIGOS DO REDATOR  (gn-writer-articles, gn-writer-page)
   ================================================================ */

.gn-writer-articles {
	margin-top: 2rem;
}

.gn-writer-articles__header {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.gn-writer-articles__title {
	color: var(--gn-text);
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
}

.gn-writer-articles__new {
	background: var(--gn-primary);
	border: 1px solid transparent;
	border-radius: 8px;
	color: var(--gn-inverse);
	cursor: pointer;
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.5rem 1rem;
	text-decoration: none;
	text-transform: uppercase;
}

.gn-writer-articles__new:hover,
.gn-writer-articles__new:focus-visible {
	background: var(--gn-primary-dark);
	color: var(--gn-inverse);
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-writer-articles__table-wrap {
	overflow-x: auto;
}

.gn-writer-articles__table {
	border-collapse: collapse;
	font-size: 0.88rem;
	min-width: 640px;
	width: 100%;
}

.gn-writer-articles__table th,
.gn-writer-articles__table td {
	border-bottom: 1px solid var(--gn-border);
	padding: 0.65rem 0.5rem;
	text-align: left;
	vertical-align: top;
}

.gn-writer-articles__table th {
	color: var(--gn-muted);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
}

.gn-writer-articles__table:not(.gn-admin-users__table) tbody tr {
	transition: background-color 0.12s ease;
}

.gn-writer-articles__table:not(.gn-admin-users__table) tbody tr:hover {
	background: var(--gn-primary-soft);
}

.gn-writer-articles__title-cell {
	font-weight: 500;
	max-width: 220px;
}

.gn-writer-articles__date {
	white-space: nowrap;
}

.gn-writer-articles__num {
	font-variant-numeric: tabular-nums;
	text-align: right;
	white-space: nowrap;
}

.gn-writer-articles__muted {
	color: var(--gn-muted);
}

.gn-writer-articles__badge {
	border-radius: 999px;
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	padding: 0.2rem 0.55rem;
}

.gn-writer-articles__badge--draft { background: var(--gn-bg); color: var(--gn-muted); }
.gn-writer-articles__badge--pending_review { background: var(--gn-warning-bg); color: var(--gn-warning-text); }
.gn-writer-articles__badge--published { background: var(--gn-primary-soft); color: var(--gn-success); }
.gn-writer-articles__badge--archived { background: var(--gn-border); color: var(--gn-muted); }

.gn-writer-articles__table th[id$="-actions-col"],
.gn-writer-articles__table td.gn-writer-articles__actions {
	vertical-align: middle;
	white-space: nowrap;
	width: 1%;
}

.gn-writer-articles__actions {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 0.25rem;
	min-width: 0;
}

.gn-writer-articles__action {
	color: var(--gn-primary-dark);
	font-size: 0.8rem;
	text-decoration: none;
}

.gn-writer-articles__inline-form {
	display: inline;
	margin: 0;
}

.gn-writer-articles__action-btn {
	cursor: pointer;
	font-family: inherit;
}

.gn-writer-articles__action-btn--danger {
	color: var(--gn-danger);
}

.gn-writer-articles__type-badge {
	background: var(--gn-bg);
	border-radius: 4px;
	color: var(--gn-primary-dark);
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	margin-left: 0.4rem;
	padding: 0.1rem 0.35rem;
	vertical-align: middle;
}

.gn-writer-articles__icon {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 6px;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.95rem;
	height: 32px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	text-decoration: none;
	transition: background 0.12s, color 0.12s;
	width: 32px;
}

.gn-writer-articles__icon:hover,
.gn-writer-articles__icon:focus-visible {
	background: var(--gn-bg);
	color: var(--gn-text);
	outline: none;
	text-decoration: none;
}

.gn-writer-articles__icon:focus-visible {
	box-shadow: 0 0 0 2px rgba(28, 53, 85, 0.35);
}

.gn-writer-articles__icon--danger {
	color: var(--gn-danger);
}

.gn-writer-articles__icon--danger:hover,
.gn-writer-articles__icon--danger:focus-visible {
	background: var(--gn-primary-soft);
	color: var(--gn-danger);
}

@media (prefers-reduced-motion: reduce) {
	.gn-writer-articles__icon,
	.gn-writer-articles__table:not(.gn-admin-users__table) tbody tr {
		transition: none;
	}
}

.gn-writer-articles__more {
	font-size: 0.85rem;
	margin-top: 0.75rem;
	text-align: center;
}

/* Grid e cards compartilhados: /redacao/artigos, /redacao/galeria, /redacao/slides e /redacao/videos (S8 / V8) */
.gn-writer-articles__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, 272px);
	justify-content: start;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-writer-article-card {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	max-width: 272px;
	min-height: 360px;
	min-width: 272px;
	overflow: hidden;
	width: 272px;
}

.gn-writer-article-card__media {
	aspect-ratio: 297 / 210;
	overflow: hidden;
	padding-top: 0;
	position: relative;
}

.gn-writer-article-card__img {
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: center top;
	position: absolute;
	top: 0;
	width: 100%;
}

.gn-writer-article-card__info-btn {
	align-items: center;
	background: rgba(255, 255, 255, 0.92);
	border: 0;
	border-radius: 999px;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	height: 28px;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 0.5rem;
	top: 0.5rem;
	width: 28px;
	z-index: 2;
}

.gn-writer-article-card__info-btn:hover,
.gn-writer-article-card__info-btn:focus-visible {
	background: var(--gn-surface);
	color: var(--gn-text);
	outline: none;
}

.gn-writer-article-card__info-btn:focus-visible {
	box-shadow: 0 0 0 2px rgba(28, 53, 85, 0.35);
}

.gn-writer-article-card__meta-popover {
	background: var(--gn-text);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.18);
	color: var(--gn-bg);
	font-size: 0.75rem;
	left: 0.5rem;
	line-height: 1.45;
	opacity: 0;
	padding: 0.65rem 0.75rem;
	pointer-events: none;
	position: absolute;
	right: 0.5rem;
	top: calc(100% + 0.35rem);
	transform: translateY(4px);
	transition: opacity 0.15s ease, transform 0.15s ease;
	z-index: 5;
}

.gn-writer-article-card__meta-popover::before {
	border-color: transparent transparent var(--gn-text) transparent;
	border-style: solid;
	border-width: 0 6px 6px;
	content: "";
	height: 0;
	position: absolute;
	right: 0.85rem;
	top: -6px;
	width: 0;
}

.gn-writer-article-card__meta-popover p {
	margin: 0 0 0.35rem;
}

.gn-writer-article-card__meta-popover p:last-child {
	margin-bottom: 0;
}

.gn-writer-article-card__meta-popover--open,
.gn-writer-article-card__info-btn:focus + .gn-writer-article-card__meta-popover {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
	.gn-writer-article-card:hover .gn-writer-article-card__meta-popover {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}
}

@media (pointer: coarse) {
	.gn-writer-article-card__info-btn {
		display: inline-flex;
	}
}

.gn-writer-article-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.45rem;
	padding: 0.75rem 0.85rem 0.65rem;
}

.gn-writer-article-card__badge {
	align-self: flex-start;
}

.gn-writer-article-card__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--gn-text);
	display: -webkit-box;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.35;
	margin: 0;
	overflow: hidden;
}

.gn-writer-article-card__summary {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: var(--gn-muted);
	display: -webkit-box;
	flex: 1;
	font-family: var(--gn-font-ui);
	font-size: 0.82rem;
	font-weight: normal;
	line-height: 1.45;
	margin: 0;
	overflow: hidden;
}

.gn-writer-article-card__summary--empty {
	color: var(--gn-muted);
	font-style: italic;
}

.gn-writer-article-card__footer {
	align-items: center;
	border-top: 1px solid var(--gn-bg);
	display: flex;
	gap: 0.15rem;
	justify-content: space-between;
	padding: 0.45rem 0.55rem 0.55rem;
}

.gn-writer-article-card__action-slot {
	align-items: center;
	display: inline-flex;
	flex: 0 0 32px;
	justify-content: center;
	min-height: 32px;
}

.gn-writer-article-card__action-slot--inactive {
	visibility: hidden;
}

.gn-writer-pagination__summary {
	color: var(--gn-muted);
	font-size: 0.85rem;
	margin: 0 0 0.5rem;
	text-align: center;
}

@media (max-width: 599px) {
	.gn-writer-articles__grid {
		grid-template-columns: 272px;
		justify-content: center;
		justify-items: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gn-writer-article-card,
	.gn-writer-article-card__meta-popover {
		transition: none;
	}
}

.gn-writer-page {
	padding: 1.5rem 0 3rem;
}

/* Sem a margem legado do #main; o respiro vertical é --gn-gap-ad. */
#main.gn-writer-page,
#main[data-writer-panel] {
	margin-top: 0;
	padding-top: var(--gn-gap-ad);
}

#main.gn-writer-page > .container.gn-writer-page,
#main[data-writer-panel] > .container.gn-writer-page {
	padding-top: 0;
}

.gn-writer-page__back {
	margin: 0 0 1rem;
}

.gn-writer-page__back-link {
	align-items: center;
	color: inherit;
	display: inline-flex;
	font-weight: 500;
	gap: 0.45rem;
	text-decoration: none;
}

.gn-writer-page__back-link:hover,
.gn-writer-page__back-link:focus-visible {
	color: var(--gn-auth-accent);
	outline: none;
}

.gn-writer-page__back-link .fa {
	font-size: 0.95rem;
	line-height: 1;
}

.gn-writer-page__header {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: space-between;
	margin-bottom: 1.25rem;
}

.gn-writer-page__header.gn-section-title {
	padding-bottom: 0.85rem;
}

.gn-writer-page__title {
	font-family: var(--gn-font-display);
	font-size: var(--gn-type-h2);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0;
}

.gn-writer-pipeline {
	margin: 0 0 1.5rem;
}

.gn-writer-pipeline__steps {
	display: flex;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-writer-pipeline__step {
	align-items: center;
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.4rem;
	position: relative;
	text-align: center;
}

.gn-writer-pipeline__step:not(:last-child)::after {
	background: var(--gn-border);
	content: "";
	height: 2px;
	left: calc(50% + 1.1rem);
	position: absolute;
	top: 1rem;
	width: calc(100% - 2.2rem);
	z-index: 0;
}

.gn-writer-pipeline__step[data-done="true"]:not(:last-child)::after {
	background: var(--gn-success);
}

.gn-writer-pipeline__marker {
	align-items: center;
	background: var(--gn-surface);
	border: 2px solid var(--gn-border);
	border-radius: 50%;
	color: var(--gn-muted);
	display: flex;
	font-size: 0.8rem;
	font-weight: 600;
	height: 2rem;
	justify-content: center;
	position: relative;
	width: 2rem;
	z-index: 1;
}

.gn-writer-pipeline__label {
	color: var(--gn-muted);
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.25;
	max-width: 7rem;
}

.gn-writer-pipeline__step[data-active="true"] .gn-writer-pipeline__marker {
	background: var(--gn-primary);
	border-color: var(--gn-primary);
	color: var(--gn-inverse);
}

.gn-writer-pipeline__step[data-active="true"] .gn-writer-pipeline__label {
	color: var(--gn-primary);
	font-weight: 600;
}

.gn-writer-pipeline__step[data-done="true"] .gn-writer-pipeline__marker {
	background: var(--gn-success);
	border-color: var(--gn-success);
	color: var(--gn-inverse);
}

.gn-writer-pipeline__step[data-done="true"] .gn-writer-pipeline__label {
	color: var(--gn-muted);
}

.gn-writer-pipeline__status {
	color: var(--gn-muted);
	font-size: 0.88rem;
	margin: 0.85rem 0 0;
}

.gn-writer-pipeline__archived {
	background: var(--gn-bg);
	border-radius: 6px;
	color: var(--gn-muted);
	font-size: 0.85rem;
	margin: 0.75rem 0 0;
	padding: 0.5rem 0.75rem;
}

@media (max-width: 480px) {
	.gn-writer-pipeline__label {
		font-size: 0.7rem;
		max-width: 5.5rem;
	}
}

/* Barra de busca (redação, notícias, giro360, negócios, etc.) */
.gn-writer-search {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.gn-writer-search--noticias,
.gn-writer-search--giro360,
.gn-writer-search--negocios {
	margin: 1.25rem 0 0.5rem;
}

.gn-writer-search--noticias .gn-writer-search__input,
.gn-writer-search--giro360 .gn-writer-search__input,
.gn-writer-search--negocios .gn-writer-search__input {
	max-width: 32rem;
}

/*
 * N.5 / G.0 / B.0 — mesma altura computada input ↔ botão (borda + padding + line-height).
 * Inclui Buscar e Criar na redação; sobrescreve height: 42px global de input[type=search].
 */
.gn-writer-search__input,
.gn-writer-search__submit,
.gn-writer-search .gn-btn,
.gn-writer-search--noticias .gn-writer-search__input,
.gn-writer-search--noticias .gn-writer-search__submit,
.gn-writer-search--giro360 .gn-writer-search__input,
.gn-writer-search--giro360 .gn-writer-search__submit,
.gn-writer-search--negocios .gn-writer-search__input,
.gn-writer-search--negocios .gn-writer-search__submit {
	box-sizing: border-box;
	font-size: 0.9rem;
	height: 2.5rem;
	line-height: 1.25;
	min-height: 2.5rem;
	padding-bottom: 0;
	padding-top: 0;
}

.gn-writer-search--negocios-filters {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.gn-writer-search--negocios-filters .gn-writer-search__input {
	flex: 1 1 10rem;
	max-width: none;
	min-width: 8rem;
}

.gn-writer-search--negocios-filters .gn-writer-search__select {
	flex: 0 0 auto;
	max-width: 9.5rem;
}

.gn-writer-search--negocios-filters .gn-writer-search__select--ordenar {
	max-width: 12.25rem;
}

.gn-writer-search--negocios-filters .gn-writer-search__toolbar {
	display: contents;
}

@media (min-width: 768px) {
	.gn-writer-search--negocios-filters:not(.gn-writer-search--negocios-imoveis):not(.gn-writer-search--negocios-produtos) {
		flex-wrap: nowrap;
	}
}

@media (max-width: 767px) {
	.gn-writer-search--negocios-filters {
		flex-wrap: wrap;
	}

	.gn-writer-search--negocios-filters .gn-writer-search__toolbar {
		align-items: center;
		display: flex;
		flex: 1 1 100%;
		flex-wrap: nowrap;
		gap: 0.5rem;
		min-width: 0;
		order: -1;
		width: 100%;
	}

	.gn-writer-search--negocios-imoveis .gn-writer-search__toolbar,
	.gn-writer-search--negocios-produtos .gn-writer-search__toolbar {
		flex-wrap: wrap;
	}

	.gn-writer-search--negocios-filters .gn-writer-search__select {
		flex: 1 1 0;
		max-width: none;
		min-width: 0;
	}

	.gn-writer-search--negocios-filters .gn-writer-search__input {
		flex: 1 1 auto;
		max-width: none;
		min-width: 0;
		width: auto;
	}

	.gn-writer-search--negocios-filters .gn-writer-search__submit {
		flex: 0 0 auto;
	}
}

.gn-writer-search__select {
	appearance: none;
	background-color: #fff;
	background-image: linear-gradient(45deg, transparent 50%, var(--gn-muted) 50%),
		linear-gradient(135deg, var(--gn-muted) 50%, transparent 50%);
	background-position: calc(100% - 14px) calc(50% - 2px), calc(100% - 9px) calc(50% - 2px);
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	box-sizing: border-box;
	color: inherit;
	font-size: 0.9rem;
	height: 2.5rem;
	line-height: 1.25;
	max-width: 11rem;
	min-height: 2.5rem;
	min-width: 7.5rem;
	padding: 0 1.75rem 0 0.7rem;
}

.gn-writer-search__select:focus-visible {
	border-color: var(--gn-primary);
	box-shadow: 0 0 0 2px rgba(28, 53, 85, 0.2);
	outline: none;
}

.gn-negocios-filters__row select {
	padding: 0.4rem 0.55rem;
	border: 1px solid var(--gn-border);
	border-radius: 4px;
}

.gn-writer-search__input {
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	flex: 1 1 12rem;
	max-width: 24rem;
	min-width: 10rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.gn-writer-search__input:focus-visible {
	border-color: var(--gn-primary);
	box-shadow: 0 0 0 2px rgba(28, 53, 85, 0.2);
	outline: none;
}

.gn-writer-search__submit,
.gn-writer-search .gn-btn,
.gn-writer-search--noticias .gn-writer-search__submit,
.gn-writer-search--giro360 .gn-writer-search__submit,
.gn-writer-search--negocios .gn-writer-search__submit {
	align-items: center;
	border: 1px solid transparent;
	display: inline-flex;
	flex: 0 0 auto;
	justify-content: center;
	padding-left: 1rem;
	padding-right: 1rem;
}

.gn-writer-search__submit {
	cursor: pointer;
	flex: 0 0 auto;
}

.gn-writer-search__active {
	color: var(--gn-muted);
	font-size: 0.875rem;
	margin: 0 0 0.75rem;
}

.gn-writer-search__active strong {
	color: var(--gn-text);
}

.gn-writer-search__clear {
	color: var(--gn-primary);
	font-weight: 500;
	margin-left: 0.5rem;
	text-decoration: none;
}

.gn-writer-search__clear:hover,
.gn-writer-search__clear:focus-visible {
	text-decoration: underline;
}

.gn-writer-filter {
	border-bottom: 2px solid var(--gn-border);
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	margin-bottom: 1.25rem;
}

.gn-writer-filter__tab {
	border-bottom: 2px solid transparent;
	color: var(--gn-muted);
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: -2px;
	padding: 0.5rem 0.875rem;
	text-decoration: none;
	transition: color 0.15s, border-color 0.15s;
}

.gn-writer-filter__tab:hover {
	color: var(--gn-text);
	border-bottom-color: var(--gn-border);
}

.gn-writer-filter__tab--active {
	border-bottom-color: var(--gn-primary);
	color: var(--gn-primary);
}

.gn-writer-pagination {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 1.5rem;
}

/* Fila editorial (editor) */
.gn-editor-queue {
	margin-top: 0;
}

.gn-editor-queue__publish-form {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0;
}

.gn-editor-queue__select {
	font-size: 0.78rem;
	max-width: 11rem;
	padding: 0.25rem 0.35rem;
}

.gn-editor-queue__table .gn-writer-articles__actions {
	min-width: 6.5rem;
}

.gn-editor-queue__help,
.gn-admin-users__help {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-editor-queue__help li,
.gn-admin-users__help li {
	border-bottom: 1px solid var(--gn-bg);
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0.65rem 0;
}

.gn-editor-queue__help li:first-child,
.gn-admin-users__help li:first-child {
	padding-top: 0;
}

.gn-editor-queue__help li:last-child,
.gn-admin-users__help li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.gn-editor-queue__help strong,
.gn-admin-users__help strong {
	color: var(--gn-text);
	font-size: 0.9rem;
}

.gn-editor-queue__help span,
.gn-admin-users__help span {
	color: var(--gn-muted);
	font-size: 0.82rem;
	line-height: 1.45;
}

.gn-admin-dashboard .gn-writer-pagination {
	border-top: 1px solid var(--gn-bg);
	margin-top: 1.25rem;
	padding-top: 1rem;
}

/* ADM (/admin/usuarios) */
.gn-writer-articles__table.gn-admin-users__table {
	max-width: 100%;
	min-width: 0;
	table-layout: fixed;
	width: 100%;
}

/* Larguras em % que somam 100% — rem misturado estourava a seção (~792px) */
.gn-admin-users__table th:nth-child(1),
.gn-admin-users__table td.gn-admin-users__nome {
	width: 26%;
}

.gn-admin-users__table th:nth-child(2),
.gn-admin-users__table td.gn-admin-users__email,
.gn-admin-users__table td.gn-admin-users__plano {
	width: 46%;
}

.gn-admin-users__table th:nth-child(3),
.gn-admin-users__table td:nth-child(3) {
	width: 12%;
}

.gn-admin-users__table th:nth-child(4),
.gn-admin-users__table td:nth-child(4) {
	width: 16%;
	white-space: nowrap;
}

.gn-admin-users__table td.gn-admin-users__nome,
.gn-admin-users__table td.gn-admin-users__email,
.gn-admin-users__table td.gn-admin-users__plano,
.gn-admin-users__table td.gn-admin-assinaturas__vaga {
	max-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gn-admin-users__table.gn-admin-assinaturas th:nth-child(2),
.gn-admin-users__table.gn-admin-assinaturas td:nth-child(2) {
	width: 18%;
}

.gn-admin-users__table.gn-admin-assinaturas th:nth-child(3),
.gn-admin-users__table.gn-admin-assinaturas td:nth-child(3) {
	width: 34%;
}

.gn-admin-users__table.gn-admin-assinaturas th:nth-child(4),
.gn-admin-users__table.gn-admin-assinaturas td:nth-child(4) {
	width: 14%;
	white-space: nowrap;
}

.gn-admin-users__table.gn-admin-assinaturas th:nth-child(5),
.gn-admin-users__table.gn-admin-assinaturas td.gn-admin-assinaturas__excluir {
	text-align: center;
	white-space: nowrap;
	width: 3rem;
}

.gn-admin-assinaturas__toolbar {
	align-items: center;
}

.gn-admin-assinaturas__search {
	flex: 1 1 16rem;
	min-width: 0;
}

.gn-admin-users__table.gn-admin-pontos th:nth-child(1),
.gn-admin-users__table.gn-admin-pontos td:nth-child(1) {
	width: 24%;
}

.gn-admin-users__table.gn-admin-pontos th:nth-child(2),
.gn-admin-users__table.gn-admin-pontos td:nth-child(2) {
	width: 14%;
	white-space: nowrap;
}

.gn-admin-users__table.gn-admin-pontos th:nth-child(3),
.gn-admin-users__table.gn-admin-pontos td:nth-child(3) {
	width: 24%;
}

.gn-admin-users__table.gn-admin-pontos th:nth-child(4),
.gn-admin-users__table.gn-admin-pontos td:nth-child(4) {
	width: 18%;
	white-space: nowrap;
}

.gn-admin-users__table.gn-admin-pontos th:nth-child(5),
.gn-admin-users__table.gn-admin-pontos td.gn-admin-pontos__saldo {
	font-variant-numeric: tabular-nums;
	text-align: right;
	white-space: nowrap;
	width: 20%;
}

.gn-admin-pontos__footer,
.gn-admin-assinaturas__footer {
	margin: 0.85rem 0 0;
}

.gn-conta-pontos__saldo {
	color: var(--gn-text);
	font-size: 1rem;
	margin: 0 0 1rem;
}

.gn-conta-pontos__saldo strong {
	font-variant-numeric: tabular-nums;
}

.gn-conta-pontos__table th:nth-child(1),
.gn-conta-pontos__table td:nth-child(1) {
	white-space: nowrap;
	width: 22%;
}

.gn-conta-pontos__table th:nth-child(3),
.gn-conta-pontos__table td.gn-conta-pontos__valor {
	font-variant-numeric: tabular-nums;
	text-align: right;
	white-space: nowrap;
	width: 18%;
}

.gn-conta-pontos__valor.is-credito {
	color: var(--gn-success);
}

.gn-conta-pontos__valor.is-debito {
	color: var(--gn-danger);
}

.gn-admin-users__table.gn-admin-placement-pins th:nth-child(1),
.gn-admin-users__table.gn-admin-placement-pins td.gn-admin-users__nome {
	width: 38%;
}

.gn-admin-users__table.gn-admin-placement-pins th:nth-child(2),
.gn-admin-users__table.gn-admin-placement-pins td:nth-child(2) {
	width: 22%;
}

.gn-admin-users__table.gn-admin-placement-pins th:nth-child(3),
.gn-admin-users__table.gn-admin-placement-pins td:nth-child(3) {
	width: 18%;
	white-space: nowrap;
}

.gn-admin-users__table.gn-admin-placement-pins th:nth-child(4),
.gn-admin-users__table.gn-admin-placement-pins td:nth-child(4) {
	width: 22%;
	white-space: nowrap;
}

.gn-admin-users__email {
	color: var(--gn-muted);
	font-size: 0.85rem;
}

.gn-admin-users__plano-form {
	align-items: center;
	display: flex;
	gap: 0.35rem;
	margin: 0;
}

.gn-admin-users__plano-select {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-text);
	font: inherit;
	font-size: 0.8rem;
	max-width: 8.5rem;
	min-width: 0;
	padding: 0.28rem 0.4rem;
}

.gn-admin-users__plano-apply {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-text);
	cursor: pointer;
	font: inherit;
	font-size: 0.75rem;
	padding: 0.25rem 0.45rem;
}

.gn-admin-users__plano-link {
	color: var(--gn-primary);
	font-size: 0.78rem;
	font-weight: 600;
	margin-left: 0.45rem;
	text-decoration: none;
}

.gn-admin-users__plano-link:hover,
.gn-admin-users__plano-link:focus-visible {
	text-decoration: underline;
}

.gn-admin-users__role {
	background: var(--gn-primary-soft);
	border-radius: 999px;
	color: var(--gn-primary);
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0.1rem 0.25rem 0.1rem 0;
	padding: 0.15rem 0.55rem;
	text-transform: uppercase;
	white-space: nowrap;
}

.gn-admin-users__role--admin {
	background: var(--gn-primary);
	color: var(--gn-inverse);
}

.gn-admin-users__role--editor {
	background: var(--gn-surface);
	border: 1px solid var(--gn-primary);
	color: var(--gn-primary);
}

.gn-admin-users__role--redator {
	background: var(--gn-surface);
	border: 1px dashed var(--gn-success);
	color: var(--gn-success);
}

.gn-admin-users__role--anunciante {
	background: var(--gn-warning-bg);
	border: 1px solid var(--gn-detail-yellow);
	color: var(--gn-warning-text);
}

.gn-admin-users__role--reader {
	background: var(--gn-bg);
	color: var(--gn-muted);
}

/* U4 — linha expansível "Ver mais" */
.gn-admin-users__actions {
	vertical-align: middle;
	white-space: nowrap;
}

.gn-admin-users__more {
	align-items: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	box-sizing: border-box;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	font-family: inherit;
	font-size: 0.8rem;
	font-weight: 600;
	gap: 0.35rem;
	justify-content: center;
	line-height: 1;
	padding: 0.4rem 0.7rem;
	white-space: nowrap;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.gn-admin-users__more-eye {
	display: none;
}

.gn-admin-users__more:hover,
.gn-admin-users__more:focus-visible {
	background: var(--gn-bg);
	border-color: var(--gn-primary);
	color: var(--gn-text);
	outline: none;
}

.gn-admin-users__more .fa {
	font-size: 0.65rem;
	line-height: 1;
	transition: transform 0.2s ease;
}

.gn-admin-users-list .gn-admin-users__more.is-expanded .gn-admin-users__more-chevron {
	transform: rotate(180deg);
}

.gn-admin-users__detail-row > td {
	background: var(--gn-bg);
	border-bottom: 1px solid var(--gn-border);
	max-width: 0;
	overflow-wrap: anywhere;
	padding: 1rem 1.1rem 1.25rem;
}

.gn-admin-users__detail-row[hidden] {
	display: none;
}

/* /admin/negocios — toggles liga/desliga (melhoria_negocios.md §12.4.2) */
.gn-admin-negocios__toggles {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	align-items: center;
	margin: 1rem 0;
}

.gn-admin-negocios__nivel {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.gn-admin-negocios__nivel-label {
	font-size: 0.95rem;
	font-weight: 600;
}

.gn-admin-negocios__nivel-value {
	font-weight: 600;
}

/* Listagens admin: tabela flush na seção, cabeçalho destacado, zebrado sem borda */
.gn-admin-flush-table {
	--gn-admin-flush-table-pad-x: 1.5rem;
	padding-left: var(--gn-admin-flush-table-pad-x);
	padding-right: var(--gn-admin-flush-table-pad-x);
}

/* Desktop: tabela inseta — gap entre a tabela e a borda da seção */
.gn-admin-users-list.gn-admin-flush-table {
	--gn-admin-flush-table-pad-x: 0px;
	max-width: 100%;
	min-width: 0;
	overflow-x: hidden;
}

.gn-admin-users-list.gn-admin-flush-table .gn-writer-articles__table-wrap {
	margin-left: 0;
	margin-right: 0;
	overflow-x: hidden;
}

.gn-admin-flush-table .gn-writer-articles__table-wrap {
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	margin-left: calc(-1 * var(--gn-admin-flush-table-pad-x));
	margin-right: calc(-1 * var(--gn-admin-flush-table-pad-x));
	overflow: hidden;
	overflow-x: auto;
}

.gn-admin-flush-table .gn-writer-articles__table thead {
	filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.2));
	position: relative;
	z-index: 1;
}

.gn-admin-flush-table .gn-writer-articles__table thead th {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-left-width: 0;
	border-right-width: 0;
	color: var(--gn-text);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.9rem 0.75rem;
	vertical-align: middle;
	white-space: nowrap;
}

.gn-admin-flush-table .gn-writer-articles__table thead th:first-child {
	border-left-width: 1px;
}

.gn-admin-flush-table .gn-writer-articles__table thead th:last-child {
	border-right-width: 1px;
}

.gn-admin-flush-table .gn-writer-articles__table tbody td {
	border: none;
}

.gn-admin-flush-table .gn-writer-articles__table th:first-child,
.gn-admin-flush-table .gn-writer-articles__table td:first-child {
	padding-left: 1.25rem;
}

.gn-admin-flush-table .gn-writer-articles__table th:last-child,
.gn-admin-flush-table .gn-writer-articles__table td:last-child {
	padding-right: 1.25rem;
}

.gn-admin-users-list.gn-admin-flush-table .gn-writer-articles__table thead th,
.gn-admin-users-list.gn-admin-flush-table .gn-writer-articles__table th,
.gn-admin-users-list.gn-admin-flush-table .gn-writer-articles__table td {
	letter-spacing: 0.02em;
	padding: 0.65rem 0.45rem;
}

.gn-admin-users-list.gn-admin-flush-table .gn-writer-articles__table th:first-child,
.gn-admin-users-list.gn-admin-flush-table .gn-writer-articles__table td:first-child {
	padding-left: 0.7rem;
}

.gn-admin-users-list.gn-admin-flush-table .gn-writer-articles__table th:last-child,
.gn-admin-users-list.gn-admin-flush-table .gn-writer-articles__table td:last-child {
	padding-right: 0.4rem;
}

.gn-admin-flush-table .gn-seo-pageviews,
.gn-admin-flush-table .gn-enquete-cms__table {
	margin-top: 0;
}

@media (max-width: 767px) {
	.gn-admin-flush-table {
		--gn-admin-flush-table-pad-x: 1rem;
	}

	/* Mobile: tabela flush na borda da seção — aproveita a largura útil */
	.gn-admin-users-list.gn-admin-flush-table {
		--gn-admin-flush-table-pad-x: 0.75rem;
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

	.gn-admin-users-list.gn-admin-flush-table .gn-writer-articles__table-wrap {
		border-left-width: 0;
		border-radius: 0;
		border-right-width: 0;
		margin-left: calc(-1 * var(--gn-admin-flush-table-pad-x));
		margin-right: calc(-1 * var(--gn-admin-flush-table-pad-x));
	}
}

.gn-admin-switch {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	cursor: pointer;
	font-size: 0.95rem;
	color: var(--gn-text);
	user-select: none;
}

.gn-admin-switch input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.gn-admin-switch__ui {
	position: relative;
	width: 2.75rem;
	height: 1.5rem;
	border-radius: 999px;
	background: #cbd5e1;
	border: 1px solid var(--gn-border);
	transition: background 0.15s ease;
	flex-shrink: 0;
}

.gn-admin-switch__ui::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(1.5rem - 6px);
	height: calc(1.5rem - 6px);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.25);
	transition: transform 0.15s ease;
}

.gn-admin-switch input:checked + .gn-admin-switch__ui {
	background: #0f766e;
	border-color: #0f766e;
}

.gn-admin-switch input:checked + .gn-admin-switch__ui::after {
	transform: translateX(1.25rem);
}

.gn-admin-switch input:focus-visible + .gn-admin-switch__ui {
	outline: 2px solid #0f766e;
	outline-offset: 2px;
}

.gn-admin-switch--disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.gn-admin-switch__state {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--gn-muted);
	min-width: 4.6rem;
	text-align: center;
}

.gn-admin-switch__state::after {
	content: "Desligado";
}

.gn-admin-switch input:checked ~ .gn-admin-switch__state {
	color: #0f766e;
}

.gn-admin-switch input:checked ~ .gn-admin-switch__state::after {
	content: "Ligado";
}

.gn-admin-switch--rg .gn-admin-switch__ui {
	background: var(--gn-danger);
	border-color: var(--gn-danger);
}

.gn-admin-switch--rg input:checked + .gn-admin-switch__ui {
	background: var(--gn-success);
	border-color: var(--gn-success);
}

.gn-admin-switch--rg input:focus-visible + .gn-admin-switch__ui {
	outline-color: var(--gn-success);
}

.gn-admin-setting {
	align-items: flex-start;
	border-bottom: 1px solid var(--gn-border);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	justify-content: space-between;
	margin-bottom: 1.15rem;
	padding-bottom: 1.15rem;
}

.gn-admin-setting__copy {
	flex: 1 1 16rem;
	min-width: 0;
}

.gn-admin-setting__title {
	color: var(--gn-text);
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
}

.gn-admin-setting__hint {
	color: var(--gn-muted);
	font-size: 0.9rem;
	line-height: 1.45;
	margin: 0;
}

.gn-admin-setting__control {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
}

.gn-admin-setting__control .gn-admin-switch {
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
}

.gn-admin-setting--inline {
	align-items: center;
	border-bottom: 0;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin-bottom: 0;
	padding-bottom: 0;
}

.gn-admin-setting--inline .gn-admin-setting__title {
	flex: 1 1 auto;
	font-size: 0.95rem;
	font-weight: 600;
	margin: 0;
}

.gn-admin-setting--inline .gn-admin-switch {
	flex-direction: row;
	align-items: center;
}

.gn-admin-geral-form .gn-profile-edit-actions {
	margin-top: 0.25rem;
}

.gn-comment-login-cta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem 0.85rem;
}

.gn-comment-login-cta__text {
	flex: 1 1 12rem;
	margin: 0;
}

.gn-comment-login-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.gn-admin-users__detail-head {
	align-items: center;
	display: flex;
	gap: 0.85rem;
	margin: 0 0 0.85rem;
	max-width: 100%;
	min-width: 0;
}

.gn-admin-users__avatar {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 50%;
	flex-shrink: 0;
	height: 56px;
	object-fit: cover;
	width: 56px;
}

.gn-admin-users__detail-identity {
	min-width: 0;
}

.gn-admin-users__detail-name {
	align-items: center;
	color: var(--gn-text);
	display: flex;
	flex-wrap: wrap;
	font-size: 1.05rem;
	font-weight: 700;
	gap: 0.4rem;
	margin: 0 0 0.15rem;
}

.gn-admin-users__detail-email,
.gn-admin-users__detail-nick {
	color: var(--gn-muted);
	font-size: 0.85rem;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gn-admin-users__detail-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	max-width: 100%;
	min-width: 0;
}

.gn-admin-users__detail {
	max-width: 100%;
	min-width: 0;
}

.gn-admin-users__card {
	box-sizing: border-box;
	max-width: 100%;
	min-width: 0;
	overflow-wrap: anywhere;
	padding: 1rem 1.1rem;
}

.gn-admin-users__activity {
	min-width: 0;
}

.gn-admin-users__card-title {
	border-bottom: 1px solid var(--gn-border);
	color: var(--gn-text);
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
	padding-bottom: 0.5rem;
}

.gn-admin-users__card .gn-admin-stat-list {
	margin-bottom: 0.85rem;
}

.gn-admin-users__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin: 0 0 1rem;
}

.gn-admin-users__field > span {
	color: var(--gn-text);
	font-size: 0.85rem;
	font-weight: 600;
}

.gn-admin-users__card .gn-admin-users__plano-select {
	max-width: none;
	width: 100%;
}

.gn-admin-users__card .gn-admin-switch {
	align-items: flex-start;
	display: flex;
	margin-bottom: 0.55rem;
	max-width: 100%;
	width: 100%;
}

.gn-admin-users__card .gn-admin-switch > span:last-of-type {
	min-width: 0;
	overflow-wrap: anywhere;
}

.gn-admin-users__card .gn-admin-stat-list__item {
	min-width: 0;
}

.gn-admin-users__card .gn-admin-stat-list__item dd {
	min-width: 0;
	overflow-wrap: anywhere;
	white-space: normal;
}

.gn-admin-users__card .gn-profile-edit-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.gn-admin-users__card .gn-admin-btn {
	flex: 1 1 auto;
	height: auto;
	min-height: 2.5rem;
	min-width: 0;
	white-space: normal;
}

.gn-admin-users__card .gn-admin-user-form__roles {
	margin-bottom: 0.85rem;
}

.gn-admin-user-form--inline {
	max-width: none;
}

.gn-admin-users__activity-title {
	border-bottom: 1px solid var(--gn-border);
	color: var(--gn-text);
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
	padding-bottom: 0.5rem;
}

@media (max-width: 767px) {
	.gn-admin-users__detail-grid {
		grid-template-columns: 1fr;
	}

	.gn-admin-users__detail-row > td {
		padding: 0.75rem 0.5rem 1rem;
	}

	.gn-admin-users__card {
		padding: 0.85rem 0.8rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gn-admin-users__more .fa {
		transition: none;
	}
}

.gn-admin-page__lead {
	color: var(--gn-muted);
	font-size: 0.92rem;
	margin: -0.5rem 0 1.25rem;
}

.gn-admin-user-form {
	max-width: 32rem;
}

.gn-admin-user-form__readonly {
	color: var(--gn-muted);
	font-weight: 500;
	margin: 0.25rem 0 0;
}

.gn-admin-user-form__roles {
	border: 0;
	margin: 0 0 1rem;
	padding: 0;
}

.gn-admin-user-form__roles legend {
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.gn-admin-user-form__hint {
	color: var(--gn-muted);
	font-size: 0.85rem;
	margin: 0 0 0.75rem;
}

.gn-admin-user-form__check {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.gn-writer-article-form__slug-preview code {
	font-size: 0.9em;
}

/* Editor de texto rico (Quill) */
.gn-writer-rich-editor {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 0 0 6px 6px;
	min-height: 280px;
}

.gn-writer-rich-editor .ql-toolbar {
	border: 1px solid var(--gn-border);
	border-bottom: 0;
	border-radius: 6px 6px 0 0;
}

.gn-writer-rich-editor .ql-container {
	border: 0;
	font-family: inherit;
	font-size: 1rem;
}

.gn-writer-rich-editor .ql-editor {
	line-height: 1.7;
	min-height: 260px;
	padding: 0.9rem 1rem;
}

.gn-writer-rich-editor .ql-editor p,
.gn-writer-rich-editor .ql-editor li {
	font-size: 1rem;
}

.gn-writer-rich-editor__hidden {
	display: none;
}

.gn-album-wizard__rich-editor .ql-editor {
	min-height: 180px;
}

.gn-writer-rich-editor--invalid,
.gn-writer-rich-editor--invalid .ql-toolbar {
	border-color: var(--gn-danger);
}

.gn-writer-article-form__label-row {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.75rem;
	justify-content: space-between;
	margin-bottom: 0.35rem;
}

.gn-writer-article-form__label-row label {
	margin-bottom: 0;
}

.gn-writer-article-form__char-counter {
	color: var(--gn-muted);
	font-size: 0.8rem;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.gn-writer-article-form__char-counter--near-limit {
	color: var(--gn-warning-text);
}

.gn-writer-article-form__char-counter--at-limit,
.gn-writer-article-form__char-counter--below-min {
	color: var(--gn-danger);
	font-weight: 500;
}

/* Indicador de qualidade do excerpt (Fase D3) */
.gn-writer-article-form__char-counter.is-short,
.gn-writer-article-form__char-counter.is-long {
	color: var(--gn-danger);
	font-weight: 500;
}

.gn-writer-article-form__char-counter.is-ideal {
	color: var(--gn-success);
	font-weight: 500;
}

.gn-writer-article-form__body-char-hint {
	margin-top: 0.35rem;
}

.gn-writer-article-form__featured-inputs {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.gn-writer-article-form__featured-inputs .gn-album-wizard__input,
.gn-writer-article-form__featured-inputs #featuredImageUrl,
.gn-writer-article-form__featured-inputs #articleEditFeaturedImageUrl {
	flex: 1 1 12rem;
	min-width: 0;
}

.gn-writer-article-form__featured-inputs #featuredImageFile {
	flex: 0 0 auto;
	max-width: 100%;
}

.gn-writer-article-form__media-actions {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.75rem;
}

.gn-writer-article-form__media-actions .gn-btn {
	box-sizing: border-box;
	flex: 1 1 12rem;
	margin: 0;
	max-width: 16rem;
	min-height: 2.5rem;
}

.gn-writer-article-form__media-actions .gn-btn[hidden] {
	display: none;
}

.gn-writer-article-form__featured-upload-status.gn-writer-article-form__featured-upload-status--error {
	color: var(--gn-danger);
}

.gn-writer-article-form__featured-external-hint {
	color: var(--gn-warning-text);
}

.gn-writer-article-form__reframe-btn {
	margin-top: 0.5rem;
}

.gn-writer-article-form__media-actions .gn-writer-article-form__reframe-btn {
	margin-top: 0;
}

.gn-writer-article-form__image-preview {
	margin-top: 0.75rem;
}

.gn-writer-article-form__image-preview-frame {
	background: var(--gn-bg);
	border: 1px dashed var(--gn-border);
	border-radius: 8px;
	box-sizing: border-box;
	max-width: 320px;
	padding: 0.75rem;
	width: 100%;
}

.gn-writer-article-form__image-preview-inner {
	align-items: center;
	display: grid;
	justify-items: center;
	min-height: 140px;
	width: 100%;
}

.gn-writer-article-form__image-preview-inner > * {
	grid-area: 1 / 1;
	max-width: 100%;
}

.gn-writer-article-form__image-preview-frame--loaded,
.gn-writer-article-form__image-preview-frame.is-cover-ready {
	border-style: solid;
}

.gn-writer-article-form__image-preview-frame--error {
	border-color: var(--gn-danger);
}

/* Um único conteúdo visível por vez (evita flex com img + texto lado a lado) */
.gn-writer-article-form__image-preview-img {
	display: none;
	max-height: 200px;
	object-fit: contain;
	width: auto;
}

.gn-writer-article-form__image-preview-placeholder,
.gn-writer-article-form__image-preview-loading {
	display: none;
}

.gn-writer-article-form__image-preview-frame--empty .gn-writer-article-form__image-preview-placeholder,
.gn-writer-article-form__image-preview-frame--error .gn-writer-article-form__image-preview-placeholder {
	display: flex;
}

.gn-writer-article-form__image-preview-frame.is-cover-ready .gn-writer-article-form__image-preview-placeholder {
	display: none;
}

.gn-writer-article-form__image-preview-frame--loading .gn-writer-article-form__image-preview-loading {
	display: block;
}

.gn-writer-article-form__image-preview-frame--loaded .gn-writer-article-form__image-preview-img,
.gn-writer-article-form__image-preview-frame.is-cover-ready .gn-writer-article-form__image-preview-img {
	display: block;
}

.gn-writer-article-form__image-preview-placeholder {
	color: var(--gn-muted);
	flex-direction: column;
	font-size: 0.85rem;
	gap: 0.25rem;
	margin: 0;
	padding: 0 0.5rem;
	text-align: center;
}

.gn-writer-article-form__image-preview-loading {
	color: var(--gn-muted);
	font-size: 0.85rem;
	margin: 0;
}

.gn-writer-article-form__image-preview-placeholder-label {
	color: var(--gn-muted);
	font-weight: 500;
}

.gn-writer-article-form__image-preview-placeholder-hint {
	color: var(--gn-muted);
	font-size: 0.8rem;
}

.gn-writer-article-form__image-preview-error {
	margin-top: 0.5rem;
}

/* Prévia de card na home (Fase D2) — reutiliza .gn-writer-article-card + aspect-ratio A4 */
.gn-article-preview-card {
	border-top: 1px solid var(--gn-border);
	margin-top: 1.25rem;
	padding-top: 1.25rem;
}

.gn-article-preview-card__heading {
	color: var(--gn-muted);
	font-size: 0.875rem;
	font-weight: 600;
	margin: 0 0 0.75rem;
}

.gn-article-preview-card .gn-writer-article-card {
	max-width: none;
	min-height: 0;
	min-width: 0;
	width: 100%;
}

.gn-article-preview-card .gn-writer-article-card__media {
	aspect-ratio: 297 / 210;
	padding-top: 0;
}

.gn-article-preview-card .gn-writer-article-card__media .gn-writer-article-card__img {
	object-fit: cover;
	object-position: center top;
}

.gn-article-preview-card .gn-writer-article-card__img[src$="placeholder.svg"] {
	background: var(--gn-bg);
	object-fit: contain;
}

.gn-article-preview-card .excerpt-entry {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	overflow: hidden;
}

.gn-article-preview-card--featured-main .excerpt-entry {
	--gn-featured-excerpt-lines: 5;
	-webkit-line-clamp: var(--gn-featured-excerpt-lines);
}

.gn-article-preview-card--featured-side .excerpt-entry {
	--gn-featured-excerpt-lines: 3;
	-webkit-line-clamp: var(--gn-featured-excerpt-lines);
	font-size: 0.82rem;
	line-height: 1.45;
}

.gn-article-preview-card--featured-side .gn-writer-article-card__title {
	margin-bottom: 0.35rem;
}

/* .gn-writer-article-form__actions foi absorvido por .gn-writer-form__sidebar-extra (passo 11) */

.gn-writer-autosave-status--ok {
	color: var(--gn-success);
}

.gn-writer-autosave-status--saving {
	color: var(--gn-muted);
}

.gn-writer-autosave-status--error {
	color: var(--gn-danger);
}

@media (max-width: 767px) {
	.gn-writer-articles__table-wrap {
		overflow-x: auto;
	}

	.gn-writer-articles__table:not(.gn-editor-queue__table):not(.gn-admin-users__table):not(.gn-admin-zebra-table) {
		font-size: 0.82rem;
		min-width: 0;
	}

	/* 8 colunas (com Autor): Zona, Publicado em, Atualizado */
	.gn-writer-articles__table:not(.gn-editor-queue__table):not(.gn-admin-users__table):not(.gn-admin-zebra-table):has(thead th:nth-child(8)) th:nth-child(4),
	.gn-writer-articles__table:not(.gn-editor-queue__table):not(.gn-admin-users__table):not(.gn-admin-zebra-table):has(thead th:nth-child(8)) td:nth-child(4),
	.gn-writer-articles__table:not(.gn-editor-queue__table):not(.gn-admin-users__table):not(.gn-admin-zebra-table):has(thead th:nth-child(8)) th:nth-child(5),
	.gn-writer-articles__table:not(.gn-editor-queue__table):not(.gn-admin-users__table):not(.gn-admin-zebra-table):has(thead th:nth-child(8)) td:nth-child(5),
	.gn-writer-articles__table:not(.gn-editor-queue__table):not(.gn-admin-users__table):not(.gn-admin-zebra-table):has(thead th:nth-child(8)) th:nth-child(7),
	.gn-writer-articles__table:not(.gn-editor-queue__table):not(.gn-admin-users__table):not(.gn-admin-zebra-table):has(thead th:nth-child(8)) td:nth-child(7) {
		display: none;
	}

	/* 7 colunas (sem Autor): Zona, Publicado em, Atualizado */
	.gn-writer-articles__table:not(.gn-editor-queue__table):not(.gn-admin-users__table):not(.gn-admin-zebra-table):not(:has(thead th:nth-child(8))) th:nth-child(3),
	.gn-writer-articles__table:not(.gn-editor-queue__table):not(.gn-admin-users__table):not(.gn-admin-zebra-table):not(:has(thead th:nth-child(8))) td:nth-child(3),
	.gn-writer-articles__table:not(.gn-editor-queue__table):not(.gn-admin-users__table):not(.gn-admin-zebra-table):not(:has(thead th:nth-child(8))) th:nth-child(4),
	.gn-writer-articles__table:not(.gn-editor-queue__table):not(.gn-admin-users__table):not(.gn-admin-zebra-table):not(:has(thead th:nth-child(8))) td:nth-child(4),
	.gn-writer-articles__table:not(.gn-editor-queue__table):not(.gn-admin-users__table):not(.gn-admin-zebra-table):not(:has(thead th:nth-child(8))) th:nth-child(6),
	.gn-writer-articles__table:not(.gn-editor-queue__table):not(.gn-admin-users__table):not(.gn-admin-zebra-table):not(:has(thead th:nth-child(8))) td:nth-child(6) {
		display: none;
	}

	/* U1 — /admin/usuarios: Nome · E-mail · Status · Ações, compacto no mobile */
	.gn-writer-articles__table.gn-admin-users__table,
	.gn-admin-users__table {
		font-size: 0.82rem;
		min-width: 0;
		table-layout: fixed;
		width: 100%;
	}

	.gn-admin-users-list .gn-admin-users__table {
		font-size: 0.72rem;
	}

	.gn-admin-users-list .gn-admin-flush-table .gn-writer-articles__table thead th,
	.gn-admin-users-list .gn-writer-articles__table thead th,
	.gn-admin-users-list .gn-admin-users__table th,
	.gn-admin-users-list .gn-admin-users__table td {
		letter-spacing: 0;
		padding: 0.38rem 0.28rem;
	}

	.gn-admin-users-list.gn-admin-flush-table .gn-writer-articles__table th:first-child,
	.gn-admin-users-list.gn-admin-flush-table .gn-writer-articles__table td:first-child,
	.gn-admin-users-list .gn-admin-users__table th:first-child,
	.gn-admin-users-list .gn-admin-users__table td:first-child {
		padding-left: 0.4rem;
	}

	.gn-admin-users-list.gn-admin-flush-table .gn-writer-articles__table th:last-child,
	.gn-admin-users-list.gn-admin-flush-table .gn-writer-articles__table td:last-child,
	.gn-admin-users-list .gn-admin-users__table th:last-child,
	.gn-admin-users-list .gn-admin-users__table td:last-child {
		padding-right: 0.35rem;
	}

	.gn-admin-users__table td.gn-admin-users__nome,
	.gn-admin-users__table td.gn-admin-users__email,
	.gn-admin-users__table td.gn-admin-users__plano {
		max-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.gn-admin-users-list .gn-admin-users__table th:nth-child(1),
	.gn-admin-users-list .gn-admin-users__table td.gn-admin-users__nome {
		width: 30%;
	}

	.gn-admin-users-list .gn-admin-users__table th:nth-child(2),
	.gn-admin-users-list .gn-admin-users__table td.gn-admin-users__email,
	.gn-admin-users-list .gn-admin-users__table td.gn-admin-users__plano {
		width: 42%;
	}

	.gn-admin-users-list .gn-admin-users__table th:nth-child(3),
	.gn-admin-users-list .gn-admin-users__table td:nth-child(3) {
		width: 16%;
	}

	.gn-admin-users-list .gn-admin-users__table .gn-writer-articles__badge {
		font-size: 0.62rem;
		padding: 0.08rem 0.32rem;
	}

	.gn-admin-users-list .gn-admin-users__more [data-user-row-toggle-label],
	.gn-admin-users-list .gn-admin-users__more [data-negocio-row-toggle-label],
	.gn-admin-users-list .gn-admin-users__more-chevron {
		border: 0;
		clip: rect(0, 0, 0, 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	.gn-admin-users-list .gn-admin-users__more-eye {
		display: inline-block;
		font-size: 0.85rem;
	}

	.gn-admin-users-list .gn-admin-users__more {
		border-radius: 8px;
		gap: 0;
		height: 1.75rem;
		padding: 0;
		width: 1.75rem;
	}

	.gn-admin-users__table th:nth-child(4),
	.gn-admin-users__table td:nth-child(4) {
		padding-left: 0.15rem;
		padding-right: 0.2rem;
		white-space: nowrap;
		width: 12%;
	}
}

/* --- Catálogo visual da home (/redacao/catalogo) ----------------- */
.gn-catalog {
	padding-bottom: 3rem;
	padding-top: 1.5rem;
}

.gn-catalog__back {
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.gn-catalog__back a {
	margin-right: 0.25rem;
}

.gn-catalog__title {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.gn-catalog__lead {
	color: var(--gn-muted);
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0 0 1.5rem;
	max-width: 52rem;
}

.gn-catalog__lead code {
	font-size: 0.85em;
}

.gn-catalog__wireframe-title {
	border-top: 1px solid var(--gn-border);
	font-size: 1.25rem;
	margin: 2rem 0 1.25rem;
	padding-top: 1.5rem;
}

.gn-catalog-legend {
	margin-bottom: 1.5rem;
}

.gn-catalog-legend__title {
	font-size: 1.1rem;
	margin: 0 0 0.75rem;
}

.gn-catalog-legend__table {
	border-collapse: collapse;
	font-size: 0.85rem;
	margin-bottom: 0.75rem;
	width: 100%;
}

.gn-catalog-legend__table th,
.gn-catalog-legend__table td {
	border: 1px solid var(--gn-border);
	padding: 0.45rem 0.6rem;
	text-align: left;
	vertical-align: middle;
}

.gn-catalog-legend__table th {
	background: var(--gn-bg);
	font-weight: 600;
}

.gn-catalog-legend__table code {
	font-size: 0.8em;
}

.gn-catalog-legend__note {
	color: var(--gn-muted);
	font-size: 0.85rem;
	margin: 0;
}

.gn-catalog__lead--specs {
	margin-top: 0.75rem;
}

.gn-catalog__lead--placement {
	background: var(--gn-bg);
	border-left: 3px solid var(--gn-auth-accent);
	border-radius: 0 6px 6px 0;
	padding: 0.65rem 0.85rem;
}

.gn-catalog-legend__table-wrap {
	overflow-x: auto;
}

.gn-catalog-zone__spec,
.gn-catalog-zone__spec-hint {
	color: var(--gn-muted);
	font-size: 0.78rem;
	line-height: 1.45;
	margin: 0 0 0.5rem;
}

.gn-catalog-zone__spec-ref {
	color: var(--gn-muted);
	font-size: 0.72rem;
}

.gn-catalog-swatch {
	border-radius: 3px;
	display: inline-block;
	height: 1.25rem;
	vertical-align: middle;
	width: 2.5rem;
}

.gn-catalog-zone {
	--gn-catalog-color: var(--gn-muted);
	border: 3px solid var(--gn-catalog-color);
	margin-bottom: 1.25rem;
	padding: 0.65rem;
}

.gn-catalog-zone--nested {
	margin-bottom: 0.65rem;
	margin-top: 0.65rem;
}

.gn-catalog-zone-group {
	margin-bottom: 1.25rem;
}

.gn-catalog-zone-group__label {
	color: var(--gn-muted);
	font-size: 0.8rem;
	font-weight: 600;
	margin: 0 0 0.35rem;
}

.gn-catalog-zone__badge {
	background: var(--gn-catalog-color);
	border-radius: 4px;
	color: var(--gn-inverse);
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.35;
	margin: 0 0 0.5rem;
	padding: 0.25rem 0.5rem;
}

.gn-catalog-zone__badge--static {
	background: var(--gn-muted);
}

.gn-catalog-zone--static {
	--gn-catalog-color: var(--gn-muted);
	border-style: dashed;
}

.gn-catalog-zone--featured_carousel { --gn-catalog-color: #f59e0b; }
.gn-catalog-zone--featured_carousel_side { --gn-catalog-color: #ea580c; }
.gn-catalog-zone--horizontal_strip { --gn-catalog-color: #0d9488; }
.gn-catalog-zone--editor_pick { --gn-catalog-color: var(--gn-success); }
.gn-catalog-zone--popular_featured { --gn-catalog-color: #1e40af; }
.gn-catalog-zone--popular_sidebar { --gn-catalog-color: #0284c7; }
.gn-catalog-zone--latest_widget { --gn-catalog-color: var(--gn-primary); }
.gn-catalog-zone--most_popular_widget { --gn-catalog-color: #4f46e5; }
.gn-catalog-zone--trending_column { --gn-catalog-color: #7c3aed; }
.gn-catalog-zone--social_media { --gn-catalog-color: var(--gn-danger); }
.gn-catalog-zone--hero_slider { --gn-catalog-color: #5b4a8a; }
.gn-catalog-zone--home_banner_strip,
.gn-catalog-zone--home_mid_banner_strip,
.gn-catalog-zone--home_bottom_banner_strip,
.gn-catalog-zone--noticias_feed_banner_strip,
.gn-catalog-zone--sidebar_widget,
.gn-catalog-zone--sidebar_archives_widget { --gn-catalog-color: #ca8a04; }

.gn-catalog-zone--ad {
	border-style: solid;
}

.gn-catalog-zone__badge--ad {
	background: #ca8a04;
}

.gn-catalog-placeholder--faixa {
	background: #fffbeb;
	min-height: 200px;
}

.gn-catalog-swatch.gn-catalog-zone--featured_carousel,
.gn-catalog-swatch.gn-catalog-zone--featured_carousel_side,
.gn-catalog-swatch.gn-catalog-zone--horizontal_strip,
.gn-catalog-swatch.gn-catalog-zone--editor_pick,
.gn-catalog-swatch.gn-catalog-zone--popular_featured,
.gn-catalog-swatch.gn-catalog-zone--popular_sidebar,
.gn-catalog-swatch.gn-catalog-zone--latest_widget,
.gn-catalog-swatch.gn-catalog-zone--most_popular_widget,
.gn-catalog-swatch.gn-catalog-zone--trending_column,
.gn-catalog-swatch.gn-catalog-zone--social_media {
	border: 3px solid var(--gn-catalog-color);
}

.gn-catalog-placeholder {
	background: var(--gn-bg);
	min-height: 2.5rem;
	padding: 0.5rem;
}

.gn-catalog-placeholder__title {
	font-size: 0.95rem;
	font-weight: 600;
	margin: 0 0 0.35rem;
}

.gn-catalog-placeholder__block {
	background: var(--gn-surface);
	border: 1px dashed var(--gn-border);
	color: var(--gn-muted);
	font-size: 0.8rem;
	margin: 0.35rem 0;
	padding: 0.5rem;
}

.gn-catalog-trending-cols .gn-catalog-placeholder__block {
	min-height: 4rem;
}

/* ================================================================
   HOME — imagens de card com proporção e corte uniformes (A4 297∶210)
   ================================================================ */

.featured-posts .thumb,
.highlights-posts .thumb,
.editors-posts .thumb,
.trending-posts .thumb,
.popular-posts .thumb,
.relate-posts .thumb,
.social-media-posts .thumb,
.gn-noticias-list .thumb,
.tabs .pop-posts .thumb {
	aspect-ratio: 297 / 210;
	overflow: hidden;
	position: relative;
}

.featured-posts .thumb img,
.highlights-posts .thumb img,
.editors-posts .thumb img,
.trending-posts .thumb img,
.popular-posts .thumb img,
.relate-posts .thumb img,
.social-media-posts .thumb img,
.gn-noticias-list .thumb img,
.tabs .pop-posts .thumb img {
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: center top;
	position: absolute;
	top: 0;
	width: 100%;
}

/* Widget sidebar pequeno (111 px) — A4, mesma largura */
.widget-recent .thumb {
	aspect-ratio: 297 / 210;
	overflow: hidden;
	position: relative;
}

.widget-recent .thumb,
.widget-recent .thumb img {
	object-fit: cover;
	object-position: center top;
}

.widget-recent .thumb img {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/* ================================================================
   HOME — clamp de excerpt por zona (Fase A2)
   ================================================================ */

.excerpt-entry {
	min-height: 0;
}

.featured-posts .content-left .excerpt-entry {
	--gn-featured-excerpt-lines: 5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--gn-featured-excerpt-lines);
	display: -webkit-box;
	overflow: hidden;
}

.featured-posts .content-right .excerpt-entry {
	--gn-featured-excerpt-lines: 3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--gn-featured-excerpt-lines);
	display: -webkit-box;
	font-size: 14px;
	line-height: 21px;
	margin-bottom: 0;
	overflow: hidden;
}

.featured-posts .content-right h3 {
	margin-bottom: 12px;
}

.editors-posts .excerpt-entry,
.popular-posts .content-left .excerpt-entry,
.social-media-posts .excerpt-entry {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	overflow: hidden;
}

/* post-card (listagem /noticias) */
.post .head-post .excerpt-entry {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	overflow: hidden;
}

/* ================================================================
   HOME — meta do autor e engajamento nos cards (melhoria_home Fase 2)
   Layout: avatar + autor | joinha + balão + tempo (mesma linha)
   ================================================================ */

.gn-home-card__footer {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 0.5rem;
	justify-content: space-between;
	margin: 0.5rem 0 0;
	min-width: 0;
	width: 100%;
}

.gn-home-card__meta {
	align-items: center;
	color: var(--gn-muted);
	display: flex;
	flex: 1 1 auto;
	flex-wrap: nowrap;
	font-size: 0.8125rem;
	gap: 0.4rem;
	line-height: 1.3;
	margin: 0;
	min-width: 0;
}

.gn-home-card__author-icon {
	border-radius: 50%;
	flex-shrink: 0;
	height: 22px;
	object-fit: cover;
	width: 22px;
}

.gn-home-card__author-name {
	color: var(--gn-muted);
	flex: 0 1 auto;
	font-weight: 600;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gn-home-card__meta-sep {
	color: var(--gn-muted);
	flex-shrink: 0;
}

.gn-home-card__actions {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	gap: 0.35rem;
}

.gn-home-card__time {
	color: var(--gn-muted);
	flex-shrink: 0;
	font-size: 0.8125rem;
	line-height: 1.3;
	white-space: nowrap;
}

.gn-home-card__engage {
	align-items: center;
	display: flex;
	gap: 0.35rem;
	margin-top: 0;
}

.gn-home-card__engage-btn {
	align-items: center;
	background: transparent;
	border: none;
	border-radius: 999px;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	font-size: 1rem;
	justify-content: center;
	line-height: 1;
	min-height: 2rem;
	min-width: 2rem;
	padding: 0.35rem 0.5rem;
	text-decoration: none;
	transition: color 0.15s ease, background-color 0.15s ease;
}

.gn-home-card__engage-btn--like[disabled] {
	cursor: not-allowed;
	opacity: 0.55;
}

.gn-home-card__engage-btn--like:not([disabled]):hover,
.gn-home-card__engage-btn--like:not([disabled]):focus-visible {
	background: var(--gn-bg);
	color: var(--gn-text);
	outline: none;
}

.gn-home-card__engage-btn--like.is-liked {
	color: #1ca458;
}

.gn-home-card__like-count {
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1;
	min-width: 0.75rem;
}

.gn-home-card__engage--compact .gn-home-card__like-count {
	font-size: 0.6875rem;
}

.gn-reacao-feedback {
	background: #1a1a1a;
	border-radius: 6px;
	bottom: 1.25rem;
	color: #fff;
	font-size: 0.875rem;
	left: 50%;
	opacity: 0;
	padding: 0.65rem 1rem;
	pointer-events: none;
	position: fixed;
	transform: translateX(-50%) translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 1200;
}

.gn-reacao-feedback.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.gn-home-card__engage-btn--message:hover,
.gn-home-card__engage-btn--message:focus-visible {
	background: var(--gn-bg);
	color: var(--gn-text);
	outline: none;
}

.gn-home-card__engage--compact {
	gap: 0.25rem;
	margin-top: 0;
}

.gn-home-card__engage--compact .gn-home-card__engage-btn {
	font-size: 0.875rem;
	min-height: 1.75rem;
	min-width: 1.75rem;
	padding: 0.2rem 0.35rem;
}

@media screen and (min-width: 320px) {
	.gn-home-card__meta {
		max-width: 100%;
	}

	.gn-home-card__engage {
		flex-wrap: nowrap;
	}
}

.popular-posts .content-right .gn-home-card__footer {
	gap: 0.35rem;
	margin-top: 0.3rem;
}

.popular-posts .content-right .gn-home-card__meta {
	font-size: 0.75rem;
	margin: 0;
}

.popular-posts .content-right .gn-home-card__author-icon {
	height: 18px;
	width: 18px;
}

.popular-posts .content-right .gn-home-card__time {
	font-size: 0.75rem;
}

/* ================================================================
   HOME — placeholder SVG visível (Fase A3)
   ================================================================ */

.featured-posts .thumb img[src$="placeholder.svg"],
.highlights-posts .thumb img[src$="placeholder.svg"],
.editors-posts .thumb img[src$="placeholder.svg"],
.trending-posts .thumb img[src$="placeholder.svg"],
.popular-posts .thumb img[src$="placeholder.svg"],
.relate-posts .thumb img[src$="placeholder.svg"],
.social-media-posts .thumb img[src$="placeholder.svg"],
.widget-recent .thumb img[src$="placeholder.svg"],
.thumb img[src$="placeholder.svg"] {
	background: var(--gn-bg);
	object-fit: contain;
	object-position: center;
	padding: 12%;
}

/* Home — carrossel "Em alta" (trending_column) */
.trending-posts.gn-trending-carousel {
	overflow: visible;
	padding-bottom: 2rem;
}

.trending-posts.gn-trending-carousel .post {
	border-bottom: none;
	padding: 0;
}

.trending-posts.gn-trending-carousel .gn-line {
	display: none;
}

.trending-posts.gn-trending-carousel .trending-header {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.trending-posts.gn-trending-carousel .trending-header .section-title {
	flex: 1 1 auto;
	margin-bottom: 0;
	min-width: 0;
}

.trending-posts.gn-trending-carousel .trending-header .section-title h4 {
	margin: 0;
}

.trending-posts.gn-trending-carousel .trending-header .section-title h4 a {
	align-items: center;
	color: var(--gn-text);
	display: inline-flex;
	font-family: var(--gn-font-display);
	font-size: var(--gn-type-h2);
	font-weight: 700;
	gap: 10px;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-decoration: none;
}

.trending-posts.gn-trending-carousel .trend-icon {
	font-size: 1.35rem;
	line-height: 1;
}

.trending-posts.gn-trending-carousel .trending-nav-group {
	display: flex;
	flex-shrink: 0;
	gap: 10px;
}

.gn-trending-carousel__wrap {
	position: relative;
}

.gn-trending-carousel__viewport {
	min-width: 0;
	overflow: hidden;
	padding: 4px;
	margin: -4px;
}

.gn-trending-carousel__track {
	display: flex;
	gap: 16px;
	transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	will-change: transform;
}

.gn-trending-carousel__slide {
	box-sizing: border-box;
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	height: auto;
	margin-bottom: 0;
	padding: 0;
}

.gn-trending-carousel__slide .gn-trending-carousel__media,
.gn-trending-carousel__slide .thumb {
	aspect-ratio: 297 / 210;
	flex: 0 0 auto;
	height: auto;
	margin-bottom: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.gn-trending-carousel__slide .gn-trending-carousel__media a,
.gn-trending-carousel__slide .thumb a {
	display: block;
	height: 100%;
	width: 100%;
}

.gn-trending-carousel__slide .gn-trending-carousel__media img,
.gn-trending-carousel__slide .thumb img {
	display: block;
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: center top;
	position: absolute;
	top: 0;
	transition: transform 0.5s ease;
	width: 100%;
}

.gn-trending-carousel__slide:hover .gn-trending-carousel__media img,
.gn-trending-carousel__slide:hover .thumb img {
	transform: scale(1.06);
}

.gn-trending-carousel__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	padding: 1.25rem;
}

.gn-trending-carousel__category-tag {
	color: var(--gn-accent-text);
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.gn-trending-carousel__date {
	color: var(--gn-muted);
	font-size: 0.75rem;
	line-height: 1;
}

/* Sobrescreve style.css (.trending-posts .post h3) — evita título fino e sobreposição com resumo */
.trending-posts.gn-trending-carousel .gn-trending-carousel__slide.post h3.gn-trending-carousel__title {
	display: block;
	font-family: var(--gn-font-display);
	font-size: var(--gn-type-h2) !important;
	font-weight: 700 !important;
	height: auto;
	line-height: 1.4 !important;
	margin: 0 0 10px !important;
	max-height: none;
	overflow: visible;
}

.trending-posts.gn-trending-carousel .gn-trending-carousel__slide.post h3.gn-trending-carousel__title a {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--gn-text);
	display: -webkit-box;
	font-family: inherit;
	font-size: inherit !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
	overflow: hidden;
	text-decoration: none;
	transition: color 0.2s ease;
}

.gn-trending-carousel__title {
	margin: 0 0 10px;
}

.gn-trending-carousel__title a:hover {
	color: var(--gn-accent-text);
}

.trending-posts.gn-trending-carousel .gn-trending-carousel__slide .excerpt-entry.gn-trending-carousel__excerpt {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: var(--gn-muted);
	display: -webkit-box;
	flex: 0 0 auto;
	font-family: var(--gn-font-ui);
	font-size: var(--gn-type-excerpt) !important;
	font-weight: 300 !important;
	height: auto;
	line-height: 1.5 !important;
	margin: 0 !important;
	overflow: hidden;
}

.gn-trending-carousel__meta {
	align-items: center;
	border-top: 1px solid var(--gn-bg);
	color: var(--gn-muted);
	display: flex;
	font-size: 0.75rem;
	justify-content: space-between;
	line-height: 1;
	margin-top: auto;
	padding-top: 12px;
}

.gn-trending-carousel__body > .gn-home-card__footer {
	border-top: 1px solid var(--gn-bg);
	margin-top: auto;
	padding-top: 12px;
}

.gn-trending-carousel__body .gn-home-card__meta,
.gn-trending-carousel__body .gn-home-card__time,
.gn-trending-carousel__body .gn-home-card__author-name {
	font-size: 0.75rem;
}

.gn-trending-carousel__author {
	color: var(--gn-muted);
	font-weight: 600;
}

.gn-trending-carousel__nav {
	align-items: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	color: var(--gn-text);
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	font-family: inherit;
	font-size: 1.5rem;
	height: 44px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
	width: 44px;
	z-index: 20;
}

.gn-trending-carousel__nav-label {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.gn-trending-carousel__nav:hover:not(:disabled),
.gn-trending-carousel__nav:focus-visible:not(:disabled) {
	background: var(--gn-text);
	border-color: var(--gn-text);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
	color: var(--gn-inverse);
	outline: none;
}

.gn-trending-carousel__nav:disabled {
	border-color: var(--gn-border);
	box-shadow: none;
	color: var(--gn-muted);
	cursor: not-allowed;
	opacity: 0.4;
}

.gn-trending-carousel--single .trending-nav-group {
	display: none;
}

@media only screen and (max-width: 1199px) {
	.gn-trending-carousel__slide {
		height: auto;
	}
}

@media only screen and (max-width: 991px) {
	.gn-trending-carousel__slide {
		height: auto;
	}

	.gn-trending-carousel__title {
		font-size: var(--gn-type-h3) !important;
	}
}

@media only screen and (max-width: 767px) {
	.trending-posts.gn-trending-carousel .trending-header .section-title h4 a {
		font-size: var(--gn-type-h2);
	}

	.gn-trending-carousel__slide {
		height: auto;
	}

	.gn-trending-carousel__nav {
		height: 40px;
		width: 40px;
	}
}

/* ================================================================
   COLUNA PÚBLICA — colada no topo e no rodapé
   Home, /noticias, /videos, /giro360. Fundo da página = --gn-page-bg.
   ================================================================ */

/* Cola na faixa de anúncio e no rodapé (zera a margem legado; padding = --gn-gap-ad no #main). */
#main.gn-home-page,
#main.gn-noticias-page,
#main.gn-videos-page,
#main.gn-giro360-page,
.gn-giro360-page {
	margin: 0;
}

/* Coluna de conteúdo na mesma cor da página (sem laterais cinza). */
#main.gn-home-page > .container.gn-page-surface,
#main.gn-noticias-page .container.gn-page-surface,
#main.gn-videos-page > .container.gn-page-surface,
#main.gn-giro360-page > .container.gn-giro360-listings {
	background: var(--gn-page-bg);
	border-radius: 0;
	display: flow-root;
	margin-bottom: 0;
	margin-top: 0;
}

/* O respiro até o rodapé fica no padding-bottom do #main (--gn-gap-ad). */
#main.gn-giro360-page > .container.gn-giro360-listings,
#main.gn-videos-page > .container.gn-page-surface,
#main.gn-noticias-page .container.gn-noticias-segment,
#main.gn-noticias-page > .container.gn-page-surface:not(.gn-noticias-toolbar) {
	padding-bottom: 0;
}

/* ================================================================
   HOME — respiro nas faixas e sombra nos cards
   ================================================================ */

/* Gap faixa ↔ conteúdo ↔ rodapé: --gn-gap-ad no #main.
   Não alterar .gn-home-faixa (margem/borda da publicidade). */

/* overflow:hidden das seções clipava a sombra; o :after já faz o clearfix. */
#main.gn-home-page .featured-posts,
#main.gn-home-page .highlights-posts,
#main.gn-home-page .editors-posts,
#main.gn-home-page .popular-posts,
#main.gn-home-page .social-media-posts {
	overflow: visible;
}

/* Sombra + gap só entre vizinhos; imagem justa ao container (sem padding interno). */
#main.gn-home-page .featured-posts .post,
#main.gn-home-page .highlights-posts .post,
#main.gn-home-page .editors-posts .post,
#main.gn-home-page .popular-posts .post,
#main.gn-home-page .social-media-posts .post {
	padding: 0;
}

#main.gn-home-page .featured-posts .post .thumb img,
#main.gn-home-page .highlights-posts .post .thumb img,
#main.gn-home-page .editors-posts .post .thumb img,
#main.gn-home-page .popular-posts .post .thumb img,
#main.gn-home-page .social-media-posts .post .thumb img {
	border-radius: var(--gn-img-radius);
}

#main.gn-home-page .featured-posts .post > *:not(.thumb),
#main.gn-home-page .highlights-posts .post > *:not(.thumb),
#main.gn-home-page .popular-posts .content-left .post > *:not(.thumb) {
	padding-left: 0.85rem;
	padding-right: 0.85rem;
}

#main.gn-home-page .featured-posts .post > .gn-home-card__footer,
#main.gn-home-page .highlights-posts .post > .gn-home-card__footer,
#main.gn-home-page .popular-posts .content-left .post > .gn-home-card__footer {
	padding-bottom: 0.75rem;
}

#main.gn-home-page .editors-posts .post .content,
#main.gn-home-page .social-media-posts .post .content,
#main.gn-home-page .popular-posts .content-right .post .content {
	padding: 0.75rem 0.85rem 0.75rem 0;
}

#main.gn-home-page .editors-posts .post,
#main.gn-home-page .popular-posts .content-right .post {
	border-top: none;
}

/* Destaques / redação / mais lidas / em alta: a faixa degradê substitui o gn-line. */
#main.gn-home-page .highlights-posts > .gn-line,
#main.gn-home-page .editors-posts > .gn-line,
#main.gn-home-page .popular-posts > .gn-line,
#main.gn-home-page .trending-posts > .gn-line {
	display: none;
}

/* Em alta: mesma faixa dos outros H2 de seção. */

/* ================================================================
   GIRO 360 — galeria de eventos (/giro360)
   ================================================================ */

/* G.1 — cabeçalho no padrão da seção Produtos (/negocios): faixa 4px + H2 */
.gn-giro360-page__section-title {
	margin-bottom: 1.25rem;
}

.gn-giro360-page__section-title h1 a .gn-giro360-page__lede-sep,
.gn-giro360-page__section-title h1 a .gn-giro360-page__lede {
	color: var(--gn-muted);
	font-weight: 500 !important;
	letter-spacing: 0;
}

.gn-giro360-page__section-title h1 a .gn-giro360-page__lede-sep {
	font-weight: 400 !important;
	opacity: 0.55;
	padding: 0 0.3em;
}

.gn-giro360-page__section-title h1 a .gn-giro360-page__lede {
	font-size: 0.86em;
	font-weight: 500 !important;
}

/* G.3 / DG3 — G3a full-width: uma coluna; sem aside (G3b adiado) */
.gn-giro360-layout--full > .gn-giro360-layout__main {
	float: none;
	width: 100%;
}

.gn-giro360-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

/* G.2 — tile de galeria: A4 + engage home; chrome no bloco CARD PADRÃO */
.gn-giro360-card {
	box-sizing: border-box;
	display: flex;
	flex: 0 0 calc(25% - 1.125rem);
	flex-direction: column;
	max-width: calc(25% - 1.125rem);
}

.gn-giro360-card__media {
	aspect-ratio: 297 / 210;
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.gn-giro360-card__media img {
	display: block;
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	transition: transform 0.2s ease;
	width: 100%;
}

.gn-giro360-card__media:hover img,
.gn-giro360-card__media:focus-visible img {
	transform: scale(1.03);
}

.gn-giro360-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.35rem;
	padding: 0.75rem 0.85rem 0.85rem;
}

.gn-giro360-card__title {
	font-size: inherit;
	font-weight: 600;
	line-height: 1.3;
	margin: 0;
}

.gn-giro360-card__title a {
	color: var(--gn-text);
	font-family: var(--gn-font-display);
	font-size: var(--gn-type-h2);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
	text-decoration: none;
}

.gn-giro360-card__title a:hover,
.gn-giro360-card__title a:focus-visible {
	color: var(--gn-primary);
}

.gn-giro360-card .gn-home-card__footer {
	margin-top: 0.35rem;
}

@media (max-width: 991px) {
	.gn-giro360-card {
		flex: 0 0 calc(33.333% - 1rem);
		max-width: calc(33.333% - 1rem);
	}
}

@media (max-width: 767px) {
	.gn-giro360-card {
		flex: 0 0 calc(50% - 0.75rem);
		max-width: calc(50% - 0.75rem);
	}
}

@media (max-width: 479px) {
	.gn-giro360-card {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gn-giro360-card__media img {
		transition: none;
	}
}

/* G.5 — estados do feed fracionado */
.gn-giro360-feed-sentinel {
	height: 1px;
	margin: 0;
	padding: 0;
	pointer-events: none;
	visibility: hidden;
	width: 100%;
}

.gn-giro360-feed-status {
	color: var(--gn-muted);
	font-size: 0.9rem;
	margin: 1rem 0 0;
	text-align: center;
}

.gn-giro360-feed-status--error {
	color: var(--gn-danger);
}

.gn-giro360-feed-retry {
	background: transparent;
	border: 1px solid var(--gn-border);
	border-radius: 4px;
	color: var(--gn-primary);
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 600;
	margin-left: 0.35rem;
	padding: 0.25rem 0.65rem;
}

.gn-giro360-feed-retry:hover,
.gn-giro360-feed-retry:focus-visible {
	border-color: var(--gn-primary);
}

.gn-giro360-feed-end {
	color: var(--gn-muted);
	font-size: 0.9rem;
	margin: 1.25rem 0 0;
	text-align: center;
}

/* ================================================================
   NEGÓCIOS — classificados (/negocios)
   ================================================================ */

/* Cola na faixa de anúncio e no rodapé (zera a margem legado). */
#main.gn-negocios-page,
.gn-negocios-page {
	margin: 0;
}

/* Coluna na mesma cor da página (sem laterais cinza).
   flow-root contém a margem da busca para colar na faixa.
   Hub/listagem: #main fica dentro do container (depois das verticais);
   o gap da faixa usa o token aqui, e o #main interno não soma outro 20px. */
.container.gn-negocios-listings {
	background: var(--gn-page-bg);
	border-radius: 0;
	display: flow-root;
	margin-bottom: 0;
	margin-top: 0;
	padding: var(--gn-gap-ad) 1.6rem;
}

.container.gn-negocios-listings > #main {
	padding-bottom: 0;
	padding-top: 0;
}

.container.gn-negocios-listings > #main > .row {
	margin-left: 0;
	margin-right: 0;
}

.container.gn-negocios-listings > #main > .row > [class*="col-"] {
	padding-left: 0;
	padding-right: 0;
}

/* Faixa 4x1 no hub: mesma métrica do menu expansivo (.btn-menu em max-width: 767px). */
.gn-negocios-verticals {
	display: none;
}

@media only screen and (max-width: 767px) {
	.gn-negocios-verticals {
		box-sizing: border-box;
		display: grid;
		gap: 0.45rem;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		margin: 0;
		padding: 0.75rem 0 0;
		width: 100%;
	}

	.gn-negocios-verticals__item {
		align-items: center;
		background: var(--gn-primary);
		border: 2px solid var(--gn-primary);
		border-radius: 10px;
		box-sizing: border-box;
		color: var(--gn-inverse);
		display: flex;
		flex-direction: column;
		font-size: 0.68rem;
		font-weight: 700;
		gap: 0.4rem;
		justify-content: center;
		letter-spacing: 0.01em;
		line-height: 1.15;
		min-height: 5.35rem;
		padding: 0.7rem 0.2rem 0.55rem;
		text-align: center;
		text-decoration: none;
	}

	.gn-negocios-verticals__item i {
		color: var(--gn-inverse);
		font-size: 1.85rem;
		line-height: 1;
	}

	.gn-negocios-verticals__item span {
		display: block;
		max-width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.gn-negocios-verticals__item:hover,
	.gn-negocios-verticals__item:focus-visible,
	.gn-negocios-verticals__item.is-current {
		background: var(--gn-inverse);
		color: var(--gn-primary);
		text-decoration: none;
	}

	.gn-negocios-verticals__item:hover i,
	.gn-negocios-verticals__item:focus-visible i,
	.gn-negocios-verticals__item.is-current i {
		color: var(--gn-primary);
	}

	.gn-negocios-verticals__item:focus-visible {
		outline: 2px solid var(--gn-focus-ring);
		outline-offset: 2px;
	}
}

#main.gn-negocios-detail {
	padding-top: 1.75rem;
}

.gn-negocios-detail .gn-breadcrumb {
	margin-top: 0.25rem;
}

.gn-negocios-page__header {
	margin-bottom: 2rem;
}

/* B.1 — cabeçalho no padrão .section-title (home / notícias / giro) */
.gn-negocios-page__section-title {
	margin-bottom: 0.75rem;
}

.gn-geo-selector {
	margin-top: 1rem;
	max-width: 28rem;
}

.gn-geo-selector__label {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--gn-muted);
	margin-bottom: 0.35rem;
}

.gn-geo-selector__select {
	width: 100%;
	max-width: 22rem;
	padding: 0.45rem 0.65rem;
	border: 1px solid var(--gn-border);
	border-radius: 4px;
	background: var(--gn-surface);
	font-size: 0.95rem;
}

.gn-geo-selector__current {
	margin: 0.45rem 0 0;
	font-size: 0.9rem;
	color: var(--gn-muted);
}

.gn-geo-chip {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.75rem;
	margin: 0 0 0.85rem;
	font-size: 0.9rem;
	color: var(--gn-muted);
}

.gn-geo-chip strong {
	color: var(--gn-text, inherit);
	font-weight: 600;
}

.gn-geo-chip a {
	color: var(--gn-primary);
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.gn-negocios-page__breadcrumb {
	margin: 0 0 0.5rem;
	font-size: 0.9rem;
	color: var(--gn-muted);
}

.gn-negocios-page__breadcrumb a {
	color: inherit;
	text-decoration: underline;
}

.gn-negocios-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	align-items: flex-end;
	margin-bottom: 1.5rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--gn-border);
}

.gn-negocios-filters__row {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	min-width: 10rem;
}

.gn-negocios-filters__row label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--gn-muted);
}

.gn-negocios-filters__row input {
	padding: 0.4rem 0.55rem;
	border: 1px solid var(--gn-border);
	border-radius: 4px;
}

.gn-negocios-filters__submit {
	cursor: pointer;
}

.gn-classified-section__empty {
	margin: 0.75rem 0 1rem;
	color: var(--gn-muted);
	font-size: 0.95rem;
}

.gn-negocios-hub-empty {
	margin: 1.5rem 0 2rem;
	padding: 1.25rem 1.35rem;
	border: 1px solid var(--gn-border);
	background: var(--gn-bg);
}

.gn-negocios-hub-empty__title {
	margin: 0 0 0.45rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--gn-text);
}

.gn-negocios-hub-empty__text {
	margin: 0;
	color: var(--gn-muted);
	line-height: 1.5;
	max-width: 36rem;
}

.gn-conta-negocios__logo {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 0.75rem;
}

.gn-conta-negocios__preview {
	display: block;
	margin-top: 0.75rem;
	max-width: 240px;
	height: auto;
	border-radius: 6px;
}

.gn-conta-negocios__upload-hint {
	font-size: 0.875rem;
	opacity: 0.85;
	margin-top: 0.35rem;
}

/* Conta negócios — editar / dashboard (alinhamento design.md + proposta UI) */

.gn-admin-hero__lead {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.95rem;
	line-height: 1.45;
	margin: 0.45rem 0 0;
	max-width: 40rem;
}

.gn-admin-hero__lead strong {
	color: var(--gn-inverse);
	font-weight: 700;
}

.gn-admin-hero__logo {
	background: var(--gn-surface);
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-radius: 12px;
	flex-shrink: 0;
	height: 4.5rem;
	object-fit: cover;
	width: 4.5rem;
}

.gn-conta-negocios__form-card {
	margin-bottom: 2rem;
}

.gn-form-grid {
	display: grid;
	gap: 1.15rem 1.5rem;
	grid-template-columns: 1fr 1fr;
}

.gn-form-grid__full {
	grid-column: 1 / -1;
}

.gn-form-grid .gn-geo-cascata {
	display: grid;
	gap: 1.15rem 1.5rem;
	grid-template-columns: 1fr 1fr;
}

.gn-form-grid .gn-field-wrap {
	margin-bottom: 0;
}

.gn-form-grid .gn-field-wrap label {
	color: var(--gn-primary);
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
}

.gn-form-grid .gn-field-wrap input[type="text"],
.gn-form-grid .gn-field-wrap input[type="email"],
.gn-form-grid .gn-field-wrap input[type="tel"],
.gn-form-grid .gn-field-wrap input[type="number"],
.gn-form-grid .gn-field-wrap select,
.gn-form-grid .gn-field-wrap textarea {
	background: #fafbfc;
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	color: var(--gn-text);
	font-size: 0.95rem;
	padding: 0.75rem 0.9rem;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
	width: 100%;
}

.gn-form-grid .gn-field-wrap input:not([type="checkbox"]):focus,
.gn-form-grid .gn-field-wrap select:focus,
.gn-form-grid .gn-field-wrap textarea:focus {
	background: var(--gn-surface);
	border-color: var(--gn-focus-ring);
	box-shadow: 0 0 0 3px rgba(63, 124, 168, 0.18);
	outline: none;
}

.gn-field-phone-with-wa {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem 1.1rem;
}

.gn-field-phone-with-wa input[type="tel"] {
	flex: 1 1 12.5rem;
	min-width: 12rem;
}

.gn-field-wa-check {
	align-items: center;
	color: var(--gn-text);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 500;
	gap: 0.45rem;
	margin-bottom: 0;
	white-space: nowrap;
}

.gn-form-grid .gn-field-wrap .gn-field-wa-check {
	color: var(--gn-text);
	font-weight: 500;
}

.gn-field-wa-check input[type="checkbox"] {
	accent-color: var(--gn-primary);
	flex: 0 0 auto;
	height: 1.05rem;
	margin: 0;
	width: 1.05rem;
}

.gn-field-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1rem;
	justify-content: space-between;
	margin-top: 0.35rem;
}

.gn-field-hint {
	color: var(--gn-muted);
	font-size: 0.82rem;
}

.gn-upload-zone {
	background: #fafbfc;
	border: 2px dashed var(--gn-border);
	border-radius: 8px;
	cursor: pointer;
	padding: 1.75rem 1.25rem;
	position: relative;
	text-align: center;
	transition: border-color 0.18s ease, background 0.18s ease;
}

.gn-upload-zone:hover,
.gn-upload-zone.is-dragover {
	background: rgba(63, 124, 168, 0.04);
	border-color: var(--gn-focus-ring);
}

.gn-upload-zone .fa {
	color: var(--gn-focus-ring);
	display: block;
	font-size: 1.75rem;
	margin-bottom: 0.55rem;
}

.gn-upload-zone__title {
	color: var(--gn-primary);
	display: block;
	font-size: 0.98rem;
	font-weight: 600;
}

.gn-upload-zone__hint {
	color: var(--gn-muted);
	display: block;
	font-size: 0.82rem;
	margin-top: 0.35rem;
}

.gn-upload-zone__hint code {
	background: var(--gn-bg);
	border-radius: 4px;
	color: var(--gn-accent-text);
	font-size: 0.8em;
	padding: 0.1em 0.35em;
}

.gn-upload-zone input[type="file"] {
	cursor: pointer;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gn-upload-preview {
	align-items: center;
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	display: none;
	gap: 1rem;
	margin-top: 0.85rem;
	padding: 0.85rem 1rem;
}

.gn-upload-preview.is-active {
	display: flex;
}

.gn-upload-preview .gn-conta-negocios__preview {
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	flex-shrink: 0;
	height: 80px;
	margin: 0;
	max-width: none;
	object-fit: cover;
	width: 80px;
}

.gn-conta-negocios__submit-row {
	align-items: center;
	border-top: 1px solid var(--gn-border);
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1.25rem;
	margin-top: 1.75rem;
	padding-top: 1.25rem;
}

.gn-conta-negocios__submit-row .gn-btn .fa {
	margin-right: 0.35rem;
}

.gn-field-label-with-ok {
	align-items: center;
	display: inline-flex;
	gap: 0.4rem;
}

.gn-field-ok {
	color: var(--gn-success);
	font-size: 1rem;
}

.gn-field-ok-status--ok {
	color: var(--gn-success);
}

.gn-field-ok-status--taken {
	color: var(--gn-danger);
}

.gn-conta-negocios__form input.is-documento-ok {
	border-color: var(--gn-success);
}

.gn-conta-negocios__form input.is-documento-taken {
	border-color: var(--gn-danger);
}

.gn-conta-negocios__toolbar {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 0.85rem;
	margin: 0 0 1.5rem;
}

.gn-conta-anuncios__list--negocio {
	margin: 0;
}

.gn-status-pill {
	background: var(--gn-primary-soft);
	border-radius: 999px;
	color: var(--gn-primary);
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 0.15rem 0.55rem;
	text-transform: lowercase;
}

.gn-status-pill--publicado {
	background: rgba(28, 122, 79, 0.12);
	color: var(--gn-success);
}

.gn-status-pill--rascunho {
	background: var(--gn-warning-bg);
	color: var(--gn-warning-text);
}

.gn-status-pill--vendido,
.gn-status-pill--oculto {
	background: var(--gn-bg);
	color: var(--gn-muted);
}

@media (max-width: 720px) {
	.gn-form-grid,
	.gn-form-grid .gn-geo-cascata {
		grid-template-columns: 1fr;
	}
}

/* === CONTA / NEGÓCIOS — PAINEL EXPANSÍVEL (cms_negocios.md, Parte 2, CN1) === */

.gn-negocios-hub-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem 1rem;
	margin-bottom: 1.25rem;
}

.gn-negocios-hub-toolbar--end {
	justify-content: flex-end;
}

.gn-negocios-hub-toolbar .gn-negocios-page__breadcrumb {
	margin: 0;
}

.gn-negocios-hub-toolbar__link {
	color: var(--gn-auth-accent);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.gn-negocios-hub-toolbar__link:hover,
.gn-negocios-hub-toolbar__link:focus-visible {
	color: var(--gn-accent-text);
	outline: none;
	text-decoration: underline;
}

/* === CA0 — Botão voltar icon-only (cms_negocios.md, Parte 3) === */
.gn-back-btn {
	align-items: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 50%;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
	color: var(--gn-text);
	display: inline-flex;
	flex-shrink: 0;
	font-size: 1.15rem;
	height: 3rem;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
	width: 3rem;
}

.gn-back-btn:hover,
.gn-back-btn:focus-visible {
	background: var(--gn-bg);
	border-color: var(--gn-primary);
	color: var(--gn-primary);
	outline: none;
	text-decoration: none;
	transform: translateX(-2px);
}

.gn-back-btn:active {
	transform: translateX(0);
}

/* Variante sobre o hero escuro do painel */
.gn-back-btn--on-hero {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--gn-inverse);
	margin-bottom: 1.15rem;
}

.gn-back-btn--on-hero:hover,
.gn-back-btn--on-hero:focus-visible {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.65);
	color: var(--gn-inverse);
}

@media (max-width: 560px) {
	.gn-back-btn {
		height: 2.75rem;
		width: 2.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gn-back-btn {
		transition: none;
	}

	.gn-back-btn:hover,
	.gn-back-btn:focus-visible,
	.gn-back-btn:active {
		transform: none;
	}
}

.gn-negocios-hub-section {
	margin-bottom: 1.25rem;
	padding: 1.25rem 1.5rem;
}

.gn-negocios-hub-section__header {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: space-between;
}

.gn-negocios-hub-section__intro {
	min-width: 0;
}

.gn-negocios-hub-section__title {
	align-items: center;
	color: var(--gn-text);
	display: flex;
	font-size: 1.15rem;
	font-weight: 700;
	gap: 0.5rem;
	margin: 0 0 0.25rem;
}

.gn-negocios-hub-section__title-icon {
	color: var(--gn-auth-accent);
	font-size: 1rem;
}

.gn-negocios-hub-section__summary {
	color: var(--gn-muted);
	font-size: 0.85rem;
	line-height: 1.4;
	margin: 0;
}

.gn-negocios-hub-section__toggle {
	align-items: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	font-family: inherit;
	font-size: 0.8rem;
	font-weight: 600;
	gap: 0.4rem;
	line-height: 1;
	padding: 0.45rem 0.85rem;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.gn-negocios-hub-section__toggle:hover,
.gn-negocios-hub-section__toggle:focus-visible {
	background: var(--gn-bg);
	border-color: var(--gn-primary);
	color: var(--gn-text);
	outline: none;
}

.gn-negocios-hub-section__toggle .fa {
	font-size: 0.7rem;
	transition: transform 0.2s ease;
}

.gn-negocios-hub-section.is-expanded .gn-negocios-hub-section__toggle .fa {
	transform: rotate(180deg);
}

.gn-negocios-hub-section__panel {
	border-top: 1px solid var(--gn-border);
	margin-top: 1rem;
	padding-top: 1rem;
}

.gn-negocios-hub-section__panel[hidden] {
	display: none;
}

.gn-negocios-hub-section__panel-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 1rem;
}

.gn-negocios-hub-alavancagem__lead {
	color: var(--gn-muted);
	font-size: 0.9rem;
	line-height: 1.45;
	margin: 0 0 1rem;
}

.gn-negocios-hub-alavancagem__form .gn-placement-form__field {
	margin-bottom: 0.9rem;
}

.gn-negocios-hub-alavancagem__form .gn-btn {
	margin-top: 0.15rem;
}

@media (prefers-reduced-motion: reduce) {
	.gn-negocios-hub-section__toggle .fa {
		transition: none;
	}
}

/* Cards de listagem (negócios) — chrome alinhado a Meus anúncios / painel */
.gn-conta-negocios__report {
	margin-bottom: 1rem;
}

.gn-conta-negocios__list {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-conta-negocios__item {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	padding: 1rem 1.1rem;
}

.gn-conta-negocios__item-head {
	margin: 0 0 0.85rem;
}

.gn-conta-negocios__item-title {
	color: var(--gn-text);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 0.3rem;
}

.gn-conta-negocios__item-meta {
	color: var(--gn-muted);
	font-size: 0.82rem;
	margin: 0;
}

.gn-conta-negocios__metrics {
	display: grid;
	gap: 0.6rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 0 1rem;
}

.gn-conta-negocios__metrics--report {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	max-width: 22rem;
}

.gn-conta-negocios__metrics--card {
	margin-bottom: 0.85rem;
}

.gn-conta-negocios__metric {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	padding: 0.55rem 0.65rem;
}

.gn-conta-negocios__metric dt {
	color: var(--gn-muted);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.3;
	margin: 0 0 0.25rem;
	text-transform: uppercase;
}

.gn-conta-negocios__metric dd {
	color: var(--gn-text);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.gn-conta-negocios__metric--nivel dd {
	font-size: 1rem;
}

.gn-conta-negocios__nivel {
	align-items: center;
	display: inline-flex;
	gap: 0.4rem;
}

.gn-conta-negocios__nivel-icon {
	font-size: 1.35rem;
	line-height: 1;
}

.gn-conta-negocios__nivel--iniciante .gn-conta-negocios__nivel-icon,
.gn-conta-negocios__nivel--free .gn-conta-negocios__nivel-icon,
.gn-conta-negocios__nivel--indefinido .gn-conta-negocios__nivel-icon {
	color: var(--gn-muted);
	filter: drop-shadow(0 1px 0 rgba(71, 85, 105, 0.22));
}

.gn-conta-negocios__nivel--ouro .gn-conta-negocios__nivel-icon {
	color: #c8961a;
	filter: drop-shadow(0 1px 0 rgba(120, 80, 0, 0.25));
}

.gn-conta-negocios__nivel--prata .gn-conta-negocios__nivel-icon {
	color: #8a93a3;
	filter: drop-shadow(0 1px 0 rgba(60, 70, 90, 0.22));
}

.gn-conta-negocios__nivel--bronze .gn-conta-negocios__nivel-icon {
	color: #b87333;
	filter: drop-shadow(0 1px 0 rgba(90, 50, 10, 0.28));
}

.gn-conta-negocios__row-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

/* Mesma fila de acções por loja (hooks --abrir / --loja). Visual no gn-btn. */

.gn-conta-negocios__row-actions .gn-conta-anuncios__action--abrir {
	background: var(--gn-primary);
	border-color: var(--gn-primary);
	color: var(--gn-inverse, #fff);
}

.gn-conta-negocios__row-actions .gn-conta-anuncios__action--abrir:hover,
.gn-conta-negocios__row-actions .gn-conta-anuncios__action--abrir:focus-visible {
	background: var(--gn-primary-dark);
	border-color: var(--gn-primary-dark);
	color: var(--gn-inverse, #fff);
}

.gn-conta-negocios__row-actions .gn-conta-anuncios__action--loja {
	background: var(--gn-success);
	border-color: var(--gn-success);
	color: var(--gn-inverse, #fff);
}

.gn-conta-negocios__row-actions .gn-conta-anuncios__action--loja:hover,
.gn-conta-negocios__row-actions .gn-conta-anuncios__action--loja:focus-visible {
	background: #166640;
	border-color: #166640;
	color: var(--gn-inverse, #fff);
}

.gn-conta-negocios__item-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 0.65rem;
}

.gn-conta-negocios__item-links {
	margin: 0;
}

.gn-conta-negocios__item-links a {
	color: var(--gn-auth-accent);
	font-size: 0.85rem;
	font-weight: 600;
	margin-right: 0.85rem;
	text-decoration: none;
}

.gn-conta-negocios__item-links a:hover,
.gn-conta-negocios__item-links a:focus-visible {
	outline: none;
	text-decoration: underline;
}

@media (max-width: 560px) {
	.gn-conta-negocios__metrics,
	.gn-conta-negocios__metrics--card {
		grid-template-columns: 1fr;
	}

	.gn-conta-negocios__metrics--report {
		grid-template-columns: 1fr 1fr;
		max-width: none;
	}
}

/* Relatório "Meus anúncios" (cms_negocios.md, Parte 2, CN4) */
.gn-conta-anuncios__report {
	margin-bottom: 1rem;
}

.gn-conta-anuncios__metrics {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-bottom: 1.1rem;
}

.gn-conta-anuncios__metric--nivel dd {
	font-size: 1rem;
}

.gn-conta-anuncios__create-label {
	color: var(--gn-text);
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0 0 0.55rem;
}

/* CA1 — CTAs únicos em "Meus anúncios" (cms_negocios.md Parte 3) */
.gn-conta-anuncios__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0 0 0.25rem;
}

.gn-conta-anuncios__cta {
	align-items: center;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.55rem;
	justify-content: center;
	line-height: 1.2;
	text-decoration: none;
}

.gn-conta-anuncios__cta .fa {
	font-size: 1.15rem;
}

.gn-conta-anuncios__cta--create {
	flex: 0 0 auto;
	gap: 0.4rem;
}

.gn-conta-anuncios__cta--create .fa {
	font-size: 0.95rem;
}

.gn-conta-anuncios__cta--chats {
	flex: 0 1 auto;
}

.gn-conta-anuncios__cta--hub {
	flex: 0 1 auto;
}

@media (max-width: 720px) {
	.gn-conta-anuncios__metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.gn-conta-anuncios__cta--chats,
	.gn-conta-anuncios__cta--hub {
		flex: 1 1 100%;
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gn-conta-anuncios__cta {
		transition: none;
	}

	.gn-conta-anuncios__cta:hover,
	.gn-conta-anuncios__cta:focus-visible {
		transform: none;
	}
}

/* Listagem cronológica compacta (cms_negocios.md, Parte 2, CN5) */
.gn-conta-anuncios__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

.gn-conta-anuncios__row {
	align-items: center;
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 10px;
	display: flex;
	gap: 0.85rem;
	padding: 0.7rem 0.85rem;
}

.gn-conta-anuncios__thumb {
	background: var(--gn-surface);
	border-radius: 8px;
	flex-shrink: 0;
	height: 64px;
	object-fit: cover;
	width: 64px;
}

.gn-conta-anuncios__body {
	flex: 1 1 auto;
	min-width: 0;
}

.gn-conta-anuncios__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--gn-text);
	display: -webkit-box;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 0.2rem;
	overflow: hidden;
}

.gn-conta-anuncios__resumo {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	color: var(--gn-muted);
	display: -webkit-box;
	font-size: 0.82rem;
	line-height: 1.35;
	margin: 0 0 0.25rem;
	overflow: hidden;
}

.gn-conta-anuncios__meta {
	color: var(--gn-muted);
	font-size: 0.78rem;
	margin: 0;
}

.gn-conta-anuncios__tempo {
	font-weight: 600;
}

.gn-conta-anuncios__ver-mais {
	align-self: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-muted);
	flex-shrink: 0;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.4rem 0.75rem;
	text-decoration: none;
	white-space: nowrap;
}

.gn-conta-anuncios__ver-mais:hover,
.gn-conta-anuncios__ver-mais:focus-visible {
	border-color: var(--gn-primary);
	color: var(--gn-text);
	outline: none;
	text-decoration: none;
}

.gn-conta-anuncios__empty {
	color: var(--gn-muted);
	font-size: 0.9rem;
	margin: 0 0 1rem;
}

/* CA3 — lista standalone /conta/negocios/anuncios */
.gn-conta-anuncios__actions--standalone {
	margin: 0 0 1.25rem;
}

.gn-conta-anuncios__row--standalone {
	align-items: center;
	column-gap: 0.85rem;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) auto;
	row-gap: 0.55rem;
}

.gn-conta-anuncios__row--standalone .gn-conta-anuncios__thumb {
	grid-column: 1;
	grid-row: 1;
}

.gn-conta-anuncios__row--standalone .gn-conta-anuncios__body {
	grid-column: 2;
	grid-row: 1;
	min-width: 0;
}

.gn-conta-anuncios__row--standalone .gn-conta-anuncios__title,
.gn-conta-anuncios__row--standalone .gn-conta-anuncios__resumo,
.gn-conta-anuncios__row--standalone .gn-conta-anuncios__meta {
	-webkit-box-orient: initial;
	-webkit-line-clamp: unset;
	display: block;
	margin: 0;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gn-conta-anuncios__row--standalone .gn-conta-anuncios__title {
	font-size: 0.88rem;
	line-height: 1.25;
	margin-bottom: 0.1rem;
}

.gn-conta-anuncios__row--standalone .gn-conta-anuncios__resumo {
	font-size: 0.75rem;
	line-height: 1.25;
	margin-bottom: 0.08rem;
}

.gn-conta-anuncios__row--standalone .gn-conta-anuncios__meta {
	font-size: 0.72rem;
	line-height: 1.25;
}

.gn-conta-anuncios__row--standalone .gn-conta-anuncios__row-actions {
	flex-wrap: wrap;
	grid-column: 3;
	grid-row: 1;
	justify-content: flex-end;
	margin-top: 0;
}

.gn-conta-anuncios__row-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 0.55rem;
}

/* Mobile: imagem 20% + descrição 80% na 1ª linha; botões na 2ª. */
@media (max-width: 991px) {
	.gn-conta-anuncios__row--standalone {
		align-items: start;
		grid-template-columns: 20% minmax(0, 1fr);
	}

	.gn-conta-anuncios__row--standalone .gn-conta-anuncios__thumb {
		aspect-ratio: 1;
		height: auto;
		width: 100%;
	}

	.gn-conta-anuncios__row--standalone .gn-conta-anuncios__row-actions {
		flex-wrap: wrap;
		grid-column: 1 / -1;
		grid-row: 2;
		justify-content: flex-start;
	}
}

.gn-conta-anuncios__action-form {
	display: inline;
	margin: 0;
}

.gn-conta-anuncios__action {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
}

.gn-conta-anuncios__action--btn {
	appearance: none;
}

.gn-conta-anuncios__action:hover,
.gn-conta-anuncios__action:focus-visible {
	border-color: var(--gn-primary);
	color: var(--gn-text);
	outline: none;
	text-decoration: none;
}

.gn-conta-anuncios__action--icon {
	flex-shrink: 0;
}

.gn-conta-anuncios__action--icon .fa {
	font-size: 1.15rem;
	line-height: 1;
}

.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--edit,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--edit:hover,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--edit:focus-visible {
	color: var(--gn-accent);
}

.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--metrics,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--metrics:hover,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--metrics:focus-visible {
	color: var(--gn-accent-solid);
}

.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--view,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--view:hover,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--view:focus-visible {
	color: var(--gn-success);
}

.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--sold,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--sold:hover,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--sold:focus-visible {
	color: var(--gn-warning-text);
}

.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--repost,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--repost:hover,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--repost:focus-visible {
	color: var(--gn-accent-text);
}

.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--hide,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--hide:hover,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--hide:focus-visible {
	color: var(--gn-danger);
}

.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--delete,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--delete:hover,
.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--delete:focus-visible {
	color: var(--gn-text);
}

.gn-conta-anuncios__vaga {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 0.65rem;
	margin: 0.55rem 0 0;
}

.gn-conta-anuncios__vaga-label {
	align-items: flex-start;
	color: var(--gn-text);
	cursor: pointer;
	display: flex;
	flex: 1 1 12rem;
	font-size: 0.82rem;
	font-weight: 600;
	gap: 0.4rem;
	line-height: 1.35;
	min-width: 0;
}

.gn-conta-anuncios__vaga-label input {
	flex: 0 0 auto;
	margin: 0.15rem 0 0;
}

body.gn-hub-vaga-open {
	overflow: hidden;
}

.gn-hub-vaga {
	inset: 0;
	position: fixed;
	z-index: 80;
}

.gn-hub-vaga.is-open {
	display: block;
}

.gn-hub-vaga[hidden] {
	display: none;
}

.gn-hub-vaga__backdrop {
	background: rgba(15, 23, 42, 0.45);
	inset: 0;
	position: absolute;
}

.gn-hub-vaga__dialog {
	background: var(--gn-surface);
	border-radius: 16px;
	box-shadow: var(--gn-modal-shadow);
	display: flex;
	flex-direction: column;
	inset: 6vh 1.1rem auto;
	margin: 0 auto;
	max-height: 88vh;
	max-width: 36rem;
	position: relative;
	width: calc(100% - 2.2rem);
}

.gn-hub-vaga__header {
	align-items: center;
	border-bottom: 1px solid var(--gn-border);
	display: flex;
	justify-content: space-between;
	padding: 1rem 1.15rem 0.85rem;
}

.gn-hub-vaga__title {
	font-size: 1.15rem;
	font-weight: 800;
	margin: 0;
}

.gn-hub-vaga__close {
	background: none;
	border: 0;
	color: var(--gn-muted);
	cursor: pointer;
	font-size: 1.6rem;
	line-height: 1;
	padding: 0 0.2rem;
}

.gn-hub-vaga__steps {
	display: flex;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0.75rem 1.15rem 0;
}

.gn-hub-vaga__step {
	align-items: center;
	color: var(--gn-muted);
	display: flex;
	font-size: 0.82rem;
	font-weight: 700;
	gap: 0.4rem;
}

.gn-hub-vaga__step-num {
	align-items: center;
	background: var(--gn-border);
	border-radius: 999px;
	display: inline-flex;
	height: 1.4rem;
	justify-content: center;
	width: 1.4rem;
}

.gn-hub-vaga__step[data-active="true"] {
	color: var(--gn-text);
}

.gn-hub-vaga__step[data-active="true"] .gn-hub-vaga__step-num {
	background: var(--gn-primary);
	color: var(--gn-inverse);
}

.gn-hub-vaga__body {
	min-height: 0;
	overflow: auto;
	padding: 0.85rem 1.15rem 1rem;
}

.gn-hub-vaga__panel[hidden] {
	display: none;
}

.gn-hub-vaga__lead {
	color: var(--gn-muted);
	font-size: 0.9rem;
	margin: 0 0 0.85rem;
}

.gn-hub-vaga__empty {
	color: var(--gn-muted);
	font-size: 0.9rem;
	margin: 0;
}

.gn-hub-vaga__list {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-hub-vaga__choice {
	align-items: flex-start;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	color: var(--gn-text);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0.7rem 0.85rem;
	text-align: left;
	width: 100%;
}

.gn-hub-vaga__choice--inline {
	align-items: baseline;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 0.4rem;
	min-width: 0;
}

.gn-hub-vaga__choice:hover,
.gn-hub-vaga__choice:focus-visible {
	border-color: var(--gn-primary);
	outline: none;
}

.gn-hub-vaga__choice.is-selected {
	border-color: var(--gn-primary);
	box-shadow: 0 0 0 1px var(--gn-primary);
}

.gn-hub-vaga__choice-row {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	width: 100%;
}

.gn-hub-vaga__choice-title {
	font-weight: 700;
	min-width: 0;
}

.gn-hub-vaga__choice--inline .gn-hub-vaga__choice-title {
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gn-hub-vaga__choice-sep {
	color: var(--gn-muted);
	flex: 0 0 auto;
}

.gn-hub-vaga__choice-meta {
	color: var(--gn-muted);
	flex: 0 0 auto;
	font-size: 0.8rem;
	white-space: nowrap;
}

.gn-hub-vaga__choice-meta--inline {
	align-items: baseline;
	display: flex;
	flex-wrap: nowrap;
	gap: 0.4rem;
	min-width: 0;
	overflow: hidden;
	width: 100%;
}

.gn-hub-vaga__choice-meta--inline > span:first-child {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gn-hub-vaga__choice-status {
	color: var(--gn-muted);
	font-size: 0.85rem;
	font-weight: 700;
}

.gn-hub-vaga__footer {
	align-items: center;
	border-top: 1px solid var(--gn-border);
	display: flex;
	gap: 0.65rem;
	justify-content: flex-end;
	padding: 0.85rem 1.15rem 1rem;
}

.gn-hub-vaga__nav {
	cursor: pointer;
	font-weight: 700;
}

.gn-hub-vaga__nav:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.gn-hub-vaga__submit-form {
	margin: 0;
}

/* CA4 — form create/edit de anúncio */
.gn-negocios-hub-empty__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.1rem;
	margin: 1rem 0 0;
}

.gn-conta-anuncios__form {
	max-width: 52rem;
}

.gn-conta-anuncios__form-card {
	margin-bottom: 1.25rem;
}

.gn-conta-anuncios__form-card .gn-admin-card__header {
	margin-bottom: 1.15rem;
}

.gn-conta-anuncios__form-section {
	color: var(--gn-primary);
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0;
}

.gn-conta-anuncios__checks {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	justify-content: flex-end;
}

.gn-conta-anuncios__check {
	align-items: flex-start;
	display: flex;
	gap: 0.55rem;
	margin-bottom: 0.85rem;
}

.gn-conta-anuncios__check--card {
	background: #fafbfc;
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	cursor: pointer;
	margin-bottom: 0;
	padding: 0.85rem 1rem;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.gn-conta-anuncios__check--card:hover {
	background: var(--gn-primary-soft);
	border-color: #c9d4e3;
}

.gn-conta-anuncios__check--card input {
	accent-color: var(--gn-primary);
	flex-shrink: 0;
	margin-top: 0.2rem;
}

.gn-conta-anuncios__check--card strong {
	color: var(--gn-primary);
	display: block;
	font-size: 0.92rem;
	font-weight: 700;
}

.gn-conta-anuncios__check--card small {
	color: var(--gn-muted);
	display: block;
	font-size: 0.8rem;
	line-height: 1.35;
	margin-top: 0.15rem;
}

.gn-conta-anuncios__form .gn-field-hint {
	margin-top: 0.4rem;
}

.gn-conta-anuncios__foto-preview {
	max-width: 240px;
}

.gn-conta-anuncios__submit-row {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: var(--gn-card-radius);
	box-shadow: var(--gn-card-shadow);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin-top: 0.25rem;
	padding: 1.15rem 1.35rem;
}

.gn-conta-anuncios__submit-row .gn-btn .fa {
	margin-right: 0.35rem;
}

.gn-conta-anuncios__publish-now {
	margin-top: 1rem;
	max-width: 52rem;
}

.gn-conta-anuncios__publish-now .gn-btn .fa {
	margin-right: 0.35rem;
}

.gn-conta-anuncios__status-bar {
	align-items: flex-start;
	background: var(--gn-primary-soft);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1.25rem;
	justify-content: space-between;
	margin: 0 0 1.25rem;
	max-width: 52rem;
	padding: 1rem 1.15rem;
}

.gn-conta-anuncios__status-bar-text {
	color: var(--gn-text);
	font-size: 0.95rem;
	line-height: 1.45;
	margin: 0;
	max-width: 36rem;
}

.gn-conta-anuncios__status-bar-hint {
	color: var(--gn-muted);
	display: block;
	font-size: 0.875rem;
	margin-top: 0.35rem;
}

.gn-conta-anuncios__status-bar-actions {
	display: flex;
	flex-shrink: 0;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.gn-conta-anuncios__status-bar-actions .gn-btn .fa {
	margin-right: 0.35rem;
}

.gn-conta-anuncios__status-bar[data-anuncio-status="vendido"] {
	background: var(--gn-warning-bg);
	border-color: #f0d78a;
}

.gn-conta-anuncios__status-bar[data-anuncio-status="oculto"] {
	background: var(--gn-primary-soft);
}

@media (max-width: 560px) {
	.gn-conta-anuncios__row:not(.gn-conta-anuncios__row--standalone) {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.gn-conta-anuncios__ver-mais {
		margin-left: calc(64px + 0.85rem);
	}

	.gn-conta-anuncios__submit-row .gn-btn {
		flex: 1 1 100%;
	}
}

/* Modal estático "Criar Conta Negócio" (cms_negocios.md, Parte 2, CN3 / D8) */
.gn-negocio-account-modal {
	align-items: flex-start;
	bottom: 0;
	display: none;
	justify-content: center;
	left: 0;
	overflow-y: auto;
	padding: 1.5rem 0.75rem 2rem;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 11000;
}

.gn-negocio-account-modal.is-open {
	display: flex;
}

.gn-negocio-account-modal[hidden] {
	display: none !important;
}

.gn-negocio-account-modal__backdrop {
	background: rgba(15, 23, 42, 0.5);
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
}

.gn-negocio-account-modal__dialog {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	box-shadow: var(--gn-modal-shadow);
	margin: 0 auto;
	max-width: 32rem;
	padding: 1.35rem 1.5rem 1.5rem;
	position: relative;
	width: 100%;
	z-index: 1;
}

.gn-negocio-account-modal__header {
	align-items: flex-start;
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	margin-bottom: 0.65rem;
}

.gn-negocio-account-modal__title {
	color: var(--gn-text);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}

.gn-negocio-account-modal__close {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 6px;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	font-size: 1.5rem;
	height: 2rem;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 2rem;
}

.gn-negocio-account-modal__close:hover,
.gn-negocio-account-modal__close:focus-visible {
	background: var(--gn-bg);
	color: var(--gn-text);
	outline: none;
}

/* NN4 (docs/novo_negocios.md): badge deixa explícito que o modal é só pré-visualização. */
.gn-negocio-account-modal__badge {
	background: var(--gn-warning-bg);
	border-radius: 999px;
	color: var(--gn-warning-text);
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin: 0 0 0.75rem;
	padding: 0.25rem 0.75rem;
	text-transform: uppercase;
}

.gn-negocio-account-modal__lead {
	color: var(--gn-muted);
	font-size: 0.9rem;
	line-height: 1.45;
	margin: 0 0 1rem;
}

.gn-negocio-account-modal__fields .gn-field-wrap {
	margin-bottom: 0.85rem;
}

.gn-negocio-account-modal__fields .gn-field-wrap:last-child {
	margin-bottom: 0;
}

.gn-negocio-exclusao-motivos {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	margin: 0.15rem 0 1rem;
}

.gn-negocio-exclusao-motivos label {
	align-items: flex-start;
	color: var(--gn-text);
	cursor: pointer;
	display: flex;
	font-size: 0.95rem;
	font-weight: 500;
	gap: 0.55rem;
	line-height: 1.4;
	white-space: normal;
}

.gn-negocio-exclusao-motivos input[type="checkbox"] {
	accent-color: var(--gn-primary);
	flex: 0 0 auto;
	height: 1.05rem;
	margin: 0.15rem 0 0;
	width: 1.05rem;
}

.gn-negocio-account-modal [data-exclusao-step][hidden],
.gn-negocio-account-modal [data-exclusao-title][hidden],
.gn-negocio-account-modal [data-exclusao-lead][hidden],
.gn-negocio-account-modal [data-exclusao-motivo-error][hidden] {
	display: none !important;
}

.gn-negocio-account-modal__fields label {
	color: var(--gn-text);
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.gn-negocio-account-modal__fields input:not([type="checkbox"]):not([type="hidden"]),
.gn-negocio-account-modal__fields select,
.gn-negocio-account-modal__fields textarea {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	color: var(--gn-text);
	cursor: text;
	font: inherit;
	padding: 0.45rem 0.65rem;
	width: 100%;
}

.gn-negocio-account-modal__fields textarea:focus,
.gn-negocio-account-modal__fields input:not([type="checkbox"]):not([type="hidden"]):focus,
.gn-negocio-account-modal__fields select:focus {
	border-color: var(--gn-primary);
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-negocio-account-modal__fields input:disabled,
.gn-negocio-account-modal__fields select:disabled,
.gn-negocio-account-modal__fields textarea:disabled,
.gn-negocio-account-modal__fields input[readonly],
.gn-negocio-account-modal__fields select[readonly],
.gn-negocio-account-modal__fields textarea[readonly] {
	background: var(--gn-bg);
	color: var(--gn-muted);
	cursor: not-allowed;
}

.gn-negocio-account-modal__actions {
	border-top: 1px solid var(--gn-border);
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1.15rem;
	padding-top: 1rem;
}

.gn-negocio-account-modal__actions .gn-btn {
	margin-right: 0;
}

.gn-negocio-eligibility {
	color: var(--gn-text);
	font-size: 0.95rem;
	line-height: 1.55;
}

.gn-negocio-eligibility p {
	margin: 0 0 0.85rem;
}

.gn-negocio-eligibility p:last-child {
	margin-bottom: 0;
}

.gn-negocio-eligibility__prompt {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.5rem;
}

.gn-negocio-eligibility__account-btn {
	flex: 0 0 auto;
}

.gn-negocio-eligibility__link {
	color: var(--gn-primary);
	font-weight: 700;
	text-decoration: underline;
}

.gn-negocio-eligibility__link:hover,
.gn-negocio-eligibility__link:focus-visible {
	color: var(--gn-primary-dark);
}

.gn-anuncio-wizard.is-eligibility-blocked .gn-anuncio-wizard__steps,
.gn-anuncio-wizard.is-eligibility-blocked .gn-anuncio-wizard__footer {
	display: none;
}

body.gn-negocio-account-modal-open {
	overflow: hidden;
}

/* === CA2 — Wizard "Criar anúncio" (cms_negocios.md, Parte 3, D9–D10) === */
body.gn-anuncio-wizard-open {
	overflow: hidden;
}

.gn-anuncio-wizard {
	align-items: flex-start;
	bottom: 0;
	display: none;
	justify-content: center;
	left: 0;
	overflow-y: auto;
	padding: 1.25rem 0.75rem 2rem;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 11050;
}

.gn-anuncio-wizard.is-open {
	display: flex;
}

.gn-anuncio-wizard[hidden] {
	display: none !important;
}

.gn-anuncio-wizard__backdrop {
	background: rgba(17, 24, 39, 0.55);
	inset: 0;
	position: fixed;
}

.gn-anuncio-wizard__dialog {
	background: var(--gn-surface);
	border-radius: 12px;
	box-shadow: var(--gn-modal-shadow);
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 2.5rem);
	max-width: 640px;
	overflow: auto;
	position: relative;
	width: 100%;
	z-index: 1;
}

.gn-anuncio-wizard__header {
	align-items: center;
	border-bottom: 1px solid var(--gn-border);
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	padding: 1rem 1.25rem 0.85rem;
}

.gn-anuncio-wizard__title {
	color: var(--gn-text);
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0;
}

.gn-anuncio-wizard__close {
	background: transparent;
	border: none;
	border-radius: 6px;
	color: var(--gn-muted);
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	padding: 0.15rem 0.45rem;
}

.gn-anuncio-wizard__close:hover,
.gn-anuncio-wizard__close:focus-visible {
	background: var(--gn-bg);
	color: var(--gn-text);
	outline: none;
}

.gn-anuncio-wizard__steps {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0.85rem 1.25rem 0;
}

.gn-anuncio-wizard__step {
	align-items: center;
	color: var(--gn-muted);
	display: flex;
	flex: 1;
	flex-direction: column;
	font-size: 0.7rem;
	gap: 0.2rem;
	text-align: center;
}

.gn-anuncio-wizard__step-num {
	align-items: center;
	border: 2px solid var(--gn-border);
	border-radius: 50%;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 700;
	height: 1.7rem;
	justify-content: center;
	width: 1.7rem;
}

.gn-anuncio-wizard__step[data-active="true"] {
	color: var(--gn-text);
	font-weight: 700;
}

.gn-anuncio-wizard__step[data-active="true"] .gn-anuncio-wizard__step-num {
	border-color: var(--gn-primary);
	color: var(--gn-primary);
}

.gn-anuncio-wizard__step[hidden] {
	display: none !important;
}

.gn-anuncio-wizard__hint {
	color: var(--gn-muted);
	font-size: 0.85rem;
	line-height: 1.4;
	margin: 1rem 0 0;
}

.gn-anuncio-wizard__body {
	padding: 1rem 1.25rem 0.5rem;
}

.gn-anuncio-wizard__panel[hidden] {
	display: none !important;
}

.gn-anuncio-wizard__lead {
	color: var(--gn-muted);
	font-size: 0.92rem;
	margin: 0 0 1rem;
}

.gn-anuncio-wizard__verticals {
	display: grid;
	gap: 0.65rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* NN3 (docs/novo_negocios.md): subcategorias de Serviços (Viagens/Passeios/Eventos/Outros). */
.gn-anuncio-wizard__subverticals {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px dashed var(--gn-border);
}

.gn-anuncio-wizard__vertical {
	align-items: center;
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	color: var(--gn-text);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	font-size: 0.95rem;
	font-weight: 700;
	gap: 0.45rem;
	justify-content: center;
	min-height: 5.5rem;
	padding: 1rem 0.75rem;
	transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.gn-anuncio-wizard__vertical .fa {
	color: var(--gn-primary);
	font-size: 1.35rem;
}

.gn-anuncio-wizard__vertical:hover,
.gn-anuncio-wizard__vertical:focus,
.gn-anuncio-wizard__vertical:focus-visible,
.gn-anuncio-wizard__vertical:active,
.gn-anuncio-wizard__vertical.is-selected {
	background: var(--gn-primary);
	background-color: var(--gn-primary);
	border-color: var(--gn-primary);
	color: var(--gn-inverse, #fff);
	outline: none;
	transform: translateY(-1px);
}

.gn-anuncio-wizard__vertical:hover .fa,
.gn-anuncio-wizard__vertical:focus .fa,
.gn-anuncio-wizard__vertical:focus-visible .fa,
.gn-anuncio-wizard__vertical:active .fa,
.gn-anuncio-wizard__vertical.is-selected .fa {
	color: var(--gn-inverse, #fff);
}

.gn-anuncio-wizard__form {
	display: grid;
	gap: 0.85rem 1rem;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.gn-anuncio-wizard__span-2 {
	grid-column: 1 / -1;
	min-width: 0;
}

.gn-anuncio-wizard__form .gn-geo-cascata {
	display: grid;
	gap: 0.85rem 1rem;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.gn-anuncio-wizard__form .gn-field-wrap,
.gn-anuncio-wizard__form > div {
	margin: 0;
	min-width: 0;
}

.gn-anuncio-wizard__form label {
	color: var(--gn-muted);
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.gn-anuncio-wizard__descricao-meta {
	font-weight: 500;
}

.gn-anuncio-wizard__form input:not([type="checkbox"]):not([type="hidden"]):not([type="file"]),
.gn-anuncio-wizard__form select,
.gn-anuncio-wizard__form textarea {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	box-sizing: border-box;
	color: var(--gn-text);
	font-size: 0.9rem;
	padding: 0.55rem 0.65rem;
	width: 100%;
}

.gn-anuncio-wizard__form select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--gn-muted) 50%),
		linear-gradient(135deg, var(--gn-muted) 50%, transparent 50%);
	background-position: calc(100% - 14px) calc(50% - 2px), calc(100% - 9px) calc(50% - 2px);
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	cursor: pointer;
	min-height: 2.5rem;
	padding-right: 1.75rem;
}

.gn-anuncio-wizard__form input:not([type="checkbox"]):focus,
.gn-anuncio-wizard__form select:focus,
.gn-anuncio-wizard__form textarea:focus {
	border-color: var(--gn-primary);
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 0;
}

.gn-anuncio-wizard__typed {
	border: 1px solid var(--gn-border);
	border-radius: 10px;
	grid-column: 1 / -1;
	margin: 0.15rem 0 0;
	min-width: 0;
	padding: 0.75rem 0.9rem 0.9rem;
}

.gn-anuncio-wizard__typed legend {
	color: var(--gn-text);
	font-size: 0.9rem;
	font-weight: 700;
	padding: 0 0.35rem;
}

.gn-anuncio-wizard__typed-grid {
	display: grid;
	gap: 0.85rem 1rem;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.gn-anuncio-wizard__check {
	align-items: flex-start;
	color: var(--gn-text);
	display: flex;
	font-size: 0.88rem;
	font-weight: 500;
	gap: 0.45rem;
	margin: 0;
}

.gn-anuncio-wizard__form .gn-anuncio-wizard__check {
	color: var(--gn-text);
	display: flex;
	margin-bottom: 0;
}

.gn-anuncio-wizard__check input[type="checkbox"] {
	flex: 0 0 auto;
	margin-top: 0.15rem;
	width: auto;
}

.gn-anuncio-wizard__pricing {
	display: grid;
	gap: 0.85rem 1rem;
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	max-height: 28rem;
	min-width: 0;
	opacity: 1;
	overflow: hidden;
	transition: max-height 0.28s ease, opacity 0.2s ease, margin 0.2s ease, visibility 0s;
	visibility: visible;
}

.gn-anuncio-wizard__pricing.is-collapsed {
	margin: 0;
	max-height: 0;
	opacity: 0;
	pointer-events: none;
	transition: max-height 0.28s ease, opacity 0.2s ease, margin 0.2s ease, visibility 0s linear 0.2s;
	visibility: hidden;
}

.gn-anuncio-wizard__block {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	margin-bottom: 0.75rem;
	padding: 1rem 1.1rem;
}

.gn-anuncio-wizard__block-title {
	color: var(--gn-text);
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
}

.gn-anuncio-wizard__block-text {
	color: var(--gn-muted);
	font-size: 0.9rem;
	margin: 0 0 0.85rem;
}

.gn-anuncio-wizard__block-actions {
	margin: 0;
}

.gn-anuncio-wizard__review {
	display: grid;
	gap: 0.65rem;
	margin: 0;
}

.gn-anuncio-wizard__review > div {
	border-bottom: 1px solid var(--gn-border);
	display: grid;
	gap: 0.15rem;
	padding-bottom: 0.55rem;
}

.gn-anuncio-wizard__review dt {
	color: var(--gn-muted);
	font-size: 0.78rem;
	font-weight: 600;
	margin: 0;
}

.gn-anuncio-wizard__review dd {
	color: var(--gn-text);
	font-size: 0.95rem;
	font-weight: 600;
	margin: 0;
}

.gn-anuncio-wizard__footer {
	border-top: 1px solid var(--gn-border);
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	justify-content: flex-end;
	padding: 0.9rem 1.25rem 1.1rem;
}

.gn-anuncio-wizard__footer .gn-btn[hidden] {
	display: none !important;
}

.gn-anuncio-wizard__nav--prev {
	margin-right: auto;
}

.gn-anuncio-wizard__footer .gn-btn:disabled {
	cursor: wait;
	opacity: 0.72;
}

@media (max-width: 560px) {
	.gn-anuncio-wizard__verticals,
	.gn-anuncio-wizard__form,
	.gn-anuncio-wizard__form .gn-geo-cascata,
	.gn-anuncio-wizard__typed-grid {
		grid-template-columns: 1fr;
	}

	.gn-anuncio-wizard__footer {
		flex-wrap: wrap;
	}

	.gn-anuncio-wizard__nav--prev {
		margin-right: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gn-anuncio-wizard__vertical {
		transition: none;
	}

	.gn-anuncio-wizard__vertical:hover,
	.gn-anuncio-wizard__vertical:focus-visible,
	.gn-anuncio-wizard__vertical.is-selected {
		transform: none;
	}
}

.gn-chat-inbox__empty {
	margin: 1.25rem 0 0;
	color: var(--gn-muted);
}

/* CH3 — inbox tipada (data | usuário | produto | resumo | sanduíche) */
.gn-chat-inbox__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1.25rem;
	margin: 0 0 1.25rem;
	border-bottom: 1px solid var(--gn-border);
}

.gn-chat-inbox__filter {
	display: inline-block;
	padding: 0.55rem 0;
	margin-bottom: -1px;
	color: var(--gn-muted);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	border-bottom: 2px solid transparent;
}

.gn-chat-inbox__filter:hover,
.gn-chat-inbox__filter:focus-visible {
	color: var(--gn-text);
}

.gn-chat-inbox__filter.is-active {
	color: var(--gn-text);
	border-bottom-color: var(--gn-primary);
}

.gn-chat-inbox {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 0;
	overflow: hidden;
}

.gn-chat-inbox__head,
.gn-chat-inbox__row {
	display: grid;
	grid-template-columns: 8.5rem minmax(7rem, 0.9fr) minmax(8rem, 1.1fr) minmax(0, 1.4fr) 2.75rem;
	gap: 0.75rem 1rem;
	align-items: center;
}

.gn-chat-inbox__head {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-left-width: 0;
	border-right-width: 0;
	color: var(--gn-text);
	filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.2));
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.9rem 1.25rem;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
}

.gn-chat-inbox__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-chat-inbox__row {
	border-bottom: none;
	padding: 0.85rem 1.25rem;
	position: relative;
}

.gn-chat-inbox__row:nth-child(odd) {
	background: var(--gn-surface);
}

.gn-chat-inbox__row:nth-child(even) {
	background: var(--gn-bg);
}

.gn-chat-inbox__row.is-pinned {
	background: linear-gradient(90deg, color-mix(in srgb, var(--gn-primary) 8%, transparent), transparent 42%);
}

.gn-chat-inbox__row:hover {
	background: var(--gn-primary-soft);
}

.gn-chat-inbox__main {
	display: contents;
	color: inherit;
	text-decoration: none;
}

.gn-chat-inbox__col {
	min-width: 0;
}

.gn-chat-inbox__col--data,
.gn-chat-inbox__col--user,
.gn-chat-inbox__col--resumo {
	color: var(--gn-muted);
	font-size: 0.92rem;
}

.gn-chat-inbox__col--produto {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--gn-text);
	font-weight: 600;
	font-size: 0.98rem;
}

.gn-chat-inbox__produto-title,
.gn-chat-inbox__col--user,
.gn-chat-inbox__col--resumo {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gn-chat-inbox__pin {
	flex-shrink: 0;
	color: var(--gn-primary);
	font-size: 0.85rem;
}

.gn-chat-inbox__unread,
.gn-chat-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.25rem;
	height: 1.25rem;
	padding: 0 0.35rem;
	border-radius: 0.2rem;
	background: var(--gn-text);
	color: var(--gn-surface, #fff);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1;
}

.gn-chat-badge {
	margin-left: 0.35rem;
}

.gn-chat-inbox__unread {
	margin-left: 0.15rem;
}

.gn-chat-inbox__main:hover .gn-chat-inbox__produto-title,
.gn-chat-inbox__main:focus-visible .gn-chat-inbox__produto-title {
	text-decoration: underline;
}

.gn-chat-inbox__col--acoes {
	position: relative;
	justify-self: end;
	z-index: 2;
}

.gn-chat-inbox__menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 1px solid transparent;
	background: transparent;
	color: var(--gn-muted);
	cursor: pointer;
	font-size: 1rem;
}

.gn-chat-inbox__menu-toggle:hover,
.gn-chat-inbox__menu-toggle:focus-visible,
[data-chat-menu].is-open .gn-chat-inbox__menu-toggle {
	color: var(--gn-text);
	border-color: var(--gn-border);
	background: var(--gn-bg);
}

.gn-chat-inbox__menu {
	position: absolute;
	top: calc(100% + 0.2rem);
	right: 0;
	min-width: 10.5rem;
	padding: 0.35rem 0;
	border: 1px solid var(--gn-border);
	background: var(--gn-surface, #fff);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	z-index: 20;
}

.gn-chat-inbox__menu[hidden] {
	display: none !important;
}

.gn-chat-inbox__menu form {
	margin: 0;
}

.gn-chat-inbox__menu-item {
	display: block;
	width: 100%;
	padding: 0.55rem 0.9rem;
	border: 0;
	background: transparent;
	color: var(--gn-text);
	font: inherit;
	font-size: 0.92rem;
	text-align: left;
	cursor: pointer;
}

.gn-chat-inbox__menu-item:hover,
.gn-chat-inbox__menu-item:focus-visible {
	background: var(--gn-bg);
}

.gn-chat-inbox__menu-item--danger {
	color: var(--gn-danger, #b42318);
}

.gn-chat-inbox__empty-state {
	margin-top: 1.5rem;
	border: 1px dashed var(--gn-border);
	background: var(--gn-bg);
}

.gn-chat-inbox__empty-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	margin: 0.75rem 0 0;
}

@media (max-width: 767px) {
	.gn-chat-inbox__head {
		display: none;
	}

	.gn-chat-inbox__row {
		grid-template-columns: minmax(0, 1fr) 2.5rem;
		grid-template-areas:
			"produto acoes"
			"user acoes"
			"resumo acoes"
			"data acoes";
		gap: 0.25rem 0.5rem;
		align-items: start;
	}

	.gn-chat-inbox__col--produto { grid-area: produto; }
	.gn-chat-inbox__col--user { grid-area: user; }
	.gn-chat-inbox__col--resumo { grid-area: resumo; }
	.gn-chat-inbox__col--data { grid-area: data; font-size: 0.82rem; }
	.gn-chat-inbox__col--acoes {
		grid-area: acoes;
		justify-self: end;
		align-self: start;
	}

	.gn-chat-inbox__col--resumo {
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
}

.gn-negocios-detail__card {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 0.5rem;
	padding: 1.25rem 1.35rem 1.5rem;
}

.gn-negocios-detail__gallery {
	margin: 0;
}

.gn-negocios-detail__open,
.gn-negocios-detail__open:hover,
.gn-negocios-detail__open:focus,
.gn-negocios-detail__open:focus-visible,
.gn-negocios-detail__open:active {
	align-items: center;
	appearance: none;
	background: var(--gn-bg);
	border: 0;
	border-radius: var(--gn-img-radius);
	box-shadow: none;
	cursor: zoom-in;
	display: flex;
	justify-content: center;
	margin: 0;
	max-height: min(70dvh, 36rem);
	min-height: 12rem;
	outline: none;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

.gn-negocios-detail__open:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-negocios-detail__image {
	/* Palco: orientação nativa (contain). Cover A4 fica na faixa e nos cards. */
	background: transparent;
	border-radius: var(--gn-img-radius);
	display: block;
	height: auto;
	max-height: min(70dvh, 36rem);
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	width: auto;
}

.gn-negocios-detail__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
	gap: 0.5rem;
	list-style: none;
	margin: 0.65rem 0 0;
	padding: 0;
}

.gn-negocios-detail__thumb {
	appearance: none;
	background: transparent;
	border: 2px solid transparent;
	cursor: pointer;
	padding: 0;
	width: 100%;
}

.gn-negocios-detail__thumb img {
	aspect-ratio: 297 / 210;
	border-radius: 6px;
	display: block;
	object-fit: cover;
	width: 100%;
}

.gn-negocios-detail__thumb.is-active,
.gn-negocios-detail__thumb:focus-visible {
	border-color: var(--gn-primary);
}

.gn-anuncio-fs {
	align-items: center;
	background: rgba(0, 0, 0, 0.94);
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 20000;
}

.gn-anuncio-fs[hidden] {
	display: none;
}

.gn-anuncio-fs__frame {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	margin: 0;
	max-height: 100dvh;
	max-width: 100%;
	padding: 3.5rem 3.25rem 2.75rem;
}

.gn-anuncio-fs[data-fs-applied="landscape"] .gn-anuncio-fs__frame {
	aspect-ratio: 297 / 210;
	height: auto;
	max-height: 100%;
	width: min(100%, calc(100dvh * 297 / 210));
}

.gn-anuncio-fs[data-fs-applied="portrait"] .gn-anuncio-fs__frame {
	aspect-ratio: 210 / 297;
	height: min(100%, 100dvh);
	width: auto;
}

.gn-anuncio-fs__photo {
	cursor: zoom-in;
	display: block;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	width: auto;
}

.gn-anuncio-fs.is-zoomed .gn-anuncio-fs__frame {
	aspect-ratio: auto;
	height: 100%;
	max-height: 100dvh;
	max-width: 100%;
	overflow: hidden;
	overscroll-behavior: none;
	touch-action: none;
	width: 100%;
}

.gn-anuncio-fs.is-zoomed .gn-anuncio-fs__photo {
	cursor: grab;
	pointer-events: auto;
	transform-origin: center center;
	user-select: none;
	will-change: transform;
}

.gn-anuncio-fs.is-zoomed.is-panning .gn-anuncio-fs__photo {
	cursor: grabbing;
}

.gn-anuncio-fs__close,
.gn-anuncio-fs__nav {
	align-items: center;
	background: rgba(17, 17, 17, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	height: 2.5rem;
	justify-content: center;
	position: absolute;
	width: 2.5rem;
	z-index: 2;
}

.gn-anuncio-fs__close:hover,
.gn-anuncio-fs__close:focus-visible,
.gn-anuncio-fs__nav:hover,
.gn-anuncio-fs__nav:focus-visible {
	border-color: #fff;
}

.gn-anuncio-fs__close:focus-visible,
.gn-anuncio-fs__nav:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-anuncio-fs__close {
	right: 0.75rem;
	top: 0.75rem;
}

.gn-anuncio-fs__nav--prev {
	left: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
}

.gn-anuncio-fs__nav--next {
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
}

.gn-anuncio-fs__nav[hidden] {
	display: none;
}

.gn-anuncio-fs__counter {
	bottom: 0.75rem;
	color: #fff;
	font-size: 0.85rem;
	left: 0;
	margin: 0;
	position: absolute;
	right: 0;
	text-align: center;
}

.gn-anuncio-fs__counter[hidden] {
	display: none;
}

.gn-upload-zone.is-disabled {
	opacity: 0.55;
	pointer-events: none;
}

.gn-negocios-detail__intro {
	margin: 0;
}

.gn-negocios-detail__seller {
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 0 0 0.75rem;
}

.gn-negocios-detail__verified {
	flex-shrink: 0;
	font-family: var(--gn-font-ui);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.3;
}

.gn-negocios-detail__verified--ok {
	color: var(--gn-success);
}

.gn-negocios-detail__verified--no {
	color: var(--gn-danger);
}

.gn-whatsapp-unverified-dialog {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	box-shadow: var(--gn-modal-shadow);
	color: var(--gn-text);
	height: fit-content;
	inset: 0;
	margin: auto;
	max-width: 26rem;
	padding: 1.5rem 1.5rem 1.25rem;
	position: fixed;
	text-align: center;
	width: calc(100% - 2rem);
}

.gn-whatsapp-unverified-dialog::backdrop {
	background: rgb(18 24 32 / 48%);
}

.gn-whatsapp-unverified-dialog__icon {
	align-items: center;
	background: color-mix(in srgb, var(--gn-success) 14%, var(--gn-surface));
	border-radius: 999px;
	color: var(--gn-success);
	display: inline-flex;
	font-size: 1.45rem;
	height: 3rem;
	justify-content: center;
	margin: 0 0 0.85rem;
	width: 3rem;
}

.gn-whatsapp-unverified-dialog__title {
	font-family: var(--gn-font-ui);
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 0.55rem;
}

.gn-whatsapp-unverified-dialog__body {
	color: var(--gn-muted);
	font-size: 0.95rem;
	line-height: 1.45;
	margin: 0 0 1.25rem;
}

.gn-whatsapp-unverified-dialog__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: center;
	margin: 0;
}

.gn-whatsapp-unverified-dialog__actions .gn-btn {
	min-width: 7.5rem;
}

.gn-negocios-detail__seller .gn-home-card__author-icon {
	height: 2.25rem;
	width: 2.25rem;
}

.gn-negocios-detail__seller .gn-home-card__author-name {
	color: var(--gn-primary);
	font-family: var(--gn-font-ui);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.3;
}

.gn-negocios-detail__seller a.gn-home-card__author-name:hover,
.gn-negocios-detail__seller a.gn-home-card__author-name:focus-visible {
	color: var(--gn-primary);
	text-decoration: underline;
}

.gn-negocios-detail__seller a.gn-home-card__author-name:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-negocios-detail__share {
	margin: 0 0 0.85rem;
}

.gn-negocios-detail__card .gn-article-share {
	margin: 0;
	padding: 0.35rem 0 0;
	text-align: left;
}

.gn-negocios-detail__card .gn-article-share__list {
	justify-content: flex-start;
}

.gn-negocios-detail__title {
	color: var(--gn-text);
	font-family: var(--gn-font-display);
	font-size: 1.375rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 0.4rem;
}

.gn-negocios-detail__subtitle,
.gn-negocios-detail__description,
.gn-negocios-detail__place {
	font-family: var(--gn-font-ui);
}

.gn-negocios-detail__subtitle {
	margin: 0 0 0.35rem;
	color: var(--gn-muted);
	font-size: 0.9375rem;
}

.gn-negocios-detail__place {
	align-items: center;
	color: var(--gn-muted);
	display: flex;
	font-size: 0.875rem;
	gap: 0.35rem;
	margin: 0;
}

.gn-negocios-detail__place .fa-map-marker {
	color: var(--gn-primary);
	flex-shrink: 0;
}

.gn-negocios-detail__price {
	margin: 0 0 0.35rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--gn-text);
}

.gn-negocios-detail__payment {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--gn-muted);
}

.gn-negocios-detail__description {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--gn-muted);
}

.gn-negocios-detail__attrs {
	margin: 0 0 1.25rem;
	padding: 0.9rem 1rem;
	border: 1px solid var(--gn-border);
	background: var(--gn-bg);
}

.gn-negocios-detail__attrs-title {
	margin: 0 0 0.55rem;
	font-size: 1rem;
	font-weight: 700;
}

.gn-negocios-detail__attrs-list {
	margin: 0;
	padding-left: 1.1rem;
	color: var(--gn-muted);
}

.gn-negocios-detail__attrs-list li + li {
	margin-top: 0.25rem;
}

.gn-negocios-detail__notice {
	margin: 0 0 1rem;
	padding: 0.75rem 0.9rem;
	background: var(--gn-bg);
	color: var(--gn-muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.gn-negocios-detail__chat-hint {
	margin: 0 0 0.85rem;
	color: var(--gn-success);
	font-size: 0.92rem;
}

.gn-negocios-detail__chat-form {
	margin: 0;
	display: inline-flex;
}

.gn-negocios-detail__cta-row {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.gn-negocios-detail__cta-row > .gn-form-feedback {
	flex: 1 1 100%;
	margin: 0;
}

.gn-negocios-detail__cta-row .gn-negocios-detail__chat-form .gn-negocios-detail__cta {
	min-height: 2.7rem;
}

.gn-negocios-detail__cta {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	gap: 0.4rem;
	justify-content: center;
	text-decoration: none;
}

.gn-negocios-detail__cta:hover,
.gn-negocios-detail__cta:focus-visible {
	text-decoration: none;
}

@media (max-width: 560px) {
	.gn-negocios-detail__cta-row {
		flex-direction: column;
	}

	.gn-negocios-detail__cta-row .gn-negocios-detail__chat-form,
	.gn-negocios-detail__cta-row .gn-negocios-detail__cta {
		width: 100%;
	}
}

.gn-chat-thread__messages {
	max-height: 28rem;
	overflow-y: auto;
	margin: 1rem 0 1.25rem;
	padding: 0.75rem 0;
	border-top: 1px solid var(--gn-border);
	border-bottom: 1px solid var(--gn-border);
}

.gn-chat-thread__header {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem 1.25rem;
	margin: 0 0 0.75rem;
}

.gn-chat-thread__meta {
	margin: 0;
	color: var(--gn-muted);
	font-size: 0.92rem;
}

.gn-chat-thread__meta a {
	color: var(--gn-primary);
	font-weight: 600;
	text-decoration: none;
}

.gn-chat-thread__meta a:hover,
.gn-chat-thread__meta a:focus-visible {
	text-decoration: underline;
}

.gn-chat-thread__ref {
	margin: 0;
	color: var(--gn-muted);
	font-size: 0.82rem;
	letter-spacing: 0.02em;
}

.gn-chat-thread__empty {
	color: var(--gn-muted);
}

.gn-chat-msg {
	margin: 0 0 1rem;
	padding: 0.65rem 0.85rem;
	max-width: 36rem;
}

.gn-chat-msg--mine {
	margin-left: auto;
	background: var(--gn-bg);
}

.gn-chat-msg--theirs {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
}

.gn-chat-msg__meta {
	margin: 0 0 0.35rem;
	font-size: 0.85rem;
	color: var(--gn-muted);
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.gn-chat-msg__body {
	margin: 0;
	white-space: pre-wrap;
	line-height: 1.45;
}

.gn-chat-thread__form textarea {
	display: block;
	width: 100%;
	max-width: 40rem;
	margin-bottom: 0.75rem;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--gn-border);
	border-radius: 4px;
	font: inherit;
	resize: vertical;
}

.gn-negocios-page__title {
	color: var(--gn-text);
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin: 0 0 0.75rem;
	text-transform: uppercase;
}

.gn-negocios-page__lead {
	color: var(--gn-muted);
	font-size: 1.05rem;
	line-height: 1.6;
	margin: 0 0 0.75rem;
	max-width: 42rem;
}

.gn-negocios-page__note {
	align-items: center;
	color: var(--gn-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.875rem;
	gap: 0.5rem 0.75rem;
	line-height: 1.5;
	margin: 0;
}

.gn-negocios-page__badge {
	background: var(--gn-warning-bg);
	border-radius: 999px;
	color: var(--gn-warning-text);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	padding: 0.25rem 0.65rem;
	text-transform: uppercase;
	white-space: nowrap;
}

.gn-classified-section {
	margin-bottom: 2.5rem;
}

.gn-classified-section:last-child {
	margin-bottom: 0;
}

/* ================================================================
   TÍTULO DE SEÇÃO — faixa unificada (decisao_layouts.md etapa 6)
   ================================================================ */

.gn-classified-section__heading,
.gn-noticias-list .section-title,
.gn-giro360-page__section-title,
.gn-conta-negocios-hub__section-title,
#main.gn-home-page .highlights-posts .section-title,
#main.gn-home-page .editors-posts .section-title,
#main.gn-home-page .popular-posts .section-title,
#main.gn-home-page .social-media-posts .section-title,
#main.gn-home-page .trending-posts .section-title,
.gn-section-title {
	box-sizing: border-box;
	margin: 0 0 1.25rem;
	padding: 0.55rem 0;
	position: relative;
	width: 100%;
}

.gn-classified-section__heading::after,
.gn-noticias-list .section-title::after,
.gn-giro360-page__section-title::after,
.gn-conta-negocios-hub__section-title::after,
#main.gn-home-page .highlights-posts .section-title::after,
#main.gn-home-page .editors-posts .section-title::after,
#main.gn-home-page .popular-posts .section-title::after,
#main.gn-home-page .social-media-posts .section-title::after,
#main.gn-home-page .trending-posts .section-title::after,
.gn-section-title::after {
	background: var(--gn-title-bar);
	bottom: 0;
	content: "";
	display: block;
	height: var(--gn-title-bar-size);
	left: 0;
	position: absolute;
	right: 0;
	width: 100%;
}

.gn-page-title--with-back {
	align-items: center;
	display: flex;
	gap: 1rem;
}

.gn-page-title--with-back .gn-back-btn {
	margin: 0;
}

.gn-page-title--with-back h1 {
	flex: 1 1 auto;
	min-width: 0;
}

.gn-classified-section__title {
	color: var(--gn-text);
	font-family: var(--gn-font-display);
	font-size: var(--gn-type-h2);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0;
	text-transform: none;
}

.gn-classified-section__title a {
	color: inherit;
	text-decoration: none;
}

.gn-classified-section__title a:hover,
.gn-classified-section__title a:focus-visible {
	color: var(--gn-primary);
}

.gn-classified-section__title a:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-classified-section__lede-sep,
.gn-classified-section__lede {
	color: var(--gn-muted);
	font-weight: 500;
	letter-spacing: 0;
}

.gn-classified-section__lede-sep {
	font-weight: 400;
	opacity: 0.55;
	padding: 0 0.3em;
}

.gn-classified-section__lede {
	font-size: 0.86em;
}

.gn-classified-section__title a:hover .gn-classified-section__lede-sep,
.gn-classified-section__title a:hover .gn-classified-section__lede,
.gn-classified-section__title a:focus-visible .gn-classified-section__lede-sep,
.gn-classified-section__title a:focus-visible .gn-classified-section__lede {
	color: var(--gn-primary);
	opacity: 1;
}

.gn-classified-grid {
	display: grid;
	gap: 0.85rem;
	/* Smartphone / tablet estreito (~720px): 2 cards por linha (8 itens = 4 linhas).
	   Coluna mínima de 280px gerava 1 card no mobile e 3 no desktop. */
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 920px) {
	.gn-classified-grid {
		gap: 1.15rem;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.gn-classified-card {
	background: var(--gn-surface);
	box-sizing: border-box;
	color: inherit;
	display: flex;
	flex-direction: column;
	/* Preenche a célula do grid (2 colunas < 920px, 4 colunas ≥ 920px). */
	min-width: 0;
	text-decoration: none;
	width: 100%;
}

.gn-classified-card:hover,
.gn-classified-card:focus-visible {
	color: inherit;
	text-decoration: none;
}

.gn-classified-card:focus-visible {
	outline: 2px solid var(--gn-accent-solid);
	outline-offset: 2px;
}

/* B.3 / 3.1 — mídia A4 (sem height: 200px fixo); largura vem da coluna do grid */
.gn-classified-card__image {
	aspect-ratio: 297 / 210;
	display: block;
	height: auto;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.gn-classified-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.25rem 1.35rem 1.4rem;
}

.gn-classified-card__title {
	color: var(--gn-text);
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 0 0.25rem;
	text-transform: uppercase;
}

/* NN3 (docs/novo_negocios.md): badge de subcategoria (ex.: "Viagens", "Eventos") nos cards de Serviços. */
.gn-classified-card__badge--desapega {
	background: color-mix(in srgb, var(--gn-accent-solid) 14%, var(--gn-surface));
	color: var(--gn-accent-solid);
}

.gn-classified-card__subtitle {
	color: var(--gn-muted);
	font-size: 0.85rem;
	letter-spacing: 0.5px;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.gn-classified-card__description {
	color: var(--gn-muted);
	flex: 1;
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0 0 1.5rem;
}

.gn-classified-card__price {
	color: var(--gn-text);
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
}

@media (max-width: 919px) {
	.gn-classified-card__body {
		padding: 0.8rem 0.85rem 0.95rem;
	}

	.gn-classified-card__title,
	.gn-offer-card__title {
		font-size: 0.98rem;
	}

	.gn-classified-card__subtitle {
		font-size: 0.75rem;
		margin-bottom: 0.55rem;
	}

	.gn-classified-card__description {
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		display: -webkit-box;
		font-size: 0.82rem;
		line-height: 1.4;
		margin-bottom: 0.75rem;
		overflow: hidden;
	}

	.gn-classified-card__price,
	.gn-offer-card__price-por {
		font-size: 1.15rem;
	}

	.gn-offer-card__cta {
		font-size: 0.82rem;
		min-height: 2.2rem;
		padding: 0.45rem 0.75rem;
	}
}

/* === Card de oferta comercial (De / Por / % OFF / a prazo / CTA) === */
.gn-offer-card__media {
	display: block;
	line-height: 0;
}

.gn-offer-card__title {
	color: var(--gn-text);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 0.35rem;
}

.gn-offer-card__title a {
	color: inherit;
	text-decoration: none;
}

.gn-offer-card__title a:hover,
.gn-offer-card__title a:focus-visible {
	color: var(--gn-accent-text);
}

.gn-offer-card__subtitle {
	color: var(--gn-muted);
	font-size: 0.92rem;
	font-weight: 400;
	line-height: 1.4;
	margin: 0 0 1rem;
	text-transform: none;
	letter-spacing: 0;
}

.gn-offer-card__price-block {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	margin: 0 0 1.1rem;
}

.gn-offer-card__price-de {
	color: var(--gn-muted);
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
	text-decoration: line-through;
}

.gn-offer-card__price-por-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.gn-offer-card__price-por {
	color: var(--gn-text);
	font-size: 1.55rem;
	font-weight: 800;
	line-height: 1.15;
	margin: 0;
}

.gn-offer-card__off {
	background: var(--gn-offer-badge);
	border-radius: 4px;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1;
	padding: 0.35rem 0.45rem;
	text-transform: uppercase;
	white-space: nowrap;
}

.gn-offer-card__prazo {
	color: var(--gn-offer-prazo);
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.35;
	margin: 0.15rem 0 0;
}

.gn-offer-card__pagamento {
	color: var(--gn-muted);
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.35;
	margin: 0.2rem 0 0;
}

.gn-offer-card__cta {
	align-items: center;
	background: var(--gn-accent-solid);
	border: 1px solid transparent;
	border-radius: 6px;
	color: var(--gn-inverse);
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 700;
	justify-content: center;
	margin-top: auto;
	min-height: 2.6rem;
	padding: 0.65rem 1.1rem;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.15s ease;
	width: fit-content;
}

.gn-offer-card__cta:hover,
.gn-offer-card__cta:focus-visible {
	background: var(--gn-accent-text);
	color: var(--gn-inverse);
	text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
	.gn-classified-card {
		transition: none;
	}

	.gn-classified-card:hover,
	.gn-classified-card:focus-visible {
		transform: none;
	}
}

/* ================================================================
   Faixas publicitárias 1152×200 (home, notícias, negócios, giro360, vídeos)
   ================================================================ */

.gn-home-faixa {
	--gn-cover-band: var(--gn-home-faixa-height, 200px);
	--slot-h: var(--gn-cover-band);
	--hybrid-w: calc((100vw + var(--slot-h) * 1152 / 200) / 2);
	--hybrid-h: calc((100vw * 200 / 1152 + var(--slot-h)) / 2);
	margin: 0;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

.gn-home-faixa__layout {
	align-items: stretch;
	display: flex;
	height: min(var(--gn-cover-band), var(--hybrid-h));
	max-width: 100vw;
	width: 100vw;
}

.gn-home-faixa__fade {
	flex: 1 1 0;
	min-width: 0;
}

.gn-home-faixa__fade--left {
	background: linear-gradient(to right, transparent, var(--gn-faixa-left, var(--gn-detail-yellow)));
}

.gn-home-faixa__fade--right {
	background: linear-gradient(to right, var(--gn-faixa-right, var(--gn-detail-yellow)), transparent);
}

.gn-home-faixa__container {
	flex: 0 0 auto;
	height: 100%;
	max-width: 1152px;
	padding-left: 0;
	padding-right: 0;
	width: 100%;
}

@media (min-width: 480px) {
	.gn-home-faixa__container {
		width: 440px;
	}
}

@media (min-width: 768px) {
	.gn-home-faixa__container {
		width: 727px;
	}
}

@media (min-width: 992px) {
	.gn-home-faixa__container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.gn-home-faixa__container {
		width: 1152px;
	}
}

.gn-home-faixa__row {
	height: 100%;
	margin-left: 0;
	margin-right: 0;
}

.gn-home-faixa__slot {
	align-items: stretch;
	background: linear-gradient(
		to right,
		var(--gn-faixa-left, var(--gn-detail-yellow)),
		var(--gn-faixa-left, var(--gn-detail-yellow)) 1px,
		var(--gn-faixa-right, var(--gn-detail-yellow)) calc(100% - 1px),
		var(--gn-faixa-right, var(--gn-detail-yellow))
	);
	box-sizing: border-box;
	display: flex;
	height: 100%;
	justify-content: center;
	padding-left: 0;
	padding-right: 0;
}

.gn-home-faixa__card {
	display: block;
	height: 100%;
	line-height: 0;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

.gn-home-faixa__card img {
	display: block;
	height: 100%;
	max-height: none;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

/* ================================================================
   HOME — palco da enquete (seção própria; some no próximo GET após o voto)
   ================================================================ */

.gn-home-enquete {
	margin: 0;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

.gn-home-enquete__layout {
	align-items: stretch;
	display: flex;
	height: auto;
	max-width: 100vw;
	width: 100vw;
}

.gn-home-enquete__fade {
	flex: 1 1 0;
	min-width: 0;
}

.gn-home-enquete__fade--left {
	background: linear-gradient(to right, transparent, var(--gn-faixa-left, var(--gn-detail-yellow)));
}

.gn-home-enquete__fade--right {
	background: linear-gradient(to right, var(--gn-faixa-right, var(--gn-detail-yellow)), transparent);
}

.gn-home-enquete__container {
	background: linear-gradient(
		to right,
		var(--gn-faixa-left, var(--gn-detail-yellow)),
		var(--gn-faixa-right, var(--gn-detail-yellow))
	);
	box-sizing: border-box;
	display: flex;
	flex: 0 0 auto;
	height: auto;
	max-width: 1152px;
	padding: 0;
	width: 100%;
}

.gn-home-enquete__panel {
	background: var(--gn-surface);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	box-sizing: border-box;
	display: flex;
	flex: 1;
	flex-direction: column;
	height: auto;
	min-height: 0;
	min-width: 0;
	overflow: visible;
	width: 100%;
}

.gn-home-enquete__header {
	align-items: flex-start;
	background: linear-gradient(180deg, var(--gn-surface) 0%, var(--gn-bg) 100%);
	border-bottom: 1px solid var(--gn-border);
	display: flex;
	flex-shrink: 0;
	flex-wrap: wrap;
	gap: 10px 16px;
	justify-content: space-between;
	padding: 12px 14px 10px;
}

.gn-home-enquete__titulo-grupo {
	align-items: baseline;
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	gap: 6px 10px;
	min-width: 0;
}

.gn-home-enquete__badge {
	align-items: center;
	background: var(--gn-primary-soft);
	border-radius: 999px;
	color: var(--gn-accent-solid);
	display: inline-flex;
	flex-shrink: 0;
	font-size: 0.65rem;
	font-weight: 800;
	gap: 5px;
	letter-spacing: 0.5px;
	padding: 2px 7px;
	text-transform: uppercase;
}

.gn-home-enquete__badge::before {
	background: var(--gn-accent-solid);
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 6px;
	width: 6px;
}

.gn-home-enquete__descricao {
	color: var(--gn-muted);
	display: -webkit-box;
	flex: 1 1 100%;
	font-size: 0.9375rem;
	font-weight: 400;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	line-height: 1.4;
	margin: 0;
	max-width: none;
	overflow: hidden;
	-webkit-box-orient: vertical;
	white-space: normal;
}

.gn-home-enquete__titulo {
	color: var(--gn-text);
	display: -webkit-box;
	flex: 1 1 12rem;
	font-size: 1.125rem;
	font-weight: 700;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	line-height: 1.3;
	margin: 0;
	min-width: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	white-space: normal;
}

.gn-home-enquete__passo,
.gn-home-enquete__instrucao {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-muted);
	flex-shrink: 0;
	font-size: 0.75rem;
	font-weight: 600;
	margin: 0;
	padding: 4px 12px;
	white-space: nowrap;
}

.gn-home-enquete__stage {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	min-height: 0;
	padding: 8px 8px 10px;
	position: relative;
}

.gn-home-enquete__form,
.gn-home-enquete__resultado {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 0;
	min-height: 0;
}

.gn-home-enquete__track-wrap {
	align-items: stretch;
	display: flex;
	flex: 0 0 auto;
	min-height: 0;
	position: relative;
}

.gn-home-enquete__track {
	align-items: stretch;
	display: flex;
	flex: 1;
	gap: 8px;
	min-height: 0;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 2px 28px 6px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-color: var(--gn-border) transparent;
	scrollbar-width: thin;
	width: 100%;
	-webkit-overflow-scrolling: touch;
}

.gn-home-enquete__track::-webkit-scrollbar {
	height: 6px;
}

.gn-home-enquete__track::-webkit-scrollbar-thumb {
	background: var(--gn-border);
	border-radius: 999px;
}

.gn-home-enquete__nav {
	align-items: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(28, 53, 85, 0.12);
	color: var(--gn-text);
	cursor: pointer;
	display: flex;
	flex-shrink: 0;
	font-size: 12px;
	height: 26px;
	justify-content: center;
	line-height: 1;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	width: 26px;
	z-index: 2;
}

.gn-home-enquete__nav--prev {
	left: 0;
}

.gn-home-enquete__nav--next {
	right: 0;
}

.gn-home-enquete__nav:hover,
.gn-home-enquete__nav:focus-visible {
	background: var(--gn-accent-solid);
	border-color: var(--gn-accent-solid);
	color: var(--gn-inverse);
	outline: none;
}

.gn-home-enquete__nav:disabled {
	cursor: default;
	opacity: 0.35;
	pointer-events: none;
}

.gn-home-enquete__nav[hidden] {
	opacity: 0;
	pointer-events: none;
}

.gn-home-enquete__card {
	align-items: center;
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	flex: 0 0 calc((100% - 40px) / 6);
	flex-direction: column;
	height: auto;
	justify-content: flex-start;
	min-width: 112px;
	padding: 2px 4px 8px;
	position: relative;
	scroll-snap-align: start;
	text-align: center;
	user-select: none;
}

.gn-home-enquete__card input[type="radio"] {
	height: 0;
	opacity: 0;
	position: absolute;
	width: 0;
}

.gn-home-enquete__card.is-selected {
	background: var(--gn-primary-soft);
	box-shadow: var(--gn-card-shadow), 0 0 0 3px rgba(36, 90, 130, 0.2);
}

.gn-home-enquete__card.is-selected:hover,
.gn-home-enquete__card.is-selected:focus-within {
	box-shadow: var(--gn-card-shadow-hover), 0 0 0 3px rgba(36, 90, 130, 0.2);
}

.gn-home-enquete__card--resultado {
	cursor: default;
}

.gn-home-enquete__card--lider {
	background: var(--gn-primary-soft);
}

.gn-home-enquete__card .gn-home-enquete__pct {
	font-size: 0.75rem;
	margin-top: 2px;
}

.gn-home-enquete__card .gn-home-enquete__bar {
	height: 4px;
	margin-top: 4px;
	width: 80%;
}

.gn-home-enquete__foto {
	display: block;
	flex-shrink: 0;
	height: 68px;
	margin: -2px 0 0;
	position: relative;
	width: 68px;
}

.gn-home-enquete__foto img {
	border: 2px solid var(--gn-surface);
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(28, 53, 85, 0.12);
	display: block;
	height: 68px;
	object-fit: cover;
	width: 68px;
}

.gn-home-enquete__legenda {
	background: var(--gn-inverse);
	border-radius: 4px;
	box-sizing: border-box;
	display: block;
	margin: 6px 0 0;
	padding: 3px 5px 4px;
	text-align: center;
	width: 100%;
}

.gn-home-enquete__check {
	align-items: center;
	background: var(--gn-surface);
	border: 2px solid var(--gn-border);
	border-radius: 50%;
	color: transparent;
	display: flex;
	font-size: 9px;
	font-weight: 800;
	height: 16px;
	justify-content: center;
	position: absolute;
	right: -2px;
	top: -2px;
	width: 16px;
	z-index: 1;
}

.gn-home-enquete__card.is-selected .gn-home-enquete__check {
	background: var(--gn-accent-solid);
	border-color: var(--gn-accent-solid);
	color: var(--gn-inverse);
}

.gn-home-enquete__nome {
	color: var(--gn-text);
	display: block;
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1.15;
	max-width: 100%;
	overflow-wrap: anywhere;
	white-space: normal;
	word-break: break-word;
}

.gn-home-enquete__sub {
	color: var(--gn-muted);
	display: block;
	font-size: 0.62rem;
	font-weight: 600;
	margin-top: 2px;
	max-width: 100%;
	overflow-wrap: anywhere;
	white-space: normal;
	word-break: break-word;
}

.gn-home-enquete__footer {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	gap: 12px;
	justify-content: space-between;
}

.gn-home-enquete__hint {
	color: var(--gn-muted);
	font-size: 0.8rem;
}

.gn-home-enquete__votar {
	align-items: center;
	background: var(--gn-accent-solid);
	border: 0;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(36, 90, 130, 0.2);
	color: var(--gn-inverse);
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0.15rem 0 0;
	padding: 8px 16px;
}

.gn-home-enquete__votar:hover,
.gn-home-enquete__votar:focus-visible {
	background: var(--gn-primary);
}

.gn-home-enquete__votar:disabled {
	background: var(--gn-secondary);
	box-shadow: none;
	cursor: not-allowed;
	opacity: 0.7;
}

.gn-home-enquete__votar[hidden] {
	display: none;
}

.gn-home-enquete__disclaimer {
	color: var(--gn-muted);
	font-size: 0.68rem;
	line-height: 1.3;
	margin: 0;
	max-width: 36rem;
	text-align: center;
}

.gn-home-enquete__form {
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.gn-home-enquete__form.is-fading {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-10px);
}

.gn-home-enquete__status {
	color: var(--gn-muted);
	font-size: 0.75rem;
	margin: 0;
	min-height: 0;
}

.gn-home-enquete__status:empty {
	display: none;
}

.gn-home-enquete__status.is-error {
	color: var(--gn-danger);
}

.gn-home-enquete__obrigado {
	align-items: center;
	background: var(--gn-surface);
	border-radius: 8px;
	display: none;
	flex-direction: column;
	gap: 6px;
	justify-content: center;
	padding: 8px 12px;
	text-align: center;
}

.gn-home-enquete__obrigado.is-visible {
	display: flex;
}

.gn-home-enquete__obrigado.is-overlay {
	inset: auto;
	min-height: 7rem;
	padding: 1.25rem 12px;
	position: static;
}

.gn-home-enquete__obrigado-icone {
	align-items: center;
	background: var(--gn-primary-soft);
	border-radius: 50%;
	color: var(--gn-success);
	display: flex;
	font-size: 1.35rem;
	font-weight: 700;
	height: 52px;
	justify-content: center;
	width: 52px;
}

.gn-home-enquete__obrigado-titulo {
	color: var(--gn-text);
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0;
}

.gn-home-enquete__obrigado-texto {
	color: var(--gn-text);
	font-size: 0.9rem;
	line-height: 1.45;
	margin: 0;
	max-width: 36rem;
}

.gn-home-enquete__data-badge {
	background: var(--gn-warning-bg);
	border-radius: 4px;
	color: var(--gn-warning-text);
	display: inline-block;
	font-weight: 700;
	padding: 2px 8px;
}

.gn-home-enquete__voto-escolha {
	align-items: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-text);
	display: inline-flex;
	font-size: 0.825rem;
	font-weight: 600;
	gap: 10px;
	padding: 6px 14px 6px 8px;
}

.gn-home-enquete__voto-escolha[hidden] {
	display: none;
}

.gn-home-enquete__voto-escolha img {
	border-radius: 50%;
	display: block;
	height: 28px;
	object-fit: cover;
	width: 28px;
}

.gn-home-enquete__resultado-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	width: 100%;
}

.gn-home-enquete__resultado-item {
	align-items: center;
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	display: flex;
	flex-direction: row;
	gap: 12px;
	padding: 10px 14px;
}

.gn-home-enquete__resultado-item--lider {
	background: var(--gn-primary-soft);
	border-color: var(--gn-accent);
}

.gn-home-enquete__resultado-avatar {
	border: 2px solid var(--gn-surface);
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(28, 53, 85, 0.12);
	flex-shrink: 0;
	height: 44px;
	object-fit: cover;
	width: 44px;
}

.gn-home-enquete__resultado-corpo {
	flex: 1;
	min-width: 0;
}

.gn-home-enquete__resultado-topo {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	margin-bottom: 6px;
}

.gn-home-enquete__resultado-item .gn-home-enquete__nome {
	align-items: center;
	display: flex;
	gap: 6px;
	min-width: 0;
}

.gn-home-enquete__lider-tag {
	background: var(--gn-success);
	border-radius: 4px;
	color: var(--gn-inverse);
	flex-shrink: 0;
	font-size: 0.65rem;
	font-weight: 800;
	padding: 1px 6px;
	text-transform: uppercase;
}

.gn-home-enquete__pct {
	color: var(--gn-accent-solid);
	flex-shrink: 0;
	font-size: 0.9rem;
	font-weight: 800;
}

.gn-home-enquete__resultado-item--lider .gn-home-enquete__pct {
	color: var(--gn-success);
}

.gn-home-enquete__bar {
	background: var(--gn-border);
	border-radius: 999px;
	display: block;
	height: 7px;
	overflow: hidden;
	width: 100%;
}

.gn-home-enquete__bar-fill {
	background: var(--gn-accent-solid);
	border-radius: 999px;
	display: block;
	height: 100%;
	min-width: 0;
	transition: width 1s ease;
}

.gn-home-enquete__resultado-item--lider .gn-home-enquete__bar-fill {
	background: var(--gn-success);
}

@media (max-width: 768px) {
	.gn-home-enquete__header {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.gn-home-enquete__card {
		flex: 0 0 calc((100% - 16px) / 3);
		min-width: 108px;
	}

	.gn-home-enquete__votar {
		justify-content: center;
	}

	.gn-home-enquete__resultado-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.gn-home-enquete__titulo {
		flex-basis: 100%;
		font-size: 1.05rem;
	}

	.gn-home-enquete__descricao {
		font-size: 0.875rem;
		max-width: 100%;
	}

	.gn-home-enquete__passo,
	.gn-home-enquete__disclaimer {
		white-space: normal;
	}

	.gn-home-enquete__disclaimer {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* ================================================================
   HEADER — compacto (~60px top-wrap + ~60px header-wrap)
   ================================================================ */

.top-wrap {
	box-sizing: border-box;
	min-height: 72px;
	padding: 16px 0;
}

.top-wrap .logo {
	margin-top: 0;
}

.top-wrap .logo img {
	display: block;
	height: auto;
	max-height: 44px;
	width: auto;
}

.top-wrap .follow-title {
	font-size: 13px;
	line-height: 32px;
	padding-bottom: 0;
}

.top-wrap .follow-title:after {
	font-size: 10px;
	height: 18px;
	line-height: 16px;
	top: 6px;
	width: 18px;
}

.top-wrap .social-links {
	top: 36px;
}

.top-wrap .login-popup a {
	font-size: 16px;
	font-weight: 600;
	line-height: 40px;
}

.top-wrap .signup-popup a {
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	padding: 10px 22px;
}

.gn-auth-user-toggle {
	line-height: 40px;
}

.gn-auth-avatar,
.gn-auth-avatar--guest {
	height: 36px;
	width: 36px;
}

.gn-auth-avatar--guest {
	font-size: 15px;
}

.top-wrap .member-options {
	top: 38px;
}

.header-wrap {
	border-bottom: none;
	min-height: 60px;
}

#mainnav > ul > li {
	padding: 0 18px;
}

#mainnav > ul > li > a {
	height: 58px;
	line-height: 58px;
}

#mainnav .sub-menu {
	top: 52px;
}

/* MENU — fonte única (decisao_layouts.md etapa 3). Layout (altura, overlay, trilho) intacto. */
#mainnav > ul > li > a,
#mainnav-mobi ul > li > a,
#mainnav-mobi .gn-mobi-nav-label {
	font-family: var(--gn-font-ui);
	font-size: var(--gn-type-nav);
	font-weight: 700;
	color: var(--gn-nav-color);
	transition: none;
}

#mainnav > ul > li > a:hover,
#mainnav > ul > li > a.active,
#mainnav-mobi ul > li > a:hover {
	color: var(--gn-nav-color);
	font-weight: 700;
	transition: none;
}

.header-wrap #searchform {
	height: 36px;
	margin-top: 11px;
}

.header-wrap #searchform #s {
	font-size: 16px;
	height: 36px;
}

.header-wrap #searchform #searchsubmit {
	height: 36px;
	line-height: 36px;
}

.btn-menu {
	height: 68px;
	top: -16px;
}

.btn-menu:before {
	top: 22px;
}

.hide-navigation .top-wrap {
	padding: 10px 0;
}

@media (max-width: 991px) {
	#mainnav > ul > li > a {
		height: 58px;
		line-height: 58px;
	}
}

@media (max-width: 767px) {
	.top-wrap {
		min-height: 64px;
		padding: 12px 0;
	}

	.top-wrap .logo {
		margin-bottom: 0;
	}

	.top-wrap .logo img {
		max-height: 40px;
	}

	.btn-menu {
		bottom: 0;
		height: 100%;
		right: 0;
		top: 0;
	}

	.btn-menu:before {
		top: 50%;
		transform: translateY(-50%);
	}

	.header-wrap #searchform #s {
		height: 58px;
	}
}

@media (max-width: 479px) {
	.top-wrap {
		min-height: 60px;
		padding: 10px 0;
	}

	.top-wrap .logo img {
		max-height: 36px;
	}

	.top-wrap .logo {
		max-width: 240px;
	}

	.btn-menu {
		bottom: 0;
		height: 100%;
		right: 0;
		top: 0;
	}

	.btn-menu:before {
		top: 50%;
		transform: translateY(-50%);
	}
}

/* ================================================================
   CMS PUBLICIDADE — /conta/editor/publicidade
   ================================================================ */

.gn-admin-dashboard .gn-ad-cms {
	margin-top: 0.25rem;
}

.gn-admin-dashboard .gn-logo-mask-cms {
	margin-bottom: 1.25rem;
}

.gn-logo-mask-cms__grid {
	display: grid;
	gap: 1.75rem;
	grid-template-columns: 1fr;
}

.gn-logo-mask-cms__pane {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.gn-logo-mask-cms__subtitle {
	color: var(--gn-text);
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.gn-logo-mask-cms__preview {
	aspect-ratio: 16 / 9;
	background-color: #f4f4f4;
	background-image:
		linear-gradient(45deg, #cfcfcf 25%, transparent 25%),
		linear-gradient(-45deg, #cfcfcf 25%, transparent 25%),
		linear-gradient(45deg, transparent 75%, #cfcfcf 75%),
		linear-gradient(-45deg, transparent 75%, #cfcfcf 75%);
	background-position: 0 0, 0 10px, 10px -10px, -10px 0;
	background-size: 20px 20px;
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	height: auto;
	margin: 0 0 1rem;
	max-width: none;
	overflow: hidden;
	width: 100%;
}

.gn-logo-mask-cms__preview img {
	display: block;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.gn-logo-mask-cms__form {
	margin: 0;
}

.gn-logo-mask-cms__toolbar {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 1rem;
}

.gn-logo-mask-cms__restore {
	display: inline-flex;
	margin: 0;
}

@media (min-width: 992px) {
	.gn-logo-mask-cms__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.gn-ad-cms__grid {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	margin-top: 0.75rem;
}

.gn-ad-cms__card {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: var(--gn-card-radius);
	padding: 0.65rem 0.95rem 0.7rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.gn-ad-cms__card.is-expanded {
	background: var(--gn-surface);
	border-color: var(--gn-border);
	box-shadow: var(--gn-card-shadow);
}

.gn-ad-cms__card-header {
	align-items: flex-start;
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	margin-bottom: 0.3rem;
}

.gn-ad-cms__card-heading {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 0.65rem;
	min-width: 0;
}

.gn-ad-cms__card-title {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}

.gn-ad-cms__card-desc {
	color: var(--gn-muted);
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0 0 0.5rem;
}

.gn-ad-cms__card-meta {
	color: var(--gn-muted);
	font-size: 0.8125rem;
	line-height: 1.3;
	margin: 0 0 0.35rem;
}

.gn-ad-cms__toggle {
	align-items: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	font-size: 0.8rem;
	font-weight: 600;
	gap: 0.4rem;
	line-height: 1;
	padding: 0.45rem 0.75rem;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.gn-ad-cms__toggle:hover {
	background: var(--gn-bg);
	border-color: var(--gn-border);
}

.gn-ad-cms__toggle .fa {
	font-size: 0.7rem;
	transition: transform 0.2s ease;
}

.gn-ad-cms__card.is-expanded .gn-ad-cms__toggle .fa {
	transform: rotate(180deg);
}

.gn-ad-cms__preview {
	background: var(--gn-surface);
	border: 1px solid var(--gn-bg);
	border-radius: 8px;
	padding: 0.4rem;
	text-align: center;
}

.gn-ad-cms__preview img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-height: 140px;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

/* Prévia 3:2 — intersticial do leitor de slides (mesmo frame da apresentação) */
.gn-ad-cms__preview--ratio-3x2 {
	aspect-ratio: 3 / 2;
	max-width: 320px;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

.gn-ad-cms__preview--ratio-3x2 img {
	height: 100%;
	max-height: none;
	object-fit: cover;
	width: 100%;
}

/* Prévia 16:9 — publicidade que ainda é 16:9 (D3); classificados no Passo 4 */
.gn-ad-cms__preview--ratio-16x9 {
	aspect-ratio: 16 / 9;
	max-width: 320px;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

.gn-ad-cms__preview--ratio-16x9 img {
	height: 100%;
	max-height: none;
	object-fit: cover;
	width: 100%;
}

/* Prévia A4 — intersticial da galeria Giro 360 (mesmo frame do stage paisagem; classe legado --ratio-5x4) */
.gn-ad-cms__preview--ratio-5x4 {
	aspect-ratio: 297 / 210;
	max-width: 320px;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

.gn-ad-cms__preview--ratio-5x4 img {
	height: 100%;
	max-height: none;
	object-fit: cover;
	width: 100%;
}

.gn-ad-cms__details {
	border-top: 1px solid var(--gn-bg);
	margin-top: 0.55rem;
	padding-top: 0.55rem;
}

.gn-ad-cms__form .gn-profile-form-group {
	margin-bottom: 0.7rem;
}

.gn-ad-cms__details[hidden] {
	display: none;
}

.gn-ad-cms__form input[type="url"],
.gn-ad-cms__form input[type="text"] {
	box-sizing: border-box;
	max-width: 100%;
	width: 100%;
}

.gn-ad-cms__file-input {
	box-sizing: border-box;
	display: block;
	font-size: 0.9375rem;
	max-width: 100%;
	width: 100%;
}

.gn-ad-cms__upload-hint {
	color: var(--gn-muted);
	font-size: 0.8125rem;
	line-height: 1.45;
	margin: 0.35rem 0 0;
}

.gn-ad-cms__upload-status {
	color: var(--gn-primary);
	font-size: 0.875rem;
	line-height: 1.45;
	margin: 0.5rem 0 0;
	min-height: 1.25rem;
}

.gn-ad-cms__upload-status.is-error {
	color: var(--gn-danger);
}

.gn-ad-cms__active-label {
	align-items: center;
	display: inline-flex;
	font-size: 0.9375rem;
	gap: 0.5rem;
}

.gn-ad-cms__submit {
	margin-top: 0.25rem;
}

.gn-ad-cms__select {
	box-sizing: border-box;
	display: block;
	font-size: 0.9375rem;
	max-width: 100%;
	width: 100%;
}

.gn-ad-cms__fade-preview {
	border-radius: 6px;
	color: var(--gn-muted);
	font-size: 0.8125rem;
	height: 40px;
	line-height: 40px;
	margin-bottom: 1.25rem;
	text-align: center;
}

.gn-ad-cms__hex-label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	margin: 0.75rem 0 0.35rem;
}

.gn-ad-cms__hex-input {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	max-width: 8rem;
}

/* CMS ENQUETES — /conta/editor/enquetes (E2) */
.gn-enquete-cms__grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
	margin-top: 1.25rem;
}

.gn-enquete-cms__heading-desc {
	color: var(--gn-muted);
	font-weight: 400;
	margin-left: 0.4em;
}

.gn-enquete-cms__table {
	min-width: 0;
	margin-top: 0.75rem;
}

.gn-enquete-cms__table .gn-ad-cms__details {
	border-top: 0;
	margin-top: 0;
	padding-top: 0;
}

.gn-enquete-cms__title {
	display: block;
	font-weight: 600;
}

.gn-enquete-cms__table .gn-enquete-cms__heading-desc {
	display: block;
	margin-left: 0;
	margin-top: 0.2rem;
}

.gn-enquete-cms__dash {
	align-items: stretch;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.5rem;
	margin: 0 0 0.75rem;
	max-height: 100px;
	overflow: hidden;
}

.gn-enquete-cms__dash-item {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	display: flex;
	flex: 1 1 6.5rem;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 0.3rem 0.5rem;
}

.gn-enquete-cms__dash-label {
	color: var(--gn-muted);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.gn-enquete-cms__dash-value {
	color: var(--gn-text);
	font-size: 0.85rem;
	font-weight: 800;
	line-height: 1.2;
}

.gn-enquete-cms__dates {
	display: grid;
	gap: 0.75rem 1rem;
	grid-template-columns: 1fr 1fr;
}

.gn-enquete-cms__dates .gn-profile-form-group {
	margin-bottom: 0;
}

.gn-enquete-cms__dates input[type="datetime-local"] {
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 0.9375rem;
	height: 42px;
	padding: 0 12px;
	width: 100%;
}

.gn-enquete-cms__flags {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	margin: 0.85rem 0 0.35rem;
}

.gn-enquete-cms__flags .gn-profile-form-group {
	margin-bottom: 0;
}

.gn-enquete-cms__opcoes-title {
	font-size: 1rem;
	font-weight: 700;
	margin: 1.5rem 0 0.75rem;
}

.gn-enquete-cms__row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.5rem;
	margin-bottom: 0.65rem;
}

.gn-enquete-cms__add {
	background: var(--gn-bg);
	border: 1px dashed var(--gn-border);
	border-radius: 8px;
	flex-wrap: nowrap;
	margin-bottom: 1rem;
	padding: 0.5rem 0.65rem 1.35rem;
}

.gn-enquete-cms__home-wrap {
	flex: 0 0 auto;
	position: relative;
}

.gn-enquete-cms__opcoes-list {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.gn-enquete-cms__opcao {
	align-items: flex-start;
	display: flex;
	flex: 0 0 auto;
	gap: 0.35rem;
	margin: 0;
}

.gn-enquete-cms__opcao-edit {
	display: block;
	flex: 0 0 auto;
	min-width: 0;
}

.gn-enquete-cms__opcao-actions {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 0.2rem;
}

.gn-enquete-cms__upload {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 0.35rem;
	position: relative;
}

.gn-enquete-cms__upload-caption {
	color: var(--gn-muted);
	font-size: 0.8125rem;
	font-weight: 600;
}

.gn-enquete-cms__upload-thumb {
	border: 1px solid var(--gn-border);
	border-radius: 4px;
	display: none;
	height: 28px;
	object-fit: cover;
	width: 28px;
}

.gn-enquete-cms__upload-thumb:not([hidden]) {
	display: block;
}

.gn-enquete-cms__file-sr {
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.gn-enquete-cms__row-input {
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	box-sizing: border-box;
	flex: 1 1 8rem;
	font-size: 0.875rem;
	height: 36px;
	max-width: 16rem;
	min-width: 7rem;
	padding: 0 10px;
}

.gn-enquete-cms__row-input:focus {
	border-color: var(--gn-accent);
	box-shadow: 0 0 0 3px rgba(36, 90, 130, 0.15);
	outline: none;
}

.gn-enquete-cms__icon {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 1.05rem;
	height: 36px;
	justify-content: center;
	line-height: 1;
	margin: 0;
	padding: 0;
	text-decoration: none;
	transition: background 0.12s, opacity 0.12s;
	width: 36px;
}

.gn-enquete-cms__icon:hover,
.gn-enquete-cms__icon:focus-visible {
	background: var(--gn-surface);
	outline: none;
	text-decoration: none;
}

.gn-enquete-cms__icon:focus-visible {
	box-shadow: 0 0 0 2px rgba(28, 53, 85, 0.35);
}

.gn-enquete-cms__icon:disabled {
	cursor: not-allowed;
	opacity: 0.35;
}

.gn-enquete-cms__icon--upload {
	color: var(--gn-accent-solid);
}

.gn-enquete-cms__icon--edit {
	color: var(--gn-accent-solid);
}

.gn-enquete-cms__icon--save {
	color: var(--gn-success);
}

.gn-enquete-cms__icon--up {
	color: var(--gn-primary);
}

.gn-enquete-cms__icon--down {
	color: var(--gn-accent);
}

.gn-enquete-cms__icon--delete {
	color: var(--gn-danger);
}

.gn-enquete-cms__home-wrap .gn-home-enquete__card {
	cursor: default;
	flex: 0 0 165px;
	height: auto;
	min-width: 150px;
	transform: none;
	width: 165px;
}

.gn-enquete-cms__home-wrap .gn-home-enquete__card:hover,
.gn-enquete-cms__home-wrap .gn-home-enquete__card:focus-within {
	box-shadow: none;
	transform: none;
}

.gn-enquete-cms__home-card .gn-home-enquete__foto {
	cursor: pointer;
}

.gn-enquete-cms__home-nome,
.gn-enquete-cms__home-sub {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	box-sizing: border-box;
	display: block;
	height: auto;
	line-height: 1.2;
	min-width: 0;
	overflow: visible;
	padding: 0;
	text-align: center;
	white-space: normal;
	width: 100%;
}

.gn-enquete-cms__home-nome {
	color: var(--gn-text);
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1.15;
}

.gn-enquete-cms__home-sub {
	color: var(--gn-muted);
	font-size: 0.62rem;
	font-weight: 600;
	margin-top: 2px;
}

.gn-enquete-cms__home-nome:focus,
.gn-enquete-cms__home-sub:focus {
	outline: 1px dashed var(--gn-accent);
	outline-offset: 1px;
}

.gn-enquete-cms__opcao-votos {
	color: var(--gn-muted);
	display: block;
	font-size: 9px;
	font-weight: 700;
	margin-top: 4px;
}

.gn-enquete-cms__upload .gn-ad-cms__upload-status,
.gn-enquete-cms__home-wrap .gn-ad-cms__upload-status {
	left: 0;
	margin: 0.15rem 0 0;
	position: absolute;
	top: 100%;
	white-space: nowrap;
	z-index: 2;
}

.gn-enquete-cms__upload .gn-ad-cms__upload-status:empty,
.gn-enquete-cms__home-wrap .gn-ad-cms__upload-status:empty {
	display: none;
}

@media (max-width: 640px) {
	.gn-enquete-cms__dates {
		grid-template-columns: 1fr;
	}

	.gn-enquete-cms__add {
		flex-wrap: wrap;
	}

	.gn-enquete-cms__row-input {
		max-width: none;
	}

	.gn-enquete-cms__opcoes-list {
		flex-direction: column;
	}

	.gn-enquete-cms__opcao,
	.gn-enquete-cms__opcao-edit,
	.gn-enquete-cms__home-wrap,
	.gn-enquete-cms__home-wrap .gn-home-enquete__card,
	.gn-enquete-cms__home-card {
		flex-basis: 100%;
		width: 100%;
	}
}

.gn-advertiser-dashboard__lead {
	margin: 0 0 1rem;
}

.gn-advertiser-dashboard__scope {
	margin: 0 0 1rem;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #4a5568;
	background: #f7f5f0;
	border-left: 3px solid #1c3555;
}

.gn-advertiser-glossary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0 0 1.5rem;
	padding: 0;
}

@media (max-width: 720px) {
	.gn-advertiser-glossary {
		grid-template-columns: 1fr;
	}
}

.gn-advertiser-glossary__item {
	margin: 0;
	padding: 0.65rem 0.75rem;
	background: #fff;
	border: 1px solid #e3dfd7;
}

.gn-advertiser-glossary__item dt {
	margin: 0 0 0.2rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #1c3555;
}

.gn-advertiser-glossary__item dd {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.4;
	color: #5c564c;
}

.gn-advertiser-family {
	margin: 0 0 1.75rem;
}

.gn-advertiser-family__header {
	margin: 0 0 1rem;
}

.gn-advertiser-family__title {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: #1c3555;
}

.gn-advertiser-family__lead {
	margin: 0;
	max-width: 42rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #6f675a;
}

.gn-advertiser-family--publications {
	padding-top: 0.5rem;
	border-top: 1px solid #e3dfd7;
}

.gn-advertiser-period {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	margin-top: 0.35rem;
}

.gn-advertiser-period__label {
	font-size: 0.8rem;
	font-weight: 600;
	color: #6f675a;
}

.gn-advertiser-period__select {
	min-width: 8.5rem;
	padding: 0.35rem 0.55rem;
	border: 1px solid #d8d2c6;
	border-radius: 4px;
	background: #fff;
	font-size: 0.9rem;
	color: #1c3555;
}

.gn-advertiser-dashboard__table-wrap {
	overflow-x: auto;
}

.gn-advertiser-dashboard__table {
	border-collapse: collapse;
	font-size: 0.9375rem;
	width: 100%;
}

.gn-advertiser-dashboard__table th,
.gn-advertiser-dashboard__table td {
	border-bottom: 1px solid var(--gn-border);
	padding: 0.65rem 0.5rem;
	text-align: left;
	vertical-align: top;
}

.gn-advertiser-dashboard__table th {
	color: var(--gn-muted);
	font-size: 0.8125rem;
	font-weight: 600;
}

.gn-advertiser-kpis {
	margin-bottom: 1rem;
}

/* ================================================================
   PAINEL DO ANUNCIANTE — /conta/anunciante
   Hero: chrome de marca (.gn-admin-hero — navy / acento).
   ================================================================ */

.gn-advertiser-stats {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
	margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
	.gn-advertiser-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.gn-advertiser-stats--spaces {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.gn-advertiser-stats--publications {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		max-width: 48rem;
	}
}

.gn-advertiser-dashboard__empty--publications {
	border-style: dashed;
	background: #faf9f6;
}

.gn-advertiser-dashboard__empty--publications .gn-empty-state__title {
	margin: 0 0 0.4rem;
	font-size: 1rem;
	font-weight: 700;
	color: #1c3555;
}

.gn-advertiser-dashboard__empty--publications .gn-empty-state__text {
	margin: 0;
	max-width: 36rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #6f675a;
}

.gn-advertiser-stat-card {
	align-items: center;
	display: flex;
	gap: 1rem;
	padding: 1.25rem 1.35rem;
}

.gn-advertiser-stat-card--compact {
	padding: 0.9rem 1rem;
}

.gn-advertiser-stat-card__icon {
	align-items: center;
	background: rgba(36, 90, 130, 0.1);
	border-radius: 10px;
	color: var(--gn-accent-solid);
	display: flex;
	flex-shrink: 0;
	font-size: 1.5rem;
	height: 3rem;
	justify-content: center;
	width: 3rem;
}

.gn-advertiser-stat-card__icon--views {
	background: rgba(28, 53, 85, 0.1);
	color: var(--gn-primary);
}

.gn-advertiser-stat-card__icon--clicks {
	background: rgba(36, 90, 130, 0.15);
	color: var(--gn-accent-text);
}

.gn-advertiser-stat-card__icon--ctr {
	background: rgba(22, 163, 74, 0.1);
	color: var(--gn-success);
}

.gn-advertiser-stat-card__label {
	color: var(--gn-muted);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin: 0 0 0.25rem;
	text-transform: uppercase;
}

.gn-advertiser-stat-card__value {
	color: var(--gn-text);
	font-size: 1.65rem;
	font-weight: 700;
	line-height: 1.15;
	margin: 0;
}

.gn-advertiser-stat-card--compact .gn-advertiser-stat-card__value {
	font-size: 1.35rem;
}

.gn-advertiser-dashboard__grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
	margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
	.gn-advertiser-dashboard__grid {
		grid-template-columns: 1.65fr 1fr;
	}
}

.gn-advertiser-panel {
	margin-bottom: 1.25rem;
	padding: 1.25rem 1.35rem;
}

.gn-advertiser-panel__header {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.gn-advertiser-panel__title {
	color: var(--gn-text);
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0;
}

.gn-advertiser-panel__subtitle {
	color: var(--gn-muted);
	font-size: 0.875rem;
	line-height: 1.45;
	margin: 0.25rem 0 0;
}

.gn-advertiser-panel__note {
	color: var(--gn-muted);
	font-size: 0.8125rem;
	line-height: 1.45;
	margin: 1rem 0 0;
}

.gn-advertiser-badge {
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	padding: 0.25rem 0.65rem;
	text-transform: uppercase;
	white-space: nowrap;
}

.gn-advertiser-badge--demo {
	background: var(--gn-warning-bg);
	color: var(--gn-warning-text);
}

.gn-advertiser-chart-wrap {
	height: 320px;
	position: relative;
	width: 100%;
}

.gn-advertiser-insights {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-advertiser-insights__item {
	border-bottom: 1px solid var(--gn-bg);
	padding: 0.75rem 0;
}

.gn-advertiser-insights__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.gn-advertiser-insights__label {
	color: var(--gn-muted);
	display: block;
	font-size: 0.75rem;
	margin-bottom: 0.2rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.gn-advertiser-insights__value {
	color: var(--gn-text);
	font-size: 0.9375rem;
	font-weight: 600;
}

.gn-advertiser-zones {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.gn-advertiser-zones {
		grid-template-columns: repeat(3, 1fr);
	}
}

.gn-advertiser-zone {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 10px;
	padding: 1rem;
}

.gn-advertiser-zone__bar {
	background: var(--gn-border);
	border-radius: 999px;
	height: 8px;
	margin-bottom: 0.75rem;
	overflow: hidden;
	position: relative;
}

.gn-advertiser-zone__bar::after {
	background: linear-gradient(90deg, var(--gn-accent-solid), var(--gn-detail-yellow));
	border-radius: 999px;
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: var(--gn-zone-pct, 50%);
}

.gn-advertiser-zone__name {
	color: var(--gn-text);
	font-size: 0.9rem;
	font-weight: 600;
	margin: 0 0 0.2rem;
}

.gn-advertiser-zone__meta {
	color: var(--gn-muted);
	font-size: 0.8125rem;
	margin: 0;
}

.gn-advertiser-dashboard__code {
	background: var(--gn-bg);
	border-radius: 4px;
	color: var(--gn-muted);
	font-size: 0.75rem;
	padding: 0.1rem 0.35rem;
}

.gn-advertiser-dashboard__thumb {
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	display: block;
	height: auto;
	max-height: 48px;
	max-width: 120px;
	object-fit: contain;
}

.gn-advertiser-status {
	border-radius: 999px;
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.2rem 0.55rem;
}

.gn-advertiser-status--active {
	background: var(--gn-primary-soft);
	color: var(--gn-success);
}

.gn-advertiser-status--inactive {
	background: var(--gn-bg);
	color: var(--gn-muted);
}

.gn-advertiser-dashboard__cta {
	background: var(--gn-accent-solid);
	border: none;
	border-radius: 8px;
	color: var(--gn-inverse);
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.55rem 1rem;
	text-decoration: none;
}

.gn-advertiser-dashboard__cta:hover {
	background: var(--gn-primary-dark);
	color: var(--gn-inverse);
	text-decoration: none;
}

.gn-advertiser-stats--compact {
	margin-bottom: 0.75rem;
}

/* ================================================================
   ASSISTENTE DE CRIAÇÃO DE CONTEÚDO (gn-album-wizard, gn-writer-page__actions)
   ================================================================ */

.gn-writer-page__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
}

.gn-writer-articles__new--secondary {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	color: var(--gn-muted);
}

.gn-writer-articles__new--secondary:hover,
.gn-writer-articles__new--secondary:focus-visible {
	background: var(--gn-bg);
	border-color: var(--gn-muted);
	color: var(--gn-text);
}

body.gn-album-wizard-open {
	overflow: hidden;
}

.gn-album-wizard {
	align-items: flex-start;
	box-sizing: border-box;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 1rem;
	position: fixed;
	z-index: 1200;
}

.gn-album-wizard[hidden] {
	display: none !important;
}

.gn-album-wizard__panel[hidden] {
	display: none !important;
}

.gn-album-wizard__backdrop {
	background: rgba(17, 24, 39, 0.55);
	inset: 0;
	position: fixed;
}

.gn-album-wizard__dialog {
	background: var(--gn-surface);
	border-radius: 12px;
	box-shadow: var(--gn-modal-shadow);
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 2rem);
	max-height: calc(100dvh - 2rem);
	max-width: 560px;
	overflow: hidden;
	position: relative;
	width: 100%;
	z-index: 1;
}

.gn-album-wizard__header {
	align-items: center;
	border-bottom: 1px solid var(--gn-border);
	display: flex;
	flex-shrink: 0;
	gap: 0.75rem;
	justify-content: space-between;
	padding: 1rem 1.25rem 0.85rem;
}

.gn-album-wizard__title {
	color: var(--gn-text);
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0;
}

.gn-album-wizard__close {
	background: transparent;
	border: none;
	border-radius: 6px;
	color: var(--gn-muted);
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	padding: 0.15rem 0.45rem;
}

.gn-album-wizard__close:hover,
.gn-album-wizard__close:focus-visible {
	background: var(--gn-bg);
	color: var(--gn-text);
	outline: none;
}

.gn-album-wizard__steps {
	display: flex;
	flex-shrink: 0;
	gap: 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0.85rem 1.25rem 0;
}

.gn-album-wizard__step {
	align-items: center;
	color: var(--gn-muted);
	display: flex;
	flex: 1;
	flex-direction: column;
	font-size: 0.7rem;
	gap: 0.2rem;
	text-align: center;
}

.gn-album-wizard__step-num {
	align-items: center;
	border: 2px solid var(--gn-border);
	border-radius: 50%;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 700;
	height: 1.6rem;
	justify-content: center;
	width: 1.6rem;
}

.gn-album-wizard__step[data-active="true"] {
	color: var(--gn-primary);
	font-weight: 600;
}

.gn-album-wizard__step[data-active="true"] .gn-album-wizard__step-num {
	background: var(--gn-primary);
	border-color: var(--gn-primary);
	color: var(--gn-inverse);
}

.gn-album-wizard__step[data-done="true"]:not([data-active="true"]) {
	color: var(--gn-muted);
}

.gn-album-wizard__step[data-done="true"]:not([data-active="true"]) .gn-album-wizard__step-num {
	background: var(--gn-primary-soft);
	border-color: var(--gn-detail-blue);
	color: var(--gn-primary-dark);
}

.gn-album-wizard__body {
	-webkit-overflow-scrolling: touch;
	flex: 1 1 auto;
	min-height: 0;
	overflow: auto;
	padding: 1rem 1.25rem 0.5rem;
}

.gn-album-wizard__panel {
	border: 1px solid var(--gn-border);
	border-radius: 10px;
	padding: 1rem;
}

.gn-album-wizard__lead {
	color: var(--gn-muted);
	font-size: 0.9rem;
	margin: 0 0 1rem;
}

.gn-album-wizard__field {
	margin-bottom: 0.85rem;
}

.gn-album-wizard__field label {
	color: var(--gn-muted);
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.gn-album-wizard__input,
.gn-album-wizard__textarea,
.gn-album-wizard__select {
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	box-sizing: border-box;
	font-size: 0.9rem;
	padding: 0.55rem 0.65rem;
	width: 100%;
}

.gn-album-wizard__input:focus,
.gn-album-wizard__textarea:focus,
.gn-album-wizard__select:focus {
	border-color: var(--gn-primary);
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 0;
}

.gn-album-wizard__input--invalid {
	border-color: var(--gn-danger);
}

.gn-album-wizard__input--invalid:focus {
	border-color: var(--gn-danger);
	outline-color: var(--gn-danger);
}

.gn-album-wizard__select option:disabled {
	color: var(--gn-muted);
	font-style: italic;
}

.gn-album-wizard__textarea {
	min-height: 5rem;
	resize: vertical;
}

.gn-album-wizard__textarea--body {
	min-height: 10rem;
}

.gn-album-wizard__preview-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.gn-album-wizard__field-hint {
	color: var(--gn-muted);
	font-size: 0.82rem;
	line-height: 1.45;
	margin: 0 0 0.45rem;
}

.gn-album-wizard__live-preview {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-muted);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
	min-height: 2.75rem;
	padding: 0.65rem 0.75rem;
}

.gn-album-wizard__live-preview--empty {
	color: var(--gn-muted);
	font-style: italic;
}

.gn-album-wizard__live-preview--slug code {
	background: transparent;
	color: inherit;
	font-size: 0.88rem;
	padding: 0;
	word-break: break-all;
}

.gn-album-wizard__cover-preview {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-top: 0.75rem;
}

.gn-album-wizard__cover-preview-img {
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	display: block;
	max-height: 220px;
	max-width: 100%;
	object-fit: cover;
}

.gn-album-wizard__cover-remove {
	background: transparent;
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	color: var(--gn-muted);
	cursor: pointer;
	font-size: 0.82rem;
	padding: 0.35rem 0.65rem;
}

.gn-album-wizard__hint {
	color: var(--gn-muted);
	font-size: 0.8rem;
	margin: 0.4rem 0 0;
}

.gn-album-wizard__placeholder {
	background: var(--gn-bg);
	border: 1px dashed var(--gn-border);
	border-radius: 8px;
	color: var(--gn-muted);
	font-size: 0.85rem;
	margin-top: 0.75rem;
	padding: 1.25rem;
	text-align: center;
}

.gn-album-wizard__upload-toolbar {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin-bottom: 0.5rem;
}

.gn-album-wizard__upload-hint {
	color: var(--gn-muted);
	font-size: 0.8rem;
}

.gn-album-wizard__footer {
	background: var(--gn-surface);
	border-top: 1px solid var(--gn-border);
	bottom: 0;
	display: flex;
	flex-shrink: 0;
	gap: 0.5rem;
	justify-content: flex-end;
	padding: 0.85rem 1.25rem max(1rem, env(safe-area-inset-bottom));
	position: sticky;
	z-index: 2;
}

.gn-album-wizard__review-summary {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	margin-bottom: 1rem;
	padding: 0.75rem 0.85rem;
}

.gn-album-wizard__review-field {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin-bottom: 0.5rem;
}

.gn-album-wizard__review-field:last-child {
	margin-bottom: 0;
}

.gn-album-wizard__review-label {
	color: var(--gn-muted);
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
}

.gn-album-wizard__review-value {
	color: var(--gn-text);
	font-size: 0.9rem;
}

.gn-album-wizard__review-value--muted {
	color: var(--gn-muted);
}

.gn-album-wizard__review-field--select {
	margin-bottom: 1rem;
}

.gn-album-wizard__placement-select {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	color: var(--gn-text);
	font-size: 0.9rem;
	padding: 0.45rem 0.6rem;
	width: 100%;
}

.gn-album-wizard__review-hint {
	color: var(--gn-muted);
	font-size: 0.78rem;
	line-height: 1.35;
	margin: 0.35rem 0 0;
}

.gn-album-wizard__review-instruction {
	color: var(--gn-muted);
	font-size: 0.85rem;
	margin: 0 0 0.65rem;
}

.gn-album-wizard__cover-reframe-btn {
	margin: 0 0 0.75rem;
}

.gn-album-wizard__review-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

.gn-album-wizard__submit-review-btn {
	width: 100%;
}

.gn-album-wizard__submit-review-btn:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.gn-writer-gallery-photos__add {
	cursor: pointer;
}

.gn-writer-gallery-photos__add:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.gn-writer-gallery-photos__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.gn-writer-gallery-photos__row {
	align-items: center;
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: auto 1fr auto;
	padding: 0.5rem;
}

.gn-writer-gallery-photos__thumb {
	border-radius: 6px;
	height: 60px;
	object-fit: cover;
	width: 80px;
}

/* Passo 4 — prévia A4 no form do anúncio (largura 96 px; a redação mantém 80×60). */
[data-anuncio-fotos] .gn-writer-gallery-photos__thumb {
	aspect-ratio: 297 / 210;
	height: auto;
	object-fit: cover;
	width: 96px;
}

[data-anuncio-fotos] .gn-writer-gallery-photos__row {
	align-items: center;
	gap: 0.2rem;
	grid-template-columns: 96px minmax(0, 1fr);
	padding: 0.45rem;
}

[data-anuncio-fotos] .gn-writer-gallery-edit__photo-meta {
	flex-direction: row;
	gap: 0.2rem;
	min-width: 0;
}

[data-anuncio-fotos] .gn-writer-gallery-photos__cover-row {
	flex-wrap: nowrap;
	gap: 0.2rem;
	grid-column: auto;
	min-width: 0;
	overflow: visible;
	width: 100%;
}

[data-anuncio-fotos] .gn-writer-gallery-photos__order-group {
	flex-shrink: 0;
	flex-wrap: nowrap;
	gap: 0.2rem;
	margin-left: 0;
}

[data-anuncio-fotos] .gn-writer-gallery-photos__cover-btn,
[data-anuncio-fotos] .gn-writer-gallery-photos__frame-btn,
[data-anuncio-fotos] .gn-writer-gallery-photos__order-btn,
[data-anuncio-fotos] .gn-writer-gallery-photos__remove {
	flex-shrink: 0;
	padding: 0.32rem 0.5rem;
	white-space: nowrap;
}

[data-anuncio-fotos] .gn-writer-gallery-photos__order-btn {
	min-width: 2rem;
	text-align: center;
}

[data-anuncio-fotos] .gn-writer-gallery-photos__remove {
	padding: 0.2rem 0.4rem;
}

.gn-writer-gallery-photos__remove {
	background: var(--gn-surface);
	border: 1px solid var(--gn-danger);
	border-radius: 6px;
	color: var(--gn-danger);
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1;
	padding: 0.2rem 0.5rem;
}

.gn-writer-gallery-photos__cover-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	grid-column: 2 / -1;
}

.gn-writer-gallery-photos__cover-btn,
.gn-writer-gallery-photos__frame-btn,
.gn-writer-gallery-photos__watermark-btn,
.gn-writer-gallery-photos__seo-btn,
.gn-writer-gallery-photos__order-btn {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	color: var(--gn-text);
	cursor: pointer;
	font-size: 0.8rem;
	line-height: 1.2;
	padding: 0.35rem 0.65rem;
}

.gn-writer-gallery-photos__frame-btn,
.gn-writer-gallery-photos__watermark-btn,
.gn-writer-gallery-photos__seo-btn {
	border-color: var(--gn-detail-blue);
	color: var(--gn-primary-dark);
}

.gn-writer-gallery-photos__cover-btn--active {
	background: var(--gn-warning-bg);
	border-color: var(--gn-detail-yellow);
	color: var(--gn-warning-text);
	font-weight: 600;
}

.gn-writer-gallery-photos__cover-btn:hover,
.gn-writer-gallery-photos__cover-btn:focus,
.gn-writer-gallery-photos__cover-btn:focus-visible,
.gn-writer-gallery-photos__cover-btn:active,
.gn-writer-gallery-photos__frame-btn:hover,
.gn-writer-gallery-photos__frame-btn:focus,
.gn-writer-gallery-photos__frame-btn:focus-visible,
.gn-writer-gallery-photos__frame-btn:active,
.gn-writer-gallery-photos__watermark-btn:hover,
.gn-writer-gallery-photos__watermark-btn:focus,
.gn-writer-gallery-photos__watermark-btn:focus-visible,
.gn-writer-gallery-photos__watermark-btn:active,
.gn-writer-gallery-photos__seo-btn:hover,
.gn-writer-gallery-photos__seo-btn:focus,
.gn-writer-gallery-photos__seo-btn:focus-visible,
.gn-writer-gallery-photos__seo-btn:active,
.gn-writer-gallery-photos__order-btn:hover,
.gn-writer-gallery-photos__order-btn:focus,
.gn-writer-gallery-photos__order-btn:focus-visible,
.gn-writer-gallery-photos__order-btn:active {
	background: var(--gn-primary-soft);
	background-color: var(--gn-primary-soft);
	border-color: var(--gn-detail-blue);
	color: var(--gn-primary-dark);
	outline: none;
}

.gn-writer-gallery-photos__cover-btn--active:hover,
.gn-writer-gallery-photos__cover-btn--active:focus,
.gn-writer-gallery-photos__cover-btn--active:focus-visible,
.gn-writer-gallery-photos__cover-btn--active:active {
	background: var(--gn-warning-bg);
	background-color: var(--gn-warning-bg);
	border-color: var(--gn-detail-yellow);
	color: var(--gn-warning-text);
}

.gn-writer-gallery-photos__remove:hover,
.gn-writer-gallery-photos__remove:focus,
.gn-writer-gallery-photos__remove:focus-visible,
.gn-writer-gallery-photos__remove:active {
	background: var(--gn-surface);
	background-color: var(--gn-surface);
	border-color: var(--gn-danger);
	color: var(--gn-danger);
}

.gn-writer-gallery-photos__frame-btn:disabled,
.gn-writer-gallery-photos__cover-btn:disabled,
.gn-writer-gallery-photos__watermark-btn:disabled,
.gn-writer-gallery-photos__seo-btn:disabled,
.gn-writer-gallery-photos__order-btn:disabled {
	cursor: not-allowed;
	opacity: 0.6;
}

.gn-writer-gallery-photos__order-group {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-left: auto;
}

.gn-album-wizard .gn-writer-gallery-photos__cover-row {
	grid-column: auto;
}

.gn-album-wizard .gn-writer-gallery-photos__cover-btn,
.gn-album-wizard .gn-writer-gallery-photos__frame-btn,
.gn-album-wizard .gn-writer-gallery-photos__watermark-btn,
.gn-album-wizard .gn-writer-gallery-photos__order-btn,
.gn-album-wizard .gn-writer-gallery-photos__remove {
	border-radius: 2px;
}

.gn-writer-gallery-step__status {
	font-size: 0.85rem;
	margin: 0.5rem 0 0;
}

.gn-writer-gallery-step__status--loading {
	color: var(--gn-primary);
}

.gn-writer-gallery-step__status--error {
	color: var(--gn-danger);
}

/* Modelo de ocupado: Criar galeria + fotos do Criar anúncio. */
#albumWizardUploadStatus[hidden],
[data-anuncio-fotos] [data-anuncio-fotos-status][hidden] {
	display: none !important;
}

#albumWizardUploadStatus.gn-writer-gallery-step__status--loading,
[data-anuncio-fotos] [data-anuncio-fotos-status].gn-writer-gallery-step__status--loading {
	align-items: center;
	display: flex;
	gap: 0.5rem;
}

#albumWizardUploadStatus.gn-writer-gallery-step__status--loading::before,
[data-anuncio-fotos] [data-anuncio-fotos-status].gn-writer-gallery-step__status--loading::before {
	animation: gn-upload-spin 0.7s linear infinite;
	border: 2px solid color-mix(in srgb, var(--gn-primary) 28%, transparent);
	border-radius: 50%;
	border-top-color: var(--gn-primary);
	box-sizing: border-box;
	content: "";
	display: inline-block;
	flex-shrink: 0;
	height: 1.05rem;
	width: 1.05rem;
}

.gn-writer-gallery-photos__row--pending {
	pointer-events: none;
}

.gn-writer-gallery-photos__thumb--pending {
	background: var(--gn-primary-soft);
	border-radius: 6px;
	height: 60px;
	overflow: hidden;
	position: relative;
	width: 80px;
}

.gn-writer-gallery-photos__thumb--pending::after {
	animation: gn-upload-shimmer 1.15s ease-in-out infinite;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
	content: "";
	inset: 0;
	position: absolute;
}

.gn-writer-gallery-photos__pending-label {
	color: var(--gn-muted);
	font-size: 0.85rem;
}

[data-anuncio-fotos] .gn-writer-gallery-photos__thumb--pending {
	aspect-ratio: 297 / 210;
	height: auto;
	width: 96px;
}

@keyframes gn-upload-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes gn-upload-shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

@media (prefers-reduced-motion: reduce) {
	#albumWizardUploadStatus.gn-writer-gallery-step__status--loading::before,
	[data-anuncio-fotos] [data-anuncio-fotos-status].gn-writer-gallery-step__status--loading::before {
		animation: gn-upload-pulse 1.2s ease-in-out infinite;
		border-color: var(--gn-primary);
	}

	.gn-writer-gallery-photos__thumb--pending::after {
		animation: none;
		background: transparent;
	}
}

@keyframes gn-upload-pulse {
	50% {
		opacity: 0.35;
	}
}

@media (max-width: 480px) {
	.gn-album-wizard {
		align-items: stretch;
		padding: 0;
	}

	.gn-album-wizard__dialog {
		border-radius: 0;
		height: 100vh;
		height: 100dvh;
		max-height: 100vh;
		max-height: 100dvh;
		max-width: none;
		min-height: 100vh;
		min-height: 100dvh;
	}

	.gn-album-wizard__step-label {
		display: none;
	}

	.gn-writer-gallery-photos__row {
		grid-template-columns: auto 1fr;
	}

	.gn-writer-gallery-photos__remove {
	grid-column: 2;
	justify-self: end;
	}
}

/* ── Galeria pública (/giro360/{slug}) — G.6 tipografia home + carrossel ─ */
/* Largura = .container. Palco = resto da primeira ecrã (header em --gn-gallery-header-h; não 70dvh); cards F8; faixa 6 visíveis. */

body.gn-gallery-body {
	overflow-x: hidden;
}

body.gn-gallery-fs-open {
	overflow: hidden;
}

.gn-gallery-page {
	padding: 0;
}

.gn-gallery-fit {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	height: calc(100dvh - var(--gn-gallery-header-h, 5.5rem));
	max-height: calc(100dvh - var(--gn-gallery-header-h, 5.5rem));
	min-height: 0;
	padding-top: 0.35rem;
}

.gn-gallery-reader__meta {
	flex: 0 0 auto;
	margin-bottom: 0;
}

.gn-gallery-article {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
}

.gn-gallery-reader__stage {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
}

.gn-gallery-reader__chrome {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 0.2rem 0.75rem;
	justify-content: space-between;
	margin: 0.1rem 0 0;
	width: 100%;
}

.gn-gallery-page .gn-article-share {
	clear: none;
	flex: 1 1 auto;
	margin: 0;
	min-width: 0;
	padding: 0;
	text-align: left;
}

.gn-gallery-page .gn-article-share__label {
	margin: 0 0 0.2rem;
}

.gn-gallery-page .gn-article-back {
	margin: 0 0 0.25rem;
}

@media (max-width: 767px) {
	.gn-gallery-reader__chrome {
		align-items: flex-start;
		flex-direction: column;
	}
}

.gn-gallery-below {
	margin-top: 2rem;
	padding-bottom: 2.5rem;
}

.gn-gallery-page .gn-empty-state {
	margin: 2rem auto;
	padding: 2rem 1rem;
}

.gn-breadcrumb {
	color: var(--gn-muted);
	font-size: 0.85rem;
	margin-bottom: 1.5rem;
}

.gn-breadcrumb a {
	color: var(--gn-muted);
	text-decoration: none;
}

.gn-breadcrumb a:hover,
.gn-breadcrumb a:focus-visible {
	color: var(--gn-primary);
	text-decoration: none;
}

.gn-breadcrumb a:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-breadcrumb__sep {
	color: var(--gn-muted);
}

.gn-gallery-article__header { margin-bottom: 0.2rem; }

.gn-gallery-article__title {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.gn-gallery-fit .gn-gallery-article__title {
	margin: 0 0 0.15rem;
}

.gn-gallery-article__meta {
	color: var(--gn-muted);
	font-size: 0.9rem;
	margin: 0 0 0.75rem;
}

.gn-gallery-fit .gn-gallery-article__meta {
	margin: 0 0 0.3rem;
}

.gn-gallery-article__excerpt {
	color: var(--gn-muted);
	font-size: 1.05rem;
	line-height: 1.5;
	margin: 0 0 1rem;
}

.gn-gallery-article__description {
	color: var(--gn-muted);
	margin-bottom: 1.5rem;
}

.gn-gallery-article__title {
	font-family: var(--gn-font-display);
	font-size: var(--gn-type-h1);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.gn-gallery-fit .gn-gallery-article__title {
	font-size: clamp(1.2rem, 1.05rem + 1.1vw, 1.65rem);
	line-height: 1.15;
}

.gn-gallery-article__meta {
	font-family: var(--gn-font-ui);
	font-size: var(--gn-type-meta);
	font-weight: 600;
}

.gn-gallery-article__excerpt,
.gn-gallery-article__description {
	font-family: var(--gn-font-ui);
	font-size: var(--gn-type-excerpt);
	font-weight: normal;
	line-height: 1.5;
}

.gn-gallery-grid__caption {
	font-size: var(--gn-type-meta);
}

.gn-gallery-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	margin-bottom: 2rem;
}

.gn-gallery-grid__item { margin: 0; }

.gn-gallery-grid__link {
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.gn-gallery-grid__link:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-gallery-grid__photo {
	aspect-ratio: 297 / 210;
	border-radius: 0;
	display: block;
	object-fit: cover;
	transition: opacity 0.2s ease;
	width: 100%;
}

.gn-gallery-grid__link:hover .gn-gallery-grid__photo,
.gn-gallery-grid__link:focus-visible .gn-gallery-grid__photo {
	opacity: 0.92;
}

@media (prefers-reduced-motion: reduce) {
	.gn-gallery-grid__photo {
		transition: none;
	}
}

.gn-gallery-grid__caption {
	color: var(--gn-muted);
	font-size: 0.8rem;
	margin-top: 0.35rem;
	padding: 0 0.25rem;
}

.gn-gallery-viewer {
	--gn-gallery-stage-h: 100%;
	--gn-gallery-stage-w: 100%;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	margin: 0;
	max-width: 100%;
	min-height: 0;
	position: relative;
	width: 100%;
}

.gn-gallery-viewer__viewport {
	-webkit-overflow-scrolling: touch;
	flex: 1 1 auto;
	height: 100%;
	max-width: 100%;
	min-height: 0;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: none;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	touch-action: pan-x;
	width: 100%;
}

.gn-gallery-viewer__stage {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	position: relative;
	width: 100%;
}

.gn-gallery-viewer__viewport::-webkit-scrollbar {
	display: none;
}

.gn-gallery-viewer__track {
	display: flex;
	flex-flow: row nowrap;
	height: 100%;
}

.gn-gallery-viewer__slide {
	box-sizing: border-box;
	flex: 0 0 100%;
	height: 100%;
	margin: 0;
	max-width: 100%;
	min-width: 0;
	position: relative;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	width: var(--gn-gallery-stage-w, 100%);
}

.gn-gallery-viewer__frame {
	align-items: center;
	background: #111;
	box-sizing: border-box;
	display: flex;
	height: var(--gn-gallery-stage-h, 100%);
	justify-content: center;
	max-height: 100%;
	max-width: 100%;
	min-height: 0;
	overflow: hidden;
	width: 100%;
}

/* Palco inline: contain no stage fluido (header + faixa). Retrato e paisagem
   cabem inteiros; barras no fundo #111. Cover só na faixa de miniaturas. */
.gn-gallery-viewer__photo {
	-webkit-touch-callout: none;
	display: block;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	pointer-events: none;
	user-select: none;
	width: auto;
}

.gn-gallery-viewer__open,
.gn-gallery-viewer__open:hover,
.gn-gallery-viewer__open:focus,
.gn-gallery-viewer__open:focus-visible,
.gn-gallery-viewer__open:active {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	box-shadow: none;
	box-sizing: border-box;
	cursor: zoom-in;
	display: flex;
	height: 100%;
	justify-content: center;
	margin: 0;
	max-height: 100%;
	max-width: 100%;
	outline: none;
	padding: 0;
	touch-action: pan-x;
	width: 100%;
}

.gn-gallery-viewer__close {
	align-items: center;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-primary);
	cursor: pointer;
	display: none;
	flex: 0 0 auto;
	font-size: 1.15rem;
	height: 2.5rem;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: static;
	width: 2.5rem;
}

.gn-gallery-viewer__close:hover,
.gn-gallery-viewer__close:focus-visible {
	border-color: var(--gn-primary);
}

.gn-gallery-viewer__close:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-gallery-viewer--fs {
	--gn-gallery-stage-h: 100dvh;
	background: rgba(0, 0, 0, 0.94);
	height: 100dvh;
	inset: 0;
	margin: 0;
	max-width: none;
	position: fixed;
	width: 100%;
	z-index: 20000;
}

.gn-gallery-viewer--fs .gn-gallery-viewer__viewport,
.gn-gallery-viewer--fs .gn-gallery-viewer__track,
.gn-gallery-viewer--fs .gn-gallery-viewer__slide,
.gn-gallery-viewer--fs .gn-gallery-viewer__frame {
	height: 100%;
	max-height: 100dvh;
}

.gn-gallery-viewer--fs .gn-gallery-viewer__close {
	background: rgba(17, 17, 17, 0.72);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
	display: inline-flex;
}

.gn-gallery-viewer--fs .gn-gallery-viewer__btn {
	background: rgba(17, 17, 17, 0.72);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}

.gn-gallery-viewer--fs .gn-gallery-viewer__counter,
.gn-gallery-viewer--fs .gn-gallery-viewer__caption {
	color: #f2f2f2;
}

.gn-gallery-viewer--fs .gn-gallery-viewer__caption {
	background: rgba(17, 17, 17, 0.72);
}

.gn-gallery-viewer--fs .gn-gallery-viewer__frame {
	background: transparent;
}

.gn-gallery-viewer--fs .gn-gallery-viewer__open,
.gn-gallery-viewer--fs .gn-gallery-viewer__open:hover,
.gn-gallery-viewer--fs .gn-gallery-viewer__open:focus,
.gn-gallery-viewer--fs .gn-gallery-viewer__open:focus-visible,
.gn-gallery-viewer--fs .gn-gallery-viewer__open:active {
	background: transparent;
	border: 0;
	box-shadow: none;
	cursor: zoom-in;
	flex: 0 0 auto;
	outline: none;
	overflow: hidden;
}

.gn-gallery-viewer--fs[data-fs-applied="landscape"] .gn-gallery-viewer__open {
	aspect-ratio: 297 / 210;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	width: min(100%, calc(var(--gn-gallery-stage-h, 100dvh) * 297 / 210));
}

.gn-gallery-viewer--fs[data-fs-applied="portrait"] .gn-gallery-viewer__open {
	aspect-ratio: 210 / 297;
	height: min(100%, var(--gn-gallery-stage-h, 100dvh));
	max-height: 100%;
	max-width: 100%;
	width: auto;
}

/* Tela cheia: a foto inteira, na orientação nativa. Cover fica só na faixa
   inferior e no AD paisagem — não no palco. */
.gn-gallery-viewer--fs .gn-gallery-viewer__photo {
	height: auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	width: auto;
}

/* Segundo clique no modal: zoom via transform; arrastar / pinça / scroll. */
.gn-gallery-viewer--fs.is-zoomed .gn-gallery-viewer__viewport {
	overflow: hidden;
	overscroll-behavior: none;
}

.gn-gallery-viewer--fs.is-zoomed .gn-gallery-viewer__frame {
	overflow: hidden;
	overscroll-behavior: none;
	touch-action: none;
}

.gn-gallery-viewer--fs.is-zoomed .gn-gallery-viewer__open,
.gn-gallery-viewer--fs.is-zoomed .gn-gallery-viewer__open:hover,
.gn-gallery-viewer--fs.is-zoomed .gn-gallery-viewer__open:focus,
.gn-gallery-viewer--fs.is-zoomed .gn-gallery-viewer__open:focus-visible,
.gn-gallery-viewer--fs.is-zoomed .gn-gallery-viewer__open:active,
.gn-gallery-viewer--fs.is-zoomed[data-fs-applied="landscape"] .gn-gallery-viewer__open,
.gn-gallery-viewer--fs.is-zoomed[data-fs-applied="portrait"] .gn-gallery-viewer__open {
	aspect-ratio: auto;
	cursor: grab;
	height: 100%;
	max-height: 100%;
	max-width: 100%;
	overflow: hidden;
	touch-action: none;
	width: 100%;
}

.gn-gallery-viewer--fs.is-zoomed .gn-gallery-viewer__photo {
	cursor: grab;
	pointer-events: auto;
	transform-origin: center center;
	user-select: none;
	will-change: transform;
}

.gn-gallery-viewer--fs.is-zoomed.is-panning .gn-gallery-viewer__open,
.gn-gallery-viewer--fs.is-zoomed.is-panning .gn-gallery-viewer__photo {
	cursor: grabbing;
}

.gn-gallery-viewer.is-showing-ad .gn-gallery-viewer__viewport {
	overflow: hidden;
	pointer-events: none;
}

.gn-gallery-viewer.is-showing-ad .gn-gallery-actions__link,
.gn-gallery-viewer.is-showing-ad .gn-gallery-viewer__caption {
	display: none;
}

.gn-gallery-viewer__destaque {
	align-items: center;
	background: #111;
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 3;
}

.gn-gallery-viewer__destaque[hidden] {
	display: none;
}

.gn-gallery-viewer__destaque-figure {
	align-items: center;
	background: #111;
	box-sizing: border-box;
	display: flex;
	height: var(--gn-gallery-stage-h, 100%);
	justify-content: center;
	margin: 0;
	max-height: 100%;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.gn-gallery-viewer__destaque-link {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	max-height: 100%;
	max-width: 100%;
	width: 100%;
}

.gn-gallery-viewer__destaque-image {
	display: block;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	width: auto;
}

.gn-gallery-viewer__destaque-label {
	background: linear-gradient(transparent, rgba(0, 0, 0, .55));
	bottom: 0;
	color: #fff;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: .06em;
	left: 0;
	line-height: 1.3;
	margin: 0;
	padding: 1.35rem .75rem .45rem;
	position: absolute;
	right: 0;
	text-align: center;
	text-transform: uppercase;
	z-index: 2;
}

.gn-gallery-viewer--fs .gn-gallery-viewer__destaque,
.gn-gallery-viewer--fs .gn-gallery-viewer__stage,
.gn-gallery-viewer--fs .gn-gallery-viewer__destaque-figure {
	height: 100%;
	max-height: 100dvh;
}

.gn-gallery-viewer--fs[data-fs-applied="landscape"] .gn-gallery-viewer__destaque-figure {
	aspect-ratio: 297 / 210;
	height: auto;
	margin: 0 auto;
	max-height: 100%;
	max-width: 100%;
	width: min(100%, calc(var(--gn-gallery-stage-h, 100dvh) * 297 / 210));
}

.gn-gallery-viewer--fs[data-fs-applied="portrait"] .gn-gallery-viewer__destaque-figure {
	aspect-ratio: 210 / 297;
	height: min(100%, var(--gn-gallery-stage-h, 100dvh));
	margin: 0 auto;
	max-height: 100%;
	max-width: 100%;
	width: auto;
}

.gn-gallery-viewer--fs[data-fs-applied="landscape"] .gn-gallery-viewer__destaque-image {
	height: 100%;
	max-height: none;
	max-width: none;
	object-fit: cover;
	width: 100%;
}

.gn-gallery-viewer--fs[data-fs-applied="portrait"] .gn-gallery-viewer__destaque-image {
	height: 100%;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.gn-gallery-orient {
	display: none;
	gap: 0.35rem;
	left: 0.65rem;
	position: absolute;
	top: 0.65rem;
	z-index: 3;
}

.gn-gallery-viewer--fs .gn-gallery-orient {
	display: flex;
}

.gn-gallery-orient[hidden] {
	display: none !important;
}

.gn-gallery-orient__btn {
	align-items: center;
	background: rgba(17, 17, 17, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 600;
	gap: 0.35rem;
	height: 2.5rem;
	line-height: 1;
	padding: 0 0.75rem 0 0.6rem;
}

.gn-gallery-orient__btn:hover,
.gn-gallery-orient__btn:focus-visible,
.gn-gallery-orient__btn.is-active,
.gn-gallery-orient__btn[aria-pressed="true"] {
	border-color: #fff;
	background: rgba(17, 17, 17, 0.9);
}

.gn-gallery-orient__btn:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-gallery-orient__icon {
	background: transparent;
	border: 1.5px solid currentColor;
	border-radius: 2px;
	box-sizing: border-box;
	display: block;
	flex: 0 0 auto;
}

.gn-gallery-orient__icon--h {
	aspect-ratio: 297 / 210;
	height: 0.7rem;
	width: auto;
}

.gn-gallery-orient__icon--v {
	aspect-ratio: 210 / 297;
	height: 1rem;
	width: auto;
}

@media (max-width: 520px) {
	.gn-gallery-orient__label {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
	}

	.gn-gallery-orient__btn {
		justify-content: center;
		padding: 0;
		width: 2.5rem;
	}
}

.gn-gallery-actions {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 0.4rem;
	position: absolute;
	right: 0.65rem;
	top: 0.65rem;
	z-index: 4;
}

.gn-gallery-actions__link {
	align-items: center;
	appearance: none;
	background: rgba(17, 17, 17, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font-family: inherit;
	font-size: 1.15rem;
	height: 2.5rem;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: relative;
	text-decoration: none;
	width: 2.5rem;
}

.gn-gallery-actions__link:hover,
.gn-gallery-actions__link:focus-visible {
	border-color: #fff;
	color: #fff;
	text-decoration: none;
}

.gn-gallery-actions__link:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-gallery-actions__link.is-disabled {
	cursor: not-allowed;
	opacity: 0.45;
	pointer-events: none;
}

.gn-gallery-actions__like.is-liked {
	border-color: #ffe08a;
	color: #ffe08a;
}

.gn-gallery-actions__count {
	background: #fff;
	border-radius: 999px;
	bottom: -0.2rem;
	color: #111;
	font-size: 0.62rem;
	font-weight: 700;
	line-height: 1;
	min-width: 1rem;
	padding: 0.12rem 0.22rem;
	position: absolute;
	right: -0.2rem;
}

.gn-gallery-actions__like.is-liked .gn-gallery-actions__count {
	background: #ffe08a;
}

.gn-gallery-actions__label {
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.gn-gallery-actions__link[data-tooltip]::after {
	background: rgba(17, 17, 17, 0.92);
	border-radius: 6px;
	color: #fff;
	content: attr(data-tooltip);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.3;
	opacity: 0;
	padding: 0.4rem 0.6rem;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: calc(100% + 0.45rem);
	visibility: hidden;
	white-space: nowrap;
	z-index: 6;
}

@media (hover: hover) and (pointer: fine) {
	.gn-gallery-actions {
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.15s ease;
	}

	.gn-gallery-viewer:hover .gn-gallery-actions,
	.gn-gallery-viewer:focus-within .gn-gallery-actions,
	.gn-gallery-viewer--fs .gn-gallery-actions {
		opacity: 1;
		pointer-events: auto;
	}

	.gn-gallery-viewer.is-showing-ad .gn-gallery-actions__link {
		display: none;
	}

	.gn-gallery-actions__link[data-tooltip]:hover::after,
	.gn-gallery-actions__link[data-tooltip]:focus-visible::after {
		opacity: 1;
		visibility: visible;
	}

	.gn-gallery-actions__link,
	.gn-gallery-viewer--fs .gn-gallery-viewer__close {
		font-size: 1.35rem;
		height: 2.85rem;
		width: 2.85rem;
	}
}

@media (hover: none), (pointer: coarse), (max-width: 768px) {
	.gn-gallery-actions {
		opacity: 1;
		pointer-events: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gn-gallery-actions {
		transition: none;
	}
}

.gn-gallery-viewer__caption {
	background: rgba(255, 255, 255, 0.88);
	bottom: 0;
	box-sizing: border-box;
	color: var(--gn-muted);
	font-size: 0.8rem;
	left: 0;
	margin: 0;
	max-width: 100%;
	padding: 0.45rem 0.75rem;
	position: absolute;
	right: 0;
	text-align: center;
}

.gn-gallery-viewer__caption {
	font-size: var(--gn-type-meta);
}

.gn-gallery-viewer__counter {
	color: var(--gn-muted);
	font-size: 0.8rem;
	left: 0;
	margin: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0.45rem;
}

.gn-gallery-viewer__btn {
	align-items: center;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-primary);
	cursor: pointer;
	display: inline-flex;
	font-size: 1.15rem;
	height: 2.75rem;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.75rem;
	z-index: 2;
}

.gn-gallery-viewer__btn:hover,
.gn-gallery-viewer__btn:focus-visible {
	border-color: var(--gn-primary);
	color: var(--gn-primary-dark);
}

.gn-gallery-viewer__btn:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-gallery-viewer.is-showing-ad .gn-gallery-viewer__btn {
	pointer-events: auto;
	z-index: 5;
}

.gn-gallery-viewer__btn--prev {
	left: 0.35rem;
}

.gn-gallery-viewer__btn--next {
	right: 0.35rem;
}

@media (max-width: 1024px), (pointer: coarse) {
	.gn-gallery-viewer__btn {
		display: none;
	}

	.gn-gallery-viewer.is-showing-ad .gn-gallery-viewer__btn--next {
		display: inline-flex;
	}
}

@media (max-height: 500px) and (orientation: landscape) {
	.gn-gallery-fit {
		height: calc(100dvh - var(--gn-gallery-header-h, 3.75rem));
		max-height: calc(100dvh - var(--gn-gallery-header-h, 3.75rem));
		padding-top: 0.25rem;
	}

	.gn-breadcrumb {
		margin-bottom: 0.35rem;
	}

	.gn-gallery-article__header {
		margin-bottom: 0.15rem;
	}

	.gn-gallery-article__title,
	.gn-gallery-fit .gn-gallery-article__title {
		font-size: 1.15rem;
		margin-bottom: 0.1rem;
	}
}

.gn-gallery-viewer__fallback {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-gallery-viewer__fallback img {
	display: block;
	height: auto;
	margin: 0 auto 1rem;
	max-height: 100vh;
	max-width: 100%;
	object-fit: contain;
}

.gn-gallery-thumbs {
	--gn-gallery-visible-cards: 6;
	--gn-gallery-thumb-gap: 0.5rem;
	align-items: center;
	box-sizing: border-box;
	display: flex;
	flex: 0 0 auto;
	flex-wrap: nowrap;
	gap: 0.4rem;
	margin: 0.25rem 0 0.1rem;
	padding: 0;
	width: 100%;
}

.gn-gallery-thumbs__scroller {
	-webkit-overflow-scrolling: touch;
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	flex-flow: row nowrap;
	flex-wrap: nowrap;
	gap: var(--gn-gallery-thumb-gap);
	list-style: none;
	margin: 0;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0.2rem 0.15rem;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
}

.gn-gallery-thumbs__btn {
	align-items: center;
	background: #1a1a2e;
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 0.85rem;
	height: 2.25rem;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 2.25rem;
}

.gn-gallery-thumbs__btn:hover,
.gn-gallery-thumbs__btn:focus-visible {
	background: var(--gn-text);
}

.gn-gallery-thumbs__btn:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-gallery-thumb {
	appearance: none;
	background: transparent;
	border: 2px solid transparent;
	border-radius: 0;
	cursor: pointer;
	display: block;
	flex: 0 0 8rem;
	height: auto;
	margin: 0;
	max-width: none;
	padding: 0;
	scroll-snap-align: start;
	width: 8rem;
}

@media (min-width: 768px) {
	.gn-gallery-thumb {
		flex: 0 0 9rem;
		width: 9rem;
	}
}

@media (min-width: 1100px) {
	.gn-gallery-thumb {
		flex: 0 0 min(11rem, calc((100% - 5 * var(--gn-gallery-thumb-gap, 0.5rem)) / 6));
		width: min(11rem, calc((100% - 5 * var(--gn-gallery-thumb-gap, 0.5rem)) / 6));
	}
}

.gn-gallery-thumb img {
	aspect-ratio: 297 / 210;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.gn-gallery-thumb.is-active,
.gn-gallery-thumb[aria-current="true"] {
	border-color: var(--gn-primary);
}

.gn-gallery-thumb:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.gn-gallery-viewer__viewport {
		scroll-behavior: auto;
	}

	.gn-gallery-thumbs__scroller {
		scroll-behavior: auto;
	}
}

.gn-back-link { margin-top: 2rem; }

.gn-back-link a {
	color: var(--gn-muted);
	font-size: 0.9rem;
	text-decoration: none;
}

.gn-back-link a:hover,
.gn-back-link a:focus-visible {
	color: var(--gn-primary);
	text-decoration: none;
}

.gn-back-link a:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-gallery-removal {
	align-items: center;
	background: rgba(17, 17, 17, 0.55);
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	padding: 1rem;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 21000;
}

.gn-gallery-removal[hidden] {
	display: none;
}

.gn-gallery-removal__dialog {
	background: #fff;
	border-radius: 12px;
	box-shadow: var(--gn-modal-shadow);
	box-sizing: border-box;
	max-height: calc(100dvh - 2rem);
	max-width: 28rem;
	overflow: auto;
	padding: 1.35rem 1.25rem 1.2rem;
	position: relative;
	width: 100%;
}

.gn-gallery-removal__close {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	font-size: 1.15rem;
	height: 2.25rem;
	justify-content: center;
	position: absolute;
	right: 0.5rem;
	top: 0.5rem;
	width: 2.25rem;
}

.gn-gallery-removal__title {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 2rem 0.5rem 0;
}

.gn-gallery-removal__lead {
	color: var(--gn-muted);
	font-size: 0.92rem;
	line-height: 1.45;
	margin: 0 0 0.85rem;
}

.gn-gallery-removal__feedback {
	font-size: 1rem;
	line-height: 1.45;
	margin: 0 0 0.85rem;
}

.gn-gallery-removal__feedback.is-error {
	color: #b42318;
	font-weight: 600;
}

.gn-gallery-removal__feedback.is-ok {
	color: #067647;
	font-size: 1.05rem;
	font-weight: 700;
}

.gn-gallery-removal__field {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	margin-bottom: 0.75rem;
}

.gn-gallery-removal__field label {
	font-size: 0.85rem;
	font-weight: 600;
}

.gn-gallery-removal__field input,
.gn-gallery-removal__field textarea {
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	box-sizing: border-box;
	font: inherit;
	padding: 0.55rem 0.7rem;
	width: 100%;
}

.gn-gallery-removal__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: flex-end;
	margin-top: 0.4rem;
}

.gn-gallery-removal__cancel,
.gn-gallery-removal__submit {
	border-radius: 8px;
	cursor: pointer;
	font: inherit;
	font-weight: 600;
	line-height: 1.25;
	margin-right: 0;
	padding: 0.5rem 0.9rem;
}

.gn-gallery-removal__cancel {
	background: #fff;
	border: 1px solid var(--gn-border);
	color: var(--gn-text, #222);
}

.gn-gallery-removal__cancel:hover,
.gn-gallery-removal__cancel:focus-visible {
	background-color: var(--gn-primary-dark);
	border-color: var(--gn-primary-dark);
	color: #fff;
}

.gn-gallery-removal__submit {
	background: var(--gn-primary, #1c3555);
	border: 1px solid transparent;
	color: #fff;
}

.gn-gallery-removal__submit:hover,
.gn-gallery-removal__submit:focus-visible {
	background-color: var(--gn-primary-dark, #142640);
	border-color: var(--gn-primary-dark, #142640);
	color: #fff;
}

.gn-admin-remocao-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

.gn-admin-remocao__header {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: space-between;
}

.gn-admin-remocao__badge {
	align-self: center;
	background: var(--gn-primary-soft, #e7ecf3);
	border-radius: 999px;
	color: var(--gn-primary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.3rem 0.7rem;
	text-transform: uppercase;
}

.gn-admin-remocao__badge--pendente {
	background: var(--gn-warning-bg);
	color: var(--gn-warning-text);
}

.gn-admin-remocao__badge--atendida {
	background: #e7f6ee;
	color: #067647;
}

.gn-admin-remocao__badge--recusada {
	background: #fde8e6;
	color: #b42318;
}

.gn-admin-remocao__grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
	margin-top: 0.35rem;
}

@media (max-width: 767px) {
	.gn-admin-remocao__grid {
		grid-template-columns: 1fr;
	}
}

.gn-admin-remocao__photo {
	margin: 0;
}

.gn-admin-remocao__photo img {
	background: #111;
	border-radius: 10px;
	display: block;
	height: auto;
	max-width: 100%;
	width: 100%;
}

.gn-admin-remocao__photo figcaption {
	color: var(--gn-muted);
	font-size: 0.85rem;
	margin-top: 0.55rem;
}

.gn-admin-remocao__facts {
	display: grid;
	gap: 0.9rem;
	margin: 0;
}

.gn-admin-remocao__facts dt {
	color: var(--gn-muted);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0 0 0.2rem;
	text-transform: uppercase;
}

.gn-admin-remocao__facts dd {
	margin: 0;
}

.gn-admin-remocao__motivo {
	line-height: 1.5;
	white-space: pre-wrap;
}

.gn-admin-remocao__reply {
	border-top: 1px solid var(--gn-border);
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	margin-top: 1.35rem;
	padding-top: 1.15rem;
}

.gn-admin-remocao__reply-label {
	font-weight: 700;
}

.gn-admin-remocao__reply-hint {
	color: var(--gn-muted);
	font-size: 0.85rem;
	margin: 0;
}

.gn-admin-remocao__reply select,
.gn-admin-remocao__reply textarea {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-text);
	font: inherit;
	max-width: 100%;
	padding: 0.55rem 0.7rem;
}

.gn-admin-remocao__reply textarea {
	min-height: 6.5rem;
	resize: vertical;
}

.gn-admin-remocao__reply .gn-admin-remocao-actions {
	margin-top: 0.25rem;
}

.gn-admin-remocao__reply .gn-btn {
	align-self: flex-start;
	margin-top: 0.25rem;
}

.gn-admin-remocao__reply .gn-admin-remocao-actions .gn-btn {
	margin-top: 0;
}

/* Detalhe de transferência — layout do card de dados (mobile first) */
.gn-admin-card.gn-admin-remocao--transferencia {
	padding: 24px;
}

.gn-admin-remocao--transferencia .gn-admin-card__header {
	align-items: flex-start;
	border-bottom: 1px solid var(--gn-border);
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 24px;
	padding-bottom: 24px;
}

.gn-admin-remocao--transferencia .gn-admin-card__title {
	color: var(--gn-primary);
	display: block;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 4px;
}

.gn-admin-remocao--transferencia .gn-admin-score__meta-line {
	font-size: 14px;
	margin: 0;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__badge {
	align-self: flex-start;
	font-size: 12px;
	letter-spacing: 0.05em;
	padding: 6px 12px;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__facts {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	margin: 0 0 32px;
	padding: 20px;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__facts > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__facts dt {
	font-size: 12px;
	letter-spacing: 0.05em;
	margin: 0;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__facts dd {
	font-size: 15px;
	font-weight: 500;
	word-break: break-word;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__facts a {
	color: var(--gn-accent);
	font-weight: 500;
	text-decoration: none;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__facts a:hover,
.gn-admin-remocao--transferencia .gn-admin-remocao__facts a:focus-visible {
	text-decoration: underline;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__facts-span {
	grid-column: 1 / -1;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__reply {
	border-top: 0;
	gap: 12px;
	margin-top: 0;
	padding-top: 0;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__reply-label {
	color: var(--gn-primary);
	font-size: 16px;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__reply-hint {
	font-size: 14px;
	margin: -4px 0 8px;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__reply textarea {
	border-color: var(--gn-border);
	border-radius: 8px;
	font-size: 16px;
	height: auto;
	min-height: 120px;
	padding: 12px;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__reply textarea:focus {
	border-color: var(--gn-accent);
	box-shadow: 0 0 0 3px rgba(63, 124, 168, 0.2);
	outline: none;
}

.gn-admin-remocao--transferencia .gn-admin-remocao-actions {
	flex-direction: column;
	gap: 12px;
	margin-top: 16px;
}

.gn-admin-remocao--transferencia .gn-admin-remocao__reply .gn-btn,
.gn-admin-remocao--transferencia .gn-admin-remocao-actions .gn-btn {
	align-self: stretch;
	font-size: 16px;
	height: 48px;
	min-height: 48px;
	width: 100%;
}

@media (min-width: 600px) {
	.gn-admin-remocao--transferencia .gn-admin-card__header {
		align-items: flex-start;
		flex-direction: row;
	}

	.gn-admin-remocao--transferencia .gn-admin-remocao__badge {
		align-self: center;
	}

	.gn-admin-remocao--transferencia .gn-admin-remocao__facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gn-admin-remocao--transferencia .gn-admin-remocao-actions {
		flex-direction: row;
	}

	.gn-admin-remocao--transferencia .gn-admin-remocao__reply .gn-btn,
	.gn-admin-remocao--transferencia .gn-admin-remocao-actions .gn-btn {
		align-self: auto;
		width: auto;
	}
}

@media (min-width: 900px) {
	.gn-admin-remocao--transferencia .gn-admin-remocao__facts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.gn-admin-card.gn-admin-remocao--transferencia {
		padding: 20px 16px;
	}
}

.gn-admin-ver-list {
	max-width: 100%;
	min-width: 0;
	overflow-x: hidden;
}

.gn-admin-ver-list__heading {
	flex: 1 1 auto;
	min-width: 0;
}

.gn-admin-ver-list__heading .gn-admin-card__title {
	overflow: hidden;
	text-overflow: ellipsis;
}

.gn-admin-ver-list .gn-writer-articles__table-wrap {
	overflow-x: hidden;
}

.gn-admin-ver-list .gn-writer-articles__table {
	min-width: 0;
}

.gn-admin-ver-list .gn-admin-users__table {
	table-layout: fixed;
	width: 100%;
}

.gn-admin-ver-list.gn-admin-flush-table .gn-writer-articles__table th,
.gn-admin-ver-list.gn-admin-flush-table .gn-writer-articles__table td {
	padding-left: 0.7rem;
	padding-right: 0.7rem;
	text-align: left;
	width: auto;
}

.gn-admin-ver-list.gn-admin-flush-table .gn-writer-articles__table th:first-child,
.gn-admin-ver-list.gn-admin-flush-table .gn-writer-articles__table td:first-child,
.gn-admin-ver-list.gn-admin-flush-table .gn-writer-articles__table th:last-child,
.gn-admin-ver-list.gn-admin-flush-table .gn-writer-articles__table td:last-child {
	padding-left: 0.7rem;
	padding-right: 0.7rem;
}

.gn-admin-ver-list .gn-admin-users__table th:not(:last-child),
.gn-admin-ver-list .gn-admin-users__table td:not(:last-child) {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gn-admin-ver-list .gn-admin-users__table th:last-child,
.gn-admin-ver-list .gn-admin-users__table td:last-child {
	overflow: hidden;
	text-align: left;
	white-space: nowrap;
	width: auto;
}

a.gn-admin-ver-link {
	text-decoration: none;
}

.gn-admin-card__header .gn-admin-ver-link {
	flex: 0 0 auto;
}

@media (max-width: 767px) {
	.gn-admin-ver-link [data-admin-ver-label] {
		border: 0;
		clip: rect(0, 0, 0, 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	.gn-admin-ver-link .gn-admin-users__more-eye {
		display: inline-block;
		font-size: 0.85rem;
	}

	.gn-admin-ver-link {
		border-radius: 8px;
		gap: 0;
		height: 1.75rem;
		padding: 0;
		width: 1.75rem;
	}

	.gn-admin-ver-list .gn-admin-users__table th:last-child,
	.gn-admin-ver-list .gn-admin-users__table td:last-child {
		width: 2.75rem;
	}
}

.gn-admin-remocoes-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.15rem 0.2rem;
	margin: 0 0 1rem;
	border-bottom: 1px solid var(--gn-border);
	padding: 0;
}

.gn-admin-remocoes-tabs__tab {
	background: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: -1px;
	padding: 0.55rem 0.95rem;
	text-decoration: none;
}

.gn-admin-remocoes-tabs__tab:hover,
.gn-admin-remocoes-tabs__tab:focus-visible {
	color: var(--gn-text);
	outline: none;
}

.gn-admin-remocoes-tabs__tab:focus-visible {
	box-shadow: inset 0 0 0 2px var(--gn-primary);
}

.gn-admin-remocoes-tabs__tab.is-active,
.gn-admin-remocoes-tabs__tab[aria-selected="true"] {
	border-bottom-color: var(--gn-primary);
	color: var(--gn-text);
}

[data-remocoes-body].is-loading {
	opacity: 0.72;
	pointer-events: none;
	transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
	[data-remocoes-body].is-loading {
		transition: none;
	}
}

/* Slide narrativo — leitor público e wizard CMS */
#main.gn-slide-page {
	margin-top: 15px;
	padding: 1rem 0 3rem;
}

.gn-slide-reader {
	--gn-slide-frame-max-width: 720px;
}

.gn-slide-reader__title {
	font-size: 2rem;
	margin-top: 0;
	margin-bottom: .5rem;
	text-align: center;
}

.gn-slide-reader__meta {
	color: var(--gn-muted);
	font-size: .9rem;
	margin-bottom: 1rem;
	text-align: center;
}

/* Link “voltar” compartilhado: detalhe /giro360/{slug} e listagens públicas */
.gn-article-back {
	font-size: 24px;
	font-weight: 300;
	line-height: 36px;
	margin: 0 0 26px;
}

.gn-slide-page .gn-article-back {
	margin-bottom: 13px;
}

.gn-article-back a {
	color: var(--gn-accent-text);
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	text-decoration: none;
}

.gn-article-back a:hover,
.gn-article-back a:focus-visible {
	color: var(--gn-accent-text);
	text-decoration: underline;
}

.gn-slide-reader__stage {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: .75rem;
	max-width: var(--gn-slide-frame-max-width);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

/* display:flex acima vence o [hidden] do UA — sem isto o stage permanece
   visível no passo de pub e a arte do AD aparece “abaixo da imagem”. */
.gn-slide-reader__stage[hidden] {
	display: none;
}

/* Intersticial 3:2 — mesmo frame das imagens da apresentação */
.gn-slide-reader__destaque {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin-bottom: .75rem;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--gn-slide-frame-max-width);
	width: 100%;
}

.gn-slide-reader__destaque[hidden] {
	display: none;
}

.gn-slide-reader__destaque-figure {
	width: 100%;
}

.gn-slide-reader__destaque-link {
	bottom: 0;
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.gn-slide-reader__destaque-link .gn-slide-reader__destaque-image,
.gn-slide-reader__destaque-figure > .gn-slide-reader__destaque-image {
	border-radius: 0;
	display: block;
	height: 100%;
	left: 0;
	max-height: none;
	max-width: none;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	width: 100%;
}

.gn-slide-reader__destaque-label {
	background: linear-gradient(transparent, rgba(0, 0, 0, .55));
	bottom: 0;
	color: #fff;
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: .06em;
	left: 0;
	line-height: 1.3;
	margin: 0;
	padding: 1.35rem .75rem .45rem;
	position: absolute;
	right: 0;
	text-align: center;
	text-transform: uppercase;
	z-index: 2;
}

/* Caixa 3:2 horizontal — ::before evita que imagens retrato estourem o container
   (img { height: auto } em style.css + flex no figure anulavam aspect-ratio). */
.gn-slide-reader__figure {
	position: relative;
	width: 100%;
	margin: 0;
	background: var(--gn-text);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
}

.gn-slide-reader__figure::before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 66.6667%;
}

.gn-slide-reader__figure .gn-slide-reader__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
	display: block;
}

.gn-slide-reader__context {
	margin-top: .75rem;
	margin-bottom: 0;
	font-size: 1.05rem;
	line-height: 1.75;
	white-space: pre-wrap;
	max-width: var(--gn-slide-frame-max-width);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	text-align: left;
}

.gn-slide-reader__related {
	margin-top: 2rem;
	max-width: var(--gn-slide-frame-max-width);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.gn-slide-reader__related-title {
	font-size: 1.15rem;
	font-weight: 600;
	margin: 0 0 1rem;
	text-align: center;
	color: var(--gn-text);
}

.gn-slide-reader__related-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gn-slide-reader__related-card {
	color: inherit;
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.gn-slide-reader__related-card:hover,
.gn-slide-reader__related-card:focus {
	color: inherit;
	text-decoration: none;
}

.gn-slide-reader__related-media {
	aspect-ratio: 3 / 2;
	background: var(--gn-text);
	overflow: hidden;
	position: relative;
}

.gn-slide-reader__related-media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gn-slide-reader__related-placeholder {
	align-items: center;
	color: var(--gn-muted);
	display: flex;
	font-size: 2rem;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.gn-slide-reader__related-card-title {
	font-size: 1rem;
	line-height: 1.35;
	margin: 0;
	padding: .85rem 1rem .35rem;
}

.gn-slide-reader__related-card-excerpt {
	color: var(--gn-muted);
	font-family: var(--gn-font-ui);
	font-size: .85rem;
	font-weight: normal;
	line-height: 1.5;
	margin: 0;
	padding: 0 1rem 1rem;
}

.gn-slide-reader__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: .75rem;
	margin-bottom: .25rem;
	padding-top: .85rem;
	border-top: 1px solid var(--gn-border);
	max-width: var(--gn-slide-frame-max-width);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.gn-slide-reader__btn {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
	font-size: .9rem;
	font-weight: 600;
	gap: .4rem;
	justify-content: center;
	line-height: 1.2;
	text-decoration: none;
}

.gn-slide-reader__btn:disabled {
	cursor: not-allowed;
	opacity: .45;
}

.gn-slide-reader__nav--end {
	border-top: 1px solid var(--gn-border);
	gap: .75rem;
	justify-content: center;
	margin-top: 1rem;
	margin-bottom: 0;
	padding-top: 1rem;
}

.gn-slide-reader__nav--end .gn-slide-reader__btn {
	min-width: 8.5rem;
}

.gn-slide-reader__counter {
	font-size: .85rem;
	color: var(--gn-muted);
}

.gn-slider__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

/* Home hero slider — faixa full-bleed atrás do frame A4 (imagem dentro da faixa). */
.gn-home-hero {
	margin-bottom: 3rem;
	margin-top: 57px;
	overflow: visible;
}

.gn-home-hero__band {
	background-color: var(--gn-text);
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 2.5rem 0 1.75rem;
	position: relative;
	width: 100vw;
}

.gn-home-hero__inner {
	margin: 0 auto;
	max-width: 768px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.gn-home-hero .gnSlider {
	margin-bottom: 0;
	overflow: hidden;
}

.gn-home-hero .gnSlider .flexslider {
	background: transparent;
	border: none;
	border-radius: 16px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
	margin: 0;
	overflow: hidden;
}

.gn-home-hero .gnSlider .loading {
	background: var(--gn-muted);
	min-height: 0;
}

.gn-home-hero .gnSlider .slides li .item-wrap {
	background: var(--gn-muted);
	display: block;
	margin: 0 auto;
	max-width: 768px;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	width: 100%;
}

.gn-home-hero .gnSlider .slides li .item-wrap::before {
	content: "";
	display: block;
	padding-top: calc(100% * 210 / 297);
	width: 100%;
}

.gn-home-hero .gnSlider .slides li .item-wrap img {
	display: block;
	height: 100%;
	left: 0;
	max-height: none;
	max-width: none;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	/* Sem zoom — só a transição fade do FlexSlider entre slides */
	transform: none;
	width: 100%;
}

.gn-home-hero .gnSlider .slides li a.item-wrap {
	color: var(--gn-bg);
	text-decoration: none;
}

.gn-home-hero .gnSlider .slides li a.item-wrap:hover,
.gn-home-hero .gnSlider .slides li a.item-wrap:focus {
	color: var(--gn-bg);
}

.gn-home-hero .gnSlider .slides li .item {
	background: linear-gradient(0deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.65) 50%, transparent 100%);
	bottom: 0;
	color: var(--gn-bg);
	left: 0;
	margin: 0;
	max-width: none;
	opacity: 1;
	padding: 5rem 2.5rem 2.5rem;
	position: absolute;
	right: 0;
	z-index: 2;
}

.gn-home-hero .gnSlider .slides li .item .hero-category {
	background-color: var(--gn-accent-solid);
	border-radius: 4px;
	color: var(--gn-inverse);
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	margin-bottom: 14px;
	padding: 4px 10px;
	text-transform: uppercase;
}

.gn-home-hero .gnSlider .slides li .item h2 {
	color: var(--gn-bg);
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.gn-home-hero .gnSlider .flex-direction-nav {
	height: auto;
}

.gn-home-hero .gnSlider .flex-direction-nav li a {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	color: var(--gn-inverse);
	cursor: pointer;
	display: block;
	filter: none;
	font-size: 1.5rem;
	height: 52px;
	line-height: 48px;
	margin-top: 0;
	opacity: 1;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	width: 52px;
	z-index: 20;
}

.gn-home-hero .gnSlider .flex-direction-nav li a:hover,
.gn-home-hero .gnSlider .flex-direction-nav li a:focus {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--gn-inverse);
	transform: translateY(-50%) scale(1.08);
}

.gn-home-hero .gnSlider .flex-direction-nav li a:active {
	transform: translateY(-50%) scale(0.96);
}

.gn-home-hero .gnSlider .flex-direction-nav li a.flex-prev {
	left: 20px;
}

.gn-home-hero .gnSlider .flex-direction-nav li a.flex-next {
	right: 20px;
}

.gn-home-hero .gnSlider .flex-control-nav {
	padding: 1.75rem 0 0;
	text-align: center;
	width: 100%;
}

.gn-home-hero .gnSlider .flex-control-nav li {
	margin: 0 0 0 8px;
}

.gn-home-hero .gnSlider .flex-control-nav li:first-child {
	margin: 0;
}

.gn-home-hero .gnSlider .flex-control-nav li a {
	background: rgba(255, 255, 255, 0.55);
	border-radius: 4px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	display: block;
	height: 5px;
	text-indent: -9999px;
	transition: all 0.3s ease;
	width: 24px;
}

.gn-home-hero .gnSlider .flex-control-nav li a.flex-active {
	background: var(--gn-accent);
	width: 40px;
}

@media (max-width: 820px) {
	.gn-home-hero__inner {
		padding: 0 0.5rem;
	}

	.gn-home-hero .gnSlider .flex-direction-nav li a {
		font-size: 1.25rem;
		height: 42px;
		line-height: 38px;
		width: 42px;
	}

	.gn-home-hero .gnSlider .flex-direction-nav li a.flex-prev {
		left: 12px;
	}

	.gn-home-hero .gnSlider .flex-direction-nav li a.flex-next {
		right: 12px;
	}

	.gn-home-hero .gnSlider .slides li .item {
		padding: 3rem 1.5rem 1.5rem;
	}

	.gn-home-hero .gnSlider .slides li .item h2 {
		font-size: 1.4rem;
	}
}

@media (max-width: 480px) {
	.gn-home-hero__inner {
		padding: 0 0.35rem;
	}

	.gn-home-hero .gnSlider .slides li .item h2 {
		font-size: 1.2rem;
	}
}

.gn-slide-reader__progress {
	margin-bottom: .85rem;
	max-width: var(--gn-slide-frame-max-width);
	margin-left: auto;
	margin-right: auto;
}

.gn-slide-reader__progress-track {
	height: 4px;
	background: var(--gn-border);
	border-radius: 2px;
	overflow: hidden;
}

.gn-slide-reader__progress-bar {
	height: 100%;
	width: 0;
	background: var(--gn-accent);
	transition: width .25s ease;
}

.gn-slide-reader__nav-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
}

.gn-slide-reader__btn--share {
	font-size: .8rem;
	min-height: 2.25rem;
	padding: .45rem .85rem;
}

/* Dica de teclado removida do leitor público (slide-detalhe). */

.gn-slide-wizard__page-toolbar {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-bottom: .75rem;
}

.gn-slide-wizard__drag-handle {
	border: none;
	background: transparent;
	color: var(--gn-muted);
	cursor: grab;
	padding: .25rem;
}

.gn-slide-wizard__page-order {
	font-size: .85rem;
	font-weight: 600;
	flex: 1;
}

.gn-slide-wizard__delete-btn {
	border: none;
	background: transparent;
	color: var(--gn-danger);
	cursor: pointer;
	padding: .25rem .5rem;
}

.gn-slide-wizard__page-card--dragging {
	opacity: .55;
}

.gn-slide-wizard__page-card--drop-target {
	outline: 2px dashed #5b4a8a;
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.gn-slide-reader__progress-bar {
		transition: none;
	}
}

.gn-slide-wizard__pages {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1rem;
}

.gn-slide-wizard__page-card {
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 1rem;
	background: var(--gn-bg);
}

.gn-slide-wizard__page-head {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: .75rem;
}

.gn-slide-wizard__thumb-frame {
	position: relative;
	flex: 0 0 120px;
	width: 120px;
	border-radius: 4px;
	overflow: hidden;
	background: var(--gn-text);
}

.gn-slide-wizard__thumb-frame::before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 66.6667%;
}

.gn-slide-wizard__thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
}

.gn-slide-wizard__checkbox-label {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .9rem;
	cursor: pointer;
}

.gn-slide-wizard__char-count {
	font-size: .8rem;
	color: var(--gn-muted);
	margin-top: .25rem;
}

.gn-slide-wizard__char-count--invalid { color: var(--gn-danger); }

.gn-slide-wizard__cover-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: .5rem;
}

.gn-slide-wizard__cover-item--active .gn-writer-gallery-cover-option {
	outline: 2px solid var(--gn-accent, var(--gn-danger));
	outline-offset: 2px;
}

.gn-writer-gallery-cover-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
	gap: 1rem;
	margin-bottom: 1rem;
}

.gn-slide-wizard__page-head .gn-slide-wizard__frame-btn {
	margin-top: .35rem;
}

.gn-writer-articles__type-badge--slide {
	background: #5b4a8a;
}

.gn-slide-list__hint {
	color: var(--gn-muted);
	font-size: .9rem;
	margin: 0 0 1.25rem;
	max-width: 52rem;
}

.gn-editor-queue__slide-publish-hint {
	display: block;
	font-size: .75rem;
	color: var(--gn-muted);
	margin-bottom: .35rem;
}

/* Wizard de vídeos (/redacao/videos — V8) */
.gn-video-wizard .gn-album-wizard__dialog {
	max-width: 640px;
}

.gn-video-wizard__media {
	grid-template-columns: 1fr 1fr;
	margin-bottom: 1rem;
}

.gn-video-wizard__cover-box {
	aspect-ratio: 297 / 210;
	width: 100%;
}

.gn-video-wizard__video-box {
	aspect-ratio: 16 / 9;
	width: 100%;
}

.gn-video-wizard__video-box .gn-video-wizard__preview {
	height: 100%;
	margin: 0;
	width: 100%;
}

.gn-video-wizard__video-box .gn-video-embed {
	height: 100%;
	padding-bottom: 0;
	position: absolute;
	inset: 0;
}

.gn-video-wizard__video-box .gn-video-embed iframe,
.gn-video-wizard__video-box .gn-video-embed video {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gn-video-wizard__cover-preview {
	display: block;
	margin-top: 0.75rem;
	max-height: 180px;
	max-width: 100%;
	border-radius: 8px;
	object-fit: cover;
}

.gn-video-wizard__url-input {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: .9rem;
}

.gn-video-wizard__upload-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .75rem;
	border-top: 1px solid var(--gn-border);
	margin-top: .25rem;
	padding-top: 1rem;
}

.gn-video-wizard__upload-row .gn-album-wizard__upload-hint {
	color: var(--gn-muted);
	flex: 1 1 100%;
	font-size: .875rem;
	margin: 0;
}

.gn-video-wizard__preview {
	margin: 1rem 0;
	max-width: 100%;
}

.gn-video-wizard__preview .gn-video-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: var(--gn-muted);
	border-radius: 6px;
}

.gn-video-wizard__preview .gn-video-embed iframe,
.gn-video-wizard__preview .gn-video-embed video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: contain;
}

.gn-video-wizard__body-hint {
	color: var(--gn-muted);
	font-size: .8rem;
	margin: .35rem 0 0;
}

.gn-video-wizard__char-count {
	color: var(--gn-muted);
	font-size: .8rem;
	margin-top: .25rem;
}

.gn-video-wizard__char-count--invalid {
	color: var(--gn-danger);
}

.gn-video-list__hint {
	color: var(--gn-muted);
	font-size: .9rem;
	margin: 0 0 1.25rem;
	max-width: 52rem;
}

@media (max-width: 599px) {
	.gn-video-wizard .gn-album-wizard__dialog {
		max-width: none;
	}

	.gn-video-wizard__upload-row {
		flex-direction: column;
		align-items: stretch;
	}

	.gn-video-wizard__upload-row .gn-btn {
		width: 100%;
	}
}

/* ------------------------------------------------------------------
   MODAL DE RECORTE DE CAPA (gn-image-crop.js + Cropper.js)
   ------------------------------------------------------------------ */

body.gn-image-crop-modal-open {
	overflow: hidden;
}

.gn-image-crop-modal {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 1rem;
	position: fixed;
	/* Acima de .gn-anuncio-wizard (11050) e .gn-negocio-account-modal (11000). */
	z-index: 12000;
}

.gn-image-crop-modal__overlay {
	background: rgba(17, 24, 39, 0.62);
	cursor: pointer;
	inset: 0;
	position: fixed;
}

.gn-image-crop-modal__dialog {
	background: var(--gn-surface);
	border-radius: 12px;
	box-shadow: var(--gn-modal-shadow);
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 2rem);
	max-width: 720px;
	overflow: auto;
	position: relative;
	width: 100%;
	z-index: 1;
}

.gn-image-crop-modal__header {
	border-bottom: 1px solid var(--gn-border);
	padding: 1rem 1.25rem 0.85rem;
}

.gn-image-crop-modal__title {
	color: var(--gn-text);
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

.gn-image-crop-modal__status {
	color: var(--gn-muted);
	font-size: 0.9375rem;
	line-height: 1.45;
	margin: 0.35rem 0 0;
}

.gn-image-crop-modal__error {
	background: var(--gn-surface);
	border: 1px solid var(--gn-danger);
	border-radius: 6px;
	color: var(--gn-danger);
	font-size: 0.875rem;
	margin: 0.75rem 1.25rem 0;
	padding: 0.55rem 0.75rem;
}

.gn-image-crop-modal__error[hidden] {
	display: none !important;
}

.gn-image-crop-modal__crop-wrap {
	/* Palco estável A4 paisagem (297∶210). Retrato A4 usa --ratio-4x5. */
	aspect-ratio: 297 / 210;
	background: var(--gn-text);
	margin: 0.85rem 1.25rem 0;
	max-height: min(calc(100vh - 17rem), calc(100vw * 210 / 297), 480px);
	max-width: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.gn-image-crop-modal__crop-wrap--ratio-16x9 {
	aspect-ratio: 16 / 9;
	max-height: min(calc(100vh - 17rem), 56.25vw, 405px);
}

.gn-image-crop-modal__crop-wrap--ratio-5x4 {
	aspect-ratio: 297 / 210;
	max-height: min(calc(100vh - 17rem), 80vw, 480px);
}

.gn-image-crop-modal__crop-wrap--ratio-4x5 {
	aspect-ratio: 210 / 297;
	margin-left: auto;
	margin-right: auto;
	max-height: min(calc(100vh - 17rem), 70vh, 560px);
	max-width: min(100%, 400px);
}

.gn-image-crop-modal__image {
	display: block;
	max-height: 100%;
	max-width: 100%;
}

.gn-image-crop-modal__crop-wrap .cropper-container {
	position: absolute !important;
	inset: 0;
}

.gn-image-crop-modal__crop-wrap .cropper-view-box,
.gn-image-crop-modal__crop-wrap .cropper-face {
	border-radius: 2px;
}

.gn-image-crop-modal__toolbar--aspect {
	padding-bottom: 0;
	padding-top: 0.5rem;
}

.gn-image-crop-modal__btn--aspect {
	flex: 1 1 0;
	font-variant-numeric: tabular-nums;
	font-weight: 600;
	min-width: 4.5rem;
}

.gn-image-crop-modal__btn--aspect.is-active,
.gn-image-crop-modal__btn--aspect[aria-pressed="true"] {
	background: var(--gn-primary);
	border-color: var(--gn-primary);
	color: var(--gn-inverse);
}

.gn-image-crop-modal__toolbar {
	display: flex;
	gap: 0.65rem;
	justify-content: center;
	padding: 0.65rem 1.25rem 0;
}

.gn-image-crop-modal__btn--tool {
	align-items: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	color: var(--gn-text);
	display: inline-flex;
	flex: 1 1 0;
	gap: 0.4rem;
	justify-content: center;
	min-height: 2.75rem;
}

.gn-image-crop-modal__btn--tool:hover,
.gn-image-crop-modal__btn--tool:focus-visible {
	background: var(--gn-bg);
	border-color: var(--gn-muted);
}

.gn-image-crop-modal__btn--tool:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-image-crop-modal__tool-icon {
	display: block;
	flex-shrink: 0;
}

.gn-image-crop-modal__footer {
	border-top: 1px solid var(--gn-border);
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: flex-end;
	padding: 0.85rem 1.25rem 1rem;
}

.gn-image-crop-modal__btn {
	border-radius: 6px;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25;
	padding: 0.45rem 1rem;
	transition: background 0.12s, border-color 0.12s, color 0.12s;
}

.gn-image-crop-modal__btn--secondary {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	color: var(--gn-muted);
}

.gn-image-crop-modal__btn--secondary:hover,
.gn-image-crop-modal__btn--secondary:focus-visible {
	background: var(--gn-bg);
	border-color: var(--gn-muted);
	color: var(--gn-text);
	outline: none;
}

.gn-image-crop-modal__btn--primary {
	background: var(--gn-primary);
	border: 1px solid transparent;
	border-radius: 8px;
	color: var(--gn-inverse);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.5rem 1rem;
	text-transform: uppercase;
}

.gn-image-crop-modal__btn--primary:hover,
.gn-image-crop-modal__btn--primary:focus-visible {
	background: var(--gn-primary-dark);
	border-color: transparent;
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

.gn-image-crop-modal__btn:disabled {
	cursor: not-allowed;
	opacity: 0.65;
}

@media (max-width: 599px) {
	.gn-image-crop-modal {
		align-items: stretch;
		padding: 0;
	}

	.gn-image-crop-modal__dialog {
		border-radius: 0;
		flex: 1 1 auto;
		height: 100%;
		max-height: none;
		max-width: none;
	}

	.gn-image-crop-modal__crop-wrap {
		aspect-ratio: auto;
		flex: 1 1 auto;
		margin-left: 0;
		margin-right: 0;
		max-height: none;
		min-height: 52vh;
	}

	.gn-image-crop-modal__header,
	.gn-image-crop-modal__footer,
	.gn-image-crop-modal__toolbar,
	.gn-image-crop-modal__toolbar--aspect {
		flex-shrink: 0;
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

	.gn-image-crop-modal__footer {
		flex-direction: column-reverse;
	}

	.gn-image-crop-modal__btn {
		width: 100%;
		text-align: center;
	}

	.gn-image-crop-modal__toolbar .gn-image-crop-modal__btn {
		font-size: 0.8125rem;
		width: auto;
	}
}

/* ------------------------------------------------------------------
   MODAL DE PUBLICIDADE (gn-image-watermark.js) — só redação
   ------------------------------------------------------------------ */

body.gn-image-watermark-modal-open {
	overflow: hidden;
}

.gn-image-watermark-modal {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 1rem;
	position: fixed;
	z-index: 12010;
}

.gn-image-watermark-modal__backdrop {
	background: rgba(17, 24, 39, 0.62);
	cursor: pointer;
	inset: 0;
	position: fixed;
}

.gn-image-watermark-modal__dialog {
	background: var(--gn-surface);
	border-radius: 12px;
	box-shadow: var(--gn-modal-shadow);
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 2rem);
	max-width: 720px;
	overflow: auto;
	position: relative;
	width: 100%;
	z-index: 1;
}

.gn-image-watermark-modal__stage {
	margin: 0.75rem 1.25rem;
	position: relative;
	display: inline-block;
	max-width: calc(100% - 2.5rem);
	align-self: center;
}

.gn-image-watermark-modal__photo {
	display: block;
	max-height: min(55vh, 420px);
	max-width: 100%;
	user-select: none;
}

.gn-image-watermark-modal__overlay-box {
	cursor: move;
	left: 0;
	position: absolute;
	top: 0;
	touch-action: none;
}

.gn-image-watermark-modal__overlay-img {
	display: block;
	height: 100%;
	pointer-events: none;
	width: 100%;
}

.gn-image-watermark-modal__handle {
	background: var(--gn-inverse);
	border: 2px solid var(--gn-primary);
	border-radius: 2px;
	bottom: -6px;
	cursor: nwse-resize;
	height: 12px;
	padding: 0;
	position: absolute;
	right: -6px;
	width: 12px;
}

.gn-image-watermark-modal__tools {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	padding: 0 1.25rem 0.5rem;
}

.gn-image-watermark-modal__actions {
	justify-content: flex-end;
}

.gn-image-watermark-modal__opacity {
	align-items: center;
	color: var(--gn-muted);
	display: flex;
	font-size: 0.875rem;
	gap: 0.5rem;
}

.gn-image-watermark-modal__error[hidden] {
	display: none !important;
}

@media (max-width: 599px) {
	.gn-image-watermark-modal {
		align-items: flex-end;
		padding: 0;
	}

	.gn-image-watermark-modal__dialog {
		border-radius: 12px 12px 0 0;
		max-height: calc(100vh - 0.5rem);
		max-width: none;
	}
}

/* Página de edição de vídeo (/redacao/videos/{id}/editar) */
.gn-writer-edit-sections {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.5rem;
	max-width: 720px;
}

.gn-editorial-themes__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
}

.gn-editorial-themes__item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 500;
}

.gn-quill-inline-align {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.gn-quill-inline-align__label {
	font-size: 0.85rem;
	color: var(--gn-muted, #5c6570);
}

.gn-quill-link-dialog {
	position: fixed;
	inset: 0;
	z-index: 1320;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 42, 0.45);
}

.gn-quill-link-dialog[hidden] {
	display: none !important;
}

.gn-quill-link-dialog__panel {
	width: min(420px, calc(100vw - 2rem));
	background: var(--gn-surface, #fff);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	box-shadow: var(--gn-modal-shadow);
}

.gn-quill-link-dialog__title {
	margin: 0 0 0.75rem;
	font-size: 1.1rem;
}

.gn-quill-link-dialog__label {
	display: block;
	margin: 0.75rem 0 0.25rem;
	font-weight: 600;
}

.gn-quill-link-dialog__error {
	color: #b42318;
	margin: 0.5rem 0 0;
}

.gn-quill-link-dialog__actions {
	display: flex;
	justify-content: flex-end;
	gap: 0.5rem;
	margin-top: 1rem;
}

.gn-article-inline,
.ql-editor .gn-article-inline {
	margin: 0.75rem 0;
}

.gn-article-inline img,
.ql-editor .gn-article-inline img {
	display: block;
	max-width: 100%;
	height: auto;
}

.gn-article-inline--left,
.ql-editor .gn-article-inline--left {
	float: left;
	width: min(100%, 360px);
	margin: 0.75rem 0.75rem 0.75rem 0;
}

.gn-article-inline--right,
.ql-editor .gn-article-inline--right {
	float: right;
	width: min(100%, 360px);
	margin: 0.75rem 0 0.75rem 0.75rem;
}

.gn-article-inline--center,
.ql-editor .gn-article-inline--center {
	float: none;
	clear: both;
	display: block;
	max-width: 720px;
	margin: 0.75rem auto;
}

.entry-post::after,
.ql-editor::after {
	content: "";
	display: table;
	clear: both;
}

/* Capa do detalhe (/noticias/{slug}): palco A4 — local backfilled ou URL externa com cover.
   .post-single .body-post zera o margin-top genérico (40px/28px) para não somar
   com o 18px da capa abaixo da linha do .head-post. */
.post-single .body-post {
	margin-top: 0;
}

.post-single .entry-post > .gn-article-cover {
	aspect-ratio: 297 / 210;
	margin: 18px 0 44px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.post-single .entry-post > .gn-article-cover img {
	display: block;
	height: 100%;
	margin: 0;
	object-fit: cover;
	object-position: center top;
	width: 100%;
}

.gn-editorial-related {
	margin: 2rem 0 0;
}

.gn-editorial-related__title {
	font-size: 1.25rem;
	margin: 0 0 1rem;
}

.gn-editorial-related__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1rem;
}

.gn-editorial-related__card {
	display: block;
	color: inherit;
	text-decoration: none;
	border: 1px solid var(--gn-border, #d8dee6);
	border-radius: 10px;
	overflow: hidden;
	background: var(--gn-surface, #fff);
}

.gn-editorial-related__media {
	aspect-ratio: 297 / 210;
	background: #eef1f5;
	overflow: hidden;
	position: relative;
}

.gn-editorial-related__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.gn-editorial-related__card-title {
	margin: 0.75rem 0.85rem 0.35rem;
	font-size: 1rem;
}

.gn-editorial-related__card-excerpt {
	color: var(--gn-muted, #5c6570);
	font-family: var(--gn-font-ui);
	font-size: 0.9rem;
	font-weight: normal;
	margin: 0 0.85rem 0.85rem;
}

/* /noticias/{slug} — compartilhar + tags no rodapé do texto */
.gn-article-share {
	clear: both;
	margin: 1.5rem 0 0;
	overflow: visible;
	padding: 0.85rem 0 0;
	text-align: center;
}

.posts .gn-article-share__label,
.post-single .gn-article-share__label,
.gn-article-share__label {
	align-items: center;
	color: var(--gn-success);
	display: inline-flex;
	font-family: inherit;
	font-size: clamp(0.8rem, 0.72rem + 0.35vw, 0.9rem);
	font-weight: 600;
	gap: 0.4rem;
	justify-content: center;
	letter-spacing: 0.01em;
	line-height: 1.2;
	margin: 0 0 0.6rem;
	overflow: visible;
	padding: 0.15em 0.2em;
}

.posts .gn-article-share__label-icon,
.post-single .gn-article-share__label-icon,
.gn-article-share__label-icon {
	display: block;
	flex: 0 0 1.15em;
	height: 1.15em;
	overflow: visible;
	width: 1.15em;
}

.gn-article-share__list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: clamp(0.35rem, 1.2vw, 0.5rem);
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-article-share__btn {
	align-items: center;
	border-radius: 3px;
	color: #fff;
	display: flex;
	flex: 0 0 clamp(2rem, 7.5vw, 2.25rem);
	height: clamp(2rem, 7.5vw, 2.25rem);
	justify-content: center;
	text-decoration: none;
	transition: filter 0.15s ease, transform 0.15s ease;
	width: clamp(2rem, 7.5vw, 2.25rem);
}

.gn-article-share__btn:hover,
.gn-article-share__btn:focus-visible {
	color: #fff;
	filter: brightness(1.08);
	text-decoration: none;
	transform: translateY(-1px);
}

.gn-article-share__btn--email { background: #5dade2; }
.gn-article-share__btn--twitter { background: #1da1f2; }
.gn-article-share__btn--facebook { background: #3b5998; }
.gn-article-share__btn--google { background: #dd4b39; }
.gn-article-share__btn--linkedin { background: #0077b5; }
.gn-article-share__btn--whatsapp { background: #25d366; }

.gn-article-share__glyph {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
}

.gn-article-share__glyph--facebook {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.2rem;
	font-weight: 700;
	padding-bottom: 0.05rem;
}

.gn-article-share__glyph--linkedin {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: -0.04em;
}

.gn-article-share__icon {
	display: block;
	height: 0.95rem;
	width: 0.95rem;
}

.post-single .gn-article-tags,
.gn-article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 1.25rem 0 0;
	padding: 0;
	width: 100%;
}

.gn-article-tags > li {
	flex: 1 1 9rem;
	margin: 0;
	min-width: 0;
}

.gn-article-tags__item {
	align-items: center;
	border: 1px solid var(--gn-border);
	border-radius: 2px;
	box-sizing: border-box;
	color: var(--gn-muted);
	display: flex;
	justify-content: center;
	line-height: 1.3;
	min-height: 2.75rem;
	overflow: hidden;
	padding: 0.45rem 0.75rem;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.gn-writer-edit-section {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
}

.gn-writer-edit-section__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.gn-writer-edit-section__header-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.gn-writer-edit-section__inline-form {
	display: inline;
	margin: 0;
}

.gn-writer-edit-section__title {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0;
}

.gn-writer-edit-section__save {
	display: none !important;
}

.gn-writer-edit-savebar {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
}

.gn-writer-edit-savebar .gn-writer-gallery-step__status {
	flex: 1 1 auto;
	margin: 0;
}

.gn-writer-edit-section__lead {
	color: var(--gn-muted);
	font-size: 0.925rem;
	margin: 0 0 1rem;
}

.gn-writer-seo__toggle {
	background: none;
	border: 0;
	color: inherit;
	cursor: pointer;
	font: inherit;
	padding: 0;
}

.gn-writer-seo__toggle::after {
	content: " ▾";
	font-size: 0.75em;
	opacity: 0.7;
}

.gn-writer-seo__toggle[aria-expanded="true"]::after {
	content: " ▴";
}

.gn-writer-seo__panel {
	margin-top: 0.75rem;
}

.gn-writer-seo__checklist {
	color: var(--gn-muted);
	font-size: 0.925rem;
	line-height: 1.45;
	margin: 0 0 1rem;
	padding-left: 1.2rem;
}

.gn-writer-seo__checklist li + li {
	margin-top: 0.35rem;
}

.gn-writer-seo__snippet {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
}

.gn-writer-seo__snippet-label {
	color: var(--gn-muted);
	font-size: 0.75rem;
	letter-spacing: 0.02em;
	margin: 0 0 0.5rem;
	text-transform: uppercase;
}

.gn-writer-seo__snippet-url {
	color: var(--gn-muted);
	font-size: 0.8rem;
	margin: 0 0 0.2rem;
	overflow-wrap: anywhere;
}

.gn-writer-seo__snippet-title {
	color: var(--gn-primary);
	font-size: 1.125rem;
	line-height: 1.3;
	margin: 0 0 0.25rem;
}

.gn-writer-seo__snippet-desc {
	color: var(--gn-text);
	font-size: 0.875rem;
	line-height: 1.4;
	margin: 0;
}

.gn-writer-seo__og-preview {
	margin-top: 0.5rem;
}

.gn-writer-seo__og-img {
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	display: block;
	max-height: 160px;
	max-width: 100%;
	object-fit: cover;
}

.gn-writer-seo__check {
	align-items: center;
	display: flex;
	font-weight: 600;
	gap: 0.5rem;
}

.gn-writer-video-edit__view-site {
	text-decoration: none;
	font-size: 0.875rem;
}

.gn-writer-video-edit .gn-writer-edit-section .gn-profile-form-group {
	margin-bottom: 1rem;
}

.gn-writer-video-edit .gn-writer-edit-section .gn-profile-form-group:last-of-type {
	margin-bottom: 0;
}

.gn-writer-gallery-edit__view-site {
	text-decoration: none;
	font-size: 0.875rem;
}

.gn-writer-gallery-edit__photo-meta {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	min-width: 0;
}

.gn-writer-gallery-edit .gn-writer-edit-section > .gn-album-wizard__upload-hint {
	display: block;
	margin: 0 0 0.75rem;
}

.gn-writer-gallery-edit__status,
.gn-writer-article-edit__status,
.gn-writer-edit-section__status {
	align-items: center;
	background: var(--gn-primary-soft);
	border: 1px solid var(--gn-success);
	border-radius: 8px;
	box-sizing: border-box;
	color: var(--gn-success);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 700;
	height: 2.5rem;
	justify-content: center;
	letter-spacing: 0.03em;
	line-height: 1.2;
	min-height: 2.5rem;
	padding: 0 1rem;
	text-transform: uppercase;
}

.gn-writer-gallery-edit .gn-writer-pipeline__status,
.gn-writer-article-edit .gn-writer-pipeline__status,
.gn-writer-slide-edit .gn-writer-pipeline__status,
.gn-writer-video-edit .gn-writer-pipeline__status {
	display: none;
}

.gn-writer-gallery-edit .gn-editorial-advertiser .gn-ad-cms__upload-hint,
.gn-writer-gallery-edit .gn-editorial-themes > .gn-profile-form-hint,
.gn-writer-article-edit .gn-editorial-advertiser .gn-ad-cms__upload-hint,
.gn-writer-article-edit .gn-editorial-themes > .gn-profile-form-hint {
	display: none;
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__cover-btn,
.gn-writer-gallery-edit .gn-writer-gallery-photos__frame-btn,
.gn-writer-gallery-edit .gn-writer-gallery-photos__watermark-btn,
.gn-writer-gallery-edit .gn-writer-gallery-photos__seo-btn,
.gn-writer-gallery-edit .gn-writer-gallery-photos__order-btn,
.gn-writer-gallery-edit .gn-writer-gallery-photos__remove {
	border-radius: 2px;
}

.gn-writer-article-edit .gn-writer-edit-section__duplicate,
.gn-writer-gallery-edit .gn-writer-edit-section__duplicate,
.gn-writer-slide-edit .gn-writer-edit-section__duplicate,
.gn-writer-video-edit .gn-writer-edit-section__duplicate {
	align-items: center;
	border-radius: 8px;
	box-sizing: border-box;
	display: inline-flex;
	height: 2.5rem;
	justify-content: center;
	min-height: 2.5rem;
	padding: 0 1rem;
}

.gn-writer-article-edit .ql-toolbar button:hover,
.gn-writer-article-edit .ql-toolbar button:focus,
.gn-writer-article-edit .ql-toolbar button:active,
.gn-writer-article-edit .ql-toolbar button.ql-active {
	background-color: var(--gn-primary-soft);
	color: var(--gn-primary-dark);
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__remove:hover,
.gn-writer-gallery-edit .gn-writer-gallery-photos__remove:focus,
.gn-writer-gallery-edit .gn-writer-gallery-photos__remove:active {
	background: var(--gn-surface);
	background-color: var(--gn-surface);
	color: var(--gn-danger);
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__cover-btn--active:hover,
.gn-writer-gallery-edit .gn-writer-gallery-photos__cover-btn--active:focus,
.gn-writer-gallery-edit .gn-writer-gallery-photos__cover-btn--active:focus-visible,
.gn-writer-gallery-edit .gn-writer-gallery-photos__cover-btn--active:active {
	background: var(--gn-warning-bg);
	background-color: var(--gn-warning-bg);
	border-color: var(--gn-detail-yellow);
	color: var(--gn-warning-text);
}

.gn-writer-article-edit__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.5rem auto 0;
	max-width: 720px;
}

.gn-writer-gallery-photos__toolbar {
	margin-bottom: 0.75rem;
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__row {
	align-items: center;
	border-color: var(--gn-border);
	grid-template-columns: 96px minmax(0, 1fr);
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__row.is-capa {
	border-color: var(--gn-detail-yellow);
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__thumb-wrap {
	position: relative;
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__thumb {
	display: block;
	height: 72px;
	object-fit: cover;
	width: 96px;
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__cover-badge {
	background: var(--gn-warning-bg);
	border-radius: 4px;
	bottom: 0.2rem;
	color: var(--gn-warning-text);
	font-size: 0.62rem;
	font-weight: 700;
	left: 0.2rem;
	letter-spacing: 0.02em;
	line-height: 1;
	padding: 0.18rem 0.32rem;
	position: absolute;
	text-transform: uppercase;
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__cover-row {
	flex-wrap: wrap;
	gap: 0.35rem;
	grid-column: auto;
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__seo-btn,
.gn-writer-gallery-edit .gn-writer-gallery-photos__icon-btn {
	align-items: center;
	display: inline-flex;
	height: 2.25rem;
	justify-content: center;
	min-width: 2.25rem;
	padding: 0 0.5rem;
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__seo-btn {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__seo-btn:hover,
.gn-writer-gallery-edit .gn-writer-gallery-photos__seo-btn:focus,
.gn-writer-gallery-edit .gn-writer-gallery-photos__seo-btn:focus-visible,
.gn-writer-gallery-edit .gn-writer-gallery-photos__seo-btn:active {
	background: var(--gn-primary-soft);
	background-color: var(--gn-primary-soft);
	border-color: var(--gn-detail-blue);
	color: var(--gn-primary-dark);
	outline: none;
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__mask-icon {
	display: block;
}

.gn-writer-gallery-edit .gn-writer-gallery-photos__order-btn {
	min-width: 2.25rem;
	text-align: center;
}

.gn-writer-gallery-seo-modal {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 10px;
	box-shadow: var(--gn-modal-shadow);
	box-sizing: border-box;
	color: var(--gn-text);
	margin: auto;
	max-width: 22rem;
	padding: 0.7rem;
	width: calc(100% - 2rem);
}

.gn-writer-gallery-seo-modal::backdrop {
	background: rgba(17, 24, 39, 0.5);
}

.gn-writer-gallery-seo-modal__row {
	align-items: center;
	display: flex;
	gap: 0.35rem;
}

.gn-writer-gallery-seo-modal__row .gn-album-wizard__input {
	flex: 1;
	margin: 0;
	min-width: 0;
}

.gn-writer-gallery-seo-modal__icon {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 6px;
	color: var(--gn-text);
	cursor: pointer;
	flex-shrink: 0;
}

.gn-writer-gallery-seo-modal__icon:hover,
.gn-writer-gallery-seo-modal__icon:focus,
.gn-writer-gallery-seo-modal__icon:focus-visible,
.gn-writer-gallery-seo-modal__icon:active {
	background: var(--gn-primary-soft);
	border-color: var(--gn-detail-blue);
	color: var(--gn-primary-dark);
	outline: none;
}

.gn-writer-gallery-seo-modal__icon--ok {
	border-color: var(--gn-success);
	color: var(--gn-success);
}

.gn-writer-gallery-seo-modal__icon--ok:hover,
.gn-writer-gallery-seo-modal__icon--ok:focus,
.gn-writer-gallery-seo-modal__icon--ok:focus-visible,
.gn-writer-gallery-seo-modal__icon--ok:active {
	background: var(--gn-primary-soft);
	border-color: var(--gn-success);
	color: var(--gn-success);
}

.gn-writer-slide-edit .gn-writer-gallery-photos__row,
.gn-slide-wizard .gn-writer-gallery-photos__row {
	align-items: start;
	grid-template-columns: 72px minmax(0, 1fr);
}

.gn-writer-slide-edit .gn-writer-gallery-photos__thumb,
.gn-slide-wizard .gn-writer-gallery-photos__thumb {
	aspect-ratio: 210 / 297;
	height: auto;
	object-fit: cover;
	width: 72px;
}

.gn-writer-slide-edit .gn-writer-gallery-photos__cover-row,
.gn-slide-wizard .gn-writer-gallery-photos__cover-row {
	grid-column: auto;
}

.gn-writer-slide-edit .gn-writer-gallery-edit__photo-meta textarea,
.gn-slide-wizard .gn-writer-gallery-edit__photo-meta textarea {
	min-height: 4.5rem;
	resize: vertical;
}

.gn-writer-video-edit .gn-video-wizard__media {
	margin-top: 0;
}

/* --- PAINEL ADM (/admin) ---------------------------------------- */
.gn-admin-dashboard-page #main {
	margin-top: 0;
	overflow-x: hidden;
	padding-bottom: var(--gn-gap-ad);
	padding-top: var(--gn-gap-ad);
}

/* /conta/negocios — coluna clara; respiro = --gn-gap-ad no #main (não no container). */
.gn-admin-dashboard-page #main.gn-conta-negocios-hub {
	margin: 0;
}

#main.gn-conta-negocios-hub > .container.gn-page-surface {
	background: var(--gn-page-bg);
	border-radius: 0;
	display: flow-root;
	margin-bottom: 0;
	margin-top: 0;
	padding-bottom: 0;
	padding-top: 0;
}

.gn-conta-negocios-hub__section-title {
	margin-bottom: 1.25rem;
}

.gn-conta-negocios-hub__section-title h1,
.gn-conta-negocios-hub__section-title h1 a,
.gn-conta-negocios-hub__section-title h2 {
	color: var(--gn-primary);
	font-family: var(--gn-font-display);
	font-size: var(--gn-type-h2) !important;
	font-weight: 700 !important;
	letter-spacing: -0.02em;
	line-height: 1.2 !important;
	margin: 0;
	text-decoration: none;
}

form.gn-conta-negocios__form + .gn-conta-negocios-hub__section-title {
	margin-top: 2.75rem;
}

.gn-conta-negocios-hub__lead {
	color: var(--gn-muted);
	font-size: 0.95rem;
	line-height: 1.4;
	margin: 0.35rem 0 0;
}

.gn-conta-negocios-hub .gn-advertiser-stats--publications {
	max-width: none;
}

/* Hub: um único painel por seção (sem cartão interno desalinhado). */
#main.gn-conta-negocios-hub .gn-conta-negocios__item {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
}

#main.gn-conta-negocios-hub .gn-conta-negocios__item + .gn-conta-negocios__item {
	border-top: 1px solid var(--gn-border);
	margin-top: 1.1rem;
	padding-top: 1.1rem;
}

#main.gn-conta-negocios-hub .gn-conta-negocios__metrics {
	margin-bottom: 1.1rem;
}

#main.gn-conta-negocios-hub .gn-negocios-hub-empty {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
}

.gn-admin-hero {
	background: linear-gradient(135deg, var(--gn-primary) 0%, var(--gn-primary-dark) 100%);
	color: var(--gn-inverse);
	margin-bottom: 1.75rem;
	padding: 1.5rem 0 2rem;
}

.gn-admin-hero__back {
	margin: 0 0 1rem;
}

.gn-admin-hero__back a {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	text-decoration: none;
}

.gn-admin-hero__back a:hover,
.gn-admin-hero__back a:focus-visible {
	color: var(--gn-inverse);
	text-decoration: underline;
}

.gn-admin-hero__head {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
}

.gn-admin-hero__eyebrow {
	color: var(--gn-auth-accent);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 0.35rem;
	text-transform: uppercase;
}

.gn-admin-hero__title {
	color: var(--gn-inverse);
	font-size: 1.85rem;
	font-weight: 700;
	margin: 0;
}

.gn-admin-hero__title-row {
	align-items: center;
	display: flex;
	gap: 1rem;
}

.gn-admin-hero__title-row .gn-admin-hero__title {
	line-height: 1.2;
}

.gn-admin-hero__title-row .gn-back-btn--on-hero {
	margin-bottom: 0;
}

.gn-admin-hero__badge {
	align-items: center;
	background: rgba(36, 90, 130, 0.16);
	border: 1px solid rgba(36, 90, 130, 0.45);
	border-radius: 50%;
	color: var(--gn-auth-accent);
	display: flex;
	flex-shrink: 0;
	font-size: 1.9rem;
	height: 4.5rem;
	justify-content: center;
	width: 4.5rem;
}

.gn-admin-dashboard {
	max-width: 100%;
	min-width: 0;
	overflow-x: hidden;
	padding-bottom: 1rem;
}

/* Menu lateral do painel — corpo 80vw; rail 10% × 100% da altura; rola com a página; nome no hover */
body:has(.gn-admin-sidebar):not(.gn-admin-embed) #main {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	max-width: 80vw;
	width: 80vw;
}

#main:has(> .gn-admin-sidebar) {
	align-items: stretch;
	display: flex;
	gap: 1.25rem;
}

#main:has(> .gn-admin-sidebar) > .gn-admin-sidebar {
	align-self: stretch;
	flex: 0 0 10%;
	max-width: 10%;
	min-width: calc(2.93rem + 0.8rem);
	overflow: visible;
	z-index: 2;
}

#main:has(> .gn-admin-sidebar) > .container {
	flex: 1 1 auto;
	max-width: none;
	min-width: 0;
	width: auto;
}

.gn-admin-sidebar.gn-admin-card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	overflow: visible;
	padding: 0;
	position: relative;
}

.gn-admin-sidebar__inner {
	overflow: visible;
}

.gn-admin-sidebar__user {
	align-items: center;
	border-bottom: 1px solid var(--gn-border);
	display: flex;
	flex-direction: column;
	padding: 1rem 0.4rem 0.85rem;
	text-align: center;
}

.gn-admin-sidebar__avatar.gn-auth-avatar {
	aspect-ratio: 1;
	border: 3px solid var(--gn-primary-soft);
	height: auto;
	margin-bottom: 0.5rem;
	max-width: 64px;
	object-fit: cover;
	width: 70%;
}

.gn-admin-sidebar__user-info {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	max-width: 100%;
}

.gn-admin-sidebar__user-name {
	color: var(--gn-text);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gn-admin-sidebar__user-role {
	color: var(--gn-muted);
	font-size: 0.68rem;
	font-weight: 500;
}

.gn-admin-nav {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin: 0;
	padding: 0.65rem 0.35rem 1rem;
}

.gn-admin-nav__link {
	align-items: center;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 10px;
	color: var(--gn-nav-color);
	display: flex;
	flex-direction: column;
	font-family: var(--gn-font-ui);
	justify-content: center;
	padding: 0.45rem 0.2rem;
	position: relative;
	text-decoration: none;
	transition: background 0.18s ease;
}

.gn-admin-nav__link i {
	flex-shrink: 0;
	font-size: 2.93rem;
	line-height: 1;
	text-align: center;
	width: 1em;
}

/* FA 4.1 não tem handshake; SVG no aside (evita tofu / quadrado vazio). */
.gn-admin-nav__link i.fa-handshake-o {
	font-family: inherit;
}

.gn-admin-nav__link i.fa-handshake-o::before {
	background-color: currentColor;
	content: "";
	display: block;
	font-family: inherit;
	height: 1em;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7.2 11.1 4.4 8.3a1.8 1.8 0 0 1 2.5-2.5l3.4 3.4 1.2-1.2a1.6 1.6 0 0 1 2.3 0l.6.6 1.8-1.8a1.8 1.8 0 0 1 2.5 2.5l-1.5 1.5 2.1 1.9a1.8 1.8 0 0 1-2.4 2.7l-2.3-2-1.2 1.2 1.7 1.7a1.2 1.2 0 1 1-1.7 1.7l-2.4-2.4-.9.9 1.5 1.5a1.2 1.2 0 1 1-1.7 1.7L6.6 16a1.8 1.8 0 0 1 0-2.5l1.6-1.6-1-.8zm5.2.2 1.3 1.3 1.2-1.2-1.3-1.3-1.2 1.2z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7.2 11.1 4.4 8.3a1.8 1.8 0 0 1 2.5-2.5l3.4 3.4 1.2-1.2a1.6 1.6 0 0 1 2.3 0l.6.6 1.8-1.8a1.8 1.8 0 0 1 2.5 2.5l-1.5 1.5 2.1 1.9a1.8 1.8 0 0 1-2.4 2.7l-2.3-2-1.2 1.2 1.7 1.7a1.2 1.2 0 1 1-1.7 1.7l-2.4-2.4-.9.9 1.5 1.5a1.2 1.2 0 1 1-1.7 1.7L6.6 16a1.8 1.8 0 0 1 0-2.5l1.6-1.6-1-.8zm5.2.2 1.3 1.3 1.2-1.2-1.3-1.3-1.2 1.2z'/%3E%3C/svg%3E") center / contain no-repeat;
	width: 1em;
}

.gn-admin-nav__label {
	color: inherit;
	display: block;
	font-family: var(--gn-font-ui);
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.2;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	text-align: center;
	transition: max-height 0.18s ease, opacity 0.18s ease, margin 0.18s ease;
	width: 100%;
	word-break: break-word;
}

.gn-admin-nav__link .gn-alert-badge {
	right: 0.15rem;
	top: 0.2rem;
	transform: none;
}

.gn-admin-nav__link:hover,
.gn-admin-nav__link:focus-visible {
	background: var(--gn-primary-soft);
	color: var(--gn-nav-color);
	outline: none;
	text-decoration: none;
}

.gn-admin-nav__link:hover .gn-admin-nav__label,
.gn-admin-nav__link:focus-visible .gn-admin-nav__label {
	margin-top: 0.2rem;
	max-height: 3rem;
	opacity: 1;
}

.gn-admin-nav__link--active {
	background: var(--gn-primary);
	border-color: var(--gn-primary);
	color: var(--gn-inverse);
}

.gn-admin-nav__link--active:hover,
.gn-admin-nav__link--active:focus-visible {
	color: var(--gn-inverse);
}

.gn-admin-nav__link--active .gn-admin-nav__label {
	color: inherit;
}

.gn-admin-sidebar-overlay,
.gn-admin-sidebar__tab {
	display: none;
}

@media (max-width: 767px) {
	body:has(.gn-admin-sidebar):not(.gn-admin-embed) #main {
		max-width: 100%;
		width: auto;
		padding-left: 1rem;
		padding-right: 1rem;
	}

	#main:has(> .gn-admin-sidebar) {
		display: block;
	}

	#main:has(> .gn-admin-sidebar) > .gn-admin-sidebar {
		border-radius: 0 12px 12px 0;
		bottom: auto;
		flex: none;
		left: 0;
		max-height: calc(100dvh - 1.5rem);
		max-width: none;
		min-width: 0;
		overflow: visible;
		pointer-events: none;
		position: fixed;
		top: 0.75rem;
		transform: translateX(-100%);
		transition: transform 0.22s ease;
		width: min(17rem, 82vw);
		z-index: 80;
	}

	body.gn-admin-sidebar-open #main:has(> .gn-admin-sidebar) > .gn-admin-sidebar {
		pointer-events: auto;
		transform: translateX(0);
	}

	.gn-admin-sidebar.gn-admin-card {
		height: auto;
		min-height: 0;
	}

	.gn-admin-sidebar__inner {
		overflow: visible;
	}

	.gn-admin-sidebar__tab {
		align-items: center;
		background: var(--gn-surface);
		border: 1px solid var(--gn-border);
		border-left: none;
		border-radius: 0 12px 12px 0;
		box-shadow: 6px 0 16px rgba(28, 53, 85, 0.12);
		color: var(--gn-primary);
		cursor: pointer;
		display: inline-flex;
		height: 3.5rem;
		justify-content: center;
		padding: 0;
		pointer-events: auto;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translate(100%, -50%);
		width: 2.5rem;
		z-index: 81;
	}

	.gn-admin-sidebar__tab:hover,
	.gn-admin-sidebar__tab:focus-visible {
		background: var(--gn-primary-soft);
		color: var(--gn-primary);
		outline: none;
	}

	body.gn-admin-sidebar-open .gn-admin-sidebar__tab i {
		transform: rotate(180deg);
	}

	.gn-admin-sidebar__tab i {
		font-size: 1.1rem;
		line-height: 1;
		transition: transform 0.22s ease;
	}

	.gn-admin-sidebar-overlay {
		background: rgba(20, 38, 64, 0.4);
		display: block;
		inset: 0;
		position: fixed;
		z-index: 70;
	}

	.gn-admin-sidebar-overlay[hidden] {
		display: none !important;
	}

	body.gn-admin-sidebar-lock {
		overflow: hidden;
	}

	.gn-admin-sidebar__user {
		padding: 0.7rem 0.4rem 0.55rem;
	}

	.gn-admin-sidebar__avatar.gn-auth-avatar {
		max-width: 42px;
		width: 42px;
	}

	.gn-admin-nav {
		display: grid;
		gap: 0.25rem;
		grid-template-columns: 1fr 1fr;
		padding: 0.45rem 0.4rem 0.7rem;
	}

	.gn-admin-nav__link {
		padding: 0.3rem 0.15rem;
	}

	.gn-admin-nav__link i {
		font-size: 1.55rem;
	}

	.gn-admin-nav__label {
		font-size: 0.62rem;
		margin-top: 0.15rem;
		max-height: 2.4rem;
		opacity: 1;
	}
}

/* ADM / USUÁRIOS — PAINEL EXPANSÍVEL (U2) */
.gn-admin-users-search {
	margin-bottom: 1.5rem;
	padding: 1rem 1.25rem 1.15rem;
}

.gn-admin-users-search__header {
	margin-bottom: 0.85rem;
}

.gn-admin-users-search__title {
	align-items: center;
	color: var(--gn-text);
	display: flex;
	font-size: 1.05rem;
	font-weight: 700;
	gap: 0.45rem;
	line-height: 1.3;
	margin: 0 0 0.25rem;
}

.gn-admin-users-search__title-icon {
	color: var(--gn-primary);
	font-size: 0.95rem;
}

.gn-admin-users-search__lead {
	color: var(--gn-muted);
	font-size: 0.82rem;
	line-height: 1.4;
	margin: 0;
}

.gn-admin-users-search__label {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.gn-admin-users-search__form {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.gn-admin-users-search__field {
	flex: 1 1 16rem;
	min-width: 0;
	position: relative;
}

.gn-admin-users-search__field-icon {
	color: var(--gn-muted);
	font-size: 0.9rem;
	left: 0.85rem;
	pointer-events: none;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	width: 1rem;
}

/* Mesma altura 2.5rem das barras .gn-writer-search (N.5 / G.0 / B.0).
   Seletor com input[type="search"] vence o padding/height globais (4px 14px / 42px). */
input[type="search"].gn-admin-users-search__input,
.gn-admin-users-search__submit {
	box-sizing: border-box;
	font-size: 0.9rem;
	height: 2.5rem;
	line-height: 1.25;
	min-height: 2.5rem;
	padding-bottom: 0;
	padding-top: 0;
}

input[type="search"].gn-admin-users-search__input {
	-webkit-appearance: none;
	appearance: none;
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-text);
	padding: 0 0.75rem 0 2.75rem;
	width: 100%;
}

input[type="search"].gn-admin-users-search__input::-webkit-search-decoration,
input[type="search"].gn-admin-users-search__input::-webkit-search-results-button,
input[type="search"].gn-admin-users-search__input::-webkit-search-results-decoration {
	-webkit-appearance: none;
	display: none;
}

input[type="search"].gn-admin-users-search__input:focus {
	border-color: var(--gn-primary);
	outline: none;
	box-shadow: 0 0 0 2px rgba(28, 53, 85, 0.2);
}

.gn-admin-users-search__submit {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	justify-content: center;
	white-space: nowrap;
}

.gn-admin-users-search__select {
	appearance: none;
	background-color: var(--gn-bg);
	background-image: linear-gradient(45deg, transparent 50%, var(--gn-muted) 50%),
		linear-gradient(135deg, var(--gn-muted) 50%, transparent 50%);
	background-position: calc(100% - 14px) calc(50% - 2px), calc(100% - 9px) calc(50% - 2px);
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	box-sizing: border-box;
	color: var(--gn-text);
	flex: 0 1 auto;
	font-size: 0.9rem;
	height: 2.5rem;
	line-height: 1.25;
	min-height: 2.5rem;
	padding: 0 1.75rem 0 0.7rem;
}

.gn-admin-users-search__select--sort {
	max-width: 14rem;
	min-width: 11rem;
}

.gn-admin-users-search__select--filtro {
	max-width: 12rem;
	min-width: 8.5rem;
}

.gn-admin-users-search__select:focus {
	border-color: var(--gn-primary);
	box-shadow: 0 0 0 2px rgba(28, 53, 85, 0.2);
	outline: none;
}

/* Botão fit do admin — mesmas dimensões do Buscar em /admin/usuarios. */
.gn-admin-btn {
	align-items: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	box-sizing: border-box;
	color: var(--gn-text);
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 0.9rem;
	font-weight: 600;
	height: 2.5rem;
	justify-content: center;
	line-height: 1.25;
	min-height: 2.5rem;
	padding: 0 1rem;
	text-decoration: none;
	white-space: nowrap;
}

.gn-admin-btn:hover,
.gn-admin-btn:focus-visible {
	background: var(--gn-bg);
	border-color: var(--gn-muted);
	color: var(--gn-text);
	outline: none;
	text-decoration: none;
}

.gn-admin-btn--primary {
	background: var(--gn-primary);
	border-color: transparent;
	color: var(--gn-inverse);
}

.gn-admin-btn--primary:hover,
.gn-admin-btn--primary:focus-visible {
	background: var(--gn-primary-dark);
	border-color: transparent;
	color: var(--gn-inverse);
}

.gn-admin-btn--danger {
	background: var(--gn-danger);
	border-color: transparent;
	color: var(--gn-inverse);
}

.gn-admin-btn--danger:hover,
.gn-admin-btn--danger:focus-visible {
	filter: brightness(0.92);
	color: var(--gn-inverse);
}

.gn-admin-planos__header {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: space-between;
}

.gn-admin-planos__toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.gn-admin-planos__create {
	border-top: 1px solid var(--gn-border);
	margin-top: 0.75rem;
	padding-top: 1rem;
}

.gn-admin-planos__form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.gn-admin-planos__grid {
	display: grid;
	gap: 0.85rem 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gn-admin-planos__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.gn-admin-planos__field span {
	color: var(--gn-muted);
	font-size: 0.8rem;
	font-weight: 600;
}

.gn-admin-planos__field input,
.gn-admin-planos__field textarea {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-text);
	font: inherit;
	padding: 0.55rem 0.7rem;
	width: 100%;
}

.gn-admin-planos__field input:focus,
.gn-admin-planos__field textarea:focus {
	border-color: var(--gn-primary);
	box-shadow: 0 0 0 2px rgba(28, 53, 85, 0.2);
	outline: none;
}

.gn-admin-planos__field--wide {
	grid-column: 1 / -1;
}

.gn-admin-planos__check {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	grid-column: 1 / -1;
}

.gn-admin-planos__empty,
.gn-admin-planos__list {
	margin: 1rem 0 0;
}

.gn-admin-planos__list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	list-style: none;
	padding: 0;
}

.gn-admin-plano {
	border: 1px solid var(--gn-border);
	border-radius: 10px;
	padding: 0.85rem 1rem;
}

.gn-admin-plano__row {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
}

.gn-admin-plano__name {
	color: var(--gn-text);
	font-weight: 700;
	margin: 0 0 0.2rem;
}

.gn-admin-plano__meta {
	color: var(--gn-muted);
	font-size: 0.85rem;
	margin: 0;
}

.gn-admin-plano__expand {
	align-items: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-text);
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 0.4rem;
	height: 2.5rem;
	padding: 0 0.85rem;
}

.gn-admin-plano__expand:hover,
.gn-admin-plano__expand:focus-visible {
	background: var(--gn-bg);
	outline: none;
}

.gn-admin-plano.is-open .gn-admin-plano__expand .fa {
	transform: rotate(180deg);
}

.gn-admin-plano__body {
	border-top: 1px solid var(--gn-border);
	margin-top: 0.85rem;
	padding-top: 0.85rem;
}

.gn-admin-plano__facts {
	display: grid;
	gap: 0.65rem 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 0 1rem;
}

.gn-admin-plano__facts dt {
	color: var(--gn-muted);
	font-size: 0.75rem;
	font-weight: 600;
	margin: 0;
	text-transform: uppercase;
}

.gn-admin-plano__facts dd {
	margin: 0.15rem 0 0;
}

.gn-admin-planos__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.gn-admin-planos__delete {
	margin-top: 0.75rem;
}

.gn-admin-planos__limites {
	border: 1px solid var(--gn-border);
	border-radius: 10px;
	display: grid;
	gap: 0.85rem 1rem;
	grid-column: 1 / -1;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	min-width: 0;
	padding: 1rem;
}

.gn-admin-planos__limites legend {
	color: var(--gn-text);
	font-size: 0.95rem;
	font-weight: 700;
	padding: 0 0.35rem;
}

.gn-admin-planos__limites-hint {
	color: var(--gn-muted);
	font-size: 0.8rem;
	grid-column: 1 / -1;
	margin: 0;
}

.gn-admin-planos__check--toggle,
.gn-admin-planos__publicacoes-global,
.gn-admin-planos__publicacoes-cats {
	grid-column: 1 / -1;
}

.gn-admin-planos__publicacoes-cats {
	display: grid;
	gap: 0.85rem 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gn-admin-planos__publicacoes-global[hidden],
.gn-admin-planos__publicacoes-cats[hidden] {
	display: none;
}

@media (max-width: 767px) {
	.gn-admin-planos__grid,
	.gn-admin-plano__facts,
	.gn-admin-planos__limites,
	.gn-admin-planos__publicacoes-cats {
		grid-template-columns: 1fr;
	}
}

.gn-admin-contrato-modal {
	align-items: flex-start;
	bottom: 0;
	display: none;
	justify-content: center;
	left: 0;
	overflow-y: auto;
	padding: 1.5rem 0.75rem 2rem;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 11000;
}

.gn-admin-contrato-modal.is-open {
	display: flex;
}

.gn-admin-contrato-modal[hidden] {
	display: none !important;
}

.gn-admin-contrato-modal__backdrop {
	background: rgba(15, 23, 42, 0.5);
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
}

.gn-admin-contrato-modal__dialog {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	box-shadow: var(--gn-modal-shadow);
	margin: 0 auto;
	max-width: 32rem;
	padding: 1.35rem 1.5rem 1.5rem;
	position: relative;
	width: 100%;
	z-index: 1;
}

.gn-admin-contrato-modal__header {
	align-items: flex-start;
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.gn-admin-contrato-modal__step {
	color: var(--gn-muted);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0 0 0.2rem;
	text-transform: uppercase;
}

.gn-admin-contrato-modal__title {
	color: var(--gn-text);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}

.gn-admin-contrato-modal__close {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 6px;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	font-size: 1.5rem;
	height: 2rem;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 2rem;
}

.gn-admin-contrato-modal__close:hover,
.gn-admin-contrato-modal__close:focus-visible {
	color: var(--gn-text);
	outline: none;
}

.gn-admin-contrato-modal__lead {
	color: var(--gn-muted);
	font-size: 0.9rem;
	line-height: 1.45;
	margin: 0 0 1rem;
}

.gn-admin-contrato-modal__label {
	color: var(--gn-text);
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	margin: 0.75rem 0 0.35rem;
}

.gn-admin-contrato-modal__search {
	margin-bottom: 0.65rem;
	width: 100%;
}

.gn-admin-contrato-modal__search .gn-admin-users-search__input {
	width: 100%;
}

.gn-admin-contrato-modal__status {
	color: var(--gn-muted);
	font-size: 0.82rem;
	margin: 0 0 0.75rem;
}

.gn-admin-contrato-modal__hits {
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	list-style: none;
	margin: 0 0 0.85rem;
	max-height: 14rem;
	overflow-y: auto;
	padding: 0;
	transition: border-color 0.15s ease;
}

.gn-admin-contrato-modal__hits:hover,
.gn-admin-contrato-modal__hits:focus-within {
	border-color: var(--gn-primary);
}

.gn-admin-contrato-modal__hits[hidden] {
	display: none;
}

.gn-admin-contrato-modal__hit {
	align-items: center;
	border-bottom: 1px solid var(--gn-border);
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	padding: 0.7rem 0.85rem;
}

.gn-admin-contrato-modal__hits li:last-child {
	border-bottom: 0;
}

.gn-admin-contrato-modal__hit-info {
	min-width: 0;
}

.gn-admin-contrato-modal__hit-name {
	font-size: 0.92rem;
	font-weight: 600;
	margin: 0 0 0.15rem;
}

.gn-admin-contrato-modal__hit-meta {
	color: var(--gn-muted);
	font-size: 0.8rem;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gn-admin-contrato-modal__select-btn,
.gn-admin-contrato-modal__select-btn:hover,
.gn-admin-contrato-modal__select-btn:focus,
.gn-admin-contrato-modal__select-btn:focus-visible,
.gn-admin-contrato-modal__select-btn:active {
	background: var(--gn-surface);
	background-color: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	box-shadow: none;
	color: var(--gn-text);
	cursor: pointer;
	flex: 0 0 auto;
	font: inherit;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.2;
	padding: 0.4rem 0.75rem;
	text-decoration: none;
}

.gn-admin-contrato-modal__select-btn:focus-visible {
	outline: none;
}

.gn-admin-contrato-modal__selected {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	padding: 0.75rem 0.9rem;
}

.gn-admin-contrato-modal__selected[hidden] {
	display: none;
}

.gn-admin-contrato-modal__selected-label {
	color: var(--gn-muted);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0 0 0.25rem;
	text-transform: uppercase;
}

.gn-admin-contrato-modal__selected-name {
	font-size: 1rem;
	font-weight: 700;
	margin: 0;
}

.gn-admin-contrato-modal__plano-select {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-text);
	font: inherit;
	padding: 0.55rem 0.7rem;
	width: 100%;
}

.gn-admin-contrato-modal__plano-select:focus {
	border-color: var(--gn-primary);
	box-shadow: 0 0 0 2px rgba(28, 53, 85, 0.2);
	outline: none;
}

.gn-admin-contrato-modal__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: flex-end;
	margin-top: 1.15rem;
}

.gn-admin-contrato-modal__actions [data-assinatura-pular] {
	margin-right: auto;
}

.gn-admin-contrato-modal__actions [data-assinatura-pular][hidden],
.gn-admin-contrato-modal__actions [data-assinatura-proximo][hidden] {
	display: none;
}

.gn-admin-contrato-modal__actions .gn-btn:disabled,
.gn-admin-contrato-modal__actions .gn-btn:disabled:hover,
.gn-admin-contrato-modal__actions .gn-btn:disabled:focus,
.gn-admin-contrato-modal__actions .gn-btn:disabled:active {
	cursor: not-allowed;
	opacity: 0.5;
}

body.gn-admin-contrato-modal-open {
	overflow: hidden;
}

[data-admin-users-results].is-loading {
	opacity: 0.72;
	pointer-events: none;
	transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
	[data-admin-users-results].is-loading {
		transition: none;
	}
}

.gn-admin-users-stats {
	margin-bottom: 1.5rem;
	padding: 1rem 1.25rem;
}

.gn-admin-users-stats__header {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: space-between;
}

.gn-admin-users-stats__intro {
	min-width: 0;
}

.gn-admin-users-stats__title {
	align-items: center;
	color: var(--gn-text);
	display: flex;
	font-size: 1.05rem;
	font-weight: 700;
	gap: 0.45rem;
	margin: 0 0 0.2rem;
}

.gn-admin-users-stats__title-icon {
	color: var(--gn-primary);
	font-size: 0.95rem;
}

.gn-admin-users-stats__summary {
	color: var(--gn-muted);
	font-size: 0.82rem;
	line-height: 1.4;
	margin: 0;
}

.gn-admin-users-stats__toggle {
	align-items: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	font-family: inherit;
	font-size: 0.8rem;
	font-weight: 600;
	gap: 0.4rem;
	line-height: 1;
	padding: 0.45rem 0.75rem;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.gn-admin-users-stats__toggle:hover,
.gn-admin-users-stats__toggle:focus-visible {
	background: var(--gn-bg);
	border-color: var(--gn-primary);
	color: var(--gn-text);
	outline: none;
}

.gn-admin-users-stats__toggle .fa {
	font-size: 0.7rem;
	transition: transform 0.2s ease;
}

.gn-admin-users-stats.is-expanded .gn-admin-users-stats__toggle .fa {
	transform: rotate(180deg);
}

.gn-admin-users-stats__panel {
	border-top: 1px solid var(--gn-border);
	margin-top: 1rem;
	padding-top: 1rem;
}

.gn-admin-users-stats__panel[hidden] {
	display: none;
}

.gn-admin-users-stats__panel .gn-admin-kpis {
	margin-bottom: 1.25rem;
}

.gn-admin-users-stats__extras {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gn-admin-users-stats__extras .gn-admin-card {
	box-shadow: none;
	margin: 0;
}

@media (prefers-reduced-motion: reduce) {
	.gn-admin-users-stats__toggle .fa {
		transition: none;
	}
}

/* Lista de usuários colapsável (/admin/usuarios) */
.gn-admin-users-list {
	margin-bottom: 1.5rem;
	padding: 1rem 1.25rem;
}

.gn-admin-users-list__header {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: space-between;
}

.gn-admin-users-list__intro {
	min-width: 0;
}

.gn-admin-users-list__title {
	align-items: center;
	color: var(--gn-text);
	display: flex;
	font-size: 1.05rem;
	font-weight: 700;
	gap: 0.45rem;
	margin: 0 0 0.2rem;
}

.gn-admin-users-list__title-icon {
	color: var(--gn-primary);
	font-size: 0.95rem;
}

.gn-admin-users-list__summary {
	color: var(--gn-muted);
	font-size: 0.82rem;
	line-height: 1.4;
	margin: 0;
}

.gn-admin-users-list__toolbar {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 0.85rem;
	margin-left: auto;
}

.gn-admin-users-list__export {
	align-items: center;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.gn-admin-users-list__export-link {
	align-items: center;
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-text);
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 600;
	gap: 0.4rem;
	line-height: 1;
	padding: 0.4rem 0.85rem;
	text-decoration: none;
}

.gn-admin-users-list__export-link:hover,
.gn-admin-users-list__export-link:focus-visible {
	border-color: var(--gn-primary);
	color: var(--gn-primary);
	outline: none;
}

.gn-admin-users-list__export-link .fa {
	font-size: 0.85rem;
}

.gn-admin-users-list__toggle {
	align-items: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 600;
	gap: 0.4rem;
	padding: 0.4rem 0.85rem;
}

.gn-admin-users-list__toggle:hover,
.gn-admin-users-list__toggle:focus-visible {
	border-color: var(--gn-primary);
	color: var(--gn-primary);
	outline: none;
}

.gn-admin-users-list__toggle .fa {
	font-size: 0.75rem;
	transition: transform 0.15s ease;
}

.gn-admin-users-list.is-expanded .gn-admin-users-list__toggle .fa {
	transform: rotate(180deg);
}

.gn-admin-users-list__panel {
	margin-top: 1rem;
}

.gn-admin-users-list__panel[hidden] {
	display: none;
}

.gn-admin-users-list.is-loading {
	opacity: 0.72;
	pointer-events: none;
}

.gn-admin-users-print {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	margin: 1.5rem auto 2rem;
	max-width: 960px;
	padding: 1.5rem 1.75rem 2rem;
}

.gn-admin-users-print__toolbar {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: flex-end;
	margin-bottom: 1.25rem;
}

.gn-admin-users-print__toolbar .gn-btn {
	align-items: center;
	display: inline-flex;
	gap: 0.4rem;
}

.gn-admin-users-print__masthead {
	align-items: flex-start;
	border-bottom: 1px solid var(--gn-border);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	margin-bottom: 1.15rem;
	padding-bottom: 1rem;
}

.gn-admin-users-print__logo {
	display: block;
	height: 40px;
	width: auto;
}

.gn-admin-users-print__heading {
	flex: 1 1 16rem;
	min-width: 0;
}

.gn-admin-users-print__title {
	color: var(--gn-text);
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.35rem;
}

.gn-admin-users-print__meta,
.gn-admin-users-print__count {
	color: var(--gn-muted);
	font-size: 0.88rem;
	line-height: 1.45;
	margin: 0;
}

.gn-admin-users-print__count {
	margin-top: 0.2rem;
}

.gn-admin-users-print__truncated,
.gn-admin-users-print__empty {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-text);
	font-size: 0.9rem;
	margin: 0 0 1rem;
	padding: 0.75rem 0.9rem;
}

.gn-admin-users-print__table {
	border-collapse: collapse;
	width: 100%;
}

.gn-admin-users-print__table th,
.gn-admin-users-print__table td {
	border-bottom: 1px solid var(--gn-border);
	font-size: 0.88rem;
	padding: 0.55rem 0.65rem;
	text-align: left;
	vertical-align: top;
}

.gn-admin-users-print__table th {
	color: var(--gn-muted);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gn-admin-users-print__table tbody tr:nth-child(even) {
	background: var(--gn-bg);
}

@media print {
	.gn-admin-users-print-page #header,
	.gn-admin-users-print-page footer,
	.gn-admin-users-print-page .gn-admin-users-print__toolbar {
		display: none !important;
	}

	.gn-admin-users-print-page #main,
	.gn-admin-users-print-page .container,
	.gn-admin-users-print {
		background: #fff;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		margin: 0;
		max-width: none;
		padding: 0;
		width: 100%;
	}

	.gn-admin-users-print__masthead {
		border-bottom-color: #ccc;
	}

	.gn-admin-users-print__table th,
	.gn-admin-users-print__table td {
		border-bottom-color: #ddd;
		color: #111;
	}

	.gn-admin-users-print__table tbody tr:nth-child(even) {
		background: #f4f4f4;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gn-admin-users-list__toggle .fa {
		transition: none;
	}
}

/* KPIs */
.gn-admin-kpis {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	margin-bottom: 1.5rem;
}

.gn-admin-kpi {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-left: 4px solid var(--gn-auth-accent);
	border-radius: var(--gn-card-radius);
	box-shadow: var(--gn-card-shadow);
	padding: 1.15rem 1.25rem;
}

.gn-admin-kpi--attention {
	border-left-color: var(--gn-danger);
}

.gn-admin-kpi__icon {
	color: var(--gn-auth-accent);
	display: block;
	font-size: 1.15rem;
	margin-bottom: 0.6rem;
}

.gn-admin-kpi__icon--users {
	color: var(--gn-primary);
}

.gn-admin-kpi__icon--content {
	color: var(--gn-primary);
}

.gn-admin-kpi__icon--views {
	color: var(--gn-success);
}

.gn-admin-kpi__icon--queue {
	color: var(--gn-warning-text);
}

.gn-admin-kpi__label {
	color: var(--gn-muted);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin: 0 0 0.2rem;
	text-transform: uppercase;
}

.gn-admin-kpi__value {
	color: var(--gn-text);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 0.35rem;
}

.gn-admin-kpi__meta {
	color: var(--gn-muted);
	font-size: 0.8rem;
	line-height: 1.4;
	margin: 0;
}

/* Grid principal (outras telas ADM que ainda usam main + side) */
.gn-admin-grid {
	align-items: start;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
	margin-bottom: 1.5rem;
}

.gn-admin-grid__main,
.gn-admin-grid__side {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	min-width: 0;
}

/* /admin — cards de detalhe ocupam a largura do corpo (após remoção do top + atalhos) */
.gn-admin-detail-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 1.5rem 0 0;
}

.gn-admin-card {
	padding: 1.5rem;
}

.gn-admin-card--compact {
	padding: 1.25rem;
}

.gn-admin-card__header {
	align-items: center;
	border-bottom: 2px solid var(--gn-auth-accent);
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	justify-content: space-between;
	margin-bottom: 0.85rem;
	padding-bottom: 0.75rem;
}

.gn-admin-card__title {
	align-items: center;
	color: var(--gn-text);
	display: flex;
	font-size: 1.15rem;
	font-weight: 700;
	gap: 0.5rem;
	margin: 0;
}

.gn-admin-card__title-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	min-width: 0;
}

.gn-admin-card__title--compact {
	border-bottom: 1px solid var(--gn-border);
	font-size: 1rem;
	margin-bottom: 0.75rem;
	padding-bottom: 0.6rem;
}

.gn-admin-card__title-icon {
	color: var(--gn-auth-accent);
	font-size: 0.95rem;
}

.gn-admin-card__hint {
	color: var(--gn-muted);
	font-size: 0.8rem;
}

.gn-admin-card__action {
	color: var(--gn-auth-accent);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
}

.gn-admin-card__action:hover,
.gn-admin-card__action:focus-visible {
	color: var(--gn-accent-text);
	outline: none;
	text-decoration: underline;
}

.gn-admin-card--compact .gn-admin-card__action {
	display: inline-block;
	margin-top: 0.85rem;
}

.gn-admin-card__lead {
	color: var(--gn-muted);
	font-size: 0.86rem;
	line-height: 1.45;
	margin: 0 0 1.1rem;
}

.gn-admin-card__footnote {
	color: var(--gn-muted);
	font-size: 0.76rem;
	line-height: 1.4;
	margin: 0.75rem 0 0;
}

.gn-seo-pageviews {
	margin: 0.75rem 0 0;
	min-width: 0;
	width: 100%;
}

.gn-admin-zebra-table:not(:has(> tbody + tbody)) tbody tr:nth-child(odd of :not(.gn-admin-users__detail-row)) {
	background: var(--gn-surface);
}

.gn-admin-zebra-table:not(:has(> tbody + tbody)) tbody tr:nth-child(even of :not(.gn-admin-users__detail-row)) {
	background: var(--gn-bg);
}

.gn-admin-zebra-table:has(> tbody + tbody) > tbody:nth-of-type(odd) > tr:not(.gn-admin-users__detail-row) {
	background: var(--gn-surface);
}

.gn-admin-zebra-table:has(> tbody + tbody) > tbody:nth-of-type(even) > tr:not(.gn-admin-users__detail-row) {
	background: var(--gn-bg);
}

.gn-admin-zebra-table tbody tr:not(.gn-admin-users__detail-row):hover {
	background: var(--gn-primary-soft);
}

.gn-seo-pageviews th,
.gn-seo-pageviews td {
	padding: 0.55rem 0.75rem;
	text-align: left;
	vertical-align: top;
}

.gn-seo-pageviews th {
	background: var(--gn-bg);
	color: var(--gn-muted);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

/* Gráfico de acessos por dia */
.gn-admin-chart {
	align-items: stretch;
	display: flex;
	gap: 0.4rem;
	justify-content: space-between;
}

.gn-admin-chart__col {
	align-items: center;
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.gn-admin-chart__value {
	color: var(--gn-muted);
	font-size: 0.7rem;
	font-weight: 600;
}

.gn-admin-chart__track {
	align-items: flex-end;
	background: var(--gn-bg);
	border-radius: 5px;
	display: flex;
	height: 140px;
	overflow: hidden;
	width: 100%;
}

.gn-admin-chart__bar {
	background: linear-gradient(180deg, var(--gn-auth-accent) 0%, var(--gn-accent-text) 100%);
	border-radius: 5px 5px 0 0;
	min-height: 2px;
	width: 100%;
}

.gn-admin-chart__bar--empty {
	background: var(--gn-border);
	height: 2px;
}

.gn-admin-chart__label {
	color: var(--gn-muted);
	font-size: 0.68rem;
	white-space: nowrap;
}

/* Listas de detalhamento */
.gn-admin-stat-list {
	margin: 0;
}

.gn-admin-stat-list__item {
	align-items: baseline;
	border-bottom: 1px solid var(--gn-bg);
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	padding: 0.55rem 0;
}

.gn-admin-stat-list__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.gn-admin-stat-list__item dt {
	color: var(--gn-muted);
	font-size: 0.86rem;
	font-weight: 500;
	margin: 0;
}

.gn-admin-stat-list__item dd {
	color: var(--gn-text);
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0;
	text-align: right;
	white-space: nowrap;
}

.gn-admin-stat-list__aside {
	color: var(--gn-muted);
	font-size: 0.78rem;
	font-weight: 500;
	margin-left: 0.3rem;
}

@media (max-width: 991px) {
	.gn-admin-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.gn-admin-detail-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.gn-admin-hero {
		padding: 1.25rem 0 1.5rem;
	}

	.gn-admin-hero__head {
		gap: 1rem;
	}

	.gn-admin-hero__title {
		font-size: 1.45rem;
	}

	.gn-admin-hero__badge {
		font-size: 1.4rem;
		height: 3.25rem;
		width: 3.25rem;
	}

	.gn-admin-kpi__value {
		font-size: 1.65rem;
	}

	.gn-admin-card {
		padding: 1.15rem 1rem;
	}

	.gn-admin-score__table {
		font-size: 0.78rem;
	}

	.gn-admin-score__table th,
	.gn-admin-score__table td {
		padding-left: 0.35rem;
		padding-right: 0.35rem;
	}

	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(1),
	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__rank-cell {
		width: 10%;
	}

	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(2),
	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__title {
		width: 24%;
	}

	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(3),
	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__type {
		width: 14%;
	}

	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(4),
	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__author {
		width: 20%;
	}

	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(5),
	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__date {
		width: 16%;
	}

	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(6),
	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__points {
		width: 16%;
	}

	/* 14 barras não caberiam legíveis: rola horizontalmente com largura mínima por coluna */
	.gn-admin-chart {
		overflow-x: auto;
		padding-bottom: 0.35rem;
	}

	.gn-admin-chart__col {
		flex: 0 0 2.2rem;
	}

	.gn-admin-chart__track {
		height: 110px;
	}
}

@media (max-width: 480px) {
	.gn-admin-hero__head {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* Ranking de conteúdos (/admin/score) */
.gn-admin-card__header--plain {
	border-bottom: none;
	margin-bottom: 0.5rem;
	padding-bottom: 0;
}

.gn-admin-score__table td {
	vertical-align: middle;
}

.gn-admin-card--score-list .gn-writer-articles__table-wrap {
	overflow-x: hidden;
}

.gn-admin-score__empty {
	color: var(--gn-muted);
	margin: 0;
	padding: 0.25rem 1.25rem 1.15rem;
}

.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(1),
.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__rank-cell {
	text-align: center;
	width: 8%;
}

.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(2),
.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__title {
	width: 26%;
}

.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(3),
.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__type {
	width: 14%;
	white-space: nowrap;
}

.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(4),
.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__author {
	width: 24%;
}

.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(5),
.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__date {
	width: 14%;
	white-space: nowrap;
}

.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(6),
.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__points {
	font-variant-numeric: tabular-nums;
	text-align: right;
	white-space: nowrap;
	width: 14%;
}

.gn-admin-score__table td.gn-admin-score__title,
.gn-admin-score__table td.gn-admin-score__type,
.gn-admin-score__table td.gn-admin-score__author {
	max-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(1),
	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__rank-cell {
		width: 10%;
	}

	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(2),
	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__title {
		width: 24%;
	}

	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(3),
	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__type {
		width: 14%;
	}

	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(4),
	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__author {
		width: 20%;
	}

	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(5),
	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__date {
		width: 16%;
	}

	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table th:nth-child(6),
	.gn-writer-articles__table.gn-admin-users__table.gn-admin-score__table td.gn-admin-score__points {
		width: 16%;
	}
}

.gn-admin-score__title-link {
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gn-admin-score__title-link,
.gn-admin-score__title-link:hover,
.gn-admin-score__title-link:focus-visible,
.gn-admin-score__title-link:active {
	text-decoration: none;
}

.gn-admin-score__title-link:hover,
.gn-admin-score__title-link:focus-visible {
	color: var(--gn-accent-text);
	outline: none;
}

.gn-admin-score__rank {
	align-items: center;
	background: var(--gn-bg);
	border-radius: 999px;
	color: var(--gn-muted);
	display: inline-flex;
	font-size: 0.78rem;
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	height: 1.6rem;
	justify-content: center;
	min-width: 1.6rem;
	padding: 0 0.35rem;
}

.gn-admin-score__rank--podium {
	background: rgba(36, 90, 130, 0.18);
	color: var(--gn-warning-text);
}

.gn-admin-score__boost {
	background: var(--gn-warning-bg);
	border-radius: 999px;
	color: var(--gn-warning-text);
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.1rem 0.5rem;
}

.gn-admin-score__muted {
	color: var(--gn-muted);
}

.gn-admin-score__header {
	align-items: flex-start;
	gap: 0.75rem 1rem;
}

.gn-admin-score__title-wrap {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.55rem;
	min-width: 0;
}

.gn-admin-score__tips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.gn-admin-tip {
	position: relative;
}

.gn-admin-tip__btn {
	align-items: center;
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 600;
	gap: 0.35rem;
	padding: 0.28rem 0.7rem;
}

.gn-admin-tip__btn:hover,
.gn-admin-tip__btn:focus-visible,
.gn-admin-tip__btn.is-open {
	border-color: var(--gn-primary);
	color: var(--gn-primary);
	outline: none;
}

.gn-admin-tip__popover {
	background: var(--gn-text);
	border-radius: 8px;
	color: var(--gn-bg);
	font-size: 0.8rem;
	left: 0;
	line-height: 1.45;
	max-width: min(22rem, 85vw);
	padding: 0.7rem 0.85rem;
	position: absolute;
	top: calc(100% + 0.4rem);
	z-index: 8;
}

.gn-admin-tip__popover[hidden] {
	display: none;
}

.gn-admin-tip__popover p {
	margin: 0;
}

.gn-admin-tip__popover a {
	color: inherit;
	text-decoration: underline;
	word-break: break-all;
}

.gn-admin-tip__popover strong {
	display: block;
	margin-bottom: 0.25rem;
}

.gn-admin-score__meta-line {
	color: var(--gn-muted);
	font-size: 0.82rem;
	line-height: 1.5;
	margin: 0 0 0.65rem;
}

.gn-admin-score__meta-label {
	color: var(--gn-text);
	font-weight: 600;
}

.gn-admin-score__meta-sep {
	margin: 0 0.35rem;
	opacity: 0.55;
}

.gn-admin-score__formula {
	list-style: none;
	margin: 0 0 0.75rem;
	padding: 0;
}

.gn-admin-score__formula li {
	border-bottom: 1px solid var(--gn-bg);
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0.65rem 0;
}

.gn-admin-score__formula li:first-child {
	padding-top: 0;
}

.gn-admin-score__formula li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.gn-admin-score__formula strong {
	color: var(--gn-text);
	font-size: 0.9rem;
}

.gn-admin-score__formula span {
	color: var(--gn-muted);
	font-size: 0.82rem;
	line-height: 1.45;
}

/* Posicionamento da home (/admin/posicionamento) */
.gn-admin-kpi__value--text {
	font-size: 1.35rem;
	line-height: 1.25;
	padding-top: 0.35rem;
}

.gn-placement-form {
	margin: 0;
}

.gn-placement-form__row {
	align-items: flex-end;
	display: flex;
	flex-wrap: nowrap;
	gap: 0.5rem;
}

.gn-placement-form__row .gn-placement-form__field {
	flex: 1 1 auto;
	margin-bottom: 0;
	min-width: 0;
}

.gn-placement-form__row .gn-placement-form__label {
	margin-bottom: 0.55rem;
}

.gn-placement-form__row .gn-placement-form__select {
	box-sizing: border-box;
	height: 2.5rem;
	min-height: 2.5rem;
	padding-bottom: 0;
	padding-top: 0;
}

.gn-placement-form__row .gn-btn {
	flex: 0 0 auto;
}

.gn-placement-form__field {
	margin-bottom: 1.15rem;
}

.gn-placement-form__label-row {
	align-items: center;
	display: flex;
	gap: 0.45rem;
	margin-bottom: 0.55rem;
}

.gn-placement-form__label {
	color: var(--gn-muted);
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	margin: 0;
	text-transform: uppercase;
}

.gn-placement-form__select {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-text);
	font-size: 0.95rem;
	max-width: 100%;
	padding: 0.6rem 0.75rem;
	width: 100%;
}

.gn-placement-form__select:focus {
	border-color: var(--gn-auth-accent);
	box-shadow: 0 0 0 3px rgba(36, 90, 130, 0.18);
	outline: none;
}

.gn-placement-help-balloon {
	align-items: center;
	background: var(--gn-primary-soft);
	border: 1px solid var(--gn-detail-blue);
	border-radius: 999px;
	color: var(--gn-primary);
	cursor: pointer;
	display: inline-flex;
	flex-shrink: 0;
	font-size: 0.95rem;
	height: 1.7rem;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 1.7rem;
}

.gn-placement-help-balloon:hover,
.gn-placement-help-balloon:focus-visible {
	background: var(--gn-surface);
	border-color: var(--gn-primary);
	outline: none;
}

.gn-placement-help-modal {
	align-items: center;
	bottom: 0;
	display: none;
	justify-content: center;
	left: 0;
	padding: 1.25rem;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1200;
}

.gn-placement-help-modal--open,
.gn-placement-help-modal:not([hidden]) {
	display: flex;
}

.gn-placement-help-modal__backdrop {
	background: rgba(15, 23, 42, 0.45);
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.gn-placement-help-modal__dialog {
	background: var(--gn-surface);
	border-radius: 12px;
	box-shadow: var(--gn-modal-shadow);
	max-height: min(90vh, 32rem);
	max-width: 28rem;
	overflow: auto;
	padding: 1.35rem 1.4rem 1.5rem;
	position: relative;
	width: 100%;
	z-index: 1;
}

.gn-placement-help-modal__header {
	align-items: flex-start;
	border-bottom: 2px solid var(--gn-auth-accent);
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
}

.gn-placement-help-modal__title {
	color: var(--gn-text);
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0;
	outline: none;
}

.gn-placement-help-modal__close {
	background: transparent;
	border: 0;
	color: var(--gn-muted);
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	padding: 0.1rem 0.35rem;
}

.gn-placement-help-modal__close:hover,
.gn-placement-help-modal__close:focus-visible {
	color: var(--gn-text);
	outline: none;
}

.gn-placement-help-modal__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-placement-help-modal__list li {
	border-bottom: 1px solid var(--gn-bg);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0.75rem 0;
}

.gn-placement-help-modal__list li:first-child {
	padding-top: 0;
}

.gn-placement-help-modal__list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.gn-placement-help-modal__list strong {
	color: var(--gn-text);
	font-size: 0.95rem;
}

.gn-placement-help-modal__list span {
	color: var(--gn-muted);
	font-size: 0.88rem;
	line-height: 1.45;
}

body.gn-placement-help-modal-open {
	overflow: hidden;
}

.gn-placement-legend {
	color: var(--gn-muted);
	font-size: 0.82rem;
	line-height: 1.55;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-placement-legend li {
	margin-bottom: 0.55rem;
}

.gn-placement-legend li:last-child {
	margin-bottom: 0;
}

.gn-admin-card--compact .gn-admin-card__action + .gn-admin-card__action {
	display: block;
	margin-top: 0.55rem;
}

.gn-placement-preview {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.gn-placement-zone {
	border-top: 1px solid var(--gn-bg);
	padding-top: 1rem;
}

.gn-placement-zone:first-child {
	border-top: 0;
	padding-top: 0;
}

.gn-placement-zone__header {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	justify-content: space-between;
	margin-bottom: 0.75rem;
}

.gn-placement-zone__heading {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 0.65rem;
}

.gn-placement-zone__title {
	color: var(--gn-text);
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0;
}

.gn-placement-zone__grid {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(var(--placement-cols, 2), minmax(0, 1fr));
}

.gn-placement-thumb {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 10px;
	overflow: hidden;
}

.gn-placement-thumb__media {
	aspect-ratio: 297 / 210;
	background: var(--gn-border);
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.gn-placement-thumb__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gn-placement-thumb__placeholder {
	align-items: center;
	color: var(--gn-muted);
	display: flex;
	font-size: 1.4rem;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.gn-placement-thumb__body {
	padding: 0.65rem 0.7rem 0.75rem;
}

.gn-placement-thumb__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--gn-text);
	display: -webkit-box;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.35;
	margin: 0 0 0.45rem;
	overflow: hidden;
	text-decoration: none;
}

a.gn-placement-thumb__title:hover,
a.gn-placement-thumb__title:focus-visible {
	color: var(--gn-primary);
	outline: none;
	text-decoration: underline;
}

.gn-placement-thumb__meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
	margin: 0;
}

.gn-placement-zones__flag {
	background: var(--gn-primary-soft);
	border-radius: 999px;
	color: var(--gn-primary);
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	padding: 0.1rem 0.5rem;
}

.gn-placement-zones__occupancy {
	color: var(--gn-muted);
	font-size: 0.82rem;
	font-variant-numeric: tabular-nums;
	font-weight: 600;
}

.gn-placement-zones__empty {
	color: var(--gn-muted);
	font-size: 0.85rem;
	margin: 0;
}

.gn-placement-zones__type {
	color: var(--gn-muted);
	font-size: 0.75rem;
}

.gn-placement-origin {
	border-radius: 999px;
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	padding: 0.1rem 0.5rem;
}

.gn-placement-origin--curation {
	background: var(--gn-primary-soft);
	color: var(--gn-success);
}

.gn-placement-origin--curation-overflow {
	background: var(--gn-warning-bg);
	color: var(--gn-warning-text);
}

.gn-placement-origin--score {
	background: var(--gn-primary-soft);
	color: var(--gn-primary-dark);
}

.gn-placement-origin--recent,
.gn-placement-origin--popular {
	background: var(--gn-bg);
	color: var(--gn-muted);
}

.gn-placement-origin--vaga {
	background: var(--gn-warning-bg);
	color: var(--gn-warning-text);
}

.gn-placement-zone__grid--hub {
	--placement-cols: 4;
}

@media (max-width: 640px) {
	.gn-placement-zone__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 420px) {
	.gn-placement-zone__grid {
		grid-template-columns: 1fr;
	}
}

/* === SHORTCODES VIVOS (V7.2) === */
/* Layout base de .gn-line / #lean_overlay — resto de shortcodes.css era morto.
   Aliases vazios (.gn-button, .gn-profile-edit-btn, .send-btn, .gn-writer-page__create-btn)
   removidos: CTA só em .gn-btn. Hook HTML gn-auth-secondary-btn permanece no markup. */
.gn-line {
	width: 100%;
	height: 4px;
	background-color: var(--gn-border);
	clear: both;
}

/* === FLEXSLIDER (ex-flexslider.css, V7.2) === */
/* Flex Slider */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
	outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

.flexslider {
	margin: 0;
	padding: 0;
}

.flexslider .slides > li {
	display: none;
	-webkit-backface-visibility: hidden;
}

.flexslider .slides img {
	max-width: 100%;
	display: block;
}

.flex-pauseplay span{
	text-transform: capitalize;
}

.slides:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

html[xmlns] .slides {
	display: block;
}

* html .slides {
	height: 1%;
}

.no-js .slides > li:first-child {
	display: block;
}

.flexslider {
	position: relative;
	zoom: 1;
}

.flexslider .slides {
	zoom: 1;
}

.flexslider .slides > li {
	position: relative;
}

.flex-container {
	zoom: 1;
	position: relative;
}

/* control nav */
.flex-control-nav {
	width: 100%;
	text-align: left;
	padding-top: 20px;
    padding-bottom: 12px;
}

.flex-control-nav li {
	margin: 0 0 0 10px;
	display: inline-block;
	zoom: 1;
	*display: inline;
}

.flex-control-nav li:first-child {
	margin: 0;
}

.flex-control-nav li a {
	width: 9px;
	height: 9px;
	display: block;
	cursor: pointer;
	border-radius: 50%;
	background-color: var(--gn-border);
	text-indent: 9999px;
}

/* === MCS SCROLLBAR (ex-mCustomScrollbar.css, V7.2) === */
/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/

/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/

.mCustomScrollbar{ -ms-touch-action: none; touch-action: none; /* MSPointer events - direct all pointer events to js */ }
.mCustomScrollbar.mCS_no_scrollbar{ -ms-touch-action: auto; touch-action: auto; }

.mCustomScrollBox{ /* contains plugin's markup */
	position: relative;
	overflow: hidden;
	height: 100%;
	max-width: 100%;
	outline: none;
	direction: ltr;
}

.mCSB_container{ /* contains the original content */
	overflow: hidden;
	width: auto;
	height: auto;
}

/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_inside > .mCSB_container{ margin: 0; }

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-right: 0; } /* non-visible scrollbar */

.mCS-dir-rtl > .mCSB_inside > .mCSB_container{ /* RTL direction/left-side scrollbar */
	margin: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-left: 0; } /* RTL direction/left-side scrollbar */

.mCSB_scrollTools{ /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
	position: absolute;
	width: 8px;
	height: auto;
	left: auto;
	top: 0;
	right: 0;
	bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools{ right: -26px; } /* scrollbar position: outside */

.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools, 
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ /* RTL direction/left-side scrollbar */
	right: auto;
	left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ left: -26px; } /* RTL direction/left-side scrollbar (scrollbar position: outside) */

.mCSB_scrollTools .mCSB_draggerContainer{ /* contains the draggable element and dragger rail markup */
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0; 
	height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer{ margin: 20px 0; }

.mCSB_scrollTools .mCSB_draggerRail{
	width: 2px;
	height: 100%;
	margin: 0 auto;
	-webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger{ /* the draggable element */
	cursor: pointer;
	width: 100%;
	height: 30px; /* minimum dragger height */
	z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ /* the dragger element */
	position: relative;
	width: 6px;
	height: 100%;
	margin: 0 auto;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{ width: 12px; /* auto-expanded scrollbar */ }

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 8px; /* auto-expanded scrollbar */ }

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown{
	display: block;
	position: absolute;
	height: 20px;
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
	cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown{ bottom: 0; }

/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_scrollTools, 
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight{
	-webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
	transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, /* auto-expanded scrollbar */
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, 
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, 
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail{
	-webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
				margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
				margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
				opacity .2s ease-in-out, background-color .2s ease-in-out; 
	-moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
				margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
				margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
				opacity .2s ease-in-out, background-color .2s ease-in-out; 
	-o-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
				margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
				margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
				opacity .2s ease-in-out, background-color .2s ease-in-out; 
	transition: width .2s ease-out .2s, height .2s ease-out .2s, 
				margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
				margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
				opacity .2s ease-in-out, background-color .2s ease-in-out; 
}

/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_scrollTools{ opacity: 0.5; filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; }

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 0; filter: "alpha(opacity=0)"; -ms-filter: "alpha(opacity=0)"; }

.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 1; filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)"; }


.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
	background-color: #fff; background-color: rgba(183,183,183,0.5);
}

/* === ANIMAÇÕES === */
/*
 * .gn-animation: conteúdo visível sem JS (opacity: 1).
 * Com waypoint disponível, main.js adiciona html.gn-animations-ready
 * e esconde até a classe .animated + keyframe (ex.: fadeInUp).
 */

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.gn-animation {
	opacity: 1;
}

html.gn-animations-ready .gn-animation:not(.animated) {
	opacity: 0;
}

.gn-animation.animated {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	html.gn-animations-ready .gn-animation:not(.animated),
	.gn-animation,
	.gn-animation.animated {
		opacity: 1 !important;
		-webkit-animation: none !important;
		animation: none !important;
	}
}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@keyframes fadeOut {
	0% { opacity: 1; }
	100% { opacity: 0; }
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@keyframes flash {
	0%, 50%, 100% { opacity: 1; }
	25%, 75% { opacity: 0; }
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

.swing {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
}

/* === TIPOGRAFIA — papéis globais (decisao_layouts.md etapa 4) === */

/* Títulos — sem sublinhado (links de manchete/cards) */
.featured-posts h3 a,
.highlights-posts h3 a,
.editors-posts h3 a,
.popular-posts h3 a,
.social-media-posts h3 a,
.trending-posts .post h3 a,
.widget-recent .content h3 a,
.section-title h4 a,
.gn-home-hero .item .title,
.gn-home-hero h2 a,
.gn-home-hero h3 a,
.post h3 a,
.gn-noticias-list h3 a {
	text-decoration: none;
}

.featured-posts h3 a:hover,
.highlights-posts h3 a:hover,
.editors-posts h3 a:hover,
.popular-posts h3 a:hover,
.social-media-posts h3 a:hover,
.trending-posts .post h3 a:hover,
.widget-recent .content h3 a:hover,
.section-title h4 a:hover,
.post h3 a:hover,
.gn-noticias-list h3 a:hover {
	text-decoration: none;
}

/* Manchete de card (incl. destaque lateral e Em alta) */
.featured-posts .content-right h3 a,
.highlights-posts h3 a,
.editors-posts h3 a,
.popular-posts .content-left h3 a,
.popular-posts .content-right h3 a,
.social-media-posts h3 a,
.trending-posts .post h3 a,
.widget-recent .content h3 a,
.gn-home-hero .item .title,
.gn-home-hero h2,
.gn-home-hero h3,
.gn-noticias-list h3 a,
.widget-most-popular li a,
.tabs .pop-posts .text a {
	font-family: var(--gn-font-display);
	font-size: var(--gn-type-h2);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-decoration: none;
}

/* Manchete principal (featured_carousel) — mesma fonte do H1 de /noticias/{slug} */
.featured-posts .content-left h3 a {
	font-family: var(--gn-font-display);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.3;
	text-decoration: none;
}

/* H3 — títulos de seção / widgets */
.section-title h1,
.section-title h1 a,
.section-title h4 a,
.gn-noticias-list .section-title h1,
.gn-noticias-list .section-title h1 a,
.gn-giro360-page__section-title h1,
.gn-giro360-page__section-title h1 a,
#main.gn-home-page .highlights-posts .section-title h4 a,
#main.gn-home-page .editors-posts .section-title h4 a,
#main.gn-home-page .popular-posts .section-title h4 a,
#main.gn-home-page .social-media-posts .section-title h4 a,
#main.gn-home-page .trending-posts .section-title h4 a,
.gn-section-title h1 {
	color: var(--gn-text);
	font-family: var(--gn-font-display) !important;
	font-size: var(--gn-type-h2) !important;
	font-weight: 700 !important;
	letter-spacing: -0.02em;
	line-height: 1.2 !important;
	margin: 0 !important;
	text-decoration: none !important;
}

.widget-title {
	font-family: var(--gn-font-display);
	font-size: var(--gn-type-h3);
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* Resumo */
.excerpt-entry {
	font-family: var(--gn-font-ui);
	font-size: var(--gn-type-excerpt);
	font-weight: normal;
	letter-spacing: 0.01em;
	line-height: 1.5;
}

/* Destaque principal: mesmo estilo/tamanho do resumo da Escolha da redação */
.editors-posts .excerpt-entry,
.featured-posts .content-left .excerpt-entry {
	color: #2d3340;
	font-family: var(--gn-font-ui);
	font-size: 18px;
	font-weight: normal;
	line-height: 27px;
}

.featured-posts .content-right .excerpt-entry {
	font-family: var(--gn-font-ui);
	font-size: var(--gn-type-excerpt);
	font-weight: normal;
	letter-spacing: 0.01em;
	line-height: 1.5;
}

.post-single .head-post .excerpt-entry {
	-webkit-line-clamp: unset;
	display: block;
	font-family: var(--gn-font-ui);
	font-weight: normal;
	overflow: visible;
}

/* Espaço abaixo da imagem (thumb → cat/título) */
.featured-posts .post > .thumb,
.highlights-posts .post > .thumb,
.popular-posts .content-left .post > .thumb,
.social-media-posts .post > .thumb,
.trending-posts .post > .thumb,
.gn-trending-carousel__media.thumb {
	margin-bottom: 16px;
}

.featured-posts .content-left .cat,
.featured-posts .content-right .cat,
.highlights-posts .cat,
.popular-posts .content-left .cat,
.social-media-posts .cat,
.gn-noticias-list .gn-noticias-card__body .cat {
	margin-top: 0;
}

/* Autor / data / categoria */
.cat a,
.cat span,
.meta,
.author,
.date,
.time,
.gn-home-card__meta,
.gn-home-card__author-name,
.gn-home-card__time,
.trending-posts .post .date {
	font-family: var(--gn-font-ui);
	font-size: var(--gn-type-meta);
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.4;
}

.top-wrap,
.member-area,
.footer-widgets,
.footer-copyright,
.tabs .menu-tab li a,
.tabs .menu-tab li button {
	font-family: var(--gn-font-ui);
}

@media (max-width: 767px) {
	.highlights-posts h3 a,
	.editors-posts h3 a,
	.popular-posts h3 a,
	.social-media-posts h3 a,
	.gn-noticias-list h3 a,
	.gn-home-hero .item .title,
	.gn-home-hero h2 {
		font-size: var(--gn-type-h3);
		line-height: 1.2;
	}
}

/* ================================================================
   /noticias — listagem alinhada à home (opção A + N.2 card compacto)
   ================================================================ */

.gn-noticias-list {
	margin-top: 0.5rem;
}

/* Anula layout “artigo longo” legado (.posts h2 48px, head-post, body-post) */
.posts.posts-list.gn-noticias-list .post.gn-noticias-card {
	align-items: flex-start;
	border-bottom: none;
	clear: both;
	display: flex;
	flex-direction: row;
	gap: 1rem;
	margin: 0 0 1rem;
	padding: 0;
}

.gn-noticias-list .section-title {
	margin-bottom: 1.25rem;
}

/* Thumb ≈ featured_carousel_side (275px = 35,82% de COL_MAIN 768) */
.gn-noticias-list .gn-noticias-card > .thumb {
	aspect-ratio: 297 / 210;
	flex: 0 0 275px;
	margin: 0;
	max-width: 275px;
	overflow: hidden;
	position: relative;
	width: 275px;
}

.gn-noticias-list .gn-noticias-card > .thumb a {
	display: block;
	height: 100%;
	width: 100%;
}

.gn-noticias-list .gn-noticias-card > .thumb img {
	height: 100%;
	left: 0;
	object-fit: cover;
	object-position: center top;
	position: absolute;
	top: 0;
	width: 100%;
}

.gn-noticias-card__body {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0.85rem 0.85rem 0.75rem 0;
}

.gn-noticias-list .gn-noticias-card__body h3 {
	line-height: 1.25;
	margin: 0 0 0.5rem;
}

.gn-noticias-list .gn-noticias-card__body .excerpt-entry {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	line-clamp: 3;
	margin: 0 0 0.75rem;
	overflow: hidden;
}

.gn-noticias-list .gn-noticias-card__body .cat {
	margin-bottom: 0.35rem;
	margin-top: 0;
}

.gn-noticias-list .gn-noticias-card__body .cat a,
.gn-noticias-list .gn-noticias-card__body .cat span {
	color: var(--gn-muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-transform: uppercase;
}

.gn-noticias-list .gn-noticias-card__body .cat a:hover,
.gn-noticias-list .gn-noticias-card__body .cat a:focus-visible {
	color: var(--gn-primary);
	text-decoration: none;
}

/* Reforço local da manchete/resumo (tokens globais da etapa 4) */
.gn-noticias-list .gn-noticias-card__body h3 a {
	font-family: var(--gn-font-display);
	font-size: var(--gn-type-h2);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-decoration: none;
}

.gn-noticias-list .gn-noticias-card__body .excerpt-entry {
	font-family: var(--gn-font-ui);
	font-size: var(--gn-type-excerpt);
	font-weight: normal;
	letter-spacing: 0.01em;
	line-height: 1.5;
}

.gn-noticias-list .gn-noticias-card > .thumb {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.posts.posts-list.gn-noticias-list .post.gn-noticias-card {
		flex-direction: column;
		gap: 0.75rem;
	}

	.gn-noticias-list .gn-noticias-card > .thumb {
		flex: 0 0 auto;
		max-width: none;
		width: 100%;
	}

	.gn-noticias-list .gn-noticias-card > .thumb {
		margin-bottom: 0;
	}

	.gn-noticias-card__body {
		padding: 0 0.85rem 0.85rem;
	}
}

.gn-noticias-sidebar {
	margin-top: 1.75rem;
}

/* N.3 — Populares / Recentes sem sublinhado */
.gn-noticias-sidebar a,
.gn-noticias-sidebar .content-list a,
.gn-noticias-sidebar .menu-tab a,
#sidebar2.gn-noticias-sidebar .content-list a,
#sidebar2.gn-noticias-sidebar .tabs.style2 .content-tab li a,
.gn-noticias-sidebar a,
.gn-noticias-sidebar .content-list a {
	text-decoration: none;
}

.gn-noticias-sidebar a:hover,
.gn-noticias-sidebar a:focus-visible,
.gn-noticias-sidebar .content-list a:hover,
.gn-noticias-sidebar .content-list a:focus-visible,
.gn-noticias-sidebar .menu-tab a:hover,
.gn-noticias-sidebar .menu-tab a:focus-visible,
#sidebar2.gn-noticias-sidebar .content-list a:hover,
#sidebar2.gn-noticias-sidebar .content-list a:focus-visible,
#sidebar2.gn-noticias-sidebar .tabs.style2 .content-tab li a:hover,
#sidebar2.gn-noticias-sidebar .tabs.style2 .content-tab li a:focus-visible,
.gn-noticias-sidebar a:hover,
.gn-noticias-sidebar a:focus-visible,
.gn-noticias-sidebar .content-list a:hover,
.gn-noticias-sidebar .content-list a:focus-visible {
	text-decoration: none;
}

.gn-noticias-sidebar a:focus-visible,
.gn-noticias-sidebar .content-list a:focus-visible,
.gn-noticias-sidebar .menu-tab a:focus-visible {
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
}

/* N.6 — estados do feed fracionado */
.gn-noticias-feed-sentinel {
	height: 1px;
	margin: 0;
	padding: 0;
	pointer-events: none;
	visibility: hidden;
	width: 100%;
}

.gn-noticias-feed-status {
	color: var(--gn-muted);
	font-size: 0.9rem;
	margin: 1rem 0 0;
	text-align: center;
}

.gn-noticias-feed-status--error {
	color: var(--gn-danger);
}

.gn-noticias-feed-retry {
	background: transparent;
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-primary);
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 600;
	margin-left: 0.35rem;
	padding: 0.25rem 0.65rem;
}

.gn-noticias-feed-retry:hover,
.gn-noticias-feed-retry:focus-visible {
	border-color: var(--gn-primary);
}

.gn-noticias-feed-end {
	color: var(--gn-muted);
	font-size: 0.9rem;
	margin: 1.25rem 0 0;
	text-align: center;
}

.gn-noticias-feed-footer {
	margin-top: 1.5rem;
	text-align: center;
}

.gn-noticias-feed-more {
	display: inline-flex;
	margin: 0 auto;
}

.gn-noticias-feed-more[hidden] {
	display: none;
}

.gn-noticias-stream {
	width: 100%;
}

.gn-noticias-segment__rail {
	min-height: 0;
}

/*
 * /noticias — lista full-width, sem sidebar Populares/Recentes.
 */
.gn-noticias-layout--full > .col-md-12 {
	float: none;
	width: 100%;
}

@media (min-width: 992px) {
	#main.article-endless .gn-noticias-segment > .row.gn-noticias-layout--full,
	#main.article-endless > .container > .row.gn-noticias-layout--full {
		display: block;
	}

	body.floatPanel #sidebar2 {
		/* floatPanel só é válido ≤991px; evita painel fixo residual no desktop */
		position: static;
		left: auto;
		width: auto;
		height: auto;
		background: transparent;
	}
}

.gn-pagination {
	border-top: 1px solid var(--gn-border);
	margin-top: 2rem;
	padding-top: 1.25rem;
}

.gn-pagination ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-pagination__status span {
	color: var(--gn-muted);
	font-size: 0.9rem;
	font-weight: 500;
}

.gn-pagination__link {
	background: var(--gn-primary);
	border-radius: 8px;
	color: var(--gn-inverse);
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
	padding: 0.55rem 1rem;
	text-decoration: none;
}

.gn-pagination__link:hover,
.gn-pagination__link:focus-visible {
	filter: brightness(1.05);
	text-decoration: none;
}

@media (max-width: 991px) {
	.gn-noticias-sidebar {
		margin-top: 2rem;
	}

	.article-endless .posts.posts-list.gn-noticias-list .post {
		padding-left: 0;
	}
}

/* ==========================================================================
   Negócio store — vitrine pública + modo dono (.gn-negocio-store)
   ========================================================================== */

.gn-negocio-store {
	padding-bottom: 3rem;
}

.gn-negocio-store.is-visitor-preview [data-owner-only] {
	display: none !important;
}

/* Hero — card da capa recebe logo (mesmo padrão /conta; recuo 12%). */
.gn-negocio-store__hero {
	--gn-cover-band: 200px;
	--gn-logo-overlap: 52px;
	--gn-logo-max: 104px;
	--gn-logo-size: var(--gn-logo-max);
	--slot-h: calc(var(--gn-cover-band) + var(--gn-logo-max) - var(--gn-logo-overlap) + 5rem);
	--hybrid-w: calc((100vw + var(--slot-h) * 1920 / 360) / 2);
	--hybrid-h: calc((100vw * 360 / 1920 + var(--slot-h)) / 2);
	isolation: isolate;
	margin-bottom: 2rem;
	overflow: hidden;
	position: relative;
}

.gn-negocio-store__cover {
	background-color: var(--gn-primary-dark);
	background-position: center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: var(--slot-h);
	overflow: hidden;
	position: relative;
	width: 100%;
}

/* Gradiente default só sem capa — evita sobrescrever a URL salva em background-image */
.gn-negocio-store__cover:not(.has-image) {
	background-image: linear-gradient(115deg, var(--gn-primary) 0%, var(--gn-primary-dark) 65%, #0d1b2e 100%);
}

.gn-negocio-store__cover.has-image {
	--gn-logo-size: min(var(--gn-logo-max), max(40px, calc(var(--hybrid-h) * 0.42)));
	--gn-logo-overlap: calc(var(--gn-logo-size) * 0.54);
	height: var(--hybrid-h);
	left: 0;
	min-height: 0;
	width: min(100%, var(--hybrid-w));
}

.gn-negocio-store__cover-edit {
	align-items: center;
	background: rgba(0, 0, 0, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	color: var(--gn-inverse);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.85rem;
	font-weight: 700;
	gap: 0.45rem;
	padding: 0.5rem 1rem;
	position: absolute;
	right: 1rem;
	top: 1rem;
	z-index: 2;
}

.gn-negocio-store__cover-edit:hover,
.gn-negocio-store__cover-edit:focus-visible {
	background: rgba(0, 0, 0, 0.65);
	outline: none;
}

.gn-negocio-store__hero-inner {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	width: 100%;
	z-index: 1;
}

.gn-negocio-store__cover.has-image > .gn-negocio-store__hero-inner {
	margin-left: 0;
	margin-right: 0;
	max-width: none;
	padding-left: 0;
	padding-right: 0.75rem;
	width: 100%;
}

.gn-negocio-store__breadcrumb {
	align-items: center;
	color: rgba(255, 255, 255, 0.78);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.85rem;
	gap: 0.35rem;
	margin: 1.1rem 0 0;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.gn-negocio-store__breadcrumb a {
	color: rgba(255, 255, 255, 0.86);
	text-decoration: none;
}

.gn-negocio-store__breadcrumb a:hover,
.gn-negocio-store__breadcrumb a:focus-visible {
	color: #fff;
	text-decoration: underline;
}

.gn-negocio-store__breadcrumb strong {
	color: #fff;
}

.gn-negocio-store__back-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: space-between;
	margin: 1.1rem 0 0;
}

.gn-negocio-store__hero-tools {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.gn-negocio-store__back {
	align-items: center;
	color: rgba(255, 255, 255, 0.9);
	display: inline-flex;
	font-size: 0.88rem;
	font-weight: 600;
	gap: 0.4rem;
	text-decoration: none;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.gn-negocio-store__back:hover,
.gn-negocio-store__back:focus-visible {
	color: #fff;
}

.gn-negocio-store__owner-bar {
	align-items: center;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 700;
	gap: 0.5rem;
	padding: 0.45rem 0.9rem;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.gn-negocio-store__preview-toggle {
	align-items: center;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	color: var(--gn-text);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.85rem;
	font-weight: 700;
	gap: 0.5rem;
	padding: 0.55rem 1.1rem;
}

.gn-negocio-store__preview-toggle:hover,
.gn-negocio-store__preview-toggle:focus-visible {
	background: #fff;
	color: var(--gn-primary);
	outline: none;
}

.gn-negocio-store__preview-banner {
	align-items: center;
	background: rgba(255, 244, 221, 0.95);
	border-radius: 10px;
	color: var(--gn-warning-text, #7a5300);
	display: none;
	font-size: 0.85rem;
	font-weight: 600;
	gap: 0.6rem;
	justify-content: space-between;
	margin: 0.85rem 0 0;
	padding: 0.7rem 1rem;
}

.gn-negocio-store.is-visitor-preview .gn-negocio-store__preview-banner {
	display: flex;
}

.gn-negocio-store__preview-banner .gn-negocio-store__preview-toggle {
	background: var(--gn-surface);
}

.gn-negocio-store__header {
	align-items: flex-end;
	display: flex;
	flex-wrap: wrap;
	gap: 1.1rem 1.4rem;
	padding-bottom: 0.65rem;
	padding-top: 0;
	position: relative;
}

.gn-negocio-store__cover.has-image .gn-negocio-store__header {
	padding-left: 12%;
}

.gn-negocio-store__logo-wrap {
	flex-shrink: 0;
	margin-top: calc(var(--gn-logo-overlap) * -1);
	position: relative;
	z-index: 1;
}

.gn-negocio-store__logo {
	align-items: center;
	background: linear-gradient(150deg, var(--gn-primary), var(--gn-primary-dark));
	border: 4px solid var(--gn-inverse);
	border-radius: 18px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
	color: var(--gn-inverse);
	display: flex;
	flex-shrink: 0;
	font-size: 2rem;
	font-weight: 800;
	height: var(--gn-logo-size);
	justify-content: center;
	letter-spacing: -0.02em;
	overflow: hidden;
	width: var(--gn-logo-size);
}

.gn-negocio-store__logo img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gn-negocio-store__logo-edit {
	align-items: center;
	background: var(--gn-primary);
	border: 3px solid var(--gn-surface);
	border-radius: 50%;
	bottom: -0.35rem;
	color: var(--gn-inverse);
	cursor: pointer;
	display: flex;
	font-size: 0.85rem;
	height: 2.1rem;
	justify-content: center;
	position: absolute;
	right: -0.35rem;
	width: 2.1rem;
}

.gn-negocio-store__logo-edit:hover,
.gn-negocio-store__logo-edit:focus-visible {
	background: var(--gn-primary-dark);
	outline: none;
}

.gn-negocio-store__identity {
	flex: 1 1 16rem;
	min-width: 0;
	padding-bottom: 0.3rem;
}

.gn-negocio-store__name-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.gn-negocio-store__name {
	color: var(--gn-inverse);
	font-size: 1.65rem;
	font-weight: 800;
	margin: 0;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.gn-negocio-store__verified {
	align-items: center;
	background: rgba(28, 122, 79, 0.12);
	border-radius: 999px;
	color: var(--gn-success);
	display: inline-flex;
	font-size: 0.72rem;
	font-weight: 700;
	gap: 0.3rem;
	padding: 0.2rem 0.6rem 0.2rem 0.5rem;
}

.gn-negocio-store__meta {
	align-items: center;
	color: rgba(255, 255, 255, 0.86);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.9rem;
	gap: 0.4rem;
	margin: 0.3rem 0 0;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.gn-negocio-store__meta .sep {
	opacity: 0.5;
}

.gn-negocio-store__hero .gn-negocio-store__field-edit {
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.gn-negocio-store__hero .gn-negocio-store__field-edit:hover,
.gn-negocio-store__hero .gn-negocio-store__field-edit:focus-visible {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.gn-negocio-store__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	padding-bottom: 0.3rem;
}

.gn-negocio-store__cta {
	align-items: center;
	box-sizing: border-box;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 700;
	gap: 0.5rem;
	justify-content: center;
	text-decoration: none;
}

.gn-negocio-store__cta:hover,
.gn-negocio-store__cta:focus-visible {
	outline: none;
	text-decoration: none;
}

.gn-negocio-account-modal__fields .gn-field-wa-check {
	color: var(--gn-text);
	font-weight: 500;
	margin-top: 0.15rem;
}

.gn-negocio-store__icon-btn {
	align-items: center;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	height: 2.6rem;
	justify-content: center;
	width: 2.6rem;
}

.gn-negocio-store__icon-btn:hover,
.gn-negocio-store__icon-btn:focus-visible {
	background: rgba(255, 255, 255, 0.24);
	border-color: #fff;
	color: #fff;
	outline: none;
}

.gn-negocio-store__icon-btn.is-active {
	background: rgba(36, 90, 130, 0.08);
	border-color: var(--gn-accent-solid);
	color: var(--gn-accent-text);
}

.gn-negocio-store__stats {
	border-bottom: 1px solid var(--gn-border);
	border-top: 1px solid var(--gn-border);
	display: flex;
	gap: 1.75rem;
	margin: 1.75rem 0;
	overflow-x: auto;
	padding: 1rem 0.25rem;
}

.gn-negocio-store__stat {
	flex-shrink: 0;
	min-width: 7rem;
	text-align: center;
}

.gn-negocio-store__stat-value {
	color: var(--gn-text);
	display: block;
	font-size: 1.3rem;
	font-weight: 800;
}

.gn-negocio-store__stat-label {
	color: var(--gn-muted);
	font-size: 0.72rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.gn-negocio-store__field {
	position: relative;
}

.gn-negocio-store__field-edit {
	align-items: center;
	background: transparent;
	border: none;
	border-radius: 999px;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	height: 1.9rem;
	justify-content: center;
	width: 1.9rem;
}

.gn-negocio-store__field-edit:hover,
.gn-negocio-store__field-edit:focus-visible {
	background: var(--gn-bg);
	color: var(--gn-primary);
	outline: none;
}

.gn-negocio-store__field-view {
	display: block;
}

.gn-negocio-store__field.is-editing .gn-negocio-store__field-view {
	display: none;
}

.gn-negocio-store__field-form {
	display: none;
	gap: 0.6rem;
	margin-top: 0.5rem;
}

.gn-negocio-store__field.is-editing .gn-negocio-store__field-form {
	display: flex;
	flex-direction: column;
}

.gn-negocio-store__field-form input,
.gn-negocio-store__field-form textarea {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-text);
	font-size: 0.9rem;
	padding: 0.55rem 0.75rem;
	width: 100%;
}

.gn-negocio-store__field-form input:focus,
.gn-negocio-store__field-form textarea:focus {
	border-color: var(--gn-primary);
	outline: none;
}

.gn-negocio-store__field-form-actions {
	display: flex;
	gap: 0.5rem;
}

.gn-negocio-store__field-save {
	background: var(--gn-primary);
	border: 1px solid var(--gn-primary);
	border-radius: 8px;
	color: var(--gn-inverse);
	cursor: pointer;
	font-size: 0.82rem;
	font-weight: 700;
	padding: 0.4rem 0.9rem;
}

.gn-negocio-store__field-cancel {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-muted);
	cursor: pointer;
	font-size: 0.82rem;
	font-weight: 600;
	padding: 0.4rem 0.9rem;
}

.gn-negocio-store__field-save:disabled,
.gn-negocio-store__field-cancel:disabled {
	cursor: wait;
	opacity: 0.65;
}

.gn-negocio-store__section {
	margin: 2.25rem 0;
}

.gn-negocio-store__section-title {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.2rem;
	font-weight: 700;
	gap: 0.5rem;
	margin: 0 0 0.3rem;
}

.gn-negocio-store__section-title-sep {
	font-weight: 400;
	margin: 0 0.35rem;
	opacity: 0.55;
}

.gn-negocio-store__section-sub {
	color: var(--gn-muted);
	font-size: 0.88rem;
	margin: 0 0 1.1rem;
}

.gn-negocio-store__about-grid {
	display: grid;
	gap: 1.4rem;
	grid-template-columns: 1.3fr 1fr;
}

.gn-negocio-store__about-card {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	padding: 1.3rem 1.45rem;
}

.gn-negocio-store__about-card-head {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.65rem;
}

.gn-negocio-store__about-card h3 {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0;
}

.gn-negocio-store__about-card p {
	color: var(--gn-text);
	font-size: 0.92rem;
	line-height: 1.6;
	margin: 0;
}

.gn-negocio-store__contact-list {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-negocio-store__contact-list li {
	align-items: flex-start;
	color: var(--gn-text);
	display: flex;
	font-size: 0.9rem;
	gap: 0.6rem;
}

.gn-negocio-store__contact-list .fa {
	color: var(--gn-primary);
	margin-top: 0.15rem;
	width: 1rem;
}

.gn-negocio-store__toolbar {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: space-between;
	margin-bottom: 1.1rem;
}

.gn-negocio-store__toolbar-copy {
	flex: 1 1 16rem;
	min-width: 0;
}

.gn-negocio-store__toolbar-actions {
	align-items: stretch;
	display: flex;
	flex: 1 1 18rem;
	flex-wrap: nowrap;
	gap: 0.5rem;
	justify-content: flex-end;
	min-width: 0;
}

.gn-negocio-store__toolbar-actions .gn-negocio-store__cta,
.gn-negocio-store__toolbar-actions .gn-negocio-store__reorder-toggle,
.gn-negocio-store__toolbar-actions .gn-negocio-store__hub-vaga {
	box-sizing: border-box;
	flex: 1 1 0;
	font-size: 0.9rem;
	justify-content: center;
	min-width: 0;
}

.gn-negocio-store__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.25rem;
}

.gn-negocio-store__chip {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-muted);
	cursor: pointer;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.4rem 0.95rem;
}

.gn-negocio-store__chip.is-active {
	background: var(--gn-primary);
	border-color: var(--gn-primary);
	color: var(--gn-inverse);
}

.gn-negocio-store__sort {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-text);
	font-size: 0.85rem;
	padding: 0.45rem 0.7rem;
}

.gn-negocio-store__reorder-toggle,
.gn-negocio-store__hub-vaga {
	align-items: center;
	align-self: stretch;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-text);
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 0.9rem;
	font-weight: 700;
	gap: 0.5rem;
	height: 2.6rem;
	min-height: 2.6rem;
	padding: 0 1.25rem;
	white-space: nowrap;
}

.gn-negocio-store__reorder-toggle:hover,
.gn-negocio-store__reorder-toggle:focus-visible,
.gn-negocio-store__reorder-toggle:active,
.gn-negocio-store__reorder-toggle.is-active,
.gn-negocio-store__hub-vaga:hover,
.gn-negocio-store__hub-vaga:focus-visible,
.gn-negocio-store__hub-vaga:active {
	background: var(--gn-primary);
	background-color: var(--gn-primary);
	border-color: var(--gn-primary);
	color: var(--gn-inverse);
	outline: none;
}

.gn-negocio-store__reorder-toggle:hover,
.gn-negocio-store__reorder-toggle:focus-visible,
.gn-negocio-store__reorder-toggle:active,
.gn-negocio-store__hub-vaga:hover,
.gn-negocio-store__hub-vaga:focus-visible,
.gn-negocio-store__hub-vaga:active {
	background: var(--gn-primary-dark);
	background-color: var(--gn-primary-dark);
	border-color: var(--gn-primary-dark);
	color: var(--gn-inverse);
}

.gn-negocio-store__grid {
	display: grid;
	gap: 1.35rem;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	margin-top: 1.1rem;
}

.gn-negocio-store__card {
	color: inherit;
	display: flex;
	flex-direction: column;
	position: relative;
	text-decoration: none;
}

a.gn-negocio-store__card:hover,
a.gn-negocio-store__card:focus-visible {
	color: inherit;
	text-decoration: none;
}

.gn-negocio-store__card--featured {
	box-shadow: var(--gn-card-shadow), 0 0 0 2px rgba(28, 53, 85, 0.12);
}

a.gn-negocio-store__card--featured:hover,
a.gn-negocio-store__card--featured:focus-visible {
	box-shadow: var(--gn-card-shadow-hover), 0 0 0 2px rgba(28, 53, 85, 0.12);
}

.gn-negocio-store__grid.is-reordering .gn-negocio-store__card {
	border: 1px dashed var(--gn-border);
	cursor: grab;
}

.gn-negocio-store__card.is-dragging,
a.gn-negocio-store__card.is-dragging:hover {
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
	cursor: grabbing;
	opacity: 0.6;
	transform: rotate(-1.5deg) scale(1.03);
}

.gn-negocio-store__card-grip {
	align-items: center;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	color: var(--gn-inverse);
	cursor: grab;
	display: none;
	height: 2rem;
	justify-content: center;
	position: absolute;
	right: 0.5rem;
	top: 0.5rem;
	width: 2rem;
	z-index: 2;
}

.gn-negocio-store__grid.is-reordering .gn-negocio-store__card-grip {
	display: flex;
}

.gn-negocio-store__card-move {
	display: none;
	flex-direction: column;
	gap: 0.25rem;
	left: 0.5rem;
	position: absolute;
	top: 2.4rem;
	z-index: 2;
}

.gn-negocio-store__grid.is-reordering .gn-negocio-store__card-move {
	display: flex;
}

.gn-negocio-store__card-move-btn {
	align-items: center;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	border-radius: 50%;
	color: var(--gn-inverse);
	cursor: pointer;
	display: inline-flex;
	height: 1.85rem;
	justify-content: center;
	padding: 0;
	width: 1.85rem;
}

.gn-negocio-store__card-move-btn:hover,
.gn-negocio-store__card-move-btn:focus-visible {
	background: var(--gn-primary);
	outline: none;
}

.gn-negocio-store__card-move-btn:disabled {
	cursor: not-allowed;
	opacity: 0.35;
}

.gn-negocio-store__card-badge {
	background: var(--gn-primary);
	border-radius: 999px;
	color: var(--gn-inverse);
	font-size: 0.68rem;
	font-weight: 700;
	left: 0.6rem;
	letter-spacing: 0.03em;
	padding: 0.2rem 0.6rem;
	position: absolute;
	text-transform: uppercase;
	top: 0.6rem;
	z-index: 2;
}

.gn-negocio-store__card-status {
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 700;
	left: 0.6rem;
	letter-spacing: 0.03em;
	padding: 0.2rem 0.6rem;
	position: absolute;
	text-transform: uppercase;
	top: 0.6rem;
	z-index: 2;
}

.gn-negocio-store__card-status--publicado {
	background: rgba(28, 122, 79, 0.9);
	color: #fff;
}

.gn-negocio-store__card-status--rascunho {
	background: rgba(154, 118, 15, 0.9);
	color: #fff;
}

.gn-negocio-store__card-status--vendido {
	background: rgba(80, 80, 80, 0.9);
	color: #fff;
}

.gn-negocio-store__card-status--oculto {
	background: rgba(60, 60, 60, 0.85);
	color: #fff;
}

.gn-negocio-store__card-media {
	aspect-ratio: 297 / 210;
	background: var(--gn-bg);
	position: relative;
}

.gn-negocio-store__card-media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gn-negocio-store__card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.3rem;
	padding: 0.95rem 1.05rem 1.1rem;
}

.gn-negocio-store__card--owner .gn-negocio-store__card-body {
	padding-bottom: 0.5rem;
}

.gn-negocio-store__card-title {
	color: var(--gn-text);
	font-size: 1rem;
	font-weight: 700;
	margin: 0;
}

.gn-negocio-store__card-meta {
	color: var(--gn-muted);
	font-size: 0.8rem;
	margin: 0;
}

.gn-negocio-store__card-price {
	color: var(--gn-text);
	font-size: 1.1rem;
	font-weight: 800;
	margin-top: auto;
	padding-top: 0.4rem;
}

.gn-negocio-store__card-actions {
	border-top: 1px solid var(--gn-border);
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	padding: 0.6rem 1.05rem 0.75rem;
}

.gn-negocio-store__card-actions a,
.gn-negocio-store__card-actions button {
	background: none;
	border: none;
	color: var(--gn-primary);
	cursor: pointer;
	font-size: 0.78rem;
	font-weight: 700;
	padding: 0;
	text-decoration: none;
}

.gn-negocio-store__card-actions a:hover,
.gn-negocio-store__card-actions button:hover {
	text-decoration: underline;
}

.gn-negocio-store__card-actions .sep {
	color: var(--gn-border);
}

.gn-negocio-store__more {
	display: flex;
	justify-content: center;
	margin-top: 1.6rem;
}

.gn-negocio-store__empty {
	background: var(--gn-surface);
	border: 1px dashed var(--gn-border);
	border-radius: 12px;
	padding: 2rem 1.25rem;
	text-align: center;
}

.gn-negocio-store__empty-title {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
}

.gn-negocio-store__empty-text {
	color: var(--gn-muted);
	font-size: 0.9rem;
	margin: 0 0 1rem;
}

.gn-negocio-store__reorder-bar {
	align-items: center;
	background: var(--gn-surface);
	border-top: 1px solid var(--gn-border);
	bottom: 0;
	box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.1);
	display: none;
	justify-content: space-between;
	left: 0;
	padding: 0.9rem 1.5rem;
	position: fixed;
	right: 0;
	z-index: 50;
}

.gn-negocio-store.is-reordering .gn-negocio-store__reorder-bar {
	display: flex;
}

.gn-negocio-store__reorder-bar-actions {
	display: flex;
	gap: 0.6rem;
}

.gn-negocio-store__reorder-save {
	background: var(--gn-primary);
	border: 1px solid var(--gn-primary);
	border-radius: 8px;
	color: var(--gn-inverse);
	cursor: pointer;
	font-size: 0.85rem;
	font-weight: 700;
	padding: 0.55rem 1.1rem;
}

.gn-negocio-store__reorder-cancel {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	color: var(--gn-muted);
	cursor: pointer;
	font-size: 0.85rem;
	font-weight: 700;
	padding: 0.55rem 1.1rem;
}

.gn-negocio-store__reorder-save:disabled {
	cursor: wait;
	opacity: 0.65;
}

.gn-negocio-store__sticky-cta {
	display: none;
}

@media (max-width: 720px) {
	.gn-negocio-store__hero {
		--gn-cover-band: 160px;
		--gn-logo-overlap: 40px;
		--gn-logo-max: 76px;
	}

	.gn-negocio-store__logo {
		border-radius: 14px;
		font-size: 1.5rem;
	}

	.gn-negocio-store__name {
		font-size: 1.35rem;
	}

	.gn-negocio-store__cover-edit {
		font-size: 0.78rem;
		padding: 0.4rem 0.8rem;
		right: 0.75rem;
		top: 0.75rem;
	}

	.gn-negocio-store__about-grid {
		grid-template-columns: 1fr;
	}

	.gn-negocio-store__actions {
		width: 100%;
	}

	.gn-negocio-store__actions .gn-negocio-store__cta {
		flex: 1 1 auto;
		justify-content: center;
	}

	.gn-negocio-store__toolbar-actions {
		flex: 1 1 100%;
		width: 100%;
	}

	.gn-negocio-store__reorder-bar {
		flex-wrap: wrap;
		gap: 0.6rem;
	}

	.gn-negocio-store--public .gn-negocio-store__sticky-cta {
		background: var(--gn-surface);
		border-top: 1px solid var(--gn-border);
		bottom: 0;
		box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.1);
		display: flex;
		gap: 0.6rem;
		left: 0;
		padding: 0.7rem 1rem;
		position: fixed;
		right: 0;
		z-index: 40;
	}

	.gn-negocio-store--public .gn-negocio-store__sticky-cta .gn-negocio-store__cta {
		flex: 1 1 auto;
		justify-content: center;
	}

	.gn-negocio-store--public {
		padding-bottom: 5.5rem;
	}
}

/* Abas Home / Negócios em /admin/posicionamento */
.gn-admin-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0 0 1.25rem;
}

.gn-admin-tabs__btn {
	appearance: none;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	color: var(--gn-muted);
	cursor: pointer;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.2;
	padding: 0.45rem 1rem;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.gn-admin-tabs__btn:hover {
	border-color: var(--gn-text);
	color: var(--gn-text);
}

.gn-admin-tabs__btn.is-active,
.gn-admin-tabs__btn[aria-selected="true"] {
	background: var(--gn-text);
	border-color: var(--gn-text);
	color: #fff;
}

.gn-admin-tabs__panel {
	min-width: 0;
}

.gn-admin-tabs__panel .gn-admin-card,
.gn-admin-dashboard--embed .gn-admin-card,
.gn-admin-dashboard > .gn-admin-card {
	margin-bottom: 1.5rem;
}

.gn-admin-reacoes-comment-remove {
	appearance: none;
	background: none;
	border: 0;
	color: var(--gn-muted);
	cursor: pointer;
	font-size: 1rem;
	line-height: 1;
	padding: 0.25rem 0.4rem;
}

.gn-admin-reacoes-comment-remove:hover,
.gn-admin-reacoes-comment-remove:focus-visible {
	color: var(--gn-danger);
	outline: none;
}

.gn-admin-regras > .gn-admin-card {
	margin-bottom: 0.75rem;
	max-width: 40rem;
}

.gn-admin-regras__note {
	color: var(--gn-muted);
	font-size: 0.78rem;
	line-height: 1.35;
	margin: 0 0 0.7rem;
}

.gn-admin-regras__add {
	align-items: center;
	display: flex;
	gap: 0.4rem;
	margin-bottom: 0.7rem;
}

.gn-admin-regras__add-input {
	box-sizing: border-box;
	flex: 1 1 auto;
	font-size: 0.85rem;
	height: 2rem;
	margin: 0;
	max-width: 16rem;
	min-width: 0;
	padding: 0.2rem 0.55rem;
	width: 100%;
}

.gn-admin-regras__add-btn {
	align-items: center;
	background: var(--gn-btn-create);
	border: 1px solid var(--gn-btn-create);
	border-radius: 8px;
	color: var(--gn-btn-fg-on-solid);
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 0.85rem;
	height: 2rem;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 2rem;
}

.gn-admin-regras__add-btn:hover,
.gn-admin-regras__add-btn:focus-visible {
	background: var(--gn-btn-create-hover);
	border-color: var(--gn-btn-create-hover);
	outline: none;
}

.gn-admin-regras__empty {
	color: var(--gn-muted);
	font-size: 0.82rem;
	margin: 0;
}

.gn-admin-regras__cloud {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 0.4rem;
}

.gn-admin-regras__chip {
	align-items: center;
	background: var(--gn-primary-soft);
	border: 1px solid var(--gn-border);
	border-radius: 999px;
	display: inline-flex;
	max-width: 100%;
	padding: 0.15rem 0.55rem 0.15rem 0.5rem;
	position: relative;
}

.gn-admin-regras__chip-input {
	background: transparent;
	border: 0;
	box-shadow: none;
	color: var(--gn-text);
	field-sizing: content;
	font-size: 0.78rem;
	height: auto;
	line-height: 1.3;
	margin: 0;
	max-width: 100%;
	min-width: 2ch;
	padding: 0.12rem 0.1rem;
	width: auto;
}

.gn-admin-regras__chip-input:focus {
	border: 0;
	outline: none;
}

.gn-admin-regras__chip-input:focus-visible {
	outline: 2px solid var(--gn-auth-accent);
	outline-offset: 1px;
}

.gn-admin-regras__chip-remove {
	align-items: center;
	appearance: none;
	background: var(--gn-danger);
	border: 0;
	border-radius: 50%;
	color: var(--gn-btn-fg-on-solid);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.62rem;
	height: 1.05rem;
	justify-content: center;
	line-height: 1;
	min-height: 0;
	min-width: 0;
	opacity: 0;
	padding: 0;
	position: absolute;
	right: -0.3rem;
	top: -0.3rem;
	width: 1.05rem;
}

.gn-admin-regras__chip:hover .gn-admin-regras__chip-remove,
.gn-admin-regras__chip:focus-within .gn-admin-regras__chip-remove {
	opacity: 1;
}

.gn-admin-regras__chip-remove:hover,
.gn-admin-regras__chip-remove:focus-visible {
	background: var(--gn-btn-danger);
	outline: none;
	opacity: 1;
}

.gn-admin-regras__actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 0.75rem;
}

@media (hover: none), (max-width: 767px) {
	.gn-admin-regras > .gn-admin-card {
		max-width: none;
	}

	.gn-admin-regras__add-input {
		max-width: none;
	}

	.gn-admin-regras__chip-remove {
		height: 1.2rem;
		opacity: 1;
		width: 1.2rem;
	}

	.gn-admin-regras__actions {
		justify-content: stretch;
	}

	.gn-admin-regras__actions .gn-btn {
		width: 100%;
	}
}

.gn-admin-embed-frame {
	background: var(--gn-page-bg);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	display: block;
	min-height: 70vh;
	width: 100%;
}

body.gn-admin-embed #main {
	padding-top: 0;
}

body.gn-admin-embed .gn-admin-dashboard--embed {
	margin: 0;
	max-width: none;
	padding: 0.75rem 0.85rem 1.25rem;
}

body.gn-admin-embed .gn-admin-hero,
body.gn-admin-embed .gn-admin-nav,
body.gn-admin-embed .gn-admin-sidebar,
body.gn-admin-embed .gn-admin-sidebar-overlay,
body.gn-admin-embed > header,
body.gn-admin-embed > footer {
	display: none !important;
}

/* Seções colapsáveis (/admin/posicionamento-negocios) */
.gn-admin-collapse__header {
	align-items: center;
	gap: 0.75rem 1rem;
}

.gn-admin-collapse:not(.is-expanded) .gn-admin-collapse__header {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.gn-admin-collapse__intro {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	gap: 0.35rem 1rem;
	min-width: 0;
}

.gn-admin-collapse__toggle {
	align-items: center;
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 12px;
	color: var(--gn-muted);
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 0.82rem;
	font-weight: 600;
	gap: 0.4rem;
	margin-left: auto;
	padding: 0.4rem 0.85rem;
}

.gn-admin-collapse__toggle:hover,
.gn-admin-collapse__toggle:focus-visible {
	border-color: var(--gn-primary);
	color: var(--gn-primary);
	outline: none;
}

.gn-admin-collapse__toggle .fa {
	font-size: 0.85rem;
}

.gn-admin-collapse__panel[hidden] {
	display: none;
}

.gn-admin-collapse.is-expanded .gn-admin-collapse__panel {
	margin-top: 0.15rem;
}

.gn-admin-placement__form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
}

.gn-admin-placement__grid {
	display: grid;
	gap: 0.85rem 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gn-admin-placement__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.gn-admin-placement__label-row {
	align-items: center;
	display: flex;
	gap: 0.45rem;
}

.gn-admin-placement__field > span,
.gn-admin-placement__label-row label {
	color: var(--gn-muted);
	font-size: 0.8rem;
	font-weight: 600;
}

.gn-admin-placement__field input,
.gn-admin-placement__field select {
	background: var(--gn-surface);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	box-sizing: border-box;
	color: var(--gn-text);
	font: inherit;
	max-width: 100%;
	padding: 0.55rem 0.7rem;
	width: 100%;
}

.gn-admin-placement__field input:focus,
.gn-admin-placement__field select:focus {
	border-color: var(--gn-primary);
	box-shadow: 0 0 0 2px rgba(28, 53, 85, 0.2);
	outline: none;
}

.gn-admin-placement__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.gn-admin-placement__hits,
.gn-admin-placement__pins {
	margin-top: 1rem;
}

.gn-admin-placement__pins-empty {
	margin-top: 0.75rem;
}

.gn-admin-placement__pin-form {
	border-top: 1px solid var(--gn-border);
	margin-top: 1.25rem;
	padding-top: 1.15rem;
}

.gn-admin-placement__unpin {
	display: inline;
	margin: 0;
}

.gn-writer-articles__table-wrap.gn-admin-placement__hits,
.gn-writer-articles__table-wrap.gn-admin-placement__pins {
	max-width: 100%;
	overflow-x: hidden;
}

@media (max-width: 640px) {
	.gn-admin-placement__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.gn-admin-users__table.gn-admin-placement-pins th:nth-child(2),
	.gn-admin-users__table.gn-admin-placement-pins td:nth-child(2) {
		display: none;
	}
}

/* /conta/editar — seções de mídia e dados pessoais */
.gn-profile-edit-section {
	margin-bottom: 1.25rem;
}

.gn-profile-media-grid {
	align-items: stretch;
	column-gap: 1.5rem;
	container-type: inline-size;
	display: grid;
	grid-template-columns: 1fr 3fr;
	row-gap: 0.75rem;
}

.gn-profile-media-field {
	display: flex;
	flex-direction: column;
	margin-bottom: 0;
	min-width: 0;
}

.gn-profile-media-field--avatar .gn-profile-media-preview--avatar {
	margin-left: auto;
	margin-right: auto;
}

.gn-profile-media-preview {
	align-items: center;
	background: var(--gn-bg);
	border: 1px dashed var(--gn-border);
	border-radius: 10px;
	display: flex;
	justify-content: center;
	margin: 0 0 0.75rem;
	overflow: hidden;
	position: relative;
}

.gn-profile-media-preview--cover {
	/* Mesma proporção do crop/export (1920×360 ≈ hero full-bleed). */
	aspect-ratio: 1920 / 360;
	width: 100%;
}

.gn-profile-media-preview--avatar {
	/* Quadrado com a mesma altura da prévia da capa (3/4 da grade × 360/1920). */
	aspect-ratio: 1 / 1;
	border-radius: 999px;
	height: auto;
	max-width: 100%;
	width: calc((100cqi - 1.5rem) * 0.75 * 360 / 1920);
}

.gn-profile-media-preview--logo {
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	height: auto;
	max-width: 100%;
	width: calc((100cqi - 1.5rem) * 0.75 * 360 / 1920);
}

.gn-profile-media-field--avatar .gn-profile-media-preview--logo {
	margin-left: auto;
	margin-right: auto;
}

.gn-profile-media-preview img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gn-profile-media-preview__trigger {
	align-items: center;
	cursor: pointer;
	display: flex;
	height: 100%;
	justify-content: center;
	margin: 0;
	position: relative;
	width: 100%;
}

.gn-profile-media-preview__upload {
	align-items: center;
	background: rgba(28, 53, 85, 0.88);
	border: 2px solid var(--gn-inverse);
	border-radius: 999px;
	bottom: 0.45rem;
	box-shadow: 0 1px 6px rgba(15, 23, 42, 0.28);
	color: var(--gn-inverse);
	display: inline-flex;
	font-size: 0.85rem;
	height: 2rem;
	justify-content: center;
	pointer-events: none;
	position: absolute;
	right: 0.45rem;
	width: 2rem;
	z-index: 1;
}

.gn-profile-media-preview--avatar .gn-profile-media-preview__upload {
	bottom: 8%;
	right: 8%;
}

.gn-profile-media-preview__empty {
	color: var(--gn-muted);
	font-size: 0.85rem;
	padding: 0.75rem;
}

.gn-profile-media-actions {
	display: grid;
	gap: 0.5rem;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 0.35rem;
	margin-top: auto;
}

.gn-profile-media-actions .gn-profile-media-pick,
.gn-profile-media-actions .gn-btn {
	align-items: center;
	box-sizing: border-box;
	display: inline-flex;
	justify-content: center;
	margin: 0;
	min-height: 2.5rem;
	text-align: center;
	width: 100%;
}

.gn-profile-media-pick {
	cursor: pointer;
}

.gn-profile-media-actions .gn-btn[hidden] {
	display: none;
}

.gn-profile-media-actions--single {
	grid-template-columns: 1fr;
}

@media (max-width: 720px) {
	.gn-profile-media-grid {
		grid-template-columns: 1fr;
	}

	.gn-profile-media-preview--avatar,
	.gn-profile-media-preview--logo {
		width: 160px;
	}

	.gn-profile-edit-form .gn-admin-card {
		padding: 1rem 0.85rem;
	}
}

.gn-profile-form-row {
	display: grid;
	gap: 1rem;
	grid-column: 1 / -1;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.gn-profile-personal-grid {
	box-sizing: border-box;
	display: grid;
	gap: 0 1.25rem;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	min-width: 0;
	width: 100%;
}

@media (max-width: 768px) {
	.gn-profile-personal-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.gn-profile-form-group--uf {
		max-width: none;
	}

	.gn-profile-edit-form .gn-field-phone-with-wa input[type="tel"] {
		flex: 1 1 100%;
		min-width: 0;
		width: 100%;
	}

	.gn-profile-edit-form .gn-field-wa-check {
		white-space: normal;
	}
}

.gn-profile-personal-grid > * {
	min-width: 0;
}

.gn-profile-secret-field {
	align-items: stretch;
	display: flex;
	gap: 0.45rem;
	min-width: 0;
	width: 100%;
}

.gn-profile-secret-field input {
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
}

.gn-profile-secret-field__edit {
	align-items: center;
	background: var(--gn-surface);
	background-color: var(--gn-surface);
	border: 1px solid var(--gn-primary);
	border-radius: 2px;
	color: var(--gn-primary);
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 42px;
	height: 42px;
	justify-content: center;
	padding: 0;
	width: 42px;
}

.gn-profile-secret-field__edit:hover,
.gn-profile-secret-field__edit:focus,
.gn-profile-secret-field__edit:focus-visible,
.gn-profile-secret-field__edit:active,
.gn-profile-secret-field__edit[aria-pressed="true"] {
	background: var(--gn-surface);
	background-color: var(--gn-surface);
	border-color: var(--gn-primary);
	color: var(--gn-primary);
	outline: none;
}

.gn-profile-edit-form .gn-admin-card,
.gn-profile-edit-form .gn-admin-collapse,
.gn-profile-edit-form .gn-admin-collapse__panel {
	box-sizing: border-box;
	max-width: 100%;
	min-width: 0;
}

.gn-profile-edit-form .gn-admin-collapse__header,
.gn-profile-edit-form .gn-admin-collapse__intro {
	max-width: 100%;
	min-width: 0;
}

.gn-profile-edit-form .gn-admin-card__title {
	min-width: 0;
	overflow-wrap: anywhere;
}

.gn-profile-form-group--rua {
	grid-column: 1 / -1;
}

.gn-profile-form-group--uf {
	max-width: 120px;
}

.gn-profile-form-group select {
	width: 100%;
}

/* ================================================================
   HEADER MOBILE — overlay até 60dvh, itens compactos
   ================================================================ */

body.gn-mobi-nav-open {
	overflow: hidden;
	height: 100%;
}

.gn-mobi-nav-art {
	display: none;
}

@media only screen and (max-width: 767px) {
	#header {
		position: relative;
		z-index: 1100;
	}

	.top-wrap {
		position: relative;
		z-index: 1110;
	}

	/* A âncora é o .top-wrap: a coluna da direita colapsa no mobile (member-area some). */
	.top-wrap .col-md-6:last-child {
		position: static;
	}

	.btn-menu,
	.btn-menu:hover,
	.btn-menu:focus,
	.btn-menu.active {
		align-items: center;
		background: transparent;
		background-color: transparent;
		bottom: 0;
		box-shadow: none;
		color: #fff;
		display: flex;
		filter: none;
		height: auto;
		justify-content: center;
		min-height: 44px;
		right: 0;
		top: 0;
		width: 3.5rem;
		z-index: 1120;
	}

	.btn-menu:focus {
		outline: none;
	}

	.btn-menu:focus-visible {
		outline: 2px solid #fff;
		outline-offset: -2px;
	}

	.btn-menu:before,
	.btn-menu.active:before {
		content: none;
		display: none;
	}

	.btn-menu .fa,
	.btn-menu .fa:before,
	.btn-menu__bars,
	.btn-menu__close {
		color: #fff;
		opacity: 1;
	}

	.btn-menu__bars,
	.btn-menu__close {
		font-size: 1.75rem;
		line-height: 1;
		text-shadow: none;
	}

	.btn-menu__close {
		display: none;
	}

	.btn-menu.active .btn-menu__bars {
		display: none;
	}

	.btn-menu.active .btn-menu__close {
		display: inline-block;
	}

	#mainnav-mobi {
		background-color: rgba(18, 32, 38, 0.98);
		box-sizing: border-box;
		display: none;
		flex-direction: column;
		height: auto;
		left: 0;
		margin: 0;
		max-height: 60vh;
		max-height: 60dvh;
		overflow: hidden;
		padding: 8px 16px 12px;
		position: fixed;
		right: 0;
		top: var(--gn-mobi-header, 64px);
		width: 100%;
		z-index: 1090;
	}

	#mainnav-mobi.is-open {
		display: flex;
		overflow-y: auto;
	}

	#mainnav-mobi > ul.menu {
		display: flex;
		flex: 0 1 auto;
		flex-direction: column;
		gap: 0;
		justify-content: flex-start;
		min-height: 0;
		padding: 0;
	}

	#mainnav-mobi ul li {
		border-top: none;
		cursor: default;
	}

	#mainnav-mobi > ul > li:not(.menu-addon) {
		align-items: stretch;
		display: flex;
		flex: 0 0 auto;
		justify-content: center;
		min-height: 0;
		overflow: hidden;
	}

	#mainnav-mobi > ul > li:not(.menu-addon) > a {
		align-items: center;
		background-color: transparent;
		border-radius: 0;
		color: #fff;
		display: flex;
		height: auto;
		justify-content: center;
		letter-spacing: 0.02em;
		line-height: 1.2;
		min-height: 2.5rem;
		overflow: hidden;
		padding: 0.3rem 1rem;
		position: relative;
		text-decoration: none;
		width: 100%;
	}

	#mainnav-mobi > ul > li:not(.menu-addon) > a.active,
	#mainnav-mobi > ul > li:not(.menu-addon) > a:hover,
	#mainnav-mobi > ul > li:not(.menu-addon) > a:focus-visible {
		background-color: transparent;
		color: #fff;
		outline: none;
		transition: none;
	}

	#mainnav-mobi .gn-mobi-nav-art {
		display: none;
	}

	#mainnav-mobi .gn-mobi-nav-label {
		color: inherit;
		position: relative;
		z-index: 1;
	}

	#mainnav-mobi > ul > li.menu-addon {
		align-items: stretch;
		display: flex;
		flex: 0 0 auto;
		flex-direction: column;
		gap: 8px;
		padding: 6px 0 0;
	}

	#mainnav-mobi > ul > li.menu-addon span {
		display: block;
		margin: 0;
	}

	#mainnav-mobi > ul > li.menu-addon span a,
	#mainnav-mobi .gn-auth-mobi-guest .signup-link a,
	#mainnav-mobi .gn-auth-mobi-guest .login-link a {
		align-items: center;
		border-radius: 8px;
		box-sizing: border-box;
		display: flex;
		font-size: 1.25rem;
		font-weight: 700;
		height: 56px;
		justify-content: center;
		line-height: 1;
		max-width: none;
		width: 100%;
	}

	#mainnav-mobi > ul > li.menu-addon span.login-link a,
	#mainnav-mobi .gn-auth-mobi-guest .login-link a,
	#mainnav-mobi .gn-auth-mobi-admin.gn-auth-mobi-cta {
		background-color: var(--gn-success);
		border: 2px solid var(--gn-success);
		color: #fff;
	}

	#mainnav-mobi > ul > li.menu-addon span.login-link a:hover,
	#mainnav-mobi > ul > li.menu-addon span.login-link a:focus-visible,
	#mainnav-mobi .gn-auth-mobi-guest .login-link a:hover,
	#mainnav-mobi .gn-auth-mobi-guest .login-link a:focus-visible,
	#mainnav-mobi .gn-auth-mobi-admin.gn-auth-mobi-cta:hover,
	#mainnav-mobi .gn-auth-mobi-admin.gn-auth-mobi-cta:focus-visible {
		background-color: #16643f;
		border-color: #16643f;
		color: #fff;
		text-decoration: none;
	}

	#mainnav-mobi .gn-auth-mobi-guest .signup-link a {
		background-color: var(--gn-accent-solid);
		border: 2px solid var(--gn-accent-solid);
		color: var(--gn-inverse, #fff);
	}

	#mainnav-mobi .gn-auth-mobi-name {
		color: #fff;
		font-size: 1.15rem;
		margin-bottom: 10px;
	}

	#mainnav-mobi .gn-auth-mobi-admin {
		align-items: center;
		background-color: var(--gn-accent-solid);
		border-radius: 8px;
		color: var(--gn-inverse, #fff);
		display: flex;
		font-size: 1.15rem;
		height: 52px;
		justify-content: center;
		margin-bottom: 10px;
		text-decoration: none;
	}

	#mainnav-mobi .gn-auth-mobi-logout button {
		background-color: transparent;
		border: 2px solid #fff;
		border-radius: 8px;
		color: #fff;
		font-size: 1.15rem;
		height: 52px;
	}
}

.gn-footer {
	padding: 36px 0 32px;
	text-align: center;
}

.gn-footer .gn-footer__inner {
	align-items: stretch;
	container-type: inline-size;
	display: grid;
	gap: 5rem;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	margin: 0;
	max-width: none;
}

.gn-footer__col {
	align-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	text-align: center;
}

.gn-footer__col > * {
	max-width: 100%;
}

.gn-footer__col--left {
	gap: 1rem;
}

.gn-footer__col--mid {
	gap: 0;
}

.gn-footer__col--right {
	gap: 0;
}

.gn-footer__social-label {
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	margin: 0 0 14px;
}

.gn-footer__social {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 0;
}

.gn-footer__social a {
	align-items: center;
	background-color: #343434;
	border-radius: 6px;
	color: #fff;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.15s ease;
	width: 42px;
}

.gn-footer__social a.youtube {
	background-color: #cf1312;
}

.gn-footer__social a.facebook {
	background-color: #3c5a9b;
}

.gn-footer__social a.instagram {
	background-color: #c13584;
}

.gn-footer__social a.x {
	background-color: #111111;
}

.gn-footer__social a.whatsapp {
	background-color: #25d366;
}

.gn-footer__social a:hover,
.gn-footer__social a:focus-visible {
	opacity: 0.75;
	outline: none;
	transform: translateY(-1px);
}

.gn-footer__social img {
	display: block;
	height: 18px;
	width: 18px;
}

.gn-footer__social .fa {
	font-size: 18px;
}

.gn-footer__whatsapp,
.gn-social-whatsapp-icon {
	display: block;
	height: 20px;
	width: 20px;
}

.gn-social-x {
	font-size: 0.95em;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
}

.gn-footer__brand {
	margin-bottom: 16px;
	width: 100%;
}

.gn-footer__logo {
	display: block;
	line-height: 0;
}

.gn-footer__logo img {
	display: block;
	height: auto;
	margin: 0 auto 0;
	max-width: 100%;
	opacity: 0.7;
	width: 75%;
}

@supports (width: 1cqi) {
	.gn-footer__logo img {
		width: 25cqi;
	}
}

.gn-footer__tagline,
.gn-footer__line {
	color: #d5d6d8;
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 8px;
}

.gn-footer__who,
.gn-footer__contact {
	margin: 0;
}

.gn-footer__partner {
	color: #fff;
	font-weight: 700;
}

.gn-footer__contact a,
.gn-footer__line a {
	color: #fff;
	text-decoration: none;
}

.gn-footer__contact a:hover,
.gn-footer__contact a:focus-visible,
.gn-footer__line a:hover,
.gn-footer__line a:focus-visible {
	color: var(--gn-accent-solid, #e8c547);
	outline: none;
	text-decoration: underline;
}

@media (max-width: 991px) {
	.gn-footer .gn-footer__inner {
		gap: 2.5rem;
		grid-template-columns: 1fr;
	}

	.gn-footer__col--left {
		gap: 1rem;
	}
}

@media (max-width: 479px) {
	#mainnav-mobi .gn-mobi-nav-art {
		max-width: min(28vw, 5.75rem);
	}

	#mainnav-mobi .gn-mobi-nav-label {
		white-space: nowrap;
	}
}

.gn-admin-redes {
	margin: 0;
}

.gn-admin-redes__row {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.gn-admin-redes__icon {
	align-items: center;
	color: var(--gn-text);
	display: inline-flex;
	flex: 0 0 2.5rem;
	font-size: 1.15rem;
	height: 2.5rem;
	justify-content: center;
	width: 2.5rem;
}

.gn-admin-redes__icon .gn-social-whatsapp-icon {
	height: 1.25rem;
	width: 1.25rem;
}

.gn-admin-redes__input {
	background: var(--gn-bg);
	border: 1px solid var(--gn-border);
	border-radius: 8px;
	box-sizing: border-box;
	color: var(--gn-text);
	flex: 1 1 auto;
	font-size: 0.9rem;
	height: 2.5rem;
	min-height: 2.5rem;
	min-width: 0;
	padding: 0 0.75rem;
}

.gn-admin-redes__input:focus {
	border-color: var(--gn-primary);
	box-shadow: 0 0 0 2px rgba(28, 53, 85, 0.2);
	outline: none;
}

.gn-admin-redes__ver {
	align-items: center;
	color: var(--gn-primary);
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 0.9rem;
	font-weight: 600;
	height: 2.5rem;
	text-decoration: none;
}

.gn-admin-redes__ver:hover,
.gn-admin-redes__ver:focus-visible {
	text-decoration: underline;
}

.gn-admin-redes__ver--off {
	color: var(--gn-muted);
	pointer-events: none;
}

.contact-page .contact-social .gn-social-whatsapp-icon {
	color: #d5d5d5;
	height: 20px;
	width: 20px;
}

.contact-page .contact-social .gn-social-x {
	color: #d5d5d5;
	font-size: 18px;
}

/* ================================================================
   /videos — listagem: 6 visíveis + Compartilhe + comentários
   ================================================================ */

.gn-videos-list {
	margin-top: 0.5rem;
}

.gn-videos-feed:not(.is-expanded) > .gn-videos-card:nth-child(n+7) {
	display: none;
}

.posts.posts-list.gn-videos-list .post.gn-videos-card {
	border-bottom: none;
	clear: both;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin: 0 0 1rem;
	padding: 0 0 0.85rem;
}

.gn-videos-list .gn-videos-card > .gn-videos-card__player {
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: var(--gn-img-radius);
	isolation: isolate;
	margin: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.gn-videos-list .gn-videos-card > .gn-videos-card__player .gn-videos-card__embed,
.gn-videos-list .gn-videos-card > .gn-videos-card__player .gn-video-embed,
.gn-videos-list .gn-videos-card > .gn-videos-card__player iframe,
.gn-videos-list .gn-videos-card > .gn-videos-card__player video {
	border-radius: var(--gn-img-radius);
	display: block;
	height: 100%;
	left: 0;
	min-height: 0;
	object-fit: contain;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.gn-videos-list .gn-videos-card > .gn-videos-card__player.is-playing .gn-videos-card__embed,
.gn-videos-list .gn-videos-card > .gn-videos-card__player.is-playing .gn-video-embed,
.gn-videos-list .gn-videos-card > .gn-videos-card__player.is-playing iframe,
.gn-videos-list .gn-videos-card > .gn-videos-card__player.is-playing video {
	pointer-events: auto;
}

.gn-videos-card__cover,
.gn-videos-card__cover:hover,
.gn-videos-card__cover:focus,
.gn-videos-card__cover:active {
	background: #111;
	border: 0;
	border-radius: var(--gn-img-radius);
	cursor: pointer;
	display: block;
	height: 100%;
	inset: 0;
	padding: 0;
	pointer-events: auto;
	position: absolute;
	transform: translateZ(0);
	width: 100%;
	z-index: 5;
}

.gn-videos-card__cover[hidden],
.gn-videos-card__player.is-playing .gn-videos-card__cover {
	display: none !important;
}

.gn-videos-card__cover-img,
.gn-videos-card__cover-img img {
	border-radius: var(--gn-img-radius);
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gn-videos-card__play {
	background: rgba(0, 0, 0, 0.55);
	border: 3px solid #fff;
	border-radius: 50%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
	height: 4.25rem;
	left: 50%;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 4.25rem;
}

.gn-videos-card__play::after {
	border-color: transparent transparent transparent #fff;
	border-style: solid;
	border-width: 0.7rem 0 0.7rem 1.15rem;
	content: "";
	display: block;
	height: 0;
	left: 54%;
	position: absolute;
	top: 50%;
	transform: translate(-40%, -50%);
	width: 0;
}

.gn-videos-list .gn-videos-card > .gn-video-fallback {
	margin: 0;
}

.gn-videos-card .gn-article-share {
	margin: 0;
	padding: 0.35rem 0.85rem 0;
}

.gn-videos-card__comments-details {
	margin: 0;
	padding: 0 0.85rem;
}

.gn-videos-card__comments-toggle {
	background-color: transparent;
	border: 1px solid var(--gn-border);
	border-radius: 4px;
	color: var(--gn-text);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 2.2;
	list-style: none;
	padding: 0 1rem;
}

.gn-videos-card__comments-toggle::-webkit-details-marker {
	display: none;
}

.gn-videos-card__comments-toggle::marker {
	content: "";
}

.gn-videos-card__comments-toggle-open {
	display: none;
}

.gn-videos-card__comments-details[open] .gn-videos-card__comments-toggle-closed {
	display: none;
}

.gn-videos-card__comments-details[open] .gn-videos-card__comments-toggle-open {
	display: inline;
}

.gn-videos-card__comments-details .comments-list {
	margin: 0.85rem 0 0;
}

.gn-videos-card__comment-cta {
	margin: 0.5rem 0 0;
}

.gn-videos-card__comment-cta a {
	font-size: 0.9rem;
	font-weight: 600;
}

.gn-videos-card__body {
	padding: 0 0.85rem;
}

.gn-videos-card__body h3 {
	line-height: 1.25;
	margin: 0 0 0.4rem;
}

.gn-videos-card__body h3 a,
.gn-videos-card__body h3 a:hover,
.gn-videos-card__body h3 a:focus {
	text-decoration: none;
}

.gn-videos-card__author {
	align-items: center;
	display: flex;
	gap: 0.65rem;
	margin: 0 0 0.55rem;
}

.gn-videos-card__author-avatar {
	border-radius: 50%;
	display: block;
	flex: 0 0 2.25rem;
	height: 2.25rem;
	object-fit: cover;
	object-position: center;
	width: 2.25rem;
}

.gn-videos-card__author-name {
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.3;
	min-width: 0;
}

.gn-videos-card__body .excerpt-entry {
	margin: 0;
}

.gn-videos-card__body .cat {
	margin: 0 0 0.35rem;
}

.gn-videos-more-wrap {
	margin: 1.25rem 0 0.5rem;
	text-align: center;
}

/* Aside MAIS VISTOS — miniatura + metadados (estilo YouTube) */
.gn-videos-sidebar .content-tab {
	max-height: none;
	overflow: visible;
}

.gn-videos-aside {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gn-videos-aside__item {
	align-items: flex-start;
	color: inherit;
	display: flex;
	gap: 0.65rem;
	margin: 0 -0.4rem;
	padding: 0.4rem;
	text-decoration: none;
}

.gn-videos-sidebar .gn-videos-aside__item,
#sidebar2.gn-videos-sidebar .tabs.style2 .content-tab .gn-videos-aside__item {
	color: inherit;
	line-height: 1.25;
	text-decoration: none;
}

.gn-videos-aside__item:hover,
.gn-videos-aside__item:focus-visible,
.gn-videos-sidebar .gn-videos-aside__item:hover,
.gn-videos-sidebar .gn-videos-aside__item:focus-visible,
#sidebar2.gn-videos-sidebar .tabs.style2 .content-tab .gn-videos-aside__item:hover,
#sidebar2.gn-videos-sidebar .tabs.style2 .content-tab .gn-videos-aside__item:focus-visible {
	background-color: rgba(0, 0, 0, 0.03);
	outline: none;
	text-decoration: none;
}

.gn-videos-aside__item:hover .gn-videos-aside__title,
.gn-videos-aside__item:focus-visible .gn-videos-aside__title {
	text-decoration: none;
}

.gn-videos-aside__thumb,
.gn-videos-aside__meta {
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gn-videos-aside__item:hover .gn-videos-aside__thumb,
.gn-videos-aside__item:hover .gn-videos-aside__meta,
.gn-videos-aside__item:focus-visible .gn-videos-aside__thumb,
.gn-videos-aside__item:focus-visible .gn-videos-aside__meta {
	transform: translate(-2px, -3px);
}

.gn-videos-aside__thumb {
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	flex: 0 0 42%;
	max-width: 168px;
	overflow: hidden;
	position: relative;
}

.gn-videos-aside__thumb img {
	border-radius: 8px;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gn-videos-aside__duration {
	background: rgba(0, 0, 0, 0.82);
	border-radius: 4px;
	bottom: 0.28rem;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	padding: 0.18rem 0.28rem;
	position: absolute;
	right: 0.28rem;
}

.gn-videos-aside__meta {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.gn-videos-aside__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--gn-text, #1a1a1a);
	display: -webkit-box;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.25;
	overflow: hidden;
}

.gn-videos-aside__channel,
.gn-videos-aside__stats {
	color: #606060;
	font-size: 0.75rem;
	line-height: 1.3;
}

.gn-videos-aside__stats {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.15rem;
}

.gn-videos-aside__play-icon {
	border-color: transparent transparent transparent #909090;
	border-style: solid;
	border-width: 0.28rem 0 0.28rem 0.42rem;
	display: inline-block;
	height: 0;
	margin-right: 0.2rem;
	width: 0;
}

.gn-videos-aside__new {
	align-self: flex-start;
	background: #ececec;
	border-radius: 4px;
	color: #5f5f5f;
	font-size: 0.7rem;
	font-weight: 700;
	margin-top: 0.15rem;
	padding: 0.12rem 0.4rem;
}

.gn-negocios-hub-section__toggle,
.gn-admin-collapse__toggle,
.gn-admin-users-stats__toggle,
.gn-admin-users-list__toggle,
.gn-admin-users__more,
.gn-ad-cms__toggle {
	background: var(--gn-surface);
	background-color: var(--gn-surface);
	border: 1px solid var(--gn-primary);
	border-radius: 2px;
	color: var(--gn-primary);
}

.gn-negocios-hub-section__toggle:hover,
.gn-negocios-hub-section__toggle:focus,
.gn-negocios-hub-section__toggle:focus-visible,
.gn-negocios-hub-section__toggle:active,
.gn-admin-collapse__toggle:hover,
.gn-admin-collapse__toggle:focus,
.gn-admin-collapse__toggle:focus-visible,
.gn-admin-collapse__toggle:active,
.gn-admin-users-stats__toggle:hover,
.gn-admin-users-stats__toggle:focus,
.gn-admin-users-stats__toggle:focus-visible,
.gn-admin-users-stats__toggle:active,
.gn-admin-users-list__toggle:hover,
.gn-admin-users-list__toggle:focus,
.gn-admin-users-list__toggle:focus-visible,
.gn-admin-users-list__toggle:active,
.gn-admin-users__more:hover,
.gn-admin-users__more:focus,
.gn-admin-users__more:focus-visible,
.gn-admin-users__more:active,
.gn-ad-cms__toggle:hover,
.gn-ad-cms__toggle:focus,
.gn-ad-cms__toggle:focus-visible,
.gn-ad-cms__toggle:active,
.gn-negocios-hub-section.is-expanded .gn-negocios-hub-section__toggle,
.gn-admin-collapse.is-expanded .gn-admin-collapse__toggle,
.gn-admin-users-stats.is-expanded .gn-admin-users-stats__toggle,
.gn-admin-users-list.is-expanded .gn-admin-users-list__toggle,
.gn-admin-users__more.is-expanded,
.gn-ad-cms__card.is-expanded .gn-ad-cms__toggle {
	background: var(--gn-surface);
	background-color: var(--gn-surface);
	border-color: var(--gn-primary);
	color: var(--gn-primary);
	outline: none;
}

.gn-negocios-hub-section.is-expanded .gn-negocios-hub-section__toggle .fa,
.gn-ad-cms__card.is-expanded .gn-ad-cms__toggle .fa,
.gn-admin-users-stats.is-expanded .gn-admin-users-stats__toggle .fa,
.gn-admin-users-list.is-expanded .gn-admin-users-list__toggle .fa,
.gn-admin-users__more.is-expanded .fa {
	transform: none;
}

.gn-admin-collapse__toggle,
.gn-negocios-hub-section__toggle,
.gn-admin-users__more,
.gn-admin-users-stats__toggle,
.gn-admin-users-list__toggle,
.gn-ad-cms__toggle,
.gn-writer-seo__toggle,
.gn-admin-btn,
.btn-menu,
.header-wrap #searchform #searchsubmit,
.error-wrap #searchsubmit {
	transition-duration: var(--gn-btn-hover-duration);
	transition-property: background-color, border-color, color, box-shadow;
	transition-timing-function: ease;
}

.gn-admin-collapse__toggle .fa,
.gn-negocios-hub-section__toggle .fa,
.gn-admin-users__more .fa,
.gn-admin-users-stats__toggle .fa,
.gn-admin-users-list__toggle .fa,
.gn-ad-cms__toggle .fa {
	transition-duration: var(--gn-btn-hover-duration);
	transition-property: transform;
	transition-timing-function: ease;
}

a,
[role="button"],
summary {
	transition-duration: var(--gn-btn-hover-duration);
}

/* === CTA canónico gn-btn (alteracaocss.md) === */
/* Um só bloco de CTA. Tabelas fora de âmbito: .gn-admin-btn.
   Aliases legado (.gn-button, .gn-profile-edit-btn, .send-btn, .gn-writer-page__create-btn) removidos. */

button.gn-btn,
input[type="button"].gn-btn,
input[type="submit"].gn-btn,
input[type="reset"].gn-btn,
a.gn-btn,
.gn-btn {
	align-items: center;
	appearance: none;
	-webkit-appearance: none;
	background-color: var(--gn-btn-send-bg);
	border: 1px solid var(--gn-btn-send-border);
	border-radius: var(--gn-btn-radius);
	box-sizing: border-box;
	color: var(--gn-btn-fg-on-muted);
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	gap: 0.4rem;
	height: var(--gn-btn-height);
	justify-content: center;
	letter-spacing: normal;
	line-height: 1.2;
	margin: 0;
	min-height: var(--gn-btn-height);
	padding: 0 1.15rem;
	position: static;
	text-decoration: none;
	text-transform: none;
	top: auto;
	transition-duration: var(--gn-btn-cta-hover-duration);
	transition-property: background-color, border-color, color, transform;
	transition-timing-function: ease;
	white-space: nowrap;
}

button.gn-btn[hidden],
input[type="button"].gn-btn[hidden],
a.gn-btn[hidden],
.gn-btn[hidden] {
	display: none !important;
}

button.gn-btn:hover,
button.gn-btn:focus-visible,
input[type="button"].gn-btn:hover,
input[type="button"].gn-btn:focus-visible,
input[type="submit"].gn-btn:hover,
input[type="submit"].gn-btn:focus-visible,
input[type="reset"].gn-btn:hover,
input[type="reset"].gn-btn:focus-visible,
a.gn-btn:hover,
a.gn-btn:focus-visible,
.gn-btn:hover,
.gn-btn:focus-visible {
	background-color: var(--gn-btn-send-bg-hover);
	border-color: var(--gn-btn-send-border-hover);
	color: var(--gn-btn-fg-on-muted);
	outline: 2px solid var(--gn-focus-ring);
	outline-offset: 2px;
	text-decoration: none;
	transform: translateY(-1px);
}

button.gn-btn:active,
input[type="button"].gn-btn:active,
input[type="submit"].gn-btn:active,
input[type="reset"].gn-btn:active,
a.gn-btn:active,
.gn-btn:active {
	transform: translateY(0);
}

.gn-btn.gn-btn--create,
.gn-btn.gn-btn--send,
.gn-btn.gn-btn--danger,
.gn-btn.gn-btn--access,
.gn-btn.gn-btn--plain {
	border-radius: var(--gn-btn-radius);
	font-size: 0.9rem;
	font-weight: 600;
	height: var(--gn-btn-height);
	letter-spacing: normal;
	min-height: var(--gn-btn-height);
	text-transform: none;
}

.gn-btn:disabled,
.gn-btn[disabled] {
	cursor: not-allowed;
	opacity: 0.5;
	transform: none;
}

button.gn-btn:disabled:hover,
button.gn-btn:disabled:focus-visible,
input[type="submit"].gn-btn:disabled:hover,
.gn-btn:disabled:hover,
.gn-btn[disabled]:hover {
	transform: none;
}

.gn-btn.gn-btn--create {
	background-color: var(--gn-btn-create);
	border-color: var(--gn-btn-create);
	color: var(--gn-btn-fg-on-solid);
}

.gn-btn.gn-btn--create:hover,
.gn-btn.gn-btn--create:focus-visible {
	background-color: var(--gn-btn-create-hover);
	border-color: var(--gn-btn-create-hover);
	color: var(--gn-btn-fg-on-solid);
}

.gn-btn.gn-btn--send,
.gn-btn.gn-btn--plain {
	background-color: var(--gn-btn-send-bg);
	border-color: var(--gn-btn-send-border);
	color: var(--gn-btn-fg-on-muted);
}

.gn-btn.gn-btn--send:hover,
.gn-btn.gn-btn--send:focus-visible,
.gn-btn.gn-btn--plain:hover,
.gn-btn.gn-btn--plain:focus-visible {
	background-color: var(--gn-btn-send-bg-hover);
	border-color: var(--gn-btn-send-border-hover);
	color: var(--gn-btn-fg-on-muted);
}

.gn-btn.gn-btn--danger {
	background-color: var(--gn-btn-danger);
	border-color: var(--gn-btn-danger);
	color: var(--gn-btn-fg-on-solid);
}

.gn-btn.gn-btn--danger:hover,
.gn-btn.gn-btn--danger:focus-visible {
	background-color: var(--gn-btn-danger-hover);
	border-color: var(--gn-btn-danger-hover);
	color: var(--gn-btn-fg-on-solid);
}

.gn-btn.gn-btn--access {
	background-color: var(--gn-btn-access);
	border-color: var(--gn-btn-access);
	color: var(--gn-btn-fg-on-solid);
}

.gn-btn.gn-btn--access:hover,
.gn-btn.gn-btn--access:focus-visible {
	background-color: var(--gn-btn-access-hover);
	border-color: var(--gn-btn-access-hover);
	color: var(--gn-btn-fg-on-solid);
}

.gn-auth-modal .submit-login input.gn-btn,
.gn-auth-page input.gn-btn.gn-auth-submit {
	width: 100%;
}

.gn-auth-mobi-logout .gn-btn {
	width: 100%;
}

.gn-negocio-store__toolbar-actions .gn-btn,
.gn-negocio-store__actions .gn-btn,
.gn-negocio-store__sticky-cta .gn-btn {
	border-radius: var(--gn-btn-radius);
	height: var(--gn-btn-height);
	min-height: var(--gn-btn-height);
}

.gn-conta-anuncios__cta.gn-btn,
.gn-conta-anuncios__action.gn-btn {
	border-radius: var(--gn-btn-radius);
	height: var(--gn-btn-height);
	min-height: var(--gn-btn-height);
	padding: 0 1.15rem;
	width: auto;
}

.gn-conta-anuncios__action.gn-btn.gn-conta-anuncios__action--icon {
	height: 2.5rem;
	min-height: 2.5rem;
	min-width: 2.5rem;
	padding: 0;
	width: 2.5rem;
}

.gn-hub-vaga__nav.gn-btn,
.gn-slide-reader__btn.gn-btn,
.gn-negocio-store__cta.gn-btn,
.gn-negocios-detail__cta.gn-btn,
.gn-negocios-detail__cta-row .gn-negocios-detail__chat-form .gn-negocios-detail__cta.gn-btn {
	border-radius: var(--gn-btn-radius);
	height: var(--gn-btn-height);
	min-height: var(--gn-btn-height);
}

@media (prefers-reduced-motion: reduce) {
	button.gn-btn,
	input[type="button"].gn-btn,
	input[type="submit"].gn-btn,
	input[type="reset"].gn-btn,
	a.gn-btn,
	.gn-btn {
		transition: none;
	}

	button.gn-btn:hover,
	button.gn-btn:focus-visible,
	button.gn-btn:active,
	input[type="button"].gn-btn:hover,
	input[type="button"].gn-btn:focus-visible,
	input[type="button"].gn-btn:active,
	input[type="submit"].gn-btn:hover,
	input[type="submit"].gn-btn:focus-visible,
	input[type="submit"].gn-btn:active,
	input[type="reset"].gn-btn:hover,
	input[type="reset"].gn-btn:focus-visible,
	input[type="reset"].gn-btn:active,
	a.gn-btn:hover,
	a.gn-btn:focus-visible,
	a.gn-btn:active,
	.gn-btn:hover,
	.gn-btn:focus-visible,
	.gn-btn:active {
		transform: none;
	}
}


