/* ===================================================
   SAMT – Sociedade Angolana de Medicina do Trabalho
   Stylesheet Principal
   Paleta: Azul-petróleo #1B5E80 | Dourado #F9A825 | Branco #FFFFFF
   =================================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-dark:   #0D3B52;
  --blue:        #1B5E80;
  --blue-mid:    #1976A8;
  --blue-light:  #E3F2FD;
  --gold:        #F9A825;
  --gold-dark:   #E65100;
  --gold-light:  #FFF9C4;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray-100:    #F1F4F8;
  --gray-200:    #E2E8F0;
  --gray-400:    #A0AEC0;
  --gray-600:    #718096;
  --gray-800:    #2D3748;
  --text:        #1A202C;
  --text-muted:  #4A5568;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow:      0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.18);
  --shadow-blue: 0 4px 24px rgba(27,94,128,.25);
  --shadow-gold: 0 4px 24px rgba(249,168,37,.30);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

img { display: block; max-width: 100%; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: var(--font-sans);
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--yellow {
  background: var(--gold);
  color: var(--blue-dark);
  border-color: var(--gold);
}
.btn--yellow:hover {
  background: #FFB300;
  border-color: #FFB300;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--lg  { padding: 16px 32px; font-size: 16px; }
.btn--sm  { padding: 8px 18px;  font-size: 14px; }
.btn--full { width: 100%; justify-content: center; }

/* ---- SECTION COMMONS ---- */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label--light {
  color: var(--gold);
  background: rgba(249,168,37,.2);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-body {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.8;
}
.section-body strong { color: var(--text); }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 59, 82, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 59, 82, 0.99);
  box-shadow: var(--shadow);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
  padding: 2px;
  background: white;
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  letter-spacing: .5px;
}

.navbar__nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(249,168,37,.1);
}

.nav-cta {
  margin-left: 8px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.navbar__hamburger:hover { background: rgba(255,255,255,.1); }
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 40%, #0E5073 70%, #1A3A4C 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(249,168,37,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(27,118,168,.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,168,37,.15);
  border: 1px solid rgba(249,168,37,.4);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero__title-highlight {
  color: var(--gold);
  display: block;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  max-width: 680px;
  margin: 0 auto;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  text-align: center;
  max-width: 120px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.2);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-hint a {
  color: rgba(255,255,255,.5);
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(249,168,37,.15);
  animation: float linear infinite;
}

@keyframes float {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ================================================================
   PARTNERS BAR
   ================================================================ */
.partners-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}

.partners-bar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.partners-bar__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.partners-bar__logos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
}

.partner-item i {
  color: var(--blue);
  font-size: 16px;
}

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

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: center;
}

.sobre__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.sobre__logo-frame {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), rgba(249,168,37,.1));
  border: 3px solid var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  transition: transform var(--transition);
}
.sobre__logo-frame:hover { transform: scale(1.03) rotate(1deg); }

.sobre__logo {
  width: 210px;
  height: 210px;
  object-fit: contain;
}

.sobre__founded-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-light);
  border: 1px solid rgba(249,168,37,.4);
  border-radius: var(--radius);
  padding: 14px 20px;
  width: 100%;
  max-width: 280px;
}

.sobre__founded-badge i {
  font-size: 24px;
  color: var(--gold);
}

.sobre__founded-badge div {
  display: flex;
  flex-direction: column;
}

.sobre__founded-badge strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.sobre__founded-badge span {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-dark);
}

.sobre__highlights {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.highlight-item i {
  color: var(--blue-mid);
  font-size: 16px;
  flex-shrink: 0;
}

/* ================================================================
   OBJECTIVOS
   ================================================================ */
.objectivos {
  background: var(--off-white);
}

.objectivos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.obj-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.obj-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: var(--blue-light);
}

.obj-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--blue-light), rgba(27,94,128,.1));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.obj-card__icon i {
  font-size: 24px;
  color: var(--blue);
}

.obj-card:hover .obj-card__icon {
  background: var(--blue);
  box-shadow: var(--shadow-blue);
}
.obj-card:hover .obj-card__icon i { color: var(--white); }

.obj-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.obj-card__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================================================
   ÁREAS DE ACTUAÇÃO
   ================================================================ */
