/* ==========================================================================
   CapturaRH theme — full stylesheet
   Design tokens taken from the CapturaRH Stitch design system
   ========================================================================== */

:root {
	--crh-primary: #0B1F3A;
	--crh-primary-soft: #123b72;
	--crh-primary-deep: #07142a;
	--crh-secondary: #2563EB;
	--crh-accent: #14B8A6;
	--crh-accent-deep: #0E9080;
	--crh-bg: #F6F8FB;
	--crh-bg-soft: #EEF2F7;
	--crh-white: #FFFFFF;
	--crh-text: #111827;
	--crh-text-muted: #6B7280;
	--crh-border: #E5E7EB;
	--crh-border-strong: #D1D5DB;
	--crh-shadow-sm: 0 6px 20px rgba(11, 31, 58, 0.05);
	--crh-shadow-md: 0 12px 32px rgba(11, 31, 58, 0.08);
	--crh-shadow-lg: 0 18px 45px rgba(11, 31, 58, 0.16);
	--crh-radius-sm: 0.5rem;
	--crh-radius: 0.75rem;
	--crh-radius-lg: 1rem;
	--crh-radius-xl: 1.5rem;
	--crh-radius-2xl: 1.75rem;
	--crh-radius-full: 9999px;
	--crh-container: 1200px;
	--crh-section-gap: clamp(3rem, 6vw, 6rem);
	--crh-font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
	--crh-font-body: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--crh-font-body);
	color: var(--crh-text);
	background: var(--crh-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 16px;
	line-height: 1.6;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--crh-secondary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--crh-primary); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--crh-font-display);
	color: var(--crh-primary);
	letter-spacing: -0.01em;
	margin: 0 0 0.6em;
	line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }

p { margin: 0 0 1rem; color: var(--crh-text); }

/* layout helpers */
.crh-container {
	width: 100%;
	max-width: var(--crh-container);
	margin: 0 auto;
	padding: 0 1.25rem;
}

.crh-section {
	padding: var(--crh-section-gap) 0;
}

.crh-skip-link {
	position: absolute;
	left: -1000px;
	top: -1000px;
	background: var(--crh-primary);
	color: #fff;
	padding: .75rem 1rem;
	border-radius: var(--crh-radius);
	z-index: 1000;
}
.crh-skip-link:focus { left: 1rem; top: 1rem; }

/* ==========================================================================
   Header
   ========================================================================== */

.crh-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(229,231,235,0.6);
}

.crh-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 76px;
}

.crh-brand {
	display: flex;
	align-items: center;
	gap: .65rem;
	color: var(--crh-primary);
}
.crh-brand:hover { color: var(--crh-primary); }

.crh-brand img,
.crh-brand .custom-logo,
.crh-brand .custom-logo-link img,
.crh-brand-img {
	max-height: 88px;
	width: auto;
	transition: transform .2s ease;
}
.crh-brand:hover .crh-brand-img,
.crh-brand:hover img { transform: scale(1.03); }
.crh-header-inner { min-height: 100px; }
@media (max-width: 700px) {
	.crh-brand img,
	.crh-brand .custom-logo,
	.crh-brand .custom-logo-link img,
	.crh-brand-img { max-height: 64px; }
	.crh-header-inner { min-height: 76px; }
}

.crh-brand-text {
	font-family: var(--crh-font-display);
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: -0.01em;
	color: var(--crh-primary);
	display: inline-flex;
	gap: 0;
}
.crh-brand-text strong { color: var(--crh-primary); }
.crh-brand-text span { color: var(--crh-accent); }

.crh-primary-nav { display: none; }

@media (min-width: 960px) {
	.crh-primary-nav { display: block; }
}

.crh-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.75rem;
}

.crh-nav-list a {
	color: var(--crh-text-muted);
	font-weight: 600;
	font-size: 0.95rem;
	padding-bottom: 0.25rem;
	border-bottom: 2px solid transparent;
	transition: color .2s ease, border-color .2s ease;
}

.crh-nav-list a:hover,
.crh-nav-list .current-menu-item > a,
.crh-nav-list .current_page_item > a {
	color: var(--crh-primary);
	border-bottom-color: var(--crh-accent);
}

.crh-header-actions { display: none; gap: .75rem; align-items: center; }
@media (min-width: 1100px) { .crh-header-actions { display: inline-flex; } }

