/**
 * Main Stylesheet for Tema Contato Guia Comercial.
 * Modern SaaS & Marketplace Directory Design.
 */

:root {
	/* Paleta Oficial Você Aqui (Opção 3 - Mais Brasileiro / Vibrante) */
	--tgc-orange: #FF6D00;
	--tgc-orange-hover: #E65100;
	--tgc-orange-light: #FFF3E0;
	
	--tgc-blue: #0052CC;
	--tgc-blue-hover: #003E99;
	--tgc-blue-light: #EBF3FF;
	
	--tgc-green: #009E49;
	--tgc-green-hover: #007A37;
	--tgc-green-light: #E8F8EE;
	
	--tgc-white: #FFFFFF;
	
	/* Mapeamento de Tokens do Tema */
	--tgc-primary: var(--tgc-blue);
	--tgc-primary-hover: var(--tgc-blue-hover);
	--tgc-secondary: #0F172A;
	--tgc-accent: var(--tgc-orange);
	--tgc-accent-hover: var(--tgc-orange-hover);
	
	--tgc-wa: var(--tgc-green);
	--tgc-wa-hover: var(--tgc-green-hover);
	
	--tgc-bg: #F8FAFC;
	--tgc-surface: #FFFFFF;
	--tgc-border: #E2E8F0;
	--tgc-text: #0F172A;
	--tgc-text-muted: #64748B;
	--tgc-radius: 12px;
	--tgc-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
	--tgc-shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	color: var(--tgc-text);
	background-color: var(--tgc-bg);
}

/* Containers */
.tgc-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.tgc-container-fluid {
	width: 100%;
	padding: 0 20px;
}

.tgc-site-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.tgc-main-site-content {
	flex: 1;
}

/* Topbar */
.tgc-topbar {
	background: #0f172a;
	color: #94a3b8;
	font-size: 13px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tgc-topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tgc-topbar-left {
	display: flex;
	align-items: center;
	gap: 6px;
}

.tgc-topbar-left .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
	color: var(--tgc-primary);
}

.tgc-topbar-right a {
	color: #cbd5e1;
	text-decoration: none;
}

.tgc-topbar-right a:hover {
	color: #ffffff;
}

.tgc-sep {
	margin: 0 8px;
	color: rgba(255, 255, 255, 0.2);
}

/* Site Header */
.tgc-site-header {
	background: #ffffff;
	border-bottom: 1px solid var(--tgc-border);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.tgc-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
}

/* Logo */
.tgc-site-branding img {
	max-height: 48px;
	width: auto;
}

.tgc-logo-fallback {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 20px;
	font-weight: 800;
	color: var(--tgc-secondary);
	text-decoration: none;
}

.tgc-logo-fallback .dashicons {
	font-size: 28px;
	width: 28px;
	height: 28px;
	color: var(--tgc-primary);
}

/* Nav Menu */
.tgc-main-navigation .tgc-menu {
	display: flex;
	list-style: none;
	gap: 28px;
	margin: 0;
	padding: 0;
}

.tgc-main-navigation .tgc-menu a {
	color: var(--tgc-text);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: color 0.2s;
}

.tgc-main-navigation .tgc-menu a:hover {
	color: var(--tgc-primary);
}

/* Header Actions & Buttons */
.tgc-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tgc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all 0.2s ease;
}

.tgc-btn-cta {
	background: var(--tgc-orange);
	color: #ffffff !important;
	box-shadow: 0 4px 14px rgba(255, 109, 0, 0.35);
}

.tgc-btn-cta:hover {
	background: var(--tgc-orange-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 109, 0, 0.45);
}

.tgc-btn-primary {
	background: var(--tgc-blue);
	color: #ffffff !important;
}

.tgc-btn-primary:hover {
	background: var(--tgc-blue-hover);
}

.tgc-btn-user, .tgc-btn-login {
	background: #f1f5f9;
	color: var(--tgc-text) !important;
}

.tgc-btn-user:hover, .tgc-btn-login:hover {
	background: #e2e8f0;
}

.tgc-btn-outline {
	background: transparent;
	border: 1px solid var(--tgc-border);
	color: var(--tgc-text) !important;
}

.tgc-btn-outline:hover {
	background: #ffffff;
	border-color: var(--tgc-primary);
	color: var(--tgc-primary) !important;
}

.tgc-btn-lg {
	padding: 14px 28px;
	font-size: 16px;
}

.tgc-btn-sm {
	padding: 8px 14px;
	font-size: 13px;
}

