:root {
  --cc-dark: #013026;
  --cc-deep: #045542;
  --cc-green: #118E3A;
  --cc-soft-green: #32AB58;
  --cc-light: #F1EFEE;
  --cc-yellow: #edeb64;
  --cc-white: #ffffff;
  --cc-text: #15312b;
  --cc-muted: #60736e;
  --cc-border: rgba(1, 48, 38, 0.13);
  --cc-shadow: 0 24px 60px rgba(1, 48, 38, 0.16);
  --cc-radius-xl: 30px;
  --cc-radius-lg: 22px;
  --cc-radius-md: 16px;
  --cc-radius-sm: 12px;
  --cc-max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cc-text);
  background: var(--cc-light);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--cc-max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(1, 48, 38, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cc-white);
  font-weight: 850;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cc-yellow), #fff8a7);
  color: var(--cc-dark);
  box-shadow: 0 14px 30px rgba(237, 235, 100, 0.22);
  font-weight: 950;
}

.brand span:last-child {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255,255,255,.78);
  font-weight: 700;
  font-size: .93rem;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cc-white);
  background: rgba(255,255,255,.09);
}

.nav-toggle {
  display: none;
  border: 0;
  background: rgba(255,255,255,.09);
  color: var(--cc-white);
  border-radius: 12px;
  padding: 10px 12px;
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 850;
  transition: .18s ease;
  text-align: center;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--cc-yellow); color: var(--cc-dark); box-shadow: 0 18px 34px rgba(237, 235, 100, .2); }
.btn-secondary { background: var(--cc-white); color: var(--cc-dark); }
.btn-green { background: var(--cc-green); color: var(--cc-white); box-shadow: 0 18px 34px rgba(17, 142, 58, .2); }
.btn-outline { background: transparent; color: var(--cc-white); border: 1px solid rgba(255,255,255,.24); }
.btn-ghost { background: rgba(1,48,38,.06); color: var(--cc-dark); }
.btn-block { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 76px;
  background:
    radial-gradient(circle at 82% 20%, rgba(237,235,100,.24), transparent 26%),
    radial-gradient(circle at 12% 28%, rgba(50,171,88,.28), transparent 28%),
    linear-gradient(140deg, var(--cc-dark), var(--cc-deep));
  color: var(--cc-white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -38% -20%;
  height: 260px;
  background: rgba(241,239,238,.06);
  transform: rotate(-3deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cc-yellow);
  background: rgba(237,235,100,.1);
  border: 1px solid rgba(237,235,100,.26);
  padding: 9px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

h1, h2, h3, h4, p { margin-top: 0; }

h1 {
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -0.065em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 14px;
}

h3 {
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.hero p {
  font-size: 1.16rem;
  color: rgba(255,255,255,.82);
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.hero-point {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 16px;
}

.hero-point strong { display: block; font-size: 1.35rem; color: var(--cc-white); }
.hero-point span { color: rgba(255,255,255,.7); font-size: .91rem; }

.hero-card {
  background: rgba(255,255,255,.97);
  color: var(--cc-dark);
  border-radius: var(--cc-radius-xl);
  padding: 22px;
  box-shadow: var(--cc-shadow);
  transform: rotate(1.4deg);
}

.job-preview {
  border-radius: 24px;
  overflow: hidden;
  background: var(--cc-light);
  border: 1px solid var(--cc-border);
}

.job-cover {
  min-height: 185px;
  background:
    linear-gradient(135deg, rgba(1,48,38,.9), rgba(17,142,58,.82)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 12px, transparent 12px 24px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--cc-white);
}

.job-cover .label {
  align-self: flex-start;
  background: var(--cc-yellow);
  color: var(--cc-dark);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 28px;
}

.job-cover h3 { margin: 0; font-size: 1.65rem; }

.job-preview-body { padding: 20px; }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(1,48,38,.07);
  color: var(--cc-dark);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .83rem;
  font-weight: 750;
}

.tag.yellow { background: rgba(237,235,100,.34); }
.tag.green { background: rgba(17,142,58,.13); color: var(--cc-deep); }
.tag.dark { background: var(--cc-dark); color: var(--cc-white); }

.section {
  padding: 76px 0;
}

.section-tight {
  padding: 44px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 620px;
  color: var(--cc-muted);
  margin-bottom: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--cc-white);
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-lg);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(1, 48, 38, 0.07);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(17,142,58,.12);
  color: var(--cc-green);
  font-weight: 950;
  margin-bottom: 16px;
}

.card h3 { margin-bottom: 8px; }
.card p { color: var(--cc-muted); margin-bottom: 0; }

.cta-band {
  background:
    radial-gradient(circle at 88% 20%, rgba(237,235,100,.22), transparent 30%),
    linear-gradient(135deg, var(--cc-dark), var(--cc-deep));
  color: var(--cc-white);
  border-radius: var(--cc-radius-xl);
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}

.cta-band p { color: rgba(255,255,255,.78); margin-bottom: 0; }

.page-hero {
  padding: 58px 0 46px;
  background:
    radial-gradient(circle at 86% 20%, rgba(237,235,100,.2), transparent 26%),
    linear-gradient(145deg, var(--cc-dark), var(--cc-deep));
  color: var(--cc-white);
}

.page-hero p {
  color: rgba(255,255,255,.78);
  max-width: 740px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.toolbar {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr auto;
  gap: 12px;
  background: var(--cc-white);
  border: 1px solid var(--cc-border);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 18px 48px rgba(1,48,38,.08);
  margin-top: -26px;
  position: relative;
  z-index: 3;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid rgba(1,48,38,.15);
  background: var(--cc-white);
  color: var(--cc-text);
  border-radius: 14px;
  min-height: 48px;
  padding: 12px 14px;
  outline: none;
}

.textarea { min-height: 124px; resize: vertical; }
.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--cc-green);
  box-shadow: 0 0 0 4px rgba(17,142,58,.12);
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.job-card {
  background: var(--cc-white);
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(1, 48, 38, 0.07);
  display: flex;
  flex-direction: column;
}

.job-card-cover {
  position: relative;
  min-height: 174px;
  background:
    linear-gradient(135deg, rgba(1,48,38,.9), rgba(17,142,58,.82)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 10px, transparent 10px 20px);
  color: var(--cc-white);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-card-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,48,38,.04), rgba(1,48,38,.74));
}