.crh-menu-toggle {
	display: inline-flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: .6rem .55rem;
	border-radius: var(--crh-radius);
	cursor: pointer;
}
.crh-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--crh-primary);
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.crh-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.crh-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.crh-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1100px) {
	.crh-menu-toggle { display: none; }
}

.crh-mobile-nav {
	border-top: 1px solid var(--crh-border);
	padding: 1rem 1.25rem 1.5rem;
	background: #fff;
}
.crh-mobile-nav .crh-nav-list,
.crh-mobile-nav ul {
	flex-direction: column;
	gap: .25rem;
	margin-bottom: 1rem;
}
.crh-mobile-nav .crh-nav-list a,
.crh-mobile-nav ul a {
	display: block;
	padding: .8rem .25rem;
	font-size: 1.05rem;
	border-bottom: 1px solid var(--crh-border);
}
.crh-mobile-actions { display: flex; flex-direction: column; gap: .5rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.crh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .7rem 1.25rem;
	font-family: var(--crh-font-body);
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: var(--crh-radius);
	border: 2px solid transparent;
	cursor: pointer;
	text-align: center;
	line-height: 1;
	transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
	white-space: nowrap;
}
.crh-btn:hover { transform: translateY(-1px); }

.crh-btn-lg { padding: .95rem 1.5rem; font-size: 1rem; }

.crh-btn-primary {
	background: var(--crh-primary);
	color: #fff;
	box-shadow: var(--crh-shadow-sm);
}
.crh-btn-primary:hover { background: var(--crh-primary-soft); color: #fff; box-shadow: var(--crh-shadow-md); }

.crh-btn-accent {
	background: var(--crh-accent);
	color: #053b35;
	box-shadow: var(--crh-shadow-sm);
}
.crh-btn-accent:hover { background: var(--crh-accent-deep); color: #fff; }

.crh-btn-outline {
	background: #fff;
	color: var(--crh-primary);
	border-color: var(--crh-border-strong);
}
.crh-btn-outline:hover { border-color: var(--crh-primary); color: var(--crh-primary); }

.crh-btn-outline-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,0.4);
}
.crh-btn-outline-light:hover { background: rgba(255,255,255,0.1); color: #fff; }

.crh-btn-ghost {
	background: transparent;
	color: var(--crh-primary);
	border-color: transparent;
}
.crh-btn-ghost:hover { color: var(--crh-secondary); }

.crh-btn-ghost-light {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255,255,255,0.4);
}
.crh-btn-ghost-light:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ==========================================================================
   Hero
   ========================================================================== */

.crh-home-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #fbfbfd 0%, var(--crh-bg) 80%);
	padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
}
/* Garante cor sólida do título — específico o suficiente para vencer
   eventuais regras herdadas de outros CSS (como o do plugin) */
.crh-home-hero h1,
.crh-home-hero-copy h1 {
	color: var(--crh-primary) !important;
}
.crh-home-hero p,
.crh-home-hero .crh-home-hero-lead {
	color: var(--crh-text-muted) !important;
}
.crh-home-hero h1 .crh-text-accent {
	color: var(--crh-secondary) !important;
}

.crh-home-hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.crh-home-hero-blob {
	position: absolute;
	width: 540px;
	height: 540px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(37,99,235,0.08), transparent 70%);
	top: -160px;
	right: -120px;
	filter: blur(40px);
	pointer-events: none;
}
.crh-home-hero-blob--two {
	background: radial-gradient(circle, rgba(20,184,166,0.08), transparent 70%);
	top: auto;
	right: auto;
	left: -180px;
	bottom: -200px;
	width: 500px;
	height: 500px;
}

.crh-home-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 980px) {
	.crh-home-hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}

.crh-pill {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	background: rgba(20,184,166,0.12);
	color: var(--crh-accent-deep);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: .35rem .75rem;
	border-radius: var(--crh-radius-full);
}

.crh-pill--soft {
	background: rgba(37,99,235,0.1);
	color: var(--crh-secondary);
	text-transform: none;
	letter-spacing: normal;
	font-size: 0.8rem;
}

.crh-text-accent { color: var(--crh-secondary); }

.crh-home-hero-copy h1 { margin-top: 1rem; }
.crh-home-hero-lead {
	font-size: 1.1rem;
	color: var(--crh-text-muted);
	max-width: 32rem;
	margin: 0 0 1.75rem;
}

.crh-home-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	margin-bottom: 2rem;
}

