/* ============================================================
   FORUM CONSULTING — forum.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1A2B4A;
  --navy-deep:  #0E1B30;
  --navy-mid:   #243556;
  --gold:       #B8965A;
  --gold-light: #D4AF78;
  --gold-pale:  #F0E8D8;
  --cream:      #F7F4EF;
  --white:      #FFFFFF;
  --gray-100:   #F2F0EC;
  --gray-300:   #C8C4BC;
  --gray-500:   #8A8680;
  --gray-700:   #4A4640;
  --text-body:  #2C2820;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body.forum-page {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

/* Ocultar elementos padrão do WP nesta página */
body.forum-page .site-header,
body.forum-page .site-footer,
body.forum-page #wpadminbar ~ * > header,
body.forum-page .wp-block-template-part { display: none !important; }

/* ── LANGUAGE SWITCHER ─────────────────────────────── */
.lang-switcher {
  display: flex;
  gap: 0;
  align-items: center;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 7px;
  transition: color 0.2s;
  position: relative;
}
.lang-btn::after {
  content: '|';
  position: absolute;
  right: 0;
  color: rgba(255,255,255,0.15);
}
.lang-btn:last-child::after { display: none; }
.lang-btn:hover,
.lang-btn.active { color: var(--gold-light); }

/* ── NAV ────────────────────────────────────────────── */
.fc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.fc-nav.scrolled {
  background: rgba(10,17,28,0.93);
  backdrop-filter: blur(14px);
}
.fc-nav-logo img {
  height: 100px;
  display: block;
  filter: brightness(0) invert(1);
}
.fc-nav-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.05em;
}
.fc-nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.fc-nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.fc-nav-links a:hover { color: var(--gold-light); }
.fc-nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.fc-nav-cta {
  background: transparent;
  border: 1px solid rgba(184,150,90,0.55);
  color: var(--gold-light);
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.fc-nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Hamburguer mobile */
.fc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.fc-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s;
}

/* ── HERO ────────────────────────────────────────────── */
.fc-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10vh;
}
.fc-slides {
  position: absolute;
  inset: 0;
}
.fc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.fc-slide.active { opacity: 1; }
.fc-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,17,28,0.3) 0%,
    rgba(10,17,28,0.22) 40%,
    rgba(10,17,28,0.72) 100%
  );
}
.fc-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  max-width: 900px;
}
.fc-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fc-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.fc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.fc-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.fc-hero-sub {
  font-size: 15.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.fc-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.fc-btn-primary {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s;
  display: inline-block;
}
.fc-btn-primary:hover { background: var(--gold-light); color: var(--white); }
.fc-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.32);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.fc-btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.fc-hero-indicators {
  position: absolute;
  bottom: 3rem;
  right: 8vw;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.fc-dot {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
  padding: 0;
}
.fc-dot.active {
  background: var(--gold);
  width: 40px;
}
.fc-hero-location {
  position: absolute;
  bottom: 3.1rem;
  left: 8vw;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-weight: 400;
}

/* ── STATS BAR ──────────────────────────────────────── */
.fc-stats {
  background: var(--navy-deep);
  padding: 0 8vw;
  display: flex;
}
.fc-stat {
  flex: 1;
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.fc-stat:last-child { border-right: none; }
.fc-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.fc-stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── SHARED SECTION ─────────────────────────────────── */
.fc-section { padding: 7rem 8vw; }

.fc-section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fc-section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.fc-section-tag.light { color: var(--gold-light); }
.fc-section-tag.light::before { background: var(--gold-light); }

.fc-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.fc-heading em { font-style: italic; color: var(--gold); }
.fc-heading.light { color: var(--white); }
.fc-heading.light em { color: var(--gold-light); }

/* ── SOBRE ──────────────────────────────────────────── */
.fc-sobre {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.fc-sobre-text .fc-lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}
.fc-sobre-text p {
  color: var(--gray-700);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.fc-pillars { display: flex; flex-direction: column; }
.fc-pillar {
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-300);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.fc-pillar:first-child { border-top: 1px solid var(--gray-300); }
.fc-pillar-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 2rem;
}
.fc-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.fc-pillar p { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; }

/* ── SERVIÇOS ───────────────────────────────────────── */
.fc-servicos { background: var(--white); }
.fc-servicos-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.fc-servicos-intro p {
  color: var(--gray-700);
  font-size: 14.5px;
  line-height: 1.8;
  align-self: end;
}
.fc-servicos-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--gray-300);
}
.fc-servico {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--gray-300);
  transition: background 0.3s;
}
.fc-servico:last-child { border-right: none; }
.fc-servico:hover { background: var(--cream); }
.fc-servico-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.fc-servico h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.fc-servico > p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.fc-servico ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fc-servico ul li {
  font-size: 13px;
  color: var(--gray-500);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.fc-servico ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
}