.job-card-cover > * {
  position: relative;
  z-index: 1;
}

.status-pill {
  align-self: flex-start;
  background: var(--cc-yellow);
  color: var(--cc-dark);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.job-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.job-card h3 { margin-bottom: 7px; }
.job-card .company { color: var(--cc-muted); font-weight: 700; margin-bottom: 12px; }
.job-card .desc { color: var(--cc-muted); font-size: .94rem; margin-bottom: 16px; }
.job-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }

.form-wrap {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 22px;
  align-items: start;
}

.form-side {
  position: sticky;
  top: 100px;
}

.form-box {
  background: var(--cc-white);
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-xl);
  padding: 26px;
  box-shadow: 0 18px 48px rgba(1,48,38,.08);
}

.form-wrap-full {
  grid-template-columns: 1fr;
}

.form-wrap-full .form-box {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 850; color: var(--cc-dark); }
.hint { color: var(--cc-muted); font-size: .84rem; }

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-card {
  border: 1px solid rgba(1,48,38,.13);
  background: rgba(241,239,238,.55);
  border-radius: 18px;
  padding: 16px;
  cursor: pointer;
}

.choice-card input { margin-right: 8px; }
.choice-card strong { display: inline-block; margin-bottom: 4px; }
.choice-card p { color: var(--cc-muted); margin: 0; font-size: .88rem; }

.checkbox-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(237,235,100,.16);
  border: 1px solid rgba(237,235,100,.48);
  padding: 13px;
  border-radius: 16px;
}
.checkbox-line input { margin-top: 4px; }
.checkbox-line span { color: var(--cc-text); font-size: .92rem; }

.notice {
  background: rgba(17,142,58,.1);
  border: 1px solid rgba(17,142,58,.2);
  color: var(--cc-deep);
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 750;
}
.notice.warn {
  background: rgba(237,235,100,.18);
  border-color: rgba(237,235,100,.5);
  color: var(--cc-dark);
}
.notice.danger {
  background: rgba(179,56,56,.1);
  border-color: rgba(179,56,56,.2);
  color: #8a2b2b;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: start;
}

.detail-cover {
  border-radius: var(--cc-radius-xl);
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(1,48,38,.94), rgba(17,142,58,.82)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 14px, transparent 14px 28px);
  color: var(--cc-white);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}
.detail-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.detail-cover::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(1,48,38,.1), rgba(1,48,38,.78)); }
.detail-cover > * { position:relative; z-index:1; }
.detail-cover h1 { font-size: clamp(2.1rem, 4vw, 4.2rem); margin-bottom: 10px; }

.sidebar-card {
  position: sticky;
  top: 100px;
  background: var(--cc-white);
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-lg);
  padding: 22px;
  box-shadow: 0 18px 44px rgba(1,48,38,.08);
}

.kv {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}
.kv div { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid rgba(1,48,38,.08); padding-bottom: 10px; }
.kv span { color: var(--cc-muted); }
.kv strong { text-align: right; }

.list-clean { padding-left: 18px; color: var(--cc-muted); }
.list-clean li { margin-bottom: 7px; }