.crh-home-hero-trust {
	list-style: none;
	margin: 0;
	padding: 1rem 0 0;
	border-top: 1px dashed var(--crh-border);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1rem;
}
.crh-home-hero-trust li { display: flex; flex-direction: column; gap: .15rem; }
.crh-home-hero-trust strong { color: var(--crh-primary); font-family: var(--crh-font-display); font-size: 1rem; }
.crh-home-hero-trust span { color: var(--crh-text-muted); font-size: .85rem; }

/* Hero card stack */
.crh-home-hero-card-stack { position: relative; min-height: 360px; }

.crh-home-hero-card {
	background: #fff;
	border-radius: var(--crh-radius-xl);
	box-shadow: var(--crh-shadow-md);
	border: 1px solid rgba(229,231,235,0.7);
	padding: 1.4rem;
}

.crh-home-hero-card--main {
	width: 100%;
	max-width: 380px;
	margin-left: auto;
	display: grid;
	gap: .9rem;
}

.crh-home-hero-card-head {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-family: var(--crh-font-display);
	color: var(--crh-primary);
	font-weight: 700;
}

.crh-dot {
	width: 10px; height: 10px; border-radius: 50%;
	background: var(--crh-accent);
	box-shadow: 0 0 0 4px rgba(20,184,166,0.18);
}

.crh-home-hero-card-stat { display: flex; flex-direction: column; gap: .15rem; }
.crh-stat-value { font-family: var(--crh-font-display); font-size: 2.25rem; font-weight: 800; color: var(--crh-primary); line-height: 1; }
.crh-stat-label { color: var(--crh-text-muted); font-size: .9rem; }

.crh-home-hero-card-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .65rem .8rem;
	background: var(--crh-bg-soft);
	border-radius: var(--crh-radius);
	font-size: .9rem;
}
.crh-home-hero-card-row span { font-weight: 600; color: var(--crh-primary); }
.crh-home-hero-card-row small { color: var(--crh-text-muted); }

.crh-home-hero-card--floating {
	position: absolute;
	display: flex;
	gap: .75rem;
	align-items: center;
	background: #fff;
	padding: .75rem .9rem;
	border-radius: var(--crh-radius-lg);
	box-shadow: var(--crh-shadow-md);
	max-width: 240px;
}
.crh-home-hero-card--floating strong { display: block; font-size: .9rem; font-family: var(--crh-font-display); color: var(--crh-primary); }
.crh-home-hero-card--floating small { color: var(--crh-text-muted); font-size: .78rem; }
.crh-icon-bolt { font-size: 1.4rem; }

@media (min-width: 980px) {
	.crh-home-hero-card--floating { left: -1.5rem; bottom: 1.5rem; }
	.crh-home-hero-card--users { left: auto; right: -1rem; top: 0; bottom: auto; }
}
@media (max-width: 979px) {
	.crh-home-hero-card-stack { display: grid; gap: 1rem; min-height: 0; }
	.crh-home-hero-card--floating { position: static; max-width: 100%; }
	.crh-home-hero-card--main { margin: 0; }
}

/* ==========================================================================
   Section heads
   ========================================================================== */

.crh-section-head {
	margin-bottom: 2.5rem;
	max-width: 720px;
}
.crh-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.crh-section-head--row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
	flex-wrap: wrap;
	max-width: none;
}
.crh-section-head h2 { margin-top: .35rem; margin-bottom: .5rem; }
.crh-section-head p { color: var(--crh-text-muted); margin: 0; }

.crh-eyebrow {
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--crh-secondary);
}
.crh-eyebrow--light { color: rgba(255,255,255,0.85); }

/* ==========================================================================
   Audience grid
   ========================================================================== */

.crh-section--audience { padding-top: 0; }

.crh-audience-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}
@media (min-width: 880px) {
	.crh-audience-grid { grid-template-columns: 1fr 1fr; }
}

.crh-audience-card {
	display: block;
	background: #fff;
	border-radius: var(--crh-radius-2xl);
	border: 1px solid var(--crh-border);
	padding: 2rem;
	box-shadow: var(--crh-shadow-sm);
	color: var(--crh-text);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.crh-audience-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--crh-shadow-md);
	border-color: var(--crh-secondary);
	color: var(--crh-text);
}
.crh-audience-card h2 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); margin: 1rem 0 .75rem; }
.crh-audience-card p { color: var(--crh-text-muted); margin-bottom: 1rem; }
.crh-audience-tag {
	display: inline-flex;
	background: rgba(11,31,58,0.06);
	color: var(--crh-primary);
	padding: .3rem .7rem;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	border-radius: var(--crh-radius-full);
	text-transform: uppercase;
}
.crh-audience-card--alt .crh-audience-tag { background: rgba(20,184,166,0.12); color: var(--crh-accent-deep); }