/* ── TRACK RECORD ───────────────────────────────────── */
.fc-tr { background: var(--navy); }
.fc-tr-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.fc-tr-intro p {
  color: rgba(255,255,255,0.5);
  font-size: 14.5px;
  line-height: 1.8;
}
.fc-tr-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
}
.fc-tr-card {
  background: var(--navy);
  padding: 2.5rem;
  transition: background 0.25s;
}
.fc-tr-card:hover { background: var(--navy-mid); }
.fc-tr-type {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-tr-type::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(184,150,90,0.22);
}
.fc-tr-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.9rem;
}
.fc-tr-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.fc-tr-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.fc-tr-tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 8px;
}
.fc-tr-metrics {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-top: 1px;
}
.fc-tr-metric {
  background: rgba(255,255,255,0.03);
  padding: 1.8rem 2.5rem;
  text-align: center;
}
.fc-tr-metric-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.fc-tr-metric-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 0.4rem;
  display: block;
}

/* ── EQUIPA ─────────────────────────────────────────── */
.fc-equipa { background: var(--cream); }
.fc-equipa-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
.fc-pessoa {
  background: var(--white);
  padding: 3rem 2.5rem;
  border: 1px solid var(--gray-300);
  transition: border-color 0.25s, transform 0.25s;
}
.fc-pessoa:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.fc-avatar {
  width: 60px;
  height: 60px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.fc-pessoa h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.fc-pessoa-role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.fc-pessoa-bio {
  font-size: 13.5px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.fc-creds { display: flex; flex-direction: column; gap: 0.3rem; }
.fc-creds span {
  font-size: 12px;
  color: var(--gray-500);
  padding-left: 0.8rem;
  position: relative;
  line-height: 1.5;
}
.fc-creds span::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.fc-equipa-note {
  margin-top: 2.5rem;
  font-size: 12px;
  color: var(--gray-500);
  font-style: italic;
  text-align: center;
}

/* ── PROCESSO ───────────────────────────────────────── */
.fc-processo { background: var(--white); }
.fc-processo-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--gray-300);
  margin-top: 4rem;
}
.fc-passo {
  padding: 2.8rem 2.5rem;
  border-right: 1px solid var(--gray-300);
}
.fc-passo:last-child { border-right: none; }
.fc-passo-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.fc-passo h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.fc-passo p { font-size: 13.5px; color: var(--gray-500); line-height: 1.7; }

/* ── PARCEIROS ──────────────────────────────────────── */
.fc-parceiros {
  background: var(--navy-deep);
  padding: 4rem 8vw;
  text-align: center;
}
.fc-parceiros-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 2.5rem;
}
.fc-parceiros-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.fc-parceiro {
  padding: 1.5rem 3rem;
  border: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.06em;
  font-style: italic;
  margin: -1px -1px 0 0;
}
.fc-parceiros-note {
  margin-top: 2rem;
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.05em;
}

/* ── CONTACTO ───────────────────────────────────────── */
.fc-contacto { background: var(--cream); }
.fc-contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}
.fc-contacto-info .fc-lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 2.5rem;
}
.fc-contacto-details { display: flex; flex-direction: column; gap: 1.5rem; }
.fc-contacto-item label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.fc-contacto-item p { font-size: 14.5px; color: var(--navy); }