.table-card { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 13px 12px; border-bottom: 1px solid rgba(1,48,38,.09); text-align: left; vertical-align: top; }
th { color: var(--cc-dark); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
td { color: var(--cc-muted); }

.footer {
  background: var(--cc-dark);
  color: var(--cc-white);
  padding: 44px 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 26px;
}
.footer p, .footer a { color: rgba(255,255,255,.72); }
.footer h4 { margin-bottom: 10px; }
.footer-links { display: grid; gap: 8px; }

.empty-state {
  text-align: center;
  border: 1px dashed rgba(1,48,38,.22);
  background: rgba(255,255,255,.6);
  border-radius: var(--cc-radius-lg);
  padding: 42px 20px;
  color: var(--cc-muted);
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}
.tab-btn {
  border: 1px solid var(--cc-border);
  background: var(--cc-white);
  color: var(--cc-dark);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 850;
  cursor: pointer;
}
.tab-btn.active { background: var(--cc-dark); color: var(--cc-white); }

@media (max-width: 960px) {
  .hero-grid, .form-wrap, .detail-layout { grid-template-columns: 1fr; }
  .hero-card, .form-side, .sidebar-card { position: static; transform: none; }
  .grid-3, .job-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .toolbar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 740px) {
  .nav { min-height: 68px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 68px 16px auto 16px;
    background: var(--cc-dark);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 12px; }
  .hero { padding: 58px 0 52px; }
  .hero-actions, .cta-band { flex-direction: column; align-items: stretch; }
  .hero-points, .grid-2, .grid-3, .job-grid, .form-grid, .choice-row, .toolbar { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .section-head { display: block; }
  .cta-band { padding: 26px; }
  .job-card-actions { grid-template-columns: 1fr; }
  h1 { font-size: 2.55rem; }
}


/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(18, 18, 18, .97);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 -22px 60px rgba(0,0,0,.32);
}
.cookie-inner {
  width: min(var(--cc-max), calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.cookie-copy {
  max-width: 760px;
  font-size: .95rem;
  color: rgba(255,255,255,.88);
}
.cookie-copy strong {
  color: #fff;
  font-weight: 900;
}
.cookie-copy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  min-height: 44px;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 850;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.72);
  background: transparent;
  color: #fff;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn-primary {
  background: var(--cc-yellow);
  color: var(--cc-dark);
  border-color: var(--cc-yellow);
}
.cookie-btn-dark {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(1, 24, 19, .64);
  padding: 22px;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  width: min(680px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  background: var(--cc-light);
  color: var(--cc-text);
  border-radius: 26px;
  box-shadow: 0 34px 90px rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.8);
}
.cookie-modal-head {
  padding: 26px 26px 12px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}
.cookie-modal-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}
.cookie-modal-close {
  border: 0;
  background: rgba(1,48,38,.08);
  color: var(--cc-dark);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-weight: 900;
}
.cookie-modal-body { padding: 0 26px 26px; }
.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(1,48,38,.12);
}
.cookie-option strong { display: block; margin-bottom: 4px; }
.cookie-option p { margin: 0; color: var(--cc-muted); font-size: .94rem; }
.cookie-option input { width: 22px; height: 22px; accent-color: var(--cc-green); }
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.policy-content {
  display: grid;
  gap: 18px;
}
.policy-content .policy-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 18px;
  border-radius: var(--cc-radius-lg);
  background: rgba(1,48,38,.04);
  border: 1px solid rgba(1,48,38,.08);
}
.policy-content .policy-index a {
  color: var(--cc-deep);
  font-weight: 800;
}
.policy-section {
  border-top: 1px solid rgba(1,48,38,.11);
  padding-top: 20px;
}
.policy-section h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
}
.policy-section h3 {
  margin-top: 22px;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 20px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.policy-table th {
  background: rgba(1,48,38,.06);
}
.policy-table th, .policy-table td {
  border-bottom: 1px solid rgba(1,48,38,.09);
  padding: 13px 14px;
  vertical-align: top;
}
.footer-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px !important;
  font-size: .92rem;
}
.footer-mini-links a { color: rgba(255,255,255,.72); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) {
  .cookie-inner { align-items: stretch; flex-direction: column; padding: 18px 0; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .cookie-btn { width: 100%; }
  .cookie-modal-head { padding: 22px 20px 10px; }
  .cookie-modal-body { padding: 0 20px 22px; }
  .policy-content .policy-index { grid-template-columns: 1fr; }
  .cookie-option { grid-template-columns: 1fr; }
}


/* Ajustes visuais solicitados - logo, contraste e títulos */
.brand {
  gap: 14px;
  letter-spacing: 0;
}
.brand-mark { display: none; }
.brand-logo {
  width: clamp(150px, 15vw, 205px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}
.brand-module {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: var(--cc-white);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 850;
  font-size: .88rem !important;
  letter-spacing: .01em;
}
.side-logo {
  width: min(240px, 100%);
  height: auto;
  margin-bottom: 18px;
}
.eyebrow {
  color: var(--cc-deep);
  background: rgba(17,142,58,.08);
  border-color: rgba(17,142,58,.22);
  font-size: .76rem;
}
.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow,
.detail-cover .eyebrow,
.job-cover .label,
.status-pill {
  color: var(--cc-dark);
  background: var(--cc-yellow);
  border-color: rgba(237,235,100,.9);
}
h1 {
  font-size: clamp(2rem, 4.2vw, 4.05rem);
  line-height: 1.03;
  letter-spacing: -0.052em;
}
h2 {
  font-size: clamp(1.6rem, 2.45vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.044em;
}
h3 {
  font-size: clamp(1.08rem, 1.2vw, 1.25rem);
}
.hero {
  padding: 64px 0 58px;
}
.page-hero {
  padding: 46px 0 38px;
}
.hero p,
.page-hero p {
  font-size: 1.02rem;
}
.detail-cover h1 {
  font-size: clamp(1.9rem, 3.3vw, 3.35rem);
}
.policy-section h2,
.cookie-modal-head h2 {
  font-size: clamp(1.25rem, 1.65vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.policy-section h3 {
  font-size: 1.05rem;
}
.policy-content p,
.policy-section p,
.policy-table td,
.policy-table th {
  font-size: .95rem;
}
.btn-primary,
.cookie-btn-primary {
  color: #08271f;
}
.cookie-copy a,
.footer-mini-links a {
  color: #fff;
}
@media (max-width: 740px) {
  .brand-logo { width: 142px; max-height: 46px; }
  .brand-module { display: none; }
  h1 { font-size: clamp(1.9rem, 9vw, 2.7rem); }
  h2 { font-size: clamp(1.42rem, 7vw, 2rem); }
  .hero { padding: 46px 0 42px; }
  .page-hero { padding: 38px 0 32px; }
  .card, .form-box, .sidebar-card { padding: 20px; }
}

/* Redução adicional dos títulos */
.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.65rem);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  max-width: 920px;
}
.section-head h2,
.cta-band h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}
.policy-content > h1,
.policy-content h1 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}
.policy-section h2 {
  font-size: clamp(1.18rem, 1.45vw, 1.48rem);
}
@media (max-width: 740px) {
  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }
}