.crh-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: .25rem;
	font-weight: 600;
	color: var(--crh-secondary);
}
.crh-link-arrow:hover { color: var(--crh-primary); }

/* ==========================================================================
   Cards grid (services, differentials, vagas, etc.)
   ========================================================================== */

.crh-cards-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}
@media (min-width: 700px) {
	.crh-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
	.crh-cards-grid { grid-template-columns: repeat(4, 1fr); }
}

.crh-cards-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 760px) {
	.crh-cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px) {
	.crh-cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.crh-feature-card {
	background: #fff;
	border-radius: var(--crh-radius-xl);
	border: 1px solid var(--crh-border);
	padding: 1.5rem;
	box-shadow: var(--crh-shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease;
}
.crh-feature-card:hover { transform: translateY(-3px); box-shadow: var(--crh-shadow-md); }
.crh-feature-card h3 { margin-bottom: .5rem; }
.crh-feature-card p { color: var(--crh-text-muted); margin: 0; }

.crh-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--crh-radius);
	background: rgba(37,99,235,0.1);
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

.crh-feature-card--clean { box-shadow: none; }
.crh-feature-card--clean:hover { box-shadow: var(--crh-shadow-sm); }

/* ==========================================================================
   Steps
   ========================================================================== */

.crh-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
	counter-reset: crhsteps;
}
@media (min-width: 760px) { .crh-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .crh-steps { grid-template-columns: repeat(4, 1fr); } }

.crh-steps li {
	background: #fff;
	border-radius: var(--crh-radius-xl);
	border: 1px solid var(--crh-border);
	padding: 1.5rem;
	position: relative;
}
.crh-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: var(--crh-radius-full);
	background: var(--crh-primary);
	color: #fff;
	font-family: var(--crh-font-display);
	font-weight: 800;
	margin-bottom: 1rem;
}
.crh-steps h3 { margin-bottom: .35rem; }
.crh-steps p { color: var(--crh-text-muted); margin: 0; }

/* ==========================================================================
   Vagas cards (front-page highlights)
   ========================================================================== */

.crh-vaga-card {
	background: #fff;
	border-radius: var(--crh-radius-xl);
	border: 1px solid var(--crh-border);
	padding: 1.5rem;
	box-shadow: var(--crh-shadow-sm);
	display: flex;
	flex-direction: column;
	gap: .65rem;
}
.crh-vaga-card h3 { margin: .15rem 0 0; }
.crh-vaga-empresa { color: var(--crh-text-muted); margin: 0 0 .5rem; font-weight: 500; }
.crh-vaga-meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .35rem;
}
.crh-vaga-meta li {
	font-size: .82rem;
	background: var(--crh-bg-soft);
	color: var(--crh-text);
	padding: .3rem .65rem;
	border-radius: var(--crh-radius-full);
}
.crh-vaga-meta--hero li { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.9); }

.crh-vagas-cards .crh-link-arrow { margin-top: auto; }

/* ==========================================================================
   Talents (banco de talentos card)
   ========================================================================== */