/* Mobile Toggle */
.tgc-menu-toggle {
	display: none;
	background: transparent;
	border: none;
	padding: 8px;
	cursor: pointer;
}

.tgc-hamburger-icon {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--tgc-secondary);
	position: relative;
}

.tgc-hamburger-icon::before,
.tgc-hamburger-icon::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	background: var(--tgc-secondary);
	left: 0;
	transition: 0.2s;
}

.tgc-hamburger-icon::before { top: -7px; }
.tgc-hamburger-icon::after  { bottom: -7px; }

/* 1. Hero Section */
.tgc-home-hero {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	padding: 80px 0 90px 0;
	color: #ffffff;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.tgc-home-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -20%;
	width: 140%;
	height: 200%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
	pointer-events: none;
}

.tgc-hero-content {
	max-width: 1080px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.tgc-hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	padding: 6px 16px;
	border-radius: 9999px;
	font-size: 13px;
	font-weight: 600;
	color: #93c5fd;
	margin-bottom: 20px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.tgc-hero-h1 {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
	color: #ffffff;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.tgc-hero-p {
	font-size: 18px;
	color: #cbd5e1;
	margin-bottom: 36px;
	line-height: 1.5;
}

/* Home Search Form */
.tgc-home-search-form {
	background: #ffffff;
	padding: 10px;
	border-radius: 14px;
	display: flex;
	gap: 10px;
	box-shadow: var(--tgc-shadow-lg);
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	box-sizing: border-box;
}

.tgc-hsearch-field {
	display: flex;
	align-items: center;
	background: #f8fafc;
	border-radius: 10px;
	padding: 4px 14px;
	border: 1px solid transparent;
	transition: all 0.2s;
	box-sizing: border-box;
	min-width: 0;
}

.tgc-hsearch-field:focus-within {
	background: #ffffff;
	border-color: var(--tgc-primary);
}

.tgc-hsearch-field .dashicons {
	color: #94a3b8;
	font-size: 20px;
	margin-right: 8px;
	flex-shrink: 0;
}

.tgc-hsearch-field input, .tgc-hsearch-field select {
	border: none !important;
	background: transparent !important;
	padding: 12px 6px !important;
	font-size: 15px !important;
	outline: none !important;
	width: 100%;
	min-width: 0;
	color: #1e293b;
	box-sizing: border-box;
}

.tgc-hsearch-field select {
	cursor: pointer;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.tgc-hsearch-text   { flex: 2 1 200px; }
.tgc-hsearch-select { flex: 1.2 1 140px; }
.tgc-btn-search     { flex: 0 0 130px; }

@media (max-width: 900px) {
	.tgc-hero-content {
		max-width: 100% !important;
		padding: 0 10px;
	}

	.tgc-hero-h1 {
		font-size: 28px !important;
	}

	.tgc-hero-p {
		font-size: 15px !important;
		margin-bottom: 24px !important;
	}

	.tgc-home-search-form {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 10px !important;
		padding: 12px !important;
		border-radius: 16px !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}

	.tgc-hsearch-field {
		width: 100% !important;
		flex: 1 1 100% !important;
		min-width: 100% !important;
		box-sizing: border-box !important;
	}

	.tgc-hsearch-text,
	.tgc-hsearch-select {
		width: 100% !important;
		flex: 1 1 100% !important;
	}

	.tgc-btn-search {
		width: 100% !important;
		flex: 1 1 100% !important;
		padding: 14px 20px !important;
		font-size: 16px !important;
		border-radius: 10px !important;
		box-sizing: border-box !important;
	}
}

/* Popular Tags */
.tgc-popular-tags {
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
	margin-top: 24px;
	flex-wrap: wrap;
	font-size: 13px;
}

.tgc-tags-label {
	color: #94a3b8;
}

.tgc-popular-tags a {
	background: rgba(255, 255, 255, 0.08);
	color: #e2e8f0;
	padding: 4px 12px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s;
}

.tgc-popular-tags a:hover {
	background: var(--tgc-primary);
	color: #fff;
}

/* Sections */
.tgc-section {
	padding: 70px 0;
}

.tgc-section-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 40px auto;
}

.tgc-section-kicker {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--tgc-primary);
	display: block;
	margin-bottom: 6px;
}

.tgc-section-title {
	font-size: 28px;
	font-weight: 800;
	color: var(--tgc-secondary);
	margin: 0 0 10px 0;
	letter-spacing: -0.01em;
}

.tgc-section-subtitle {
	font-size: 15px;
	color: var(--tgc-text-muted);
	margin: 0;
}

