/* ==========================================================================
   GuiaPostas — main.css
   Paleta: #8CB369 / #F4E285 / #F4A259 / #5B8E7D / #BC4B51
   ========================================================================== */

:root {
	--gp-green:        #8CB369;
	--gp-green-hover:  #7aa358;
	--gp-green-light:  #e8f5e1;
	--gp-green-dark:   #5B8E7D;
	--gp-green-dark-h: #4d7a6b;
	--gp-yellow:       #F4E285;
	--gp-yellow-dark:  #d4c060;
	--gp-orange:       #F4A259;
	--gp-red:          #BC4B51;
	--gp-red-light:    #fde8e8;
	--gp-text:         #1a1a1a;
	--gp-text-mid:     #444;
	--gp-muted:        #666;
	--gp-light:        #f7f7f5;
	--gp-border:       #e0e0dc;
	--gp-white:        #ffffff;
	--gp-dark:         #222222;
	--gp-radius:       6px;
	--gp-radius-lg:    10px;
	--gp-max:          1100px;
	--gp-font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--gp-header-h:     56px;
}

/* Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--gp-font); color: var(--gp-text); background: var(--gp-white); line-height: 1.7; font-size: 16px; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gp-green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4,h5,h6 { line-height: 1.3; font-weight: 500; color: var(--gp-text); }
ul, ol { padding-left: 1.4rem; }
table { border-collapse: collapse; width: 100%; }

/* Accessibility
   ========================================================================== */
.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
	height: 1px; margin: -1px; overflow: hidden; padding: 0;
	position: absolute; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
	background-color: var(--gp-light); border-radius: 3px; box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
	clip: auto !important; clip-path: none; color: var(--gp-green-dark);
	display: block; font-size: 14px; font-weight: 500;
	height: auto; left: 5px; line-height: normal;
	padding: 15px 23px 14px; text-decoration: none; top: 5px;
	width: auto; z-index: 100000;
}
.skip-link { position: absolute; top: -999px; }
.skip-link:focus { top: 0; z-index: 9999; }

/* Container
   ========================================================================== */
.container { max-width: var(--gp-max); margin: 0 auto; padding: 0 20px; }

/* Top Bar
   ========================================================================== */
