/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --navy:         #0B2545;
  --navy-mid:     #163870;
  --navy-light:   #1E4D99;
  --navy-dark:    #061830;
  --gold:         #C9A84C;
  --gold-lt:      #E8C96A;
  --gold-pale:    #F5E9C8;
  --green:        #1A5C34;
  --bg:           #F8F7F4;
  --bg2:          #EEECEA;
  --bg-blue:      #EDF1F8;
  --text:         #111827;
  --text-mid:     #374151;
  --text-soft:    #6B7280;
  --white:        #FFFFFF;
  --border:       #DDD9D3;
  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --font:         "Barlow", system-ui, sans-serif;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font);
  font-size: 1.02rem;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; }

/* =============================================
   TYPOGRAPHY UTILITIES
============================================= */
.serif           { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: .01em; text-transform: uppercase; }
.eyebrow         { font-family: var(--font); font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow-gold    { color: var(--gold); }
.eyebrow-gold-lt { color: var(--gold-lt); }
.eyebrow-navy    { color: var(--navy-light); }

.rule        { display: block; width: 44px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1rem 0 1.8rem; }
.rule-center { margin-left: auto; margin-right: auto; }

.section      { padding: 7rem 0; }
.body-text    { font-size: 1rem; color: var(--text-soft); line-height: 1.85; margin-bottom: 1rem; }
.section-lead { color: var(--text-soft); font-size: .93rem; line-height: 1.75; margin-bottom: 1.8rem; }

/* Section titles — modifier classes avoid inline styles */
.section-title          { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-top: .5rem; margin-bottom: .5rem; }
.section-title--navy    { color: var(--navy); }
.section-title--white   { color: var(--white); }

.card-title { font-size: 1.5rem; color: var(--navy); margin-bottom: 1.8rem; }

/* =============================================
   BUTTONS
============================================= */
.btn-gold,
.btn-white,
.btn-navy,
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .85rem 2rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background .22s, transform .22s, box-shadow .22s;
}
.btn-gold        { background: var(--gold); color: var(--navy-dark); box-shadow: 0 4px 16px rgba(201,168,76,.35); }
.btn-gold:hover  { background: var(--gold-lt); color: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.45); }
.btn-white       { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); font-weight: 600; padding: .82rem 1.9rem; }
.btn-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); color: var(--white); transform: translateY(-2px); }
.btn-navy        { background: var(--navy); color: var(--white); }
.btn-navy:hover  { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); }
.btn-green       { background: var(--green); color: var(--white); }
.btn-green:hover { background: #14472a; color: var(--white); transform: translateY(-2px); }
.btn-block       { width: 100%; justify-content: center; padding: 1rem; font-size: .9rem; }

/* =============================================
   TOP BAR
============================================= */
#topbar         { background: var(--navy-dark); padding: .75rem 0; font-size: .78rem; color: rgba(255,255,255,.58); }
#topbar a       { color: rgba(255,255,255,.58); text-decoration: none; transition: color .2s; }
#topbar a:hover { color: var(--gold-lt); }

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem .75rem;
}
.topbar-left  { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.topbar-divider { opacity: .35; margin: 0 .2rem; }

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: rgba(255,255,255,.58);
  text-decoration: none;
  transition: color .2s;
}
.topbar-link i   { color: var(--gold-lt); }
.topbar-link:hover { color: var(--gold-lt); }

.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  font-size: .82rem;
  color: var(--white) !important;
  transition: all .2s;
}
.topbar-social:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark) !important; }

/* =============================================
   NAVBAR
============================================= */
#navbar {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  padding: .58rem 0;
  transition: box-shadow .3s;
  z-index: 1000;
}
#navbar.scrolled           { box-shadow: 0 2px 24px rgba(11,37,69,.10); }
#navbar .navbar-brand img  { height: 54px; }
#navbar .nav-link {
  font-family: var(--font);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--navy) !important;
  padding: .5rem .9rem !important;
  position: relative;
  transition: color .2s;
}
#navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: .9rem;
  right: .9rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
  border-radius: 1px;
}
#navbar .nav-link:hover::after,
#navbar .nav-link.active::after { transform: scaleX(1); }