.tgc-section-footer-cta {
	text-align: center;
	margin-top: 40px;
}

/* Home Categories Grid */
.tgc-home-categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.tgc-home-cat-card {
	background: var(--tgc-surface);
	border: 1px solid var(--tgc-border);
	border-radius: var(--tgc-radius);
	padding: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	text-decoration: none;
	box-shadow: var(--tgc-shadow);
	transition: all 0.25s ease;
}

.tgc-home-cat-card:hover {
	transform: translateY(-4px);
	border-color: var(--tgc-primary);
	box-shadow: var(--tgc-shadow-lg);
}

.tgc-cat-card-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: #eff6ff;
	color: var(--tgc-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.tgc-home-cat-card:hover .tgc-cat-card-icon {
	background: var(--tgc-primary);
	color: #ffffff;
}

.tgc-cat-card-icon .dashicons {
	font-size: 26px;
	width: 26px;
	height: 26px;
}

.tgc-cat-card-details h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--tgc-text);
	margin: 0 0 4px 0;
}

.tgc-cat-card-details span {
	font-size: 13px;
	color: var(--tgc-text-muted);
}

/* Featured Section Background */
.tgc-featured-section {
	background: #f1f5f9;
}

/* Benefits Grid */
.tgc-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.tgc-benefit-card {
	background: #ffffff;
	border: 1px solid var(--tgc-border);
	border-radius: var(--tgc-radius);
	padding: 30px;
	box-shadow: var(--tgc-shadow);
}