.areas { background: var(--white); }

.areas__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.area-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.area-item:last-child { border-bottom: none; }
.area-item:hover { padding-left: 8px; }

.area-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-light), rgba(27,94,128,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.area-item:hover .area-item__icon {
  background: var(--blue);
}
.area-item__icon i {
  font-size: 20px;
  color: var(--blue);
  transition: color var(--transition);
}
.area-item:hover .area-item__icon i { color: white; }

.area-item__content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.area-item__content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Stat Box */
.areas__stat-box {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: white;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 96px;
}

.big-stat {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  text-align: center;
}
.big-stat__number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}
.big-stat__label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
}

.progress-section {
  margin-bottom: 24px;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.8);
  margin-bottom: 8px;
}
.progress-bar-wrap {
  height: 8px;
  background: rgba(255,255,255,.15);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 16px;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #FFB300);
  border-radius: 50px;
  min-width: 4px;
}

.areas__stat-note {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.6;
  margin-bottom: 24px;
}
.areas__stat-note i {
  color: var(--gold);
  margin-right: 6px;
}

/* ================================================================
   LIDERANÇA
   ================================================================ */
.lideranca { background: var(--off-white); }

.lideranca__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lider-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.lider-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: var(--blue-light);
}

.lider-card__avatar {
  position: relative;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  padding: 36px 24px 24px;
  display: flex;
  justify-content: center;
}

.avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 3px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-placeholder i {
  font-size: 36px;
  color: rgba(255,255,255,.8);
}

.lider-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lider-card__badge i {
  font-size: 14px;
  color: var(--blue-dark);
}

.lider-card__info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lider-card__info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.lider-card__role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-mid);
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: .5px;
}

.lider-card__info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.lider-card__links {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}
.lider-card__links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 16px;
  transition: all var(--transition);
}
.lider-card__links a:hover {
  background: var(--blue);
  color: white;
  transform: scale(1.1);
}

/* ================================================================
   EVENTOS
   ================================================================ */
.eventos { background: var(--white); }

.eventos__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.evento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  gap: 24px;
  padding: 28px;
  align-items: flex-start;
}
.evento-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
  transform: translateY(-3px);
}

.evento-card--featured {
  grid-column: 1;
  grid-row: 1 / 3;
  flex-direction: column;
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: white;
  border-color: transparent;
  position: relative;
}

.evento-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.evento-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  min-width: 64px;
  flex-shrink: 0;
}

.evento-card--featured .evento-card__date {
  background: rgba(255,255,255,.15);
}

.date-day {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.evento-card--featured .date-day { color: var(--gold); }

.date-month {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.evento-card--featured .date-month { color: rgba(255,255,255,.7); }

.evento-card__body { flex: 1; }

.evento-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-mid);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.evento-card--featured .evento-card__tag {
  color: var(--gold);
  background: rgba(249,168,37,.2);
}

.evento-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.evento-card--featured .evento-card__body h3 {
  font-size: 1.3rem;
  color: white;
}

.evento-card__body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.evento-card--featured .evento-card__body p {
  color: rgba(255,255,255,.8);
}

.evento-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.evento-card__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-600);
}
.evento-card--featured .evento-card__meta span { color: rgba(255,255,255,.7); }
.evento-card__meta i { color: var(--blue-mid); }
.evento-card--featured .evento-card__meta i { color: var(--gold); }

.evento-paineis {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 8px;
}
.evento-paineis strong {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.evento-paineis ul {
  list-style: disc;
  padding-left: 18px;
}
.evento-paineis ul li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

/* ================================================================
   NOTÍCIAS
   ================================================================ */
.noticias { background: var(--off-white); }

.noticias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.noticia-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.noticia-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}

.noticia-card__img-wrap {
  position: relative;
  overflow: hidden;
}

.noticia-placeholder-img {
  height: 180px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.noticia-card:hover .noticia-placeholder-img { transform: scale(1.03); }

.noticia-placeholder-img i {
  font-size: 52px;
  color: rgba(255,255,255,.2);
}

.noticia-card__category {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-dark);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 50px;
}

.noticia-card__body {
  padding: 24px;
}