/* =============================================
   HERO
============================================= */
#hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy-dark);
  background-size: cover;
  background-position: center 40%;
  transform: scaleX(-1);
}
#hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(6,24,48,.94)   0%,
    rgba(11,37,69,.82)  40%,
    rgba(26,58,100,.50) 70%,
    rgba(26,92,52,.30)  100%
  );
}
#hero-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -50deg,
    transparent           0px,
    transparent           38px,
    rgba(201,168,76,.025) 38px,
    rgba(201,168,76,.025) 40px
  );
}
#hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(54% 100% at 50% 100%);
  z-index: 3;
}
#hero .hero-inner { position: relative; z-index: 2; padding: 6rem 0 7rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-lt);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .36rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(4px);
}
#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--gold-lt);
  line-height: 1.0;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
#hero h1 em { font-style: italic; color: var(--white); }

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.80);
  max-width: 520px;
  line-height: 1.82;
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.hero-credit   { position: absolute; bottom: 88px; right: 16px; z-index: 4; font-size: .58rem; color: rgba(255,255,255,.28); }
.hero-credit a { color: inherit; text-decoration: underline; }

/* =============================================
   SOBRE
============================================= */
#sobre { background: var(--white); }

.img-frame { position: relative; height: 100%; }
.img-frame::before {
  content: "";
  position: absolute;
  top: -14px; left: -14px; right: 14px; bottom: 10px;
  /*
  border: 3px solid var(--gold);
  border-radius: 10px;
  */
  z-index: 0;
}
.img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(11,37,69,.18);
  background: var(--bg);
}

/* =============================================
   CATEGORIAS
============================================= */
#cats { background: var(--navy); position: relative; overflow: hidden; }
#cats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30,77,153,.6) 0%, transparent 70%);
  pointer-events: none;
}
.cats-container { position: relative; z-index: 1; }

.cat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 14px;
  padding: 2.4rem 1.8rem;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .3s, background .3s, border-color .3s, box-shadow .3s;
}
.cat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .35s;
}
.cat-card:hover         { background: rgba(201,168,76,.08); border-color: rgba(201,168,76,.45); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.cat-card:hover::before { transform: scaleX(1); }

.cat-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
  transition: transform .3s;
}
.cat-card:hover .cat-icon { transform: scale(1.08); }
.cat-card h5 { font-family: var(--font-display); color: var(--white); font-size: 1.3rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; margin-bottom: .5rem; }
.cat-card p  { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.68; margin: 0; }

/* =============================================
   CONTRIBUIÇÕES
============================================= */
#contrib { background: var(--bg); }

.thumb-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
  box-shadow: 0 12px 48px rgba(11,37,69,.14);
}
.thumb-card img { width: 100%; height: 100%; object-fit: cover; }

.thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.thumb-overlay-dark { background: linear-gradient(170deg, rgba(6,24,48,.88) 0%, rgba(11,37,69,.65) 55%, rgba(26,92,52,.35) 100%); }
.thumb-overlay-blue { background: linear-gradient(170deg, rgba(6,24,48,.90) 0%, rgba(22,56,112,.65) 55%, rgba(30,77,153,.30) 100%); }

.thumb-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(201,168,76,.5);
}
.thumb-overlay h3 { font-family: var(--font-display); color: var(--white); font-size: 1.7rem; font-weight: 700; line-height: 1.05; letter-spacing: .02em; text-transform: uppercase; margin-bottom: .4rem; }
.thumb-overlay p  { color: rgba(255,255,255,.65); font-size: .85rem; line-height: 1.6; margin: 0; }

.table-wrap { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(11,37,69,.10); margin-bottom: 2rem; border: 1px solid var(--border); }

.contrib-table                          { width: 100%; border-collapse: collapse; }
.contrib-table thead tr                 { background: var(--navy); }
.contrib-table thead th                 { font-family: var(--font); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-lt); padding: 1rem 1.5rem; border: none; }
.contrib-table tbody tr                 { transition: background .16s; }
.contrib-table tbody tr:nth-child(odd)  { background: var(--white); }
.contrib-table tbody tr:nth-child(even) { background: var(--bg-blue); }
.contrib-table tbody tr:hover           { background: var(--gold-pale); }
.contrib-table tbody td                 { padding: .85rem 1.5rem; font-size: .9rem; border: none; border-bottom: 1px solid var(--bg2); }
.contrib-table tbody tr:last-child td   { border-bottom: none; }
.contrib-table .col-func                { font-weight: 600; color: var(--navy); }
.contrib-table .col-valor               { font-weight: 700; font-size: .92rem; color: var(--green); }
.contrib-table tr.featured              { background: var(--navy) !important; }
.contrib-table tr.featured .col-func    { color: rgba(255,255,255,.8); }
.contrib-table tr.featured .col-valor   { color: var(--gold-lt); }