/* Cadastro completo de currículo */
.compact-hero {
  padding: 38px 0 34px;
}
.hero-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.hero-logo-light {
  width: 210px;
  max-height: 74px;
  object-fit: contain;
  opacity: .98;
}
.candidate-container {
  max-width: 1120px;
}
.candidate-card {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(1,48,38,.08);
  padding: 24px;
}
.candidate-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(1,48,38,.10);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.candidate-card-head h2 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: -0.03em;
}
.candidate-card-head p {
  margin: 0;
  color: var(--cc-muted);
  font-size: .95rem;
}
.btn-danger-soft {
  color: #fff;
  background: #c83c3c;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: .82rem;
}
.candidate-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(1,48,38,.12);
  padding-bottom: 10px;
}
.candidate-tabs .tab-btn {
  border-radius: 12px 12px 0 0;
  background: #fff;
  border: 1px solid rgba(1,48,38,.12);
  color: var(--cc-dark);
  min-height: 42px;
}
.candidate-tabs .tab-btn.active {
  background: var(--cc-deep);
  color: #fff;
  border-color: var(--cc-deep);
}
.tab-panel {
  display: none;
}
.section-title-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 4px 0 16px;
}
.section-title-line h3,
.subsection h4,
.repeat-block h4 {
  margin: 0;
  color: var(--cc-green);
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  letter-spacing: -0.02em;
}
.section-title-line span {
  color: var(--cc-muted);
  font-weight: 700;
  font-size: .9rem;
}
.notice.slim {
  padding: 11px 13px;
  margin-bottom: 16px;
  font-size: .9rem;
}
.dense-grid {
  gap: 12px 16px;
}
.dense-grid .input,
.dense-grid .select,
.dense-grid .textarea {
  min-height: 42px;
  border-radius: 10px;
  background: #fbfbfb;
}
.dense-grid .textarea {
  min-height: 112px;
}
.dense-grid .textarea.large {
  min-height: 150px;
}
.repeat-block {
  border: 1px solid rgba(1,48,38,.10);
  background: rgba(241,239,238,.38);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
}
.repeat-block.soft {
  background: #fff;
}
.repeat-block h4 {
  font-size: 1.05rem;
  color: var(--cc-dark);
  margin-bottom: 14px;
}
.subsection {
  border-top: 1px solid rgba(17,142,58,.24);
  margin: 22px 0 14px;
  padding-top: 16px;
}
.subsection h4 {
  font-size: 1.18rem;
}
.experience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.it-knowledge {
  display: grid;
  gap: 12px;
  color: var(--cc-text);
}
.radio-line,
.inline-checks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--cc-muted);
  font-size: .92rem;
}
.radio-line strong {
  min-width: 110px;
  color: var(--cc-dark);
}
.radio-line label,
.inline-checks label,
.mini-check {
  cursor: pointer;
}
.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px 24px;
  max-height: 520px;
  overflow: auto;
  padding: 16px;
  border: 1px solid rgba(1,48,38,.11);
  border-radius: 18px;
  background: #fff;
}
.mini-check {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.35;
  color: var(--cc-muted);
  font-size: .92rem;
}
.mini-check input {
  margin-top: 3px;
  accent-color: var(--cc-green);
}
.consent-block {
  margin-top: 18px;
}
.form-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  border-top: 1px solid rgba(1,48,38,.10);
  padding-top: 18px;
}
@media (max-width: 960px) {
  .hero-inline { align-items: flex-start; }
  .hero-logo-light { display: none; }
  .candidate-card-head { flex-direction: column; }
  .interest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 740px) {
  .candidate-card { padding: 18px; border-radius: 20px; }
  .candidate-tabs { gap: 6px; }
  .candidate-tabs .tab-btn { flex: 1 1 calc(50% - 8px); padding: 9px 8px; font-size: .82rem; }
  .section-title-line { display: block; }
  .dense-grid, .experience-grid { grid-template-columns: 1fr; }
  .repeat-block { padding: 14px; }
  .interest-grid { grid-template-columns: 1fr; max-height: 460px; padding: 12px; }
  .form-nav { flex-direction: column; align-items: stretch; }
}