.crh-section--talents {
	padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 4rem);
}
.crh-talents-card {
	background: linear-gradient(135deg, var(--crh-primary) 0%, var(--crh-primary-soft) 60%, #166e63 100%);
	border-radius: var(--crh-radius-2xl);
	padding: clamp(2rem, 4vw, 3rem);
	color: #fff;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
	align-items: center;
	box-shadow: var(--crh-shadow-lg);
	position: relative;
	overflow: hidden;
}
@media (min-width: 880px) {
	.crh-talents-card { grid-template-columns: 1.4fr 1fr; }
}
.crh-talents-card h2 { color: #fff; }
.crh-talents-card p { color: rgba(255,255,255,0.85); margin: 0; }
.crh-talents-actions { display: flex; flex-direction: column; gap: .65rem; }
@media (min-width: 880px) { .crh-talents-actions { align-items: flex-end; } }

/* ==========================================================================
   CTA grid
   ========================================================================== */

.crh-section--cta {
	background: var(--crh-primary);
	color: #fff;
	padding: clamp(3rem, 6vw, 5rem) 0;
}
.crh-section--cta h2 { color: #fff; }
.crh-section--cta p { color: rgba(255,255,255,0.85); margin: 0; }

.crh-cta-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: center;
}
@media (min-width: 880px) {
	.crh-cta-grid { grid-template-columns: 1.6fr 1fr; }
}
.crh-cta-actions {
	display: flex;
	flex-direction: column;
	gap: .65rem;
}
@media (min-width: 880px) { .crh-cta-actions { align-items: flex-end; } }

.crh-cta-inline {
	display: flex;
	flex-wrap: wrap;
	gap: .65rem;
	margin-top: 1rem;
}

/* ==========================================================================
   Page hero & content (default page template)
   ========================================================================== */

.crh-page-hero {
	background: linear-gradient(180deg, #fff 0%, var(--crh-bg) 100%);
	padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
	border-bottom: 1px solid var(--crh-border);
}
.crh-page-hero h1 { margin: .5rem 0 .35rem; }
.crh-page-hero p { color: var(--crh-text-muted); max-width: 48rem; }

.crh-page-hero--big { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); }

.crh-section--page { padding-top: clamp(2rem, 5vw, 3.5rem); }

.crh-page-content {
	max-width: 880px;
	margin: 0 auto;
}
.crh-page-content p { font-size: 1.05rem; color: var(--crh-text); }
.crh-page-content h2 { margin-top: 2rem; }
.crh-page-content h3 { margin-top: 1.5rem; }
.crh-page-content ul, .crh-page-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.crh-page-content blockquote {
	border-left: 4px solid var(--crh-accent);
	padding: .5rem 1rem;
	margin: 1rem 0;
	color: var(--crh-text-muted);
}

/* Style the plugin's shortcode content inside our page wrapper */
.crh-page-content .crh-wrap { padding: 0; max-width: none; }

/* ==========================================================================
   Contact page
   ========================================================================== */

.crh-contact-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}
@media (min-width: 760px) { .crh-contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .crh-contact-grid { grid-template-columns: repeat(3, 1fr); } }

.crh-contact-card {
	background: #fff;
	border-radius: var(--crh-radius-xl);
	border: 1px solid var(--crh-border);
	padding: 1.75rem;
	box-shadow: var(--crh-shadow-sm);
}
.crh-contact-card h3 { margin-bottom: .35rem; }
.crh-contact-card p { color: var(--crh-text-muted); margin-bottom: .75rem; }

.crh-contact-cta {
	margin-top: 3rem;
	padding: 2rem;
	background: var(--crh-bg-soft);
	border-radius: var(--crh-radius-2xl);
	text-align: center;
}
.crh-contact-cta h2 { margin-bottom: .5rem; }
.crh-contact-cta p { color: var(--crh-text-muted); margin-bottom: 1rem; }
.crh-contact-cta .crh-cta-inline { justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */

.crh-site-footer {
	background: var(--crh-primary-deep);
	color: rgba(255,255,255,0.78);
	margin-top: var(--crh-section-gap);
}
.crh-site-footer a { color: rgba(255,255,255,0.78); }
.crh-site-footer a:hover { color: var(--crh-accent); }

.crh-footer-grid {
	display: grid;
	gap: 2rem;
	padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
	grid-template-columns: 1fr;
}
@media (min-width: 760px) {
	.crh-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.crh-footer-brand p { color: rgba(255,255,255,0.6); max-width: 22rem; font-size: .95rem; }
.crh-footer-brand-default .crh-brand-text strong { color: #fff; }
.crh-footer-brand-default .crh-brand-text span { color: var(--crh-accent); }
.crh-footer-logo-pill {
	display: inline-flex;
	align-items: center;
	background: #fff;
	padding: 14px 22px;
	border-radius: 18px;
	margin-bottom: 1.25rem;
	box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.crh-footer-logo-pill img { max-height: 90px; width: auto; }
.crh-footer-logo .custom-logo { max-height: 90px; width: auto; background: #fff; padding: 12px 18px; border-radius: 14px; }

/* Faixa de marca no meio da home */
.crh-brand-strip {
	background: #fff;
	border-top: 1px solid var(--crh-border);
	border-bottom: 1px solid var(--crh-border);
	padding: clamp(2rem, 4vw, 3rem) 0;
}
.crh-brand-strip-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
}
.crh-brand-strip-logo {
	max-height: 140px;
	width: auto;
}
.crh-brand-strip-tagline {
	font-family: var(--crh-font-display);
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 700;
	color: var(--crh-primary);
	margin: 0;
	max-width: 640px;
}
.crh-brand-strip-sub {
	color: var(--crh-text-muted);
	margin: 0;
	max-width: 640px;
}

.crh-footer-col h4 {
	color: #fff;
	font-family: var(--crh-font-display);
	font-size: 1rem;
	margin: 0 0 1rem;
}
.crh-footer-col ul,
.crh-footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .55rem;
}
.crh-footer-col li, .crh-footer-contact li { font-size: .92rem; }

.crh-footer-base {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 1rem 0;
	font-size: .85rem;
	color: rgba(255,255,255,0.55);
}
.crh-footer-base-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.crh-footer-base-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1rem;
}
.crh-footer-base-nav a { font-size: .85rem; color: rgba(255,255,255,0.55); }

/* ==========================================================================
   Plugin shortcode harmonisation
   --------------------------------------------------------------------------
   O plugin CapturaRH usa as MESMAS classes que esse tema (.crh-hero, .crh-card,
   .crh-btn etc.). O tema carrega depois e estava atropelando os estilos do
   plugin dentro do shortcode. Aqui resetamos os escopos: tudo que renderiza
   DENTRO de .crh-wrap é responsabilidade do plugin — restauramos os estilos
   originais (gradiente azul-escuro, hero branco, botões, etc.).
   ========================================================================== */

/* Container do plugin — quando a página usa shortcode, o conteúdo já vem com
   .crh-wrap completo, então tiramos a centralização extra do tema. */
.crh-section--plugin { padding: clamp(2rem, 4vw, 3rem) 0; }
.crh-section--plugin > .crh-page-content { max-width: none; padding: 0; }

/* Reset / restauração dos estilos do plugin que foram sobrescritos */
.crh-wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 32px 18px;
	font-family: var(--crh-font-body);
	color: var(--crh-text);
}
.crh-wrap .crh-hero {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
	padding: 34px;
	border-radius: 28px;
	background: linear-gradient(135deg, var(--crh-primary), var(--crh-primary-soft));
	color: #fff;
	margin-bottom: 28px;
	box-shadow: 0 18px 45px rgba(11, 31, 58, .16);
	overflow: visible;
	position: relative;
	flex-wrap: wrap;
}
.crh-wrap .crh-hero::before,
.crh-wrap .crh-hero::after { content: none !important; }
.crh-wrap .crh-hero h1 {
	color: #fff;
	margin: 8px 0 8px;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.15;
}
.crh-wrap .crh-hero p {
	color: rgba(255,255,255,0.85);
	margin: 0;
	font-size: 18px;
}
.crh-wrap .crh-kicker {
	display: inline-flex;
	border-radius: 999px;
	padding: 7px 12px;
	background: rgba(20,184,166,0.18);
	color: #a7fff4;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

/* Cards de vaga do plugin (lista) */
.crh-wrap .crh-vagas-list { display: grid; gap: 22px; }
.crh-wrap .crh-card {
	background: #fff;
	border: 1px solid var(--crh-border);
	border-radius: 24px;
	padding: 26px;
	box-shadow: 0 12px 32px rgba(11,31,58,.08);
}
.crh-wrap .crh-card-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
}
.crh-wrap .crh-card h2 {
	font-size: 1.4rem;
	margin: 4px 0;
	color: var(--crh-primary);
}
.crh-wrap .crh-area {
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--crh-secondary);
	margin: 0;
}
.crh-wrap .crh-company { color: var(--crh-text-muted); margin: 0; }
.crh-wrap .crh-badge {
	display: inline-flex;
	background: rgba(20,184,166,0.15);
	color: var(--crh-accent-deep);
	padding: 4px 10px;
	font-size: .8rem;
	font-weight: 700;
	border-radius: 999px;
}
.crh-wrap .crh-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 0;
}
.crh-wrap .crh-tags span {
	background: var(--crh-bg-soft);
	padding: 5px 12px;
	border-radius: 999px;
	font-size: .82rem;
	color: var(--crh-text);
}
.crh-wrap .crh-content { color: var(--crh-text); margin: 12px 0; }
.crh-wrap details {
	margin: 10px 0;
	border: 1px solid var(--crh-border);
	border-radius: 12px;
	padding: 12px 16px;
}
.crh-wrap details > summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--crh-primary);
}
.crh-wrap .crh-detail { padding-top: 10px; color: var(--crh-text); }

