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

:root {
  --ink: #1a1a2e;
  --ink-muted: #4a4a6a;
  --gold: #c9a96e;
  --gold-light: #f5edd8;
  --rose: #e28156;
  --rose-light: #f7eef3;
  --surface: #faf9f6;
  --white: #ffffff;
  --border: rgba(30,30,60,0.1);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--ink);
}


/* =====================
   PRELOADER
   ===================== */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.preloader-logo {
  width: 150px;
  opacity: 0;
  animation: pl-rise 0.9s ease 0.1s forwards;
}

.preloader-motto {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--rose);
  letter-spacing: 0.03em;
  opacity: 0;
  animation: pl-rise 0.9s ease 0.4s forwards;
}

.preloader-bar {
  width: 100px;
  height: 2px;
  background: rgba(201,169,110,0.25);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: pl-rise 0.5s ease 0.7s forwards;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  animation: pl-progress 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

@keyframes pl-rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pl-progress {
  to { width: 100%; }
}


/* =====================
   NAVEGAÇÃO
   ===================== */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--rose); }

/* Linha horizontal que cresce do centro ao fazer hover */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rose);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.32s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Ponto centralizado na página activa */
.nav-links a.active::before {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
}

.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--rose);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* =====================
   HERO
   ===================== */

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-text {
  padding: 5rem 3rem 5rem 4rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--rose);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.btn-secondary {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.hero-visual {
  height: 92vh;
  position: relative;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(201,169,110,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(139,58,90,0.2) 0%, transparent 50%);
}

.hero-circles {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 260px;
}

.circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
}

.cr1 { inset: 0; }
.cr2 { inset: 20px; border-color: rgba(201,169,110,0.2); }
.cr3 { inset: 40px; border-color: rgba(201,169,110,0.15); }

.circle-center {
  position: absolute;
  inset: 80px;
  background: rgba(201,169,110,0.12);
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cross-symbol {
  width: 40px;
  height: 40px;
  position: relative;
}

.cross-symbol::before,
.cross-symbol::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
}

.cross-symbol::before { width: 3px; height: 100%; left: 50%; transform: translateX(-50%); }
.cross-symbol::after  { height: 3px; width: 100%; top: 35%; transform: translateY(-50%); }

.hero-stat {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* =====================
   FAIXA DE MISSÃO
   ===================== */

.mission-strip {
  background: var(--gold-light);
  padding: 3.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  border-top: 1px solid rgba(201,169,110,0.3);
  border-bottom: 1px solid rgba(201,169,110,0.3);
}

.ms-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}

.ms-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}

.ms-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-muted);
}


/* =====================
   SECÇÕES GERAIS
   ===================== */

.section { padding: 5rem 4rem; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
}

.section-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--rose);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}


/* =====================
   NOTÍCIAS
   ===================== */

.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
}