.top-bar {
	background: var(--gp-dark); color: rgba(255,255,255,.8);
	font-size: 11px; padding: 7px 20px; text-align: center; letter-spacing: .02em;
}
.top-bar a { color: var(--gp-yellow); }
.top-bar a:hover { color: #fff; text-decoration: underline; }
.top-bar span { color: var(--gp-yellow); margin: 0 6px; }

/* Header
   ========================================================================== */
.site-header {
	background: var(--gp-green-dark);
	position: sticky; top: 0; z-index: 100;
	box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.site-header__inner {
	max-width: var(--gp-max); margin: 0 auto; padding: 0 20px;
	height: var(--gp-header-h); display: flex; align-items: center; gap: 20px;
}
.site-branding { flex-shrink: 0; }
.site-logo {
	color: #fff; font-size: 20px; font-weight: 600;
	letter-spacing: -.3px; text-decoration: none; display: inline-flex;
}
.site-logo:hover { text-decoration: none; opacity: .9; }
.logo-guia { color: #fff; }
.logo-postas { color: var(--gp-yellow); }
.site-logo img { height: 38px; width: auto; }

/* WordPress custom logo (Personalizar → Identidade do Site) */
.site-branding .custom-logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-branding .custom-logo-link:hover { opacity: .9; }
.site-branding .custom-logo-link img.custom-logo,
.site-branding img.custom-logo,
.custom-logo {
	height: 38px !important;
	width: auto !important;
	max-height: 38px !important;
	max-width: 180px !important;
	display: block !important;
}

.main-navigation { flex: 1; position: relative; }

.nav-list {
	list-style: none; display: flex; align-items: center; gap: 2px;
	padding: 0; margin: 0;
}
.nav-item { position: relative; }

.nav-link {
	display: flex; align-items: center; gap: 5px;
	color: rgba(255,255,255,.88); font-size: 13px; font-weight: 500;
	padding: 8px 11px; border-radius: 5px;
	background: none; border: none; cursor: pointer;
	font-family: inherit; white-space: nowrap;
	transition: background .15s, color .15s;
	text-decoration: none;
}
.nav-link:hover,
.nav-link.is-open { background: rgba(255,255,255,.15); color: #fff; text-decoration: none; }
.nav-link--danger { color: rgba(255,200,200,.9); }
.nav-link--danger:hover { background: rgba(188,75,81,.25); color: #fff; }

.nav-link .chev { font-size: 13px; transition: transform .15s; }
.nav-link.is-open .chev { transform: rotate(180deg); }

.header-cta {
	background: var(--gp-green); color: #fff;
	font-size: 12px; font-weight: 500;
	padding: 8px 16px; border-radius: 6px;
	white-space: nowrap; text-decoration: none; flex-shrink: 0;
}
.header-cta:hover { background: var(--gp-green-hover); color: #fff; text-decoration: none; }

/* Mega menu */
.mega-menu {
	position: absolute; top: calc(100% + 8px); left: 0;
	background: var(--gp-white); border: 1px solid var(--gp-border);
	border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.12);
	display: none; overflow: hidden; min-width: 560px; z-index: 60;
}
.mega-menu.is-open { display: flex; }

.mega-col { padding: 14px; }
.mega-col--cats { width: 175px; background: var(--gp-light); border-right: 1px solid var(--gp-border); }
.mega-col--list { width: 210px; border-right: 1px solid var(--gp-border); }
.mega-col--feat { width: 190px; background: var(--gp-light); }

.mega-label {
	font-size: 10px; font-weight: 600; text-transform: uppercase;
	letter-spacing: .05em; color: var(--gp-muted); padding: 4px 8px; margin-bottom: 4px;
}

.cat-item {
	display: flex; align-items: center; justify-content: space-between;
	width: 100%; padding: 9px 10px; border-radius: 6px;
	font-size: 12.5px; font-weight: 500; color: var(--gp-text);
	background: none; border: none; cursor: pointer; font-family: inherit;
	text-align: left;
}
.cat-item:hover,
.cat-item.is-active { background: var(--gp-white); color: var(--gp-green-dark); }
.cat-item.is-active { box-shadow: 0 0 0 1px var(--gp-border); }
.cat-item .arr { font-size: 13px; color: var(--gp-border); }
.cat-item.is-active .arr { color: var(--gp-green-dark); }
.cat-item--link { text-decoration: none; display: flex; }
.cat-item--link:hover { text-decoration: none; }

.casa-row {
	display: flex; align-items: center; gap: 9px;
	padding: 7px 10px; border-radius: 6px; text-decoration: none;
}
.casa-row:hover { background: var(--gp-light); text-decoration: none; }
.casa-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.casa-dot.legal { background: var(--gp-green); }
.casa-dot.illegal { background: var(--gp-red); }
.casa-name { font-size: 12.5px; color: var(--gp-text); flex: 1; }
.casa-badge { font-size: 9px; font-weight: 600; padding: 2px 5px; border-radius: 3px; }
.casa-badge.legal { background: var(--gp-green-light); color: #2a5e10; }
.casa-badge.illegal { background: var(--gp-red-light); color: #8b1a1a; }
.mega-empty { font-size: 11.5px; color: var(--gp-muted); padding: 8px 10px; font-style: italic; }

.see-all {
	display: block; text-align: center; font-size: 11px; color: var(--gp-green-dark);
	font-weight: 500; padding: 8px; margin-top: 4px; border-radius: 6px; text-decoration: none;
}
.see-all:hover { background: var(--gp-light); text-decoration: none; }

.feat-card {
	background: var(--gp-white); border: 1px solid var(--gp-border);
	border-radius: 8px; padding: 12px; margin-top: 6px;
}
.feat-logo {
	height: 32px; background: var(--gp-light); border-radius: 5px;
	display: flex; align-items: center; justify-content: center;
	font-size: 10px; font-weight: 600; color: var(--gp-muted); margin-bottom: 8px;
	overflow: hidden;
}
.feat-logo img { max-width: 85%; max-height: 70%; object-fit: contain; }
.feat-title { font-size: 11px; font-weight: 600; color: var(--gp-text); margin-bottom: 3px; }
.feat-sub { font-size: 10.5px; color: var(--gp-green-dark); margin-bottom: 8px; }
.feat-btn {
	display: block; text-align: center; background: var(--gp-green); color: #fff;
	font-size: 11px; font-weight: 500; padding: 6px; border-radius: 5px; text-decoration: none;
}
.feat-btn:hover { background: var(--gp-green-hover); color: #fff; text-decoration: none; }

.menu-toggle {
	display: none; background: none; border: none;
	color: #fff; font-size: 24px; cursor: pointer;
	padding: 6px; line-height: 1; border-radius: 5px;
	transition: background .15s;
}
.menu-toggle:hover { background: rgba(255,255,255,.15); }

/* Breadcrumb
   ========================================================================== */
.breadcrumb {
	background: var(--gp-light); border-bottom: 1px solid var(--gp-border);
	padding: 9px 20px; font-size: 12px; color: var(--gp-muted);
}
.breadcrumb a { color: var(--gp-green-dark); }
.breadcrumb a:hover { text-decoration: underline; }

/* Badges & Buttons
   ========================================================================== */
.badge {
	display: inline-flex; align-items: center; gap: 3px;
	font-size: 10px; font-weight: 500; padding: 3px 7px; border-radius: 4px;
}
.badge-legal  { background: var(--gp-green-light); color: #2e6b12; }
.badge-illegal { background: var(--gp-red-light); color: #8b1a1a; }

.cta-btn {
	display: inline-flex; align-items: center; gap: 5px;
	background: var(--gp-green); color: #fff;
	font-size: 13px; font-weight: 500;
	padding: 8px 18px; border-radius: var(--gp-radius);
	border: none; cursor: pointer;
	transition: background .15s; text-decoration: none; white-space: nowrap;
}
.cta-btn:hover { background: var(--gp-green-hover); color: #fff; text-decoration: none; }
.cta-btn.btn-outline {
	background: var(--gp-white); color: var(--gp-red);
	border: 1.5px solid var(--gp-red);
}
.cta-btn.btn-outline:hover { background: var(--gp-red-light); }
.cta-btn--sm { padding: 5px 12px; font-size: 12px; }

/* Section title
   ========================================================================== */
.section-title {
	font-size: 16px; font-weight: 500; margin-bottom: 16px;
	display: flex; align-items: center; gap: 10px;
}
.section-title::after { content: ''; flex: 1; height: 1px; background: var(--gp-border); }

/* ============================================================
   HOMEPAGE
   ============================================================ */

/* Hero */
.hero-section {
	background: var(--gp-light); border-bottom: 1px solid var(--gp-border);
	padding: 26px 0 22px;
}
.hero-title { font-size: 24px; margin-bottom: 6px; }
.hero-desc  { font-size: 14px; color: var(--gp-muted); }
.hero-tabs  { display: flex; gap: 6px; margin-top: 16px; flex-wrap: wrap; }
.tab {
	font-size: 12px; padding: 5px 14px; border-radius: 20px;
	border: 1px solid var(--gp-border); background: var(--gp-white);
	color: var(--gp-muted); cursor: pointer; transition: all .15s;
}
.tab:hover, .tab.active {
	background: var(--gp-green); color: #fff; border-color: var(--gp-green);
}

/* Casas section */
.casas-section { padding: 26px 0; }
.no-casas { color: var(--gp-muted); font-size: 13px; font-style: italic; }


/* Casa card v3 — CRO optimizado, layout horizontal
   ========================================================================== */
.casa-card {
	position: relative;
	border: 1px solid var(--gp-border);
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 12px;
	background: var(--gp-white);
}
.casa-card--featured { border: 2px solid var(--gp-green); }
.casa-card--illegal  { border-left: 3px solid var(--gp-red); }

.cc-chip {
	position: absolute; top: 0; left: 0;
	background: var(--gp-green); color: #fff;
	font-size: 9px; font-weight: 600; letter-spacing: .06em;
	padding: 4px 10px; border-radius: 0 0 8px 0; text-transform: uppercase;
}

/* Grid principal do card legal */
.cc-grid {
	display: grid;
	grid-template-columns: 110px 1fr 130px 130px;
	align-items: stretch;
	min-height: 110px;
}

.cc-logo-col {
	border-right: 1px solid var(--gp-border);
	padding: 20px 12px;
	display: flex; align-items: center; justify-content: center;
}
.cc-logo-col img { max-width: 82px; max-height: 48px; object-fit: contain; }
.cc-logo-col .logo-txt { font-size: 11px; font-weight: 600; color: var(--gp-muted); opacity: .5; text-align: center; }

.cc-info-col {
	padding: 14px 18px;
	display: flex; flex-direction: column; justify-content: space-between; gap: 8px;
}
.cc-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cc-name { font-size: 16px; font-weight: 500; color: var(--gp-text); }

.cc-badge {
	display: inline-flex; align-items: center; gap: 3px;
	font-size: 10px; font-weight: 500; padding: 2px 7px; border-radius: 4px;
}
.cc-badge--legal   { background: var(--gp-green-light); color: #2a5e10; }
.cc-badge--illegal { background: var(--gp-red-light);   color: #8b1a1a; }

.cc-cat-icon {
	width: 20px; height: 20px; border-radius: 5px;
	background: var(--gp-light); border: 0.5px solid var(--gp-border);
	display: flex; align-items: center; justify-content: center;
	color: var(--gp-muted); font-size: 12px; flex-shrink: 0;
}

.cc-stars { display: flex; align-items: center; gap: 1px; line-height: 1; }
.cc-star           { color: var(--gp-orange); font-size: 13px; line-height: 1; }
.cc-star--empty    { color: var(--gp-border); }
.cc-star--danger   { color: var(--gp-red); }
.cc-star--half {
	background: linear-gradient(90deg, var(--gp-orange) 50%, var(--gp-border) 50%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.cc-score { font-size: 12px; font-weight: 500; color: var(--gp-text); margin-left: 4px; }
.cc-score--danger { color: var(--gp-red); }
.cc-score-sub { font-size: 11px; color: var(--gp-muted); }

.cc-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.cc-feat { display: flex; align-items: flex-start; gap: 5px; font-size: 13px; color: var(--gp-text); line-height: 1.45; }
.cc-feat i { color: var(--gp-green); font-size: 13px; flex-shrink: 0; margin-top: 1px; }

.cc-meta-row { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.cc-pays-label { font-size: 10px; color: var(--gp-muted); }
.cc-pay-pill {
	font-size: 10px; color: var(--gp-muted);
	background: var(--gp-light); border: 0.5px solid var(--gp-border);
	padding: 2px 7px; border-radius: 20px;
}
.cc-pay-more {
	font-size: 10px; color: var(--gp-muted);
	background: var(--gp-white); border: 0.5px solid var(--gp-border);
	padding: 2px 7px; border-radius: 20px;
}
.cc-dep { font-size: 10px; color: var(--gp-muted); }

.cc-bonus-col {
	border-left: 1px solid var(--gp-border);
	border-right: 1px solid var(--gp-border);
	padding: 14px 12px;
	display: flex; flex-direction: column; align-items: center;
	justify-content: center; text-align: center; gap: 3px;
}
.cc-bonus-icon { color: var(--gp-orange); font-size: 18px; }
.cc-bonus-val  { font-size: 20px; font-weight: 500; color: var(--gp-text); line-height: 1; }
.cc-bonus-sub  { font-size: 10.5px; color: #cc7a1e; line-height: 1.35; }
.cc-bonus-btn {
	display: flex; align-items: center; justify-content: center; gap: 4px;
	margin-top: 8px; padding: 6px 10px;
	background: var(--gp-orange); color: #fff;
	font-size: 11px; font-weight: 600; border-radius: 6px;
	text-decoration: none; white-space: nowrap;
	border: none; cursor: pointer;
}
.cc-bonus-btn:hover { background: #d4841a; color: #fff; text-decoration: none; }

.cc-actions-col { display: flex; flex-direction: column; }
.cc-btn-main {
	flex: 1; background: var(--gp-green); color: #fff;
	font-size: 13px; font-weight: 500; border: none; cursor: pointer;
	font-family: inherit; text-decoration: none;
	display: flex; align-items: center; justify-content: center; gap: 5px;
	border-bottom: 1px solid rgba(0,0,0,.08);
}
.cc-btn-main:hover { opacity: .92; color: #fff; text-decoration: none; }
.cc-btn-sec {
	height: 40px; background: var(--gp-light); color: var(--gp-muted);
	font-size: 12px; font-weight: 500; border: none; cursor: pointer;
	font-family: inherit; text-decoration: none;
	display: flex; align-items: center; justify-content: center;
}
.cc-btn-sec:hover { background: #e6e6e2; color: #444; text-decoration: none; }

/* Rodapé do card com licença e +18 */
.cc-footer {
	padding: 7px 18px;
	background: var(--gp-light);
	border-top: 0.5px solid var(--gp-border);
	font-size: 10px; color: var(--gp-muted);
	display: flex; align-items: center; gap: 5px;
}
.cc-footer i { font-size: 11px; }

/* Card ilegal */
.cc-logo--illegal { opacity: .5; }
.cc-body-illegal {
	flex: 1; padding: 14px 18px;
	display: flex; flex-direction: column; gap: 8px;
}
.cc-cta-illegal { padding: 14px 14px; display: flex; align-items: center; border-left: 1px solid var(--gp-border); }
.cc-btn--danger { background: var(--gp-red-light); color: #8b1a1a; font-size: 12px; font-weight: 500; padding: 9px 14px; border-radius: 7px; border: none; cursor: pointer; text-align: center; text-decoration: none; white-space: nowrap; }
.cc-btn--danger:hover { background: #f9d5d5; color: #8b1a1a; text-decoration: none; }

.cc-warn {
	display: flex; align-items: center; gap: 7px;
	background: var(--gp-red-light); border-radius: 7px;
	padding: 9px 12px; font-size: 12px; color: #8b1a1a;
}
.cc-warn i { font-size: 15px; flex-shrink: 0; }

/* Card ilegal — layout flex */
.casa-card--illegal .cc-grid-illegal {
	display: flex; align-items: stretch;
}

/* Responsive */
@media (max-width: 700px) {
	.cc-grid { grid-template-columns: 80px 1fr; grid-template-rows: auto auto auto; }
	.cc-logo-col { grid-row: 1; padding: 14px 10px; }
	.cc-info-col { grid-row: 1; padding: 12px 14px; }
	.cc-bonus-col { grid-column: 1 / -1; grid-row: 2; border-left: none; border-right: none; border-top: 1px solid var(--gp-border); flex-direction: row; flex-wrap: wrap; gap: 8px 12px; padding: 10px 14px; justify-content: flex-start; text-align: left; align-items: center; }
	.cc-bonus-btn { margin-top: 0; }
	.cc-actions-col { grid-column: 1 / -1; grid-row: 3; flex-direction: row; border-top: 1px solid var(--gp-border); }
	.cc-btn-main { flex: 1; height: 42px; border-bottom: none; border-right: 1px solid rgba(0,0,0,.08); }
	.cc-btn-sec  { flex: 1; height: 42px; }
	.cc-feats { grid-template-columns: 1fr; }
}



/* Casas a evitar — homepage
   ========================================================================== */
.casas-section--ilegais { padding: 0 0 28px; }

.ci-warn-header {
	background: #fde8e8; border: 1px solid #e8b0b0;
	border-radius: 10px; padding: 12px 16px;
	display: flex; align-items: center; gap: 10px;
	margin-bottom: 14px;
}
.ci-warn-header i { color: #BC4B51; font-size: 20px; flex-shrink: 0; }
.ci-warn-header div { font-size: 12px; color: #6b1a1a; line-height: 1.5; }
.ci-warn-header strong { display: block; font-size: 13px; color: #BC4B51; margin-bottom: 2px; }

.ci-illegal-list {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.ci-il-card {
	background: var(--gp-white); border: 1px solid var(--gp-border);
	border-left: 3px solid #BC4B51; border-radius: 0 8px 8px 0;
	padding: 10px 12px; display: flex; align-items: center;
	gap: 10px; text-decoration: none;
	transition: background .15s;
}
.ci-il-card:hover { background: #fdf4f4; text-decoration: none; }
.ci-il-logo {
	width: 40px; height: 30px; border-radius: 5px;
	background: var(--gp-light); border: 1px solid var(--gp-border);
	display: flex; align-items: center; justify-content: center;
	font-size: 8.5px; font-weight: 600; color: #bbb;
	flex-shrink: 0; opacity: .55; overflow: hidden;
	min-width: 40px;
}
.ci-il-logo img {
	width: 100% !important; height: 100% !important;
	max-width: 40px !important; max-height: 30px !important;
	object-fit: contain !important; display: block;
}
.ci-il-info { flex: 1; min-width: 0; }
.ci-il-name {
	font-size: 14px; font-weight: 500; color: var(--gp-text);
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ci-il-sub { font-size: 11.5px; color: #BC4B51; margin-top: 2px; }
.ci-il-btn {
	font-size: 10px; font-weight: 600; color: #fff;
	background: #BC4B51; padding: 4px 9px;
	border-radius: 5px; flex-shrink: 0; white-space: nowrap;
}
.ci-il-card:hover .ci-il-btn { background: #a83d45; }

.ci-footer-note {
	margin-top: 10px; display: flex; align-items: center;
}
.ci-footer-note span {
	font-size: 11px; color: #aaa;
	display: flex; align-items: center; gap: 4px;
}
.ci-footer-note span i { font-size: 12px; color: #BC4B51; }

@media (max-width: 640px) {
	.ci-illegal-list { grid-template-columns: 1fr; }
	.ci-il-name {
		font-size: 13px;
		white-space: normal;
		overflow: visible;
		text-overflow: unset;
	}
}

/* Highlight section */
.highlight-section { background: var(--gp-green-dark); padding: 26px 0; color: #fff; }
.highlight-section h2 { font-size: 17px; color: #fff; margin-bottom: 4px; }
.highlight-section p  { font-size: 13px; opacity: .8; margin-bottom: 14px; }
.highlight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.highlight-card {
	background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
	border-radius: var(--gp-radius); padding: 14px 16px;
}
.hc-label { font-size: 11px; opacity: .75; margin-bottom: 4px; }
.hc-val   { font-size: 14px; font-weight: 500; }

/* Info section */
.info-section { padding: 30px 0; }
.info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.info-card {
	background: var(--gp-light); border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius-lg); padding: 18px;
	display: flex; flex-direction: column; gap: 8px;
}
.info-icon {
	width: 34px; height: 34px; background: var(--gp-green); border-radius: var(--gp-radius);
	display: flex; align-items: center; justify-content: center;
	color: #fff; font-size: 17px;
}
.info-card h3 { font-size: 13px; font-weight: 500; }
.info-card p  { font-size: 12px; color: var(--gp-muted); line-height: 1.6; }

/* Ranking table */
.ranking-section { padding: 0 0 30px; }
.table-wrap { overflow-x: auto; }
.ranking-table th {
	font-size: 11px; color: var(--gp-muted); text-align: left;
	padding: 7px 10px; border-bottom: 2px solid var(--gp-border); font-weight: 500;
}
.ranking-table td { padding: 10px 10px; border-bottom: 1px solid var(--gp-border); font-size: 13px; }
.ranking-table tr:last-child td { border-bottom: none; }
.ranking-table tr:hover td { background: var(--gp-light); }
.rank-num   { color: var(--gp-muted); font-size: 12px; }
.rank-name  { font-weight: 500; }
.rank-score { color: var(--gp-green-dark); font-weight: 500; }

/* Articles grid */
.articles-section { padding: 0 0 30px; }
.articles-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.article-card {
	background: var(--gp-white); border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius-lg); overflow: hidden;
	transition: border-color .15s, box-shadow .15s;
}
.article-card:hover { border-color: var(--gp-green); box-shadow: 0 2px 8px rgba(140,179,105,.12); }
.article-img { height: 130px; overflow: hidden; background: var(--gp-light); }
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.article-card:hover .article-img img { transform: scale(1.03); }
.article-img--empty { display: flex; align-items: center; justify-content: center; color: var(--gp-muted); font-size: 12px; }
.article-body { padding: 13px 15px; }
.article-tag { font-size: 10px; font-weight: 500; background: var(--gp-yellow); color: #5a4a00; padding: 2px 7px; border-radius: 3px; display: inline-block; margin-bottom: 7px; }
.article-tag--red { background: var(--gp-red-light); color: #8b1a1a; }
.article-body .entry-title,
.article-body h2, .article-body h3 { font-size: 13px; font-weight: 500; line-height: 1.4; margin-bottom: 4px; }
.article-body .entry-title a,
.article-body h2 a, .article-body h3 a { color: var(--gp-text); }
.article-body .entry-title a:hover,
.article-body h2 a:hover, .article-body h3 a:hover { color: var(--gp-green-dark); text-decoration: none; }
.article-excerpt { font-size: 12px; color: var(--gp-muted); margin-top: 5px; line-height: 1.5; }
.article-meta    { font-size: 11px; color: var(--gp-muted); margin-top: 6px; }

/* Guides section */
.guides-section { margin-top: 0; }
.guides-inner { background: var(--gp-yellow); padding: 30px 20px; }
.guides-inner > .container > h2 { font-size: 20px; color: #3a2e00; margin-bottom: 5px; }
.guides-inner > .container > p  { font-size: 13px; color: #5a4a00; margin-bottom: 18px; }
.guides-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.guide-card {
	background: var(--gp-white); border: 1px solid rgba(0,0,0,.08);
	border-radius: var(--gp-radius-lg); padding: 16px; text-align: center;
	transition: border-color .15s, box-shadow .15s; display: block; color: var(--gp-text);
}
.guide-card:hover { border-color: var(--gp-green-dark); box-shadow: 0 2px 8px rgba(91,142,125,.15); text-decoration: none; }
.guide-icon {
	width: 42px; height: 42px; background: var(--gp-light); border-radius: var(--gp-radius);
	margin: 0 auto 9px; display: flex; align-items: center; justify-content: center;
	color: var(--gp-green-dark); font-size: 20px;
}
.guide-card h4 { font-size: 12px; font-weight: 500; margin-bottom: 3px; }
.guide-card p  { font-size: 11px; color: var(--gp-muted); line-height: 1.4; }

/* ============================================================
   ARTICLE / SINGLE
   ============================================================ */
.article-layout {
	display: grid; grid-template-columns: 230px 1fr;
	max-width: var(--gp-max); margin: 0 auto;
}

/* Sidebar */
.article-sidebar {
	border-right: 1px solid var(--gp-border);
	padding: 20px 14px;
	background: var(--gp-light);
	position: sticky; top: var(--gp-header-h);
	height: calc(100vh - var(--gp-header-h));
	overflow-y: auto;
}
.sidebar-section-title {
	font-size: 10px; font-weight: 500; text-transform: uppercase;
	letter-spacing: .06em; color: var(--gp-muted); margin-bottom: 10px;
}
.toc-list { margin-bottom: 22px; }
.toc-list a {
	display: block; font-size: 13px; color: var(--gp-green-dark);
	padding: 6px 0; border-bottom: 1px solid var(--gp-border); line-height: 1.4;
}
.toc-list a:last-child { border-bottom: none; }
.toc-list a:hover { text-decoration: underline; }
.toc-list a.is-active { color: var(--gp-green); font-weight: 500; }
.toc-list a.is-h3 { padding-left: 10px; font-size: 12px; }

.sidebar-card {
	background: var(--gp-white); border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius); padding: 10px; margin-bottom: 9px;
}
.sc-logo { width: 100%; height: 34px; object-fit: contain; border-radius: 3px; margin-bottom: 7px; display: block; }
.sc-logo-placeholder {
	width: 100%; height: 34px; background: var(--gp-light); border: 1px solid var(--gp-border);
	border-radius: 3px; margin-bottom: 7px;
	display: flex; align-items: center; justify-content: center;
	font-size: 11px; color: var(--gp-muted);
}
.sc-name  { font-size: 12px; font-weight: 500; }
.sc-bonus { font-size: 11px; color: var(--gp-green-dark); margin-top: 2px; }
.sc-btn {
	display: block; text-align: center;
	background: var(--gp-green); color: #fff;
	font-size: 11px; font-weight: 500; padding: 6px;
	border-radius: 4px; margin-top: 8px; text-decoration: none;
	transition: background .15s;
}
.sc-btn:hover { background: var(--gp-green-hover); color: #fff; text-decoration: none; }

/* Article content */
.article-content { padding: 26px 30px; min-width: 0; }

.article-badge-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.article-date { font-size: 11px; color: var(--gp-muted); }
.entry-title.article-title { font-size: 26px; font-weight: 500; line-height: 1.2; margin-bottom: 16px; }

.author-row {
	display: flex; align-items: center; gap: 10px;
	padding: 10px 0; border-top: 1px solid var(--gp-border); border-bottom: 1px solid var(--gp-border);
	margin-bottom: 20px;
}
.author-avatar {
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--gp-green-dark);
	display: flex; align-items: center; justify-content: center;
	color: #fff; font-size: 12px; font-weight: 500; flex-shrink: 0;
}
.author-name { font-size: 13px; font-weight: 500; }
.author-role { font-size: 11px; color: var(--gp-muted); }

.top-alt-card {
	display: grid; grid-template-columns: 60px 1fr auto;
	align-items: center; gap: 14px;
	background: var(--gp-white); border: 2px solid var(--gp-green);
	border-radius: var(--gp-radius-lg); padding: 13px 16px; margin-bottom: 22px;
}
.tac-logo { width: 60px; height: 42px; display: flex; align-items: center; justify-content: center; }
.tac-logo img { width: 100%; height: 100%; object-fit: contain; }
.tac-logo span {
	font-size: 10px; color: var(--gp-muted); background: var(--gp-light);
	width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; border-radius: 4px;
}
.tac-name { font-size: 13px; font-weight: 500; margin-top: 3px; }
.tac-sub  { font-size: 11px; color: var(--gp-green-dark); margin-top: 2px; }

/* Article body — prose */
.entry-content.article-body { font-size: 16px; line-height: 1.8; }
.article-body p { margin-bottom: 16px; }
.article-body h2 { font-size: 22px; font-weight: 500; margin: 32px 0 10px; padding-top: 4px; border-top: 1px solid var(--gp-border); }
.article-body h2:first-of-type { border-top: none; }
.article-body h3 { font-size: 18px; font-weight: 500; margin: 22px 0 8px; }
.article-body h4 { font-size: 16px; font-weight: 500; margin: 16px 0 6px; }
.article-body ul, .article-body ol { margin-bottom: 16px; }
.article-body li { margin-bottom: 5px; font-size: 15px; }
.article-body strong { font-weight: 600; }
.article-body a { color: var(--gp-green-dark); text-decoration: underline; }
.article-body a:hover { color: var(--gp-green); }

/* Tables inside article */
.article-body table,
.wp-block-table table {
	width: 100%; border-collapse: collapse; font-size: 13px; margin: 18px 0;
	border-radius: var(--gp-radius); overflow: hidden;
}
.article-body th,
.wp-block-table th {
	background: var(--gp-green-dark); color: #fff;
	padding: 9px 12px; text-align: left; font-weight: 500; font-size: 12px;
}
.article-body td,
.wp-block-table td { padding: 9px 12px; border-bottom: 1px solid var(--gp-border); }
.article-body tr:last-child td,
.wp-block-table tr:last-child td { border-bottom: none; }
.article-body tr:nth-child(even) td,
.wp-block-table tr:nth-child(even) td { background: var(--gp-light); }

/* Callout blocks — add via Gutenberg group block with custom class */
.callout-red    { background: var(--gp-red-light); border-left: 4px solid var(--gp-red); padding: 13px 15px; border-radius: 0 var(--gp-radius) var(--gp-radius) 0; margin: 18px 0; font-size: 13px; color: #6b1a1a; line-height: 1.6; }
.callout-yellow { background: #fffbe5; border-left: 4px solid var(--gp-orange); padding: 13px 15px; border-radius: 0 var(--gp-radius) var(--gp-radius) 0; margin: 18px 0; font-size: 13px; color: #5a3e00; line-height: 1.6; }
.callout-green  { background: var(--gp-green-light); border-left: 4px solid var(--gp-green); padding: 13px 15px; border-radius: 0 var(--gp-radius) var(--gp-radius) 0; margin: 18px 0; font-size: 13px; color: #2e5c12; line-height: 1.6; }

/* Alternativas dentro do artigo */
.article-alts { margin: 28px 0; }
.article-alts h2 { font-size: 19px; margin-bottom: 14px; border-top: none !important; }

/* Article footer */
.entry-footer {}
.article-disclaimer {
	background: var(--gp-light); border: 1px solid var(--gp-border); border-radius: var(--gp-radius);
	padding: 11px 14px; margin-top: 24px; font-size: 11px; color: var(--gp-muted); text-align: center;
}

/* Related articles */
.related-articles { border-top: 1px solid var(--gp-border); padding: 24px 30px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 14px; }
.related-card { background: var(--gp-white); border: 1px solid var(--gp-border); border-radius: var(--gp-radius-lg); overflow: hidden; transition: border-color .15s; }
.related-card:hover { border-color: var(--gp-green); }
.related-img { height: 76px; overflow: hidden; background: var(--gp-light); }
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-img--empty { display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--gp-muted); }
.related-body { padding: 10px 11px; }
.related-body h3 { font-size: 12px; font-weight: 500; line-height: 1.35; margin-top: 5px; }
.related-body h3 a { color: var(--gp-text); }
.related-body h3 a:hover { color: var(--gp-green-dark); text-decoration: none; }

/* ============================================================
   ARCHIVE / PAGE
   ============================================================ */
.archive-wrap  { max-width: var(--gp-max); margin: 0 auto; padding: 24px 20px; }
.archive-header { margin-bottom: 22px; }
.archive-title  { font-size: 22px; }
.archive-description { font-size: 14px; color: var(--gp-muted); margin-top: 6px; }
.archive-wrap .articles-grid { grid-template-columns: repeat(3,1fr); }

.page-layout { max-width: var(--gp-max); margin: 0 auto; padding: 28px 20px; }
.page-content .entry-title { font-size: 26px; margin-bottom: 20px; }

/* Pagination */
.nav-links { display: flex; justify-content: center; gap: 6px; margin-top: 24px; }
.page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: var(--gp-radius);
	border: 1px solid var(--gp-border); font-size: 13px; color: var(--gp-text);
	text-decoration: none; transition: all .15s;
}
.page-numbers:hover, .page-numbers.current {
	background: var(--gp-green); color: #fff; border-color: var(--gp-green);
}
.page-numbers.dots { border: none; width: auto; }

/* 404 */
.error-404 { padding: 40px 0; }
.error-404 .page-title { font-size: 28px; margin-bottom: 14px; }
.error-404 .page-content p { margin-bottom: 14px; font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--gp-dark); padding: 36px 0 0; }
.site-footer__inner { max-width: var(--gp-max); margin: 0 auto; padding: 0 20px 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.footer-logo { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 9px; display: block; text-decoration: none; }
.footer-logo:hover { color: var(--gp-yellow); text-decoration: none; }
.footer-desc { font-size: 12px; color: #888; line-height: 1.65; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 500; margin-bottom: 11px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col a { font-size: 12px; color: #888; text-decoration: none; }
.footer-col a:hover { color: var(--gp-green); }
.footer-bottom {
	border-top: 1px solid #333; padding-top: 16px;
	display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px;
}
.footer-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-badge { background: #333; color: #888; font-size: 10px; padding: 3px 9px; border-radius: 3px; }
.footer-copy p { font-size: 11px; color: #666; margin-bottom: 3px; }
.footer-copy a { color: #777; font-size: 11px; }
.footer-copy a:hover { color: var(--gp-green); }
.footer-disclaimer {
	font-size: 11px; color: #555; border-top: 1px solid #333;
	padding: 14px 0; margin-top: 14px; line-height: 1.65; text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
	/* Header */
	.nav-list    { display: none; }
	.header-cta  { display: none; }
	.menu-toggle { display: flex; margin-left: auto; align-items: center; justify-content: center; }

	/* Mobile nav overlay — fundo branco, não verde */
	.main-navigation.is-open .nav-list {
		display: flex; flex-direction: column;
		position: fixed; top: var(--gp-header-h); left: 0; right: 0; bottom: 0;
		background: #fff; padding: 8px 0;
		overflow-y: auto; z-index: 99;
		border-top: 1px solid var(--gp-border);
	}

	/* Links normais no mobile */
	.main-navigation.is-open .nav-list .nav-item { width: 100%; }
	.main-navigation.is-open .nav-list .nav-link {
		padding: 14px 20px; font-size: 15px;
		color: var(--gp-text); width: 100%;
		justify-content: space-between;
		border-bottom: 1px solid var(--gp-border);
	}
	.main-navigation.is-open .nav-list .nav-link:hover,
	.main-navigation.is-open .nav-list .nav-link.is-open {
		background: var(--gp-light); color: var(--gp-text);
	}
	.main-navigation.is-open .nav-list .nav-link--danger { color: #BC4B51; }

	/* Mega menu no mobile — accordion simples, sem 3 colunas */
	.mega-menu {
		position: static; box-shadow: none; border: none; border-radius: 0;
		min-width: 0; width: 100%; flex-direction: column;
		background: var(--gp-light); display: none;
	}
	.mega-menu.is-open { display: flex; }
	.mega-col--cats {
		width: 100%; background: transparent;
		border-right: none; padding: 8px 0; border-bottom: none;
	}
	.mega-col--list { width: 100%; border-right: none; padding: 0 0 8px; background: #fff; }
	.mega-col--feat { display: none; } /* esconde card de destaque no mobile */

	.mega-label { padding: 10px 20px 4px; }
	.cat-item {
		padding: 10px 20px; border-radius: 0;
		border-bottom: 1px solid var(--gp-border);
		font-size: 14px;
	}
	.cat-item:hover, .cat-item.is-active { background: var(--gp-light); }
	.cat-item.is-active { box-shadow: none; border-left: 3px solid var(--gp-green); }
	.casa-row { padding: 10px 20px; border-radius: 0; }
	.see-all { padding: 10px 20px; text-align: left; }

	/* Layout do artigo */
	.article-layout { grid-template-columns: 1fr; }
	.article-sidebar { position: static; height: auto; border-right: none; border-bottom: 1px solid var(--gp-border); }
	.article-content { padding: 20px 16px; }
	.related-articles { padding: 20px 16px; }

	.footer-grid { grid-template-columns: 1fr 1fr; }
	.highlight-grid { grid-template-columns: 1fr 1fr; }
	.archive-wrap .articles-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
	.hero-title  { font-size: 19px; }
	.articles-grid { grid-template-columns: 1fr; }
	.info-grid   { grid-template-columns: 1fr; }
	.guides-grid { grid-template-columns: 1fr 1fr; }
	.related-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.casa-row    { grid-template-columns: 50px 1fr; }
	.casa-right  { display: none; }
	.top-alt-card { grid-template-columns: 1fr; gap: 8px; }
	.entry-title.article-title { font-size: 20px; }
	.highlight-grid { grid-template-columns: 1fr; }
	.archive-wrap .articles-grid { grid-template-columns: 1fr; }
	.ranking-table th:nth-child(3),
	.ranking-table td:nth-child(3) { display: none; }
}

/* WordPress Admin Bar — compensação quando está com login
   ========================================================================== */
.admin-bar .site-header {
	top: 32px;
}
.admin-bar .mega-menu {
	top: calc(100% + 8px);
}
@media screen and (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}
@media screen and (max-width: 600px) {
	.admin-bar .site-header {
		top: 0;
	}
}

/* Secções editoriais SEO — homepage
   ========================================================================== */
.ed-section-wrap { padding: 32px 0; }

/* Intro com duas colunas */
.ed-intro { margin-bottom: 36px; }
.ed-intro h2 {
	font-size: 22px; font-weight: 500; color: var(--gp-text);
	margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gp-green);
	display: inline-block;
}
.ed-intro-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ed-intro-col p { font-size: 14.5px; color: var(--gp-muted); line-height: 1.75; margin-bottom: 10px; }
.ed-intro-col p:last-child { margin-bottom: 0; }

/* Como avaliamos */
.ed-como-avaliamos { margin-bottom: 36px; }
.ed-como-avaliamos h2 {
	font-size: 20px; font-weight: 500; color: var(--gp-text);
	margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gp-green);
	display: inline-block;
}
.ed-crit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ed-crit {
	display: flex; gap: 12px; align-items: flex-start;
	background: var(--gp-light); border: 1px solid var(--gp-border);
	border-radius: 10px; padding: 14px;
}
.ed-crit-icon {
	width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
	display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.ed-crit-icon--green  { background: var(--gp-green-light); color: #2a5e10; }
.ed-crit-icon--blue   { background: #e8f0fb; color: #1a3e78; }
.ed-crit-icon--amber  { background: #fef3e2; color: #7a4f0a; }
.ed-crit-icon--purple { background: #f0eafa; color: #5a2d9a; }
.ed-crit-title { font-size: 13.5px; font-weight: 500; color: var(--gp-text); margin-bottom: 4px; }
.ed-crit-desc  { font-size: 13px; color: var(--gp-muted); line-height: 1.6; }

/* Perfis */
.ed-perfis { margin-bottom: 36px; }
.ed-perfis h2 {
	font-size: 20px; font-weight: 500; color: var(--gp-text);
	margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gp-green);
	display: inline-block;
}
.ed-perfis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ed-perfil {
	background: var(--gp-white); border: 1px solid var(--gp-border);
	border-radius: 10px; padding: 14px;
}
.ed-perfil-icon { font-size: 22px; color: var(--gp-green); margin-bottom: 8px; }
.ed-perfil-label { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; color: var(--gp-muted); margin-bottom: 4px; }
.ed-perfil-casa  { font-size: 15px; font-weight: 500; color: var(--gp-text); margin-bottom: 4px; }
.ed-perfil-desc  { font-size: 12.5px; color: var(--gp-muted); line-height: 1.5; }

/* Como distinguir */
.ed-distinguir { margin-bottom: 36px; }
.ed-distinguir h2 {
	font-size: 20px; font-weight: 500; color: var(--gp-text);
	margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gp-green);
	display: inline-block;
}
.ed-dist-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.ed-dist-list { display: flex; flex-direction: column; gap: 8px; }
.ed-dist-item {
	display: flex; gap: 12px; align-items: flex-start;
	background: var(--gp-light); border-radius: 8px; padding: 12px 14px;
}
.ed-dist-num {
	width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
	background: var(--gp-green-light); color: #2a5e10;
	display: flex; align-items: center; justify-content: center;
	font-size: 11px; font-weight: 500; margin-top: 1px;
}
.ed-dist-title { font-size: 13.5px; font-weight: 500; color: var(--gp-text); margin-bottom: 3px; }
.ed-dist-desc  { font-size: 12.5px; color: var(--gp-muted); line-height: 1.6; }

.ed-impostos { position: sticky; top: 80px; }
.ed-impostos-inner {
	background: #1a2e28; border-radius: 12px; padding: 22px 24px;
}
.ed-impostos-inner i    { font-size: 26px; color: var(--gp-yellow); display: block; margin-bottom: 10px; }
.ed-impostos-inner h3   { font-size: 15px; font-weight: 500; color: var(--gp-yellow); margin-bottom: 10px; }
.ed-impostos-inner p    { font-size: 13.5px; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 10px; }
.ed-impostos-inner p:last-child { margin-bottom: 0; }

/* FAQ */
.ed-faq { margin-bottom: 16px; }
.ed-faq h2 {
	font-size: 20px; font-weight: 500; color: var(--gp-text);
	margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gp-green);
	display: inline-block;
}
.ed-faq-list { display: flex; flex-direction: column; gap: 6px; }
.ed-faq-item {
	background: var(--gp-white); border: 1px solid var(--gp-border);
	border-radius: 8px; overflow: hidden;
}
.ed-faq-q {
	width: 100%; background: none; border: none; cursor: pointer;
	padding: 14px 16px; font-size: 14px; font-weight: 500; color: var(--gp-text);
	text-align: left; font-family: inherit; line-height: 1.4;
	display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.ed-faq-q:hover { background: var(--gp-light); }
.ed-faq-q i { font-size: 14px; color: var(--gp-muted); flex-shrink: 0; transition: transform .2s; }
.ed-faq-q[aria-expanded="true"] { background: var(--gp-light); }
.ed-faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.ed-faq-a {
	padding: 0 16px 14px; font-size: 13.5px; color: var(--gp-muted);
	line-height: 1.7; border-top: 1px solid var(--gp-border);
}

@media (max-width: 700px) {
	.ed-intro-cols  { grid-template-columns: 1fr; }
	.ed-crit-grid   { grid-template-columns: 1fr; }
	.ed-perfis-grid { grid-template-columns: 1fr 1fr; }
	.ed-dist-cols   { grid-template-columns: 1fr; }
	.ed-impostos    { position: static; }
}
@media (max-width: 480px) {
	.ed-perfis-grid { grid-template-columns: 1fr; }
}

/* Dropdown simples (Calculadoras)
   ========================================================================== */
.nav-item.has-dropdown { position: relative; }

.dropdown-menu {
	position: absolute; top: calc(100% + 6px); left: 0;
	background: var(--gp-white); border: 1px solid var(--gp-border);
	border-radius: 10px; padding: 6px;
	min-width: 220px; box-shadow: 0 4px 16px rgba(0,0,0,.1);
	list-style: none; z-index: 200;
	opacity: 0; visibility: hidden; transform: translateY(-4px);
	transition: opacity .15s, transform .15s, visibility .15s;
}
.nav-item.has-dropdown.is-open .dropdown-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
	display: flex; align-items: center; gap: 9px;
	padding: 9px 12px; border-radius: 7px;
	font-size: 13.5px; color: var(--gp-text); text-decoration: none;
}
.dropdown-menu li a i { font-size: 15px; color: var(--gp-green); flex-shrink: 0; }
.dropdown-menu li a:hover { background: var(--gp-light); text-decoration: none; }
.dropdown-menu li:first-child a {
	font-weight: 500; border-bottom: 1px solid var(--gp-border);
	border-radius: 7px 7px 0 0; margin-bottom: 4px; padding-bottom: 11px;
}

@media (max-width: 768px) {
	.dropdown-menu {
		position: static; opacity: 1; visibility: visible;
		transform: none; box-shadow: none; border: none;
		background: var(--gp-light); border-radius: var(--gp-radius);
		padding: 4px; margin-top: 4px; display: none;
	}
	.nav-item.has-dropdown.is-open .dropdown-menu { display: block; }
}

/* ==========================================================================
   Homepage BR — Criterios grid
   ========================================================================== */
.ed-criterios { margin-bottom: 36px; }
.ed-criterios h2 { font-size: 20px; font-weight: 500; color: var(--gp-text); margin-bottom: 16px; }
.ed-criterios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ed-criterio { background: var(--gp-light); border: 1px solid var(--gp-border); border-radius: 10px; padding: 16px; }
.ed-criterio-icon { font-size: 22px; color: var(--gp-green); margin-bottom: 10px; display: block; }
.ed-criterio-title { font-size: 13.5px; font-weight: 500; color: var(--gp-text); margin-bottom: 6px; }
.ed-criterio-desc { font-size: 12.5px; color: var(--gp-muted); line-height: 1.6; }
@media (max-width: 768px) { .ed-criterios-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer — Outros mercados
   ========================================================================== */
.footer-markets {
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 20px 0 16px;
	margin-bottom: 16px;
}
.footer-markets-label {
	font-size: 11px; font-weight: 500; text-transform: uppercase;
	letter-spacing: .08em; color: rgba(255,255,255,.5);
	margin-bottom: 12px;
}
.footer-markets-list {
	display: flex; flex-wrap: wrap; gap: 8px;
}
.footer-market-item {
	display: flex; align-items: center; gap: 7px;
	background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
	border-radius: 8px; padding: 7px 12px;
	text-decoration: none; transition: background .15s, border-color .15s;
}
.footer-market-item:hover {
	background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.22);
	text-decoration: none;
}
.footer-market-item--soon {
	opacity: .55; pointer-events: none;
}
.footer-market-flag { font-size: 16px; line-height: 1; }
.footer-market-name { font-size: 13px; font-weight: 500; color: #fff; }
.footer-market-badge {
	font-size: 10px; color: rgba(255,255,255,.6);
	background: rgba(255,255,255,.1); border-radius: 4px;
	padding: 2px 6px; margin-left: 2px;
}
@media (max-width: 600px) {
	.footer-markets-list { gap: 6px; }
	.footer-market-item { padding: 6px 10px; }
	.footer-market-name { font-size: 12px; }
}