/* Apply box (botão "Candidatar-se") + form */
.crh-wrap .crh-apply-box { border: 0; padding: 0; margin-top: 16px; }
.crh-wrap .crh-apply-box > summary {
	list-style: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: .85rem 1.4rem;
	font-weight: 600;
	font-size: 1rem;
	border-radius: var(--crh-radius);
	background: var(--crh-primary);
	color: #fff;
	cursor: pointer;
	transition: background .2s ease, transform .15s ease;
}
.crh-wrap .crh-apply-box > summary::-webkit-details-marker { display: none; }
.crh-wrap .crh-apply-box > summary:hover {
	background: var(--crh-primary-soft);
	transform: translateY(-1px);
}

.crh-wrap .crh-form { margin-top: 18px; }
.crh-wrap .crh-form-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr;
}
@media (min-width: 720px) {
	.crh-wrap .crh-form-grid { grid-template-columns: 1fr 1fr; }
}
.crh-wrap .crh-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-weight: 600;
	color: var(--crh-primary);
	font-size: .92rem;
}
.crh-wrap .crh-form .crh-full { grid-column: 1 / -1; }
.crh-wrap .crh-form input[type=text],
.crh-wrap .crh-form input[type=email],
.crh-wrap .crh-form input[type=url],
.crh-wrap .crh-form input[type=tel],
.crh-wrap .crh-form input[type=file],
.crh-wrap .crh-form textarea {
	font: inherit;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid var(--crh-border-strong);
	background: #fff;
	color: var(--crh-text);
	font-weight: 400;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.crh-wrap .crh-form input:focus,
.crh-wrap .crh-form textarea:focus {
	outline: none;
	border-color: var(--crh-secondary);
	box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.crh-wrap .crh-form .crh-check {
	flex-direction: row;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	color: var(--crh-text);
}
.crh-wrap .crh-form .crh-check input { margin-top: 0; }
.crh-wrap .crh-form small { color: var(--crh-text-muted); font-size: .82rem; }
.crh-wrap .crh-form .crh-btn {
	margin-top: 18px;
	width: 100%;
}
@media (min-width: 720px) {
	.crh-wrap .crh-form .crh-btn { width: auto; }
}

/* Empty state */
.crh-wrap .crh-empty {
	background: #fff;
	border: 1px solid var(--crh-border);
	border-radius: 24px;
	padding: 40px;
	text-align: center;
	box-shadow: 0 12px 32px rgba(11,31,58,.05);
}
.crh-wrap .crh-empty h2 { color: var(--crh-primary); }

/* Alertas */
.crh-wrap .crh-alert {
	border-radius: 14px;
	padding: 14px 18px;
	margin-bottom: 18px;
	font-weight: 600;
}
.crh-wrap .crh-success {
	background: rgba(20,184,166,0.12);
	color: var(--crh-accent-deep);
	border: 1px solid rgba(20,184,166,0.3);
}
.crh-wrap .crh-error {
	background: rgba(186,26,26,0.08);
	color: #a8181f;
	border: 1px solid rgba(186,26,26,0.25);
}

/* Botões do plugin (mantém o look correto) */
.crh-wrap .crh-btn-outline {
	background: transparent !important;
	color: #fff !important;
	border: 2px solid rgba(255,255,255,0.5);
}
.crh-wrap .crh-hero .crh-btn-outline:hover {
	background: rgba(255,255,255,0.12) !important;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.crh-pagination {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
}
.crh-pagination .nav-links {
	display: flex;
	gap: .35rem;
	flex-wrap: wrap;
}
.crh-pagination .page-numbers {
	display: inline-flex;
	min-width: 38px;
	height: 38px;
	padding: 0 .75rem;
	align-items: center;
	justify-content: center;
	border-radius: var(--crh-radius);
	background: #fff;
	color: var(--crh-text);
	border: 1px solid var(--crh-border);
}
.crh-pagination .page-numbers.current {
	background: var(--crh-primary);
	color: #fff;
	border-color: var(--crh-primary);
}

/* ==========================================================================
   Utilities & misc
   ========================================================================== */

@media (max-width: 700px) {
	.crh-section-head--row { flex-direction: column; align-items: flex-start; }
}