.noticia-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 10px;
}

.noticia-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 10px;
}

.noticia-card__body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.noticia-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: all var(--transition);
}
.noticia-card__link:hover {
  color: var(--gold);
  gap: 10px;
}

/* ================================================================
   ASSOCIAR-SE
   ================================================================ */
.associar {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #0E5073 100%);
  overflow: hidden;
}

.associar__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(249,168,37,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(255,255,255,.05) 0%, transparent 50%);
  pointer-events: none;
}

.associar__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.associar__content .section-title {
  text-align: left;
}

.associar__content .section-label {
  text-align: left;
}

.associar__desc {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.associar__beneficios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.beneficio-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.beneficio-item i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

/* FORM CARD */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.form-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-card__title i { color: var(--blue); }

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,94,128,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-disclaimer {
  font-size: 12px;
  color: var(--gray-600);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success i {
  font-size: 48px;
  color: #38A169;
  display: block;
  margin-bottom: 16px;
}
.form-success h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.form-success p { font-size: 14px; color: var(--text-muted); }

/* ================================================================
   CONTACTO
   ================================================================ */
.contacto { background: var(--white); }

.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.contacto__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon i { font-size: 18px; color: white; }

.contact-card__content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-card__content p,
.contact-card__content a {
  font-size: 14px;
  color: var(--text-muted);
}
.contact-card__content a:hover { color: var(--blue); }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
  transition: gap var(--transition);
}
.social-links a:hover { gap: 12px; color: var(--blue-mid); }
.social-links a i { font-size: 16px; }

.contacto__form {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
}

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

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--blue-dark);
  color: var(--white);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding: 64px 24px 48px;
}

.footer__brand {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.footer__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(249,168,37,.4);
  padding: 3px;
  background: white;
  flex-shrink: 0;
}