/* Perfis de acesso e painéis */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.profile-card {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 46px rgba(1,48,38,.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.profile-card h2 { font-size: clamp(1.45rem, 2.2vw, 2.15rem); margin: 0; }
.profile-card p { color: var(--cc-muted); margin: 0; }
.profile-card .list-clean { margin: 0 0 6px; }
.profile-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.profile-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  background: rgba(17,142,58,.12);
  color: var(--cc-green);
  font-weight: 950;
  flex: 0 0 auto;
}
.profile-card.admin .profile-icon { background: rgba(1,48,38,.10); color: var(--cc-dark); }
.profile-card.company .profile-icon { background: rgba(237,235,100,.34); color: var(--cc-dark); }
.profile-auth-note { margin-top: 20px; }
.profile-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.profile-mini-card {
  border: 1px solid rgba(1,48,38,.12);
  background: rgba(241,239,238,.55);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 8px;
  color: var(--cc-text);
}
.profile-mini-card:hover { border-color: rgba(17,142,58,.42); transform: translateY(-1px); }
.profile-mini-card strong { font-size: 1.05rem; }
.profile-mini-card small { color: var(--cc-muted); line-height: 1.4; }
.dashboard-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
}
.dashboard-sidebar {
  position: sticky;
  top: 100px;
}
.dashboard-main {
  display: grid;
  gap: 18px;
}
.profile-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.profile-mini strong,
.profile-mini small { display: block; }
.profile-mini small { color: var(--cc-muted); margin-top: 2px; }
.panel-menu {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.panel-menu a {
  background: rgba(1,48,38,.06);
  border: 1px solid rgba(1,48,38,.08);
  color: var(--cc-dark);
  border-radius: 13px;
  padding: 11px 12px;
  font-weight: 800;
}
.panel-menu a:hover { background: rgba(17,142,58,.10); }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.metric-card {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(1,48,38,.06);
}
.metric-card span,
.metric-card small { color: var(--cc-muted); font-weight: 750; }
.metric-card span { display: block; margin-bottom: 8px; }
.metric-card strong {
  display: block;
  color: var(--cc-dark);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}
.dashboard-section { scroll-margin-top: 110px; }
.muted { color: var(--cc-muted); }
.admin-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.admin-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(1,48,38,.10);
  border-radius: 16px;
  background: rgba(241,239,238,.38);
}
.admin-row strong,
.admin-row small { display: block; }
.admin-row small { color: var(--cc-muted); margin-top: 3px; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(17,142,58,.12);
  color: var(--cc-deep);
  font-weight: 850;
  font-size: .82rem;
  white-space: nowrap;
}
.status-badge.pending { background: rgba(237,235,100,.26); color: #5f5700; }
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.pill-list a,
.pill-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(1,48,38,.07);
  color: var(--cc-dark);
  font-weight: 800;
}
.timeline-list { display: grid; gap: 12px; }
.timeline-list div {
  border-left: 4px solid var(--cc-green);
  padding: 10px 0 10px 14px;
  background: rgba(17,142,58,.06);
  border-radius: 0 14px 14px 0;
}
.timeline-list strong,
.timeline-list span { display: block; }
.timeline-list span { color: var(--cc-muted); margin-top: 4px; }
.empty-state.compact { padding: 26px 18px; }
@media (max-width: 1020px) {
  .profile-grid, .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
  .panel-menu { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 740px) {
  .profile-grid, .profile-mini-grid, .metric-grid { grid-template-columns: 1fr; }
  .profile-card { padding: 20px; }
  .admin-row { grid-template-columns: 1fr; }
  .panel-menu { grid-template-columns: 1fr; }
}

/* Ajustes de navegação, home limpa e login por perfil */
.brand-module { display: none !important; }
.brand-logo { width: clamp(145px, 14vw, 182px); max-height: 52px; }
.hero-grid-single {
  grid-template-columns: minmax(0, 820px);
  justify-content: start;
}
.hero-grid-single .hero-actions,
.hero-grid-single .hero-points { max-width: 760px; }

.auth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.auth-card {
  background: #fff;
  border: 1px solid var(--cc-border);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 20px 48px rgba(1,48,38,.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-card h2 { margin: 0; font-size: clamp(1.35rem, 2vw, 1.9rem); }
.auth-card p { margin: 0; color: var(--cc-muted); }
.auth-card.auth-highlight {
  border-color: rgba(17,142,58,.55);
  box-shadow: 0 22px 58px rgba(17,142,58,.18);
}
.form-mini {
  display: grid;
  gap: 12px;
  margin-top: auto;
}
.form-mini label {
  color: var(--cc-dark);
  font-weight: 800;
  display: grid;
  gap: 6px;
}
.form-mini input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(1,48,38,.16);
  border-radius: 13px;
  padding: 11px 13px;
  color: var(--cc-dark);
  background: #fff;
  outline: none;
}
.form-mini input:focus {
  border-color: rgba(17,142,58,.55);
  box-shadow: 0 0 0 4px rgba(17,142,58,.10);
}
.auth-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--cc-green);
  font-weight: 850;
  padding: 4px 0;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.auth-result .notice { margin: 0; padding: 12px 14px; border-radius: 14px; font-size: .92rem; }
.auth-note { margin-top: 18px; }
@media (max-width: 980px) {
  .auth-grid { grid-template-columns: 1fr; }
  .hero-grid-single { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .auth-card { padding: 20px; border-radius: 22px; }
  .auth-actions { grid-template-columns: 1fr; }
}


/* Vagas geradas automaticamente, sem upload de imagem da vaga */
.generated-job-cover::after,
.generated-detail-cover::after { display: none; }
.generated-cover-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.company-logo-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(255,255,255,.52);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(1,48,38,.18);
}
.company-logo-badge img { position: static; width: 100%; height: 100%; object-fit: contain; padding: 7px; background: #fff; }
.company-logo-badge.text { color: var(--cc-green); font-weight: 950; font-size: 1rem; }
.generated-cover-main small {
  display: block;
  color: rgba(255,255,255,.76);
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: .72rem;
}
.generated-cover-main p { margin: 8px 0 0; color: rgba(255,255,255,.82); font-weight: 750; }
.detail-company-logo {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: #fff;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(1,48,38,.16);
}
.detail-company-logo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.detail-cover-content { position: relative; z-index: 1; }
.login-single-wrap { max-width: 520px; }
.login-single { min-height: 0; }
.admin-row-actions { grid-template-columns: minmax(0, 1fr) minmax(250px, auto); }
.admin-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: flex-end; }
.mini-action {
  border: 0;
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 850;
  cursor: pointer;
  background: rgba(1,48,38,.08);
  color: var(--cc-dark);
}
.mini-action.approve { background: var(--cc-green); color: #fff; }
.mini-action.pause { background: rgba(237,235,100,.5); color: var(--cc-dark); }
.mini-action.remove { background: rgba(179,56,56,.12); color: #8a2b2b; }
.status-badge.closed { background: rgba(1,48,38,.08); color: var(--cc-muted); }
@media (max-width: 740px) {
  .admin-row-actions { grid-template-columns: 1fr; }
  .admin-actions { justify-content: flex-start; }
}

/* Rodapé no padrão ConectaChape */
.footer {
  background: #045542;
  color: #ffffff;
  padding: 34px 0 0;
  margin-top: 44px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr .72fr .86fr 1.05fr;
  gap: 54px;
  align-items: start;
  padding-bottom: 34px;
}
.footer-brand-block p {
  margin: 14px 0 0;
  max-width: 310px;
  color: rgba(255,255,255,.86);
  font-size: .88rem;
  line-height: 1.45;
}
.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 6px;
  padding: 10px 13px;
  min-width: 132px;
  min-height: 58px;
}
.footer-logo-box img {
  width: 142px;
  max-height: 48px;
  object-fit: contain;
}
.footer-column h4 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: .78rem;
  font-weight: 900;
  text-transform: none;
}
.footer-links {
  display: grid;
  gap: 7px;
}
.footer p,
.footer a {
  color: rgba(255,255,255,.84);
}
.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links a,
.footer-email {
  font-size: .82rem;
  line-height: 1.35;
}
.footer-social-title {
  margin-top: 18px !important;
  text-transform: uppercase !important;
  letter-spacing: .05em;
  font-size: .68rem !important;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.footer-socials a {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: .92rem;
  font-weight: 900;
  text-decoration: none;
}
.footer-socials a:hover {
  background: rgba(255,255,255,.28);
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}
.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: .76rem;
}
@media (max-width: 920px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .footer {
    padding-top: 28px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Padronização solicitada: cabeçalho branco e botões no estilo dos sites de cupons/eventos */
.site-header {
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(1,48,38,.08);
  box-shadow: 0 2px 12px rgba(1,48,38,.04);
}
.nav {
  min-height: 64px;
}
.brand {
  color: var(--cc-dark);
}
.brand-logo {
  width: clamp(116px, 11vw, 146px);
  max-height: 42px;
}
.nav-links {
  gap: 8px;
}
.nav-links a {
  color: var(--cc-dark);
  background: transparent;
  border: 1px solid transparent;
  font-size: .86rem;
  font-weight: 850;
  padding: 8px 13px;
  border-radius: 999px;
}
.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: var(--cc-green);
  border-color: var(--cc-green);
  text-decoration: none;
}
.nav-toggle {
  background: var(--cc-green);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 850;
}
.btn {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: -.01em;
  box-shadow: none;
}
.btn-primary,
.btn-green,
.cookie-btn-primary {
  background: var(--cc-green);
  color: #ffffff;
  border: 1px solid var(--cc-green);
  box-shadow: none;
}
.btn-primary:hover,
.btn-green:hover,
.cookie-btn-primary:hover {
  background: var(--cc-deep);
  border-color: var(--cc-deep);
}
.btn-secondary,
.btn-ghost {
  background: #ffffff;
  color: var(--cc-deep);
  border: 1px solid rgba(1,48,38,.18);
  box-shadow: none;
}
.btn-secondary:hover,
.btn-ghost:hover {
  border-color: rgba(17,142,58,.42);
  background: rgba(17,142,58,.06);
}
.btn-outline {
  background: transparent;
  color: var(--cc-deep);
  border: 1px solid rgba(4,85,66,.35);
}
.btn-outline:hover {
  color: #ffffff;
  background: var(--cc-green);
  border-color: var(--cc-green);
}
.hero .btn-primary,
.page-hero .btn-primary,
.cta-band .btn-primary,
.hero .btn-green,
.page-hero .btn-green,
.cta-band .btn-green {
  background: var(--cc-green);
  color: #ffffff;
  border-color: var(--cc-green);
}
.hero .btn-secondary,
.page-hero .btn-secondary,
.cta-band .btn-secondary {
  background: #ffffff;
  color: var(--cc-deep);
  border-color: #ffffff;
}
.hero .btn-outline,
.page-hero .btn-outline,
.cta-band .btn-outline {
  color: #ffffff;
  border-color: rgba(255,255,255,.54);
}
.hero .btn-outline:hover,
.page-hero .btn-outline:hover,
.cta-band .btn-outline:hover {
  background: rgba(255,255,255,.12);
  color: #ffffff;
  border-color: rgba(255,255,255,.72);
}
.job-card-actions .btn,
.form-nav .btn,
.action-row .btn {
  min-height: 40px;
}
.cookie-btn-primary {
  color: #ffffff;
}
.cookie-btn-dark {
  border-color: rgba(255,255,255,.74);
}
@media (max-width: 860px) {
  .nav {
    min-height: 62px;
  }
  .nav-links {
    background: #ffffff;
    border: 1px solid rgba(1,48,38,.10);
    box-shadow: 0 18px 42px rgba(1,48,38,.12);
  }
  .nav-links a {
    color: var(--cc-dark);
  }
  .nav-links a.active,
  .nav-links a:hover {
    color: #ffffff;
  }
}
@media (max-width: 740px) {
  .brand-logo {
    width: 118px;
    max-height: 38px;
  }
  .btn {
    width: auto;
  }
}


/* DEFINITIVO: cabeçalho branco e rodapé ConectaChape */
body .site-header,
body .site-header.site-header-white {
  background: #ffffff !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid rgba(1, 48, 38, .10) !important;
  box-shadow: 0 2px 12px rgba(1, 48, 38, .045) !important;
}
body .site-header .nav,
body .site-header .nav-white {
  min-height: 65px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
body .site-header .brand {
  color: var(--cc-dark) !important;
  display: inline-flex !important;
  align-items: center !important;
}
body .site-header .brand-logo {
  width: 154px !important;
  max-width: 154px !important;
  max-height: 46px !important;
  object-fit: contain !important;
}
body .site-header .nav-links,
body .site-header .nav-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
}
body .site-header .nav-links a,
body .site-header .nav-actions a {
  background: var(--cc-green) !important;
  color: #ffffff !important;
  border: 1px solid var(--cc-green) !important;
  border-radius: 999px !important;
  padding: 8px 15px !important;
  min-height: 35px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: .84rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}
body .site-header .nav-links a:hover,
body .site-header .nav-links a.active,
body .site-header .nav-actions a:hover,
body .site-header .nav-actions a.active {
  background: var(--cc-deep) !important;
  border-color: var(--cc-deep) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}
body .site-header .nav-toggle {
  background: var(--cc-green) !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  padding: 9px 14px !important;
}

body .footer.footer-conectachape,
body .footer {
  background: #045542 !important;
  color: #ffffff !important;
  padding: 32px 0 0 !important;
  margin-top: 44px !important;
  width: 100% !important;
}
body .footer .footer-main {
  display: grid !important;
  grid-template-columns: 1.35fr .72fr .86fr 1.05fr !important;
  gap: 54px !important;
  align-items: start !important;
  padding-bottom: 32px !important;
}
body .footer .footer-brand-block {
  min-width: 0 !important;
}
body .footer .footer-logo-box {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border-radius: 7px !important;
  padding: 10px 13px !important;
  width: 164px !important;
  height: 66px !important;
  min-width: 164px !important;
  min-height: 66px !important;
  overflow: hidden !important;
}
body .footer .footer-logo-box img {
  width: 142px !important;
  max-width: 142px !important;
  max-height: 46px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}
body .footer .footer-brand-block p {
  margin: 14px 0 0 !important;
  max-width: 310px !important;
  color: rgba(255,255,255,.88) !important;
  font-size: .86rem !important;
  line-height: 1.45 !important;
}
body .footer .footer-column h4 {
  margin: 0 0 12px !important;
  color: #ffffff !important;
  font-size: .78rem !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}
body .footer .footer-links {
  display: grid !important;
  gap: 7px !important;
}
body .footer .footer-links a,
body .footer .footer-email,
body .footer p,
body .footer a {
  color: rgba(255,255,255,.86) !important;
  font-size: .82rem !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
}
body .footer a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}
body .footer .footer-social-title {
  margin-top: 18px !important;
  text-transform: uppercase !important;
  letter-spacing: .05em !important;
  font-size: .68rem !important;
}
body .footer .footer-socials {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 8px !important;
}
body .footer .footer-socials a {
  width: 31px !important;
  height: 31px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.18) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: .92rem !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}