.news-card {
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.news-card.featured {
  background: var(--ink);
  color: white;
}

.news-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.news-date {
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.news-card.featured .news-date { color: rgba(255,255,255,0.4); }

.news-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.news-card.featured .news-title {
  font-size: 1.6rem;
  color: white;
}

.news-excerpt {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.news-card.featured .news-excerpt { color: rgba(255,255,255,0.55); }

.news-readmore {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-readmore::after { content: '→'; }


/* =====================
   ÁREAS DE ACTUAÇÃO
   ===================== */

.focus { background: var(--surface); }

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.focus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}

.focus-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.fi-rose { background: var(--rose-light); color: var(--rose); }
.fi-gold { background: var(--gold-light); color: #8b6914; }
.fi-teal { background: #e8f5f0; color: #1a7057; }

.focus-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.focus-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--ink-muted);
}


/* =====================
   REDE GLOBAL
   ===================== */

.network {
  background: var(--ink);
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.network-text .section-title { color: white; }

.network-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.network-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.network-logo-box {
  background: rgba(255,255,255,0.04);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-abbr {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.logo-full {
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


/* =====================
   BARRA DE CONTACTO
   ===================== */

.contact-bar {
  background: var(--rose);
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-bar h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: white;
  max-width: 480px;
  line-height: 1.3;
}

.btn-white {
  background: white;
  color: var(--rose);
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}


/* =====================
   RODAPÉ
   ===================== */

footer {
  background: #0f0f1e;
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

footer p {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.3);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  background: #0f0f1e;
  padding: 1rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
}


/* =====================
   ANIMAÇÕES DE SCROLL
   ===================== */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
.delay-5 { transition-delay: 0.60s; }


/* =====================
   NAV — LOGO IMG + HAMBURGER
   ===================== */

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-links a.active { color: var(--rose); }

nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* =====================
   INNER PAGE FADE-IN
   ===================== */

.inner-page { opacity: 0; transition: opacity 0.5s ease; }
.inner-page.loaded { opacity: 1; }


/* =====================
   PAGE HERO (páginas internas)
   ===================== */

.page-hero {
  background: var(--ink);
  padding: 7rem 4rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(226,129,86,0.18) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(201,169,110,0.1) 0%, transparent 50%);
}

.page-hero-inner { position: relative; max-width: 720px; }

.page-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: white;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
}


/* =====================
   QUEM SOMOS
   ===================== */

.qs-origin {
  background: var(--gold-light);
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
  border-bottom: 1px solid rgba(201,169,110,0.3);
}

.qs-origin-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

.qs-origin-quote span {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--rose);
  letter-spacing: 0.08em;
  font-family: 'Inter', sans-serif;
}

.qs-text-block {
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.qs-text-block p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.timeline {
  padding: 5rem 4rem;
  background: var(--surface);
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.tl-item:last-child { border-bottom: none; }

.tl-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--rose);
  text-align: right;
  padding-right: 1.5rem;
  padding-top: 2px;
  position: relative;
}

.tl-year::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
  border: 2px solid white;
}

.tl-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.tl-content p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.qs-team { padding: 5rem 4rem; }

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  max-width: 480px;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: white;
  font-weight: 600;
}

.team-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.team-info .team-role {
  font-size: 0.78rem;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.team-info p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-muted);
}


/* =====================
   MISSÃO E VISÃO
   ===================== */

.mv-grid {
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mv-card {
  border-radius: 6px;
  overflow: hidden;
}

.mv-card-head {
  padding: 2rem 2.5rem;
  background: var(--ink);
}

.mv-card-head .card-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.mv-card-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
}

.mv-card-body {
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
}

.mv-declaration {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.mv-objectives { list-style: none; }

.mv-objectives li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mv-objectives li:last-child { border-bottom: none; margin-bottom: 0; }

.mv-objectives li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  margin-top: 7px;
}

.mv-quote-section {
  background: var(--rose);
  padding: 5rem 4rem;
  text-align: center;
}

.mv-quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: white;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.mv-quote-section cite {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =====================
   NOTÍCIAS
   ===================== */

.news-page { padding: 5rem 4rem; }

.news-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  background: var(--ink);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.nf-text { padding: 3.5rem; }
.nf-text .news-tag { margin-bottom: 0.75rem; }
.nf-text .news-date { color: rgba(255,255,255,0.4); margin-bottom: 1rem; }

.nf-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
  color: white;
  margin-bottom: 1rem;
}

.nf-text .article-body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.nf-side {
  background: rgba(255,255,255,0.04);
  padding: 3.5rem 2.5rem;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nf-side h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.nf-detail {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.nf-detail strong { color: rgba(255,255,255,0.7); display: block; }

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-article-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.news-article-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.nac-head {
  background: var(--surface);
  padding: 1.75rem 1.75rem 0;
}

.nac-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nac-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.nac-body p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--ink-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}


/* =====================
   GALERIA
   ===================== */

.gallery-filters {
  padding: 2rem 4rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
}

.gallery-grid {
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.gallery-item:hover { transform: scale(1.02); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(30,30,60,0.2);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-placeholder svg { width: 32px; opacity: 0.25; }

.gallery-note {
  padding: 2rem 4rem 4rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-align: center;
}


/* =====================
   RECURSOS
   ===================== */

.recursos-intro {
  padding: 3rem 4rem;
  background: var(--gold-light);
  border-bottom: 1px solid rgba(201,169,110,0.3);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-muted);
}

.recursos-section { padding: 4rem 4rem 2rem; }

.recursos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.recurso-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: box-shadow 0.25s ease;
}

.recurso-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); }