.fc-form .fc-form-group { margin-bottom: 1.15rem; }
.fc-form .fc-form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.fc-form input,
.fc-form select,
.fc-form textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-300);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  border-radius: 0;
}
.fc-form input:focus,
.fc-form select:focus,
.fc-form textarea:focus { border-color: var(--gold); }
.fc-form textarea { resize: vertical; min-height: 110px; }
.fc-form .fc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fc-form-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
  transition: background 0.25s;
}
.fc-form-submit:hover { background: var(--gold); }
.fc-form-msg {
  margin-top: 1rem;
  font-size: 13px;
  padding: 10px 14px;
  display: none;
}
.fc-form-msg.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 3px solid #2e7d32;
}
.fc-form-msg.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border-left: 3px solid #c62828;
}

/* ── FOOTER ─────────────────────────────────────────── */
.fc-footer {
  background: var(--navy-deep);
  padding: 3rem 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.fc-footer-logo img {
  height: 100px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}
.fc-footer-logo span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}
.fc-footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.fc-footer-nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.fc-footer-nav a:hover { color: rgba(255,255,255,0.65); }
.fc-footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.03em;
  width: 100%;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .fc-nav-links { gap: 1.8rem; }
}

@media (max-width: 900px) {
  .fc-nav-links { display: none; }
  .fc-hamburger { display: flex; }
  .fc-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,17,28,0.97);
    padding: 2rem 6vw;
    gap: 1.5rem;
  }

  .fc-sobre,
  .fc-servicos-intro,
  .fc-tr-intro,
  .fc-contacto-grid { grid-template-columns: 1fr; gap: 3rem; }

  .fc-servicos-grid,
  .fc-tr-grid { grid-template-columns: 1fr; }
  .fc-servico { border-right: none; border-bottom: 1px solid var(--gray-300); }
  .fc-servico:last-child { border-bottom: none; }
  .fc-tr-metrics { grid-template-columns: repeat(2,1fr); }

  .fc-equipa-grid { grid-template-columns: 1fr; }
  .fc-processo-grid { grid-template-columns: 1fr 1fr; }
  .fc-passo { border-right: none; border-bottom: 1px solid var(--gray-300); }

  .fc-stats { flex-wrap: wrap; }
  .fc-stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }

  .fc-section { padding: 5rem 6vw; }
  .fc-sobre { padding: 5rem 6vw; }
  .fc-tr { padding: 5rem 6vw; }
  .fc-contacto { padding: 5rem 6vw; }
  .fc-footer { padding: 2.5rem 6vw; }

  .fc-form .fc-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .fc-processo-grid { grid-template-columns: 1fr; }
  .fc-hero-title { font-size: 2.6rem; }
  .fc-footer { flex-direction: column; align-items: flex-start; }
}

/* ── ADIÇÕES v2 — Secções estáticas ────────────────── */

/* Botão outline dark (fundo claro) */
.fc-btn-outline-dark {
  display: inline-block;
  margin-top: 2rem;
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(26,43,74,0.35);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}
.fc-btn-outline-dark:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Italic lead (sobre) */
.fc-lead-italic {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Serviços — CTA dentro do card */
.fc-servico-cta {
  display: inline-block;
  margin-top: 2rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s, letter-spacing 0.2s;
}
.fc-servico-cta:hover {
  color: var(--navy);
  letter-spacing: 0.12em;
}

/* Track record — CTA row */
.fc-tr-cta-row {
  text-align: center;
  margin-top: 3.5rem;
}

/* Equipa — header e footer */
.fc-equipa-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.fc-equipa-header p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.75;
  align-self: end;
}
.fc-equipa-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-300);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Processo — header e CTA */
.fc-processo-header {
  margin-bottom: 4rem;
}
.fc-processo-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* Contacto — layout atualizado */
.fc-contacto-top {
  margin-bottom: 4rem;
}
.fc-contacto-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
  font-style: italic;
  font-family: var(--font-display);
}
.fc-contacto-item a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.fc-contacto-item a:hover { color: var(--gold); }

/* Sobre — intro com CTA */
.fc-sobre-text p[data-i18n="sobre.p1"] {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* Responsive additions */
@media (max-width: 900px) {
  .fc-equipa-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .fc-equipa-footer { flex-direction: column; align-items: flex-start; }
  .fc-tr-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .fc-tr-grid { grid-template-columns: 1fr; }
}

/* Equipa — 2 membros centrados */
.fc-equipa-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .fc-equipa-grid--2col { grid-template-columns: 1fr; }
}