body .footer .footer-socials a:hover {
  background: rgba(255,255,255,.28) !important;
  text-decoration: none !important;
}
body .footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18) !important;
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 10px 0 !important;
}
body .footer .footer-bottom p,
body .footer .footer-bottom a {
  margin: 0 !important;
  color: rgba(255,255,255,.86) !important;
  font-size: .76rem !important;
}

@media (max-width: 920px) {
  body .footer .footer-main {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
}
@media (max-width: 860px) {
  body .site-header .nav-toggle { display: inline-flex !important; }
  body .site-header .nav-links,
  body .site-header .nav-actions {
    position: fixed !important;
    inset: 66px 16px auto 16px !important;
    background: #ffffff !important;
    border: 1px solid rgba(1,48,38,.12) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 42px rgba(1,48,38,.12) !important;
    padding: 12px !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  body .site-header .nav-links.open,
  body .site-header .nav-actions.open { display: flex !important; }
  body .site-header .nav-links a,
  body .site-header .nav-actions a { width: 100% !important; justify-content: center !important; border-radius: 12px !important; }
}
@media (max-width: 640px) {
  body .footer { padding-top: 28px !important; }
  body .footer .footer-main { grid-template-columns: 1fr !important; gap: 24px !important; padding-bottom: 28px !important; }
  body .footer .footer-bottom { flex-direction: column !important; align-items: flex-start !important; }
  body .site-header .brand-logo { width: 128px !important; max-width: 128px !important; max-height: 40px !important; }
}
/* FIM DEFINITIVO */