.recurso-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--rose);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
}

.recurso-icon.gold { background: var(--gold-light); color: #8b6914; }
.recurso-icon.teal { background: #e8f5f0; color: #1a7057; }

.recurso-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.recurso-info .rec-meta {
  font-size: 0.72rem;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.recurso-info p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--rose);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
}

.btn-download::after { content: '↓'; font-size: 0.9rem; }


/* =====================
   CONTACTOS
   ===================== */

.contact-page {
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.3rem;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.6;
}

.contact-detail-text a:hover { color: var(--rose); }

.contact-social { margin-top: 2.5rem; }

.contact-social h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.social-links { display: flex; gap: 0.75rem; }

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(226,129,86,0.12);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 0.5rem;
}

.btn-submit:hover { background: #c96e42; transform: translateY(-1px); }

.form-success {
  display: none;
  padding: 1.5rem;
  background: #e8f5f0;
  border: 1px solid #1a7057;
  border-radius: 4px;
  color: #1a7057;
  font-size: 0.88rem;
  text-align: center;
}


/* =====================
   RESPONSIVE — TABLET
   ===================== */

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { height: 50vh; }
  .hero-text { padding: 3rem 2rem; }
  .mission-strip { grid-template-columns: 1fr; padding: 3rem 2rem; }
  .section { padding: 4rem 2rem; }
  .news-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .network { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
  .contact-bar { padding: 3rem 2rem; }
  footer { grid-template-columns: 1fr; padding: 3rem 2rem; }
  .footer-bottom { padding: 1rem 2rem; flex-direction: column; gap: 0.5rem; }
  .page-hero { padding: 5rem 2rem 3rem; }
  .mv-grid { grid-template-columns: 1fr; padding: 3rem 2rem; }
  .qs-origin { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 2rem; }
  .qs-text-block { grid-template-columns: 1fr; gap: 0; padding: 3rem 2rem; }
  .timeline { padding: 3rem 2rem; }
  .qs-team { padding: 3rem 2rem; }
  .news-page { padding: 3rem 2rem; }
  .news-featured { grid-template-columns: 1fr; }
  .news-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 2rem; }
  .gallery-filters { padding: 1.5rem 2rem; }
  .recursos-section { padding: 3rem 2rem 1rem; }
  .recursos-grid { grid-template-columns: 1fr; }
  .contact-page { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
}


/* =====================
   RESPONSIVE — MOBILE
   ===================== */

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }

  .nav-links.open { max-height: 500px; }

  .nav-links a {
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.04em;
  }

  /* No mobile esconde os indicadores de hover/activo */
  .nav-links a::after,
  .nav-links a.active::before { display: none; }

  .nav-cta { display: none; }
  .focus-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
}


/* =====================
   CAROUSEL HERO (banners das páginas internas)
   ===================== */

.carousel-hero {
  background: #f5edd8;
  padding: 5.5rem 4rem 4rem;
}

/* Remove o overlay escuro do page-hero base */
.carousel-hero::before { display: none; }

.carousel-hero-inner {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 4rem;
  align-items: center;
}

/* Texto do eyebrow e h1 no fundo claro */
.carousel-hero .page-eyebrow { color: #e28156; opacity: 0.8; }
.carousel-hero h1             { color: var(--ink); margin-bottom: 0; }

/* Área do carousel */
.ch-carousel { margin-top: 2rem; }

.ch-slides-wrap {
  position: relative;
  min-height: 100px;
}

.ch-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.ch-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.ch-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: #e28156;
  line-height: 1.6;
  margin-bottom: 0.65rem;
}