.footer__brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer__brand-sub {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  margin-bottom: 12px;
}
.footer__brand-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-style: italic;
  line-height: 1.6;
  max-width: 320px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__col ul li {
  margin-bottom: 10px;
}
.footer__col ul li a,
.footer__col ul li span {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--white); }
.footer__col ul li a i { font-size: 13px; color: rgba(255,255,255,.4); }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--blue-dark);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom-inner p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-blue);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .sobre__grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre__visual { flex-direction: row; justify-content: center; }
  .objectivos__grid { grid-template-columns: repeat(2, 1fr); }
  .areas__layout { grid-template-columns: 1fr; }
  .areas__stat-box { position: static; }
  .lideranca__grid { grid-template-columns: 1fr 1fr; }
  .associar__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile Large */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .navbar__nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow-lg);
  }
  .navbar__nav.open { display: flex; }
  .navbar__hamburger { display: flex; }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 8px 0;
  }
  .nav-list li { width: 100%; }
  .nav-link {
    display: block;
    width: 100%;
    padding: 12px 24px;
    border-radius: 0;
    font-size: 15px;
  }
  .nav-cta {
    margin: 12px 24px 0;
    width: calc(100% - 48px);
    justify-content: center;
  }

  .hero__stats {
    padding: 20px;
    flex-direction: column;
    gap: 16px;
  }
  .stat-divider { display: none; }
  .stat-card { padding: 0; }

  .sobre__visual { flex-direction: column; }
  .sobre__logo-frame { width: 200px; height: 200px; }
  .sobre__logo { width: 160px; height: 160px; }

  .objectivos__grid { grid-template-columns: 1fr; }
  .lideranca__grid { grid-template-columns: 1fr; }
  .eventos__grid { grid-template-columns: 1fr; }
  .noticias__grid { grid-template-columns: 1fr; }
  .contacto__grid { grid-template-columns: 1fr; }
  .associar__beneficios { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer__inner { padding: 48px 24px 32px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .partners-bar__inner { flex-direction: column; gap: 16px; text-align: center; }
}

/* Mobile Small */
@media (max-width: 480px) {
  .hero__title { font-size: 1.8rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .brand-sub { display: none; }
  .footer__links { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .contacto__form { padding: 24px 20px; }
  .scroll-top { bottom: 20px; right: 20px; }
}

/* ============================================================
   POPUP MENSAGEM DO PRESIDENTE
   ============================================================ */
.presidente-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.22,.68,0,1.2);
  max-width: 360px;
  width: calc(100vw - 48px);
}
.presidente-popup.open {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}
.presidente-popup__card {
  position: relative;
  background: linear-gradient(145deg, #0f1923 0%, #162030 100%);
  border: 1px solid rgba(196, 30, 58, 0.4);
  border-radius: 14px;
  padding: 20px 20px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.presidente-popup__close {
  position: absolute;
  top: 10px; right: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #999;
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  transition: all 0.2s;
  line-height: 1;
}
.presidente-popup__close:hover {
  background: rgba(196,30,58,0.25);
  color: #fff;
  border-color: rgba(196,30,58,0.5);
}
.presidente-popup__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-right: 28px;
}
.presidente-popup__avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #C41E3A, #8B1228);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
}
.presidente-popup__marca {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.presidente-popup__marca-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C41E3A;
  font-weight: 700;
}
.presidente-popup__marca-nome {
  font-size: 11px;
  color: #6a7a88;
}
.presidente-popup__aspas {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 40px;
  line-height: 0.5;
  color: rgba(196,30,58,0.2);
  margin-bottom: 6px;
  display: block;
}
.presidente-popup__mensagem {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 12px;
  line-height: 1.8;
  color: #c8c4be;
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0 0 14px;
}
.presidente-popup__assinatura {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 12px;
}
.presidente-popup__assinatura strong { color: #e8e4de; font-size: 12px; }
.presidente-popup__assinatura span { color: #5a6a76; font-size: 10px; }
.presidente-popup__btn {
  width: 100%;
  justify-content: center;
  font-size: 12px;
  padding: 8px 14px;
}

/* Link Admin no navbar */
.nav-link--admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(196,30,58,0.5);
  border-radius: 6px;
  color: #C41E3A !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-link--admin-btn:hover {
  background: rgba(196,30,58,0.12);
  border-color: #C41E3A;
}

/* ============================================================
   SECÇÃO FUNDAÇÃO
   ============================================================ */
.fundacao { background: #07111b; padding: 96px 0; }
.fundacao__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}
.fundacao__foto-wrap { position: relative; }
.fundacao__foto {
  width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.06);
}
.fundacao__foto-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  padding: 24px 16px 14px;
  border-radius: 0 0 16px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fundacao__info { display: flex; flex-direction: column; gap: 18px; }
.fundacao__date-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196,30,58,0.12);
  border: 1px solid rgba(196,30,58,0.3);
  border-radius: 10px;
  padding: 10px 18px;
  width: fit-content;
}
.fundacao__date-day { font-size: 40px; font-weight: 800; color: #C41E3A; line-height: 1; }
.fundacao__date-rest { font-size: 14px; color: #C41E3A; line-height: 1.3; font-weight: 600; }
.fundacao__subtitulo { font-family: 'Merriweather', Georgia, serif; font-size: 22px; color: #f0ede8; line-height: 1.4; margin: 0; }
.fundacao__texto { color: #8a9aaa; font-size: 15px; line-height: 1.75; margin: 0; }
.fundacao__stats {
  display: flex;
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.fundacao__stat { display: flex; flex-direction: column; gap: 4px; }
.fundacao__stat-num { font-size: 28px; font-weight: 800; color: #C41E3A; line-height: 1; }
.fundacao__stat-label { font-size: 12px; color: #6a7a88; line-height: 1.3; }
.fundacao__cta { align-self: flex-start; }

@media (max-width: 900px) {
  .fundacao__layout { grid-template-columns: 1fr; gap: 32px; }
  .fundacao__foto { max-height: 320px; object-fit: cover; }
  .presidente-popup__card { padding: 36px 24px 32px; }
  .presidente-popup__mensagem { font-size: 14px; }
}

/* Fix: Admin nav link */
.nav-link--admin {
  color: var(--color-primary, #C41E3A) !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link--admin:hover { opacity: 0.8; }

/* Fix: popup marca — remove any img remnants */
.presidente-popup__marca img { display: none !important; }
.presidente-popup__marca-nome {
  font-size: 12px;
  color: #7a8a96;
  line-height: 1.3;
}