/* =============================================
   RESE
============================================= */
#rese { background: var(--white); }

.feature-list             { background: var(--bg); border-radius: 14px; padding: 1.8rem; margin-bottom: 1.8rem; }
.feature-item             { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.feature-item:first-child { padding-top: 0; }
.feature-item:last-child  { border-bottom: none; padding-bottom: 0; }

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--bg-blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  border: 1px solid var(--border);
}
.feature-item h6 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--navy); margin-bottom: .2rem; }
.feature-item p  { font-size: .84rem; color: var(--text-soft); margin: 0; line-height: 1.65; }

/* =============================================
   BENEFÍCIOS
============================================= */
#ben { background: var(--bg-blue); }

.benefit-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.6rem 1.5rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  border-left: 4px solid var(--gold);
  box-shadow: 0 1px 4px rgba(11,37,69,.08);
  transition: box-shadow .25s, transform .25s;
}
.benefit-card:hover    { box-shadow: 0 4px 20px rgba(11,37,69,.10); transform: translateX(4px); }
.benefit-card--last    { margin-bottom: 0; }

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}
.benefit-card h5 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--navy); margin-bottom: .3rem; }
.benefit-card p  { font-size: .86rem; color: var(--text-soft); line-height: 1.72; margin: 0; }

/* =============================================
   PARCEIROS
============================================= */
#par { background: var(--bg); }

.partner-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(11,37,69,.08);
  border: 1px solid var(--border);
  height: 100%;
  transition: transform .3s, box-shadow .3s;
}
.partner-card:hover { transform: translateY(-6px); box-shadow: 0 12px 48px rgba(11,37,69,.14); }

.partner-logo        { width: 100%; height: 170px; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.partner-logo img    { max-width: 100%; max-height: 100%; object-fit: contain; }
.partner-logo--white { background: var(--white); }
.partner-logo--dark  { background: #000; padding: .8rem; }

.partner-body    { padding: 1.3rem; border-top: 3px solid var(--gold); }
.partner-body h5 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--navy); margin-bottom: .25rem; }
.partner-body p  { font-size: .82rem; color: var(--text-soft); margin: 0; line-height: 1.6; }

/* =============================================
   BANCO DE VAGAS
============================================= */
#vagas {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(6,24,48,.93) 0%, rgba(11,37,69,.82) 50%, rgba(26,92,52,.55) 100%),
    url("./img/banco_vagas.jpg") center / cover no-repeat;
}
#vagas::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(52% 100% at 50% 0%);
}
#vagas::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--bg-blue);
  clip-path: ellipse(52% 100% at 50% 100%);
}
#vagas .vagas-inner { position: relative; z-index: 2; }
.vagas-lead {
  max-width: 540px;
  margin: 0 auto;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.82;
}

/* =============================================
   CONTATO
============================================= */
#contact { background: var(--bg-blue); }

.info-card             { background: var(--white); border-radius: 14px; padding: 2.4rem; box-shadow: 0 4px 20px rgba(11,37,69,.10); height: 100%; }
.info-row              { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--bg2); }
.info-row:last-of-type { border-bottom: none; margin-bottom: 1.6rem; }

.info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .95rem;
}
.info-row h6      { font-size: .76rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text-mid); margin-bottom: .2rem; font-family: var(--font); }
.info-row p,
.info-row a       { font-size: .9rem; color: var(--text-soft); text-decoration: none; line-height: 1.6; margin: 0; transition: color .2s; }
.info-row a:hover { color: var(--navy); }

.map-wrap { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(11,37,69,.10); border: 1px solid var(--border); }

.form-card { background: var(--white); border-radius: 14px; padding: 2.4rem; box-shadow: 0 4px 20px rgba(11,37,69,.10); height: 100%; }
.form-card label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
  display: block;
  margin-bottom: .3rem;
}
.form-card .form-control,
.form-card textarea {
  font-family: var(--font);
  font-size: .9rem;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  padding: .78rem 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-card .form-control:focus,
.form-card textarea:focus {
  border-color: var(--navy-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,77,153,.10);
  outline: none;
}

/* =============================================
   DIRETORIA
============================================= */
#diretoria {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
#diretoria::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(30,77,153,.45) 0%, transparent 70%);
  pointer-events: none;
}
.dir-container { position: relative; z-index: 1; }