.tgc-benefit-icon {
	width: 54px;
	height: 54px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.tgc-benefit-icon .dashicons {
	font-size: 28px;
	width: 28px;
	height: 28px;
}

.tgc-icon-green  { background: #ecfdf5; color: #059669; }
.tgc-icon-blue   { background: #eff6ff; color: #2563eb; }
.tgc-icon-purple { background: #faf5ff; color: #9333ea; }
.tgc-icon-amber  { background: #fffbeb; color: #d97706; }

.tgc-benefit-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px 0;
	color: var(--tgc-secondary);
}

.tgc-benefit-card p {
	font-size: 14px;
	color: var(--tgc-text-muted);
	margin: 0;
	line-height: 1.6;
}

/* CTA Banner Box */
.tgc-cta-banner-section {
	padding: 0 0 70px 0;
}

.tgc-cta-banner-box {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	border-radius: 20px;
	padding: 50px 40px;
	color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
	box-shadow: var(--tgc-shadow-lg);
}

.tgc-cta-content h2 {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 8px 0;
	color: #ffffff;
}

.tgc-cta-content p {
	font-size: 16px;
	color: #94a3b8;
	margin: 0;
}

/* Breadcrumbs */
.tgc-breadcrumbs-nav {
	font-size: 13px;
	color: var(--tgc-text-muted);
	margin-bottom: 20px;
	display: flex;
	gap: 6px;
	align-items: center;
	flex-wrap: wrap;
}

.tgc-breadcrumbs-nav a {
	color: var(--tgc-text-muted);
	text-decoration: none;
}

.tgc-breadcrumbs-nav a:hover {
	color: var(--tgc-primary);
}

.tgc-bc-sep {
	color: #cbd5e1;
}

.tgc-bc-current {
	color: var(--tgc-text);
	font-weight: 600;
}

/* Footer */
.tgc-site-footer {
	background: #0f172a;
	color: #94a3b8;
	padding: 70px 0 30px 0;
	margin-top: auto;
}

.tgc-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 40px;
	margin-bottom: 50px;
}

.tgc-footer-brand img {
	max-height: 40px;
	margin-bottom: 16px;
}

.tgc-footer-desc {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.tgc-footer-social {
	display: flex;
	gap: 12px;
}

.tgc-footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background 0.2s;
}

.tgc-footer-social a:hover {
	background: var(--tgc-primary);
}

.tgc-footer-title {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 18px 0;
}

.tgc-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tgc-footer-links li {
	margin-bottom: 10px;
}

.tgc-footer-links a {
	color: #94a3b8;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s;
}

.tgc-footer-links a:hover {
	color: #ffffff;
}

.tgc-footer-cta-box {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 20px;
}

.tgc-footer-cta-box h4 {
	color: #fff;
	font-size: 16px;
	margin: 0 0 6px 0;
}

.tgc-footer-cta-box p {
	font-size: 13px;
	margin-bottom: 16px;
}

.tgc-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 24px;
	text-align: center;
	font-size: 13px;
}

/* Mobile Sticky Action Bar */
.tgc-mobile-sticky-cta {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #ffffff;
	border-top: 1px solid var(--tgc-border);
	padding: 10px 14px;
	z-index: 9999;
	box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
	gap: 10px;
}

.tgc-m-cta {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 8px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.tgc-m-wa  { background: var(--tgc-wa); color: #fff; }
.tgc-m-tel { background: #0f172a; color: #fff; }
.tgc-m-map { background: #f1f5f9; color: var(--tgc-text); border: 1px solid var(--tgc-border); }

/* Responsive Queries */
@media (max-width: 992px) {
	.tgc-footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.tgc-hero-h1 {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.tgc-main-navigation {
		display: none;
		position: absolute;
		top: 76px;
		left: 0;
		right: 0;
		background: #ffffff;
		border-bottom: 1px solid var(--tgc-border);
		padding: 20px;
		box-shadow: var(--tgc-shadow-lg);
	}
	.tgc-main-navigation.is-open {
		display: block;
	}
	.tgc-main-navigation .tgc-menu {
		flex-direction: column;
		gap: 16px;
	}
	.tgc-menu-toggle {
		display: block;
	}
	.tgc-btn-user, .tgc-btn-login {
		display: none;
	}
	.tgc-footer-grid {
		grid-template-columns: 1fr;
	}
	.tgc-home-search-form {
		flex-direction: column;
	}
	.tgc-hsearch-field, .tgc-btn-search {
		width: 100%;
	}
	.tgc-mobile-sticky-cta {
		display: flex;
	}
	.tgc-single-company-container {
		padding-bottom: 70px;
	}
}

/* ==========================================================================
   AUTH & FORMS (LOGIN & CADASTRO)
   ========================================================================== */

.gc-auth-page-wrapper {
	width: 100%;
	padding: 20px 0 40px 0;
}

.gc-auth-container {
	max-width: 480px;
	margin: 0 auto;
	padding: 0 16px;
}

.gc-register-container {
	max-width: 660px;
}

.gc-auth-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 40px 36px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.gc-auth-header {
	text-align: center;
	margin-bottom: 28px;
}

.gc-auth-icon-badge {
	width: 60px;
	height: 60px;
	background: #ebf3ff;
	color: #0052cc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px auto;
}

.gc-auth-icon-badge.gc-badge-orange {
	background: #fff3e0;
	color: #ff6d00;
}

.gc-auth-icon-badge .dashicons {
	font-size: 28px;
	width: 28px;
	height: 28px;
}

.gc-auth-header h2 {
	font-size: 24px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 8px 0;
	letter-spacing: -0.01em;
}

.gc-auth-header p {
	font-size: 14px;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
}

/* Form Sections */
.gc-form-section {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
}

.gc-form-section-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	border-bottom: 1px solid #e2e8f0;
	padding-bottom: 10px;
}

.gc-step-num {
	width: 26px;
	height: 26px;
	background: #0052cc;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
}

.gc-form-section-head h3 {
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
}

/* Form Groups & Inputs */
.gc-form-group {
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
}

.gc-form-group label {
	font-size: 13px;
	font-weight: 600;
	color: #334155;
	margin-bottom: 6px;
	display: block;
}

.gc-form-label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}

.gc-form-label-row label {
	margin-bottom: 0;
}

.gc-forgot-link {
	font-size: 12px;
	color: #0052cc;
	text-decoration: none;
	font-weight: 500;
}

.gc-forgot-link:hover {
	text-decoration: underline;
}

.gc-input-with-icon,
.gc-select-wrap {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.gc-input-with-icon .dashicons,
.gc-select-wrap .dashicons {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	font-size: 20px;
	width: 20px;
	height: 20px;
	pointer-events: none;
	z-index: 5;
}

.gc-input,
.gc-auth-form input[type="text"],
.gc-auth-form input[type="email"],
.gc-auth-form input[type="password"],
.gc-auth-form select,
.gc-auth-form textarea {
	width: 100% !important;
	box-sizing: border-box !important;
	padding-top: 13px !important;
	padding-bottom: 13px !important;
	padding-right: 14px !important;
	padding-left: 14px !important;
	border: 1.5px solid #cbd5e1 !important;
	border-radius: 10px !important;
	background: #ffffff !important;
	font-size: 14px !important;
	color: #0f172a !important;
	outline: none !important;
	font-family: inherit !important;
	line-height: normal !important;
	transition: border-color 0.2s, box-shadow 0.2s !important;
}

/* Specificity override for inputs with icon */
.gc-auth-form .gc-input-with-icon input,
.gc-auth-form .gc-input-with-icon input[type="text"],
.gc-auth-form .gc-input-with-icon input[type="email"],
.gc-auth-form .gc-input-with-icon input[type="password"],
.gc-auth-form .gc-input-with-icon .gc-input,
.gc-auth-form .gc-select-wrap select,
.gc-auth-form .gc-select-wrap .gc-select {
	padding-left: 48px !important;
}

.gc-input:focus,
.gc-auth-form input[type="text"]:focus,
.gc-auth-form input[type="email"]:focus,
.gc-auth-form input[type="password"]:focus,
.gc-auth-form select:focus,
.gc-auth-form textarea:focus {
	border-color: #0052cc !important;
	box-shadow: 0 0 0 3.5px rgba(0, 82, 204, 0.15) !important;
}

.gc-form-row {
	display: flex;
	gap: 14px;
	margin-bottom: 0;
}

.gc-form-row .gc-form-group {
	flex: 1;
}

.gc-col-6 { flex: 1 1 50%; }
.gc-col-8 { flex: 2 1 65%; }
.gc-col-4 { flex: 1 1 35%; }

/* Checkboxes */
.gc-checkbox-label {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	color: #475569 !important;
	cursor: pointer;
}

.gc-checkbox-label input[type="checkbox"] {
	width: 18px !important;
	height: 18px !important;
	border-radius: 4px !important;
	accent-color: #0052cc;
	cursor: pointer;
	margin: 0 !important;
}

.gc-remember-row {
	margin-bottom: 22px;
}

.gc-terms-box {
	background: #f1f5f9;
	border-radius: 8px;
	padding: 12px 14px;
	margin-bottom: 22px;
}

/* Submit Buttons */
.gc-btn-block {
	width: 100% !important;
}

.gc-btn-lg {
	padding: 14px 20px !important;
	font-size: 15px !important;
}

.gc-btn-cta {
	background: #ff6d00 !important;
	color: #ffffff !important;
	border-radius: 10px !important;
	font-weight: 700 !important;
	border: none !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(255, 109, 0, 0.35) !important;
	transition: all 0.2s ease !important;
}

.gc-btn-cta:hover {
	background: #e65100 !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 109, 0, 0.45) !important;
}

/* Auth Footer */
.gc-auth-footer {
	border-top: 1px solid #e2e8f0;
	margin-top: 28px;
	padding-top: 20px;
	text-align: center;
}

.gc-auth-footer p {
	font-size: 14px;
	color: #64748b;
	margin: 0;
}

.gc-auth-footer a {
	color: #0052cc;
	font-weight: 700;
	text-decoration: none;
}

.gc-auth-footer a:hover {
	color: #ff6d00;
	text-decoration: underline;
}

@media (max-width: 600px) {
	.gc-auth-card {
		padding: 28px 20px;
	}
	.gc-form-row {
		flex-direction: column;
		gap: 0;
	}
}

/* ==========================================================================
   Standard Content Pages (Termos, Privacidade, etc.)
   ========================================================================== */
.tgc-page-container {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	padding: 40px;
	border: 1px solid #e2e8f0;
	max-width: 900px;
	margin: 0 auto;
}

.tgc-page-header {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f1f5f9;
}

.tgc-page-title {
	font-size: 28px;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	line-height: 1.3;
}

.tgc-page-content {
	color: #334155;
	font-size: 15px;
	line-height: 1.8;
}

.tgc-page-content h2 {
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin-top: 32px;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #f1f5f9;
}

.tgc-page-content h3 {
	font-size: 17px;
	font-weight: 700;
	color: #1e293b;
	margin-top: 24px;
	margin-bottom: 8px;
}

.tgc-page-content p {
	margin-bottom: 16px;
}

.tgc-page-content ul,
.tgc-page-content ol {
	margin-bottom: 20px;
	padding-left: 24px;
}

.tgc-page-content li {
	margin-bottom: 8px;
}

.tgc-page-content strong {
	color: #0f172a;
}

.tgc-page-content a {
	color: #0052cc;
	text-decoration: underline;
}

.tgc-page-content a:hover {
	color: #ff6d00;
}

@media (max-width: 768px) {
	.tgc-page-container {
		padding: 24px 16px;
		border-radius: 12px;
	}
	.tgc-page-title {
		font-size: 22px;
	}
	.tgc-page-content h2 {
		font-size: 18px;
	}
}