.ch-source {
  font-size: 0.72rem;
  color: var(--ink-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Dots de navegação */
.ch-dots {
  display: flex;
  gap: 7px;
  margin-top: 1.75rem;
  align-items: center;
}

.ch-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(226,129,86,0.25);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.25s ease, width 0.35s ease, border-radius 0.35s ease;
}

.ch-dot.active {
  background: #e28156;
  width: 22px;
  border-radius: 4px;
}

.ch-dot:hover:not(.active) { background: rgba(226,129,86,0.5); }

/* Logo no lado direito */
.ch-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch-right img {
  width: 100%;
  max-width: 190px;
  opacity: 0.55;
}

@media (max-width: 900px) {
  .carousel-hero { padding: 4rem 2rem 3rem; }
  .carousel-hero-inner { grid-template-columns: 1fr; gap: 0; }
  .ch-right { display: none; }
  .ch-slides-wrap { min-height: 120px; }
}


/* =====================
   HERO COM IMAGEM REAL
   ===================== */

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(26,26,46,0.2) 0%,
    rgba(26,26,46,0.55) 40%,
    rgba(26,26,46,0.92) 100%
  );
}

/* Garante que os stats ficam acima da imagem e overlay */
.hero-stat { position: relative; z-index: 2; }


/* =====================
   NEWS CARD COM IMAGEM
   ===================== */

.news-card-img-wrap {
  margin: -2rem -2rem 1.5rem;
  height: 170px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-card.featured .news-card-img-wrap {
  height: 210px;
}

.news-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.news-card:hover .news-card-img-wrap img {
  transform: scale(1.05);
}

/* Imagem no topo dos article cards (noticias.html) */
.nac-img-wrap {
  margin: 0;
  height: 190px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.nac-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.news-article-card:hover .nac-img-wrap img {
  transform: scale(1.05);
}

/* Imagem dentro do featured article (noticias.html) */
.nf-img-wrap {
  height: 100%;
  overflow: hidden;
}

.nf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.news-featured:hover .nf-img-wrap img {
  transform: scale(1.03);
}

/* Imagem ilustrativa em secções (quem-somos) */
.section-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}


/* =====================
   GALERIA — IMAGENS REAIS
   ===================== */

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }


/* =====================
   MARCA DE ÁGUA
   ===================== */

.watermark {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.watermark img {
  width: min(60vmin, 520px);
  height: auto;
  opacity: 0.05;
  mix-blend-mode: multiply;
  user-select: none;
  -webkit-user-drag: none;
}


/* =====================
   SELETOR DE IDIOMAS & ACOES DA NAV
   ===================== */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropbtn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink-muted);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  outline: none;
}

.lang-dropbtn:hover {
  border-color: var(--gold);
  color: var(--ink);
  background-color: var(--surface);
}

.lang-flag {
  font-size: 1rem;
}

.lang-text {
  letter-spacing: 0.05em;
}

.lang-arrow {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
  color: var(--gold);
  margin-top: 1px;
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background-color: var(--white);
  min-width: 140px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
  z-index: 1000;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-dropdown.open .lang-dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.lang-dropdown-content a {
  color: var(--ink-muted);
  padding: 10px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-dropdown-content a:hover {
  background-color: var(--gold-light);
  color: var(--ink);
}

.lang-dropdown-content a.active {
  color: var(--rose);
  font-weight: 600;
  background-color: var(--rose-light);
}

/* Ajustes finos adicionais no mobile */
@media (max-width: 768px) {
  .nav-actions {
    gap: 0.75rem;
  }
  
  .lang-dropbtn {
    padding: 5px 10px;
  }
}

/* =====================
   EMAIL TOAST NOTIFICATION
   ===================== */
.email-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.email-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.toast-icon {
  font-size: 1.1rem;
}

.toast-body {
  display: flex;
  flex-direction: column;
}

.toast-msg {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.toast-email {
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 1px;
}