.dir-header { text-align: center; margin-bottom: 3rem; }

.dir-badge {
  display: inline-block;
  font-family: var(--font);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  padding: .35rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.dir-title { font-family: var(--font-display); color: var(--white); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .2rem; }
.dir-sub   { color: rgba(255,255,255,.42); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; }

.dir-card { background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.18); border-radius: 12px; padding: 1.8rem; height: 100%; }

.dir-card-title {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.dir-card-title--mt { margin-top: 1.4rem; margin-bottom: .8rem; }

.dir-item            { display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem .8rem; padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.dir-item:last-child { border-bottom: none; padding-bottom: 0; }
.dir-role            { font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); flex-shrink: 0; min-width: 130px; }
.dir-name            { font-size: .9rem; color: rgba(255,255,255,.82); line-height: 1.4; }

.dir-list            { list-style: none; padding: 0; margin: 0; }
.dir-list li         { display: flex; align-items: center; gap: .55rem; padding: .52rem 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .88rem; color: rgba(255,255,255,.75); }
.dir-list li:last-child { border-bottom: none; padding-bottom: 0; }
.dir-list li::before { content: ""; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; opacity: .65; }

.dir-meeting-photo     { border-radius: 10px; overflow: hidden; margin-bottom: 1.2rem; box-shadow: 0 8px 32px rgba(0,0,0,.35); }
.dir-meeting-photo img { width: 100%; height: 180px; object-fit: cover; display: block; }

/* =============================================
   FOOTER
============================================= */
.tristrip { height: 4px; background: linear-gradient(90deg, var(--navy-dark), var(--gold), var(--green), var(--gold), var(--navy-dark)); }

footer           { background: var(--navy-dark); padding: 5rem 0 0; }
.footer-logo img { height: 48px; }
.footer-desc     { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.78; margin-top: 1rem; }

footer h6 {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
footer ul            { list-style: none; padding: 0; margin: 0; }
footer ul li         { margin-bottom: .55rem; }
footer ul li a       { font-size: .88rem; color: rgba(255,255,255,.42); text-decoration: none; transition: color .2s; }
footer ul li a:hover { color: var(--gold-lt); }

.footer-contact-item   { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .9rem; font-size: .86rem; color: rgba(255,255,255,.42); }
.footer-contact-item i { color: var(--gold); font-size: .74rem; margin-top: .22rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.42); text-decoration: none; transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold-lt); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.48);
  text-decoration: none;
  font-size: .88rem;
  transition: all .2s;
  margin-right: .4rem;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.footer-affiliates {
  margin-top: 3rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-affiliates-label {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-align: center;
}
.footer-affiliates-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.affiliate-logo       { display: inline-flex; align-items: center; opacity: .75; transition: opacity .2s; filter: brightness(0) invert(1); }
.affiliate-logo:hover { opacity: 1; }
.affiliate-logo img   { height: 38px; width: auto; display: block; }

.footer-bottom {
  margin-top: 3.5rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .76rem;
  color: rgba(255,255,255,.22);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
}

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal         { opacity: 0; transform: translateY(26px); transition: opacity .72s ease, transform .72s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1        { transition-delay: .08s; }
.delay-2        { transition-delay: .16s; }
.delay-3        { transition-delay: .24s; }
.delay-4        { transition-delay: .32s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {
  .thumb-card        { min-height: 280px; }
  .img-frame::before { display: none; }
  .img-frame img     { height: 360px; }
}
@media (max-width: 767px) {
  #hero              { min-height: 85vh; }
  .section           { padding: 5rem 0; }
  .info-card,
  .form-card         { padding: 1.6rem; }
  .dir-role          { min-width: unset; width: 100%; }
  .topbar-right      { display: none; }
}

/* =============================================
   COMPLEMENTOS (classes referenciadas no HTML)
============================================= */

/* Hero inner wrapper — z-index sobre as camadas absolutas */
.hero-inner { position: relative; z-index: 2; padding: 6rem 0 7rem; }

/* Vagas inner — garante z-index sobre os pseudo-elementos */
.vagas-inner { position: relative; z-index: 2; }

/* Linha destacada da tabela de contribuições */
.contrib-table tr.featured              { background: var(--navy) !important; }
.contrib-table tr.featured .col-func    { color: rgba(255,255,255,.8); font-weight: 600; }
.contrib-table tr.featured .col-valor   { color: var(--gold-lt); font-weight: 700; }
