/* ═══════════════════════════════════════════════════════════
   AMOTUR — main.css  |  Shared stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --c-bg:        #f5f2ed;
  --c-bg-alt:    #e9e4db;
  --c-bg-deep:   #ddd6ca;
  --c-surface:   #faf8f4;
  --c-surface2:  #f0ece4;
  --c-border:    rgba(90,70,40,.13);
  --c-line:      rgba(90,70,40,.2);

  /* Brand blues */
  --c-navy:      #0e2242;   /* hero / dark footer zone */
  --c-navy-mid:  #1a3358;   /* links footer row */
  --c-steel:     #2d5f9e;
  --c-accent:    #1e6fbf;
  --c-accent-lt: #4a8fd4;

  --c-text:      #1c1a17;
  --c-muted:     #6b6155;
  --c-white:     #faf8f4;

  --f-head: 'Outfit', sans-serif;
  --f-body: 'DM Sans', sans-serif;
  --rad:    3px;
  --rad-lg: 8px;
  --ease:        cubic-bezier(.22,.68,0,1.2);
  --ease-smooth: cubic-bezier(.4,0,.2,1);
  --shadow-sm: 0 1px 4px rgba(40,30,15,.08), 0 0 0 1px rgba(90,70,40,.07);
  --shadow-md: 0 4px 20px rgba(40,30,15,.1), 0 1px 4px rgba(40,30,15,.06);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f-body); background: var(--c-bg); color: var(--c-text); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── UTILITY ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin-inline: auto; padding-inline: 2rem; }
.tag { display: inline-block; font-family: var(--f-head); font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--c-steel); border: 1px solid rgba(45,95,158,.25); padding: .25rem .75rem; border-radius: 100px; background: rgba(45,95,158,.06); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--f-head); font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; padding: .8rem 1.8rem; border-radius: var(--rad); transition: all .3s var(--ease-smooth); cursor: pointer; border: none; }
.btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { background: var(--c-steel); color: #fff; box-shadow: 0 2px 12px rgba(45,95,158,.3); }
.btn-primary:hover { background: var(--c-accent); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--c-steel); border: 1.5px solid rgba(45,95,158,.3); }
.btn-ghost:hover { border-color: var(--c-steel); background: rgba(45,95,158,.07); }
.btn-ghost-light { background: transparent; color: rgba(245,242,237,.85); border: 1.5px solid rgba(245,242,237,.35); }
.btn-ghost-light:hover { border-color: rgba(245,242,237,.65); background: rgba(245,242,237,.1); }

/* ─── NAV — always solid navy ─────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--c-navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .4s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.35); }
.nav-inner { max-width: 1160px; margin-inline: auto; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 54px; width: auto; filter: brightness(1.15); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-family: var(--f-head); font-size: .72rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: rgba(245,242,237,.65); transition: color .25s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1.5px; background: var(--c-accent-lt); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-smooth); }
.nav-links a:hover, .nav-links a.active { color: #f5f2ed; }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { font-family: var(--f-head); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--c-steel); padding: .5rem 1.2rem; border-radius: var(--rad); transition: all .3s; box-shadow: 0 2px 8px rgba(45,95,158,.4); }
.nav-cta:hover { background: var(--c-accent); transform: translateY(-1px); }
/* Right-side cluster: CTA + instagram + hamburger */
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-instagram { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: var(--rad); border: 1px solid rgba(245,242,237,.2); color: rgba(245,242,237,.7); transition: all .3s; }
.nav-instagram:hover { border-color: rgba(245,242,237,.5); color: #f5f2ed; background: rgba(245,242,237,.08); }
.nav-instagram svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(245,242,237,.7); transition: all .3s; }

/* ─── MOBILE NAV ──────────────────────────────────────────── */
.mobile-nav { position: fixed; inset: 0; z-index: 200; background: rgba(14,34,66,.97); backdrop-filter: blur(20px); display: flex; flex-direction: column; justify-content: center; padding: 3rem 2rem; transform: translateX(100%); transition: transform .4s var(--ease-smooth); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; cursor: pointer; color: rgba(245,242,237,.6); }
.mobile-nav-close svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav ul a { font-family: var(--f-head); font-size: 1.5rem; font-weight: 200; color: #f5f2ed; letter-spacing: -.01em; }
.mobile-nav .nav-cta { margin-top: 2rem; align-self: flex-start; }

/* ─── SECTION SHARED ──────────────────────────────────────── */
section { position: relative; z-index: 1; }
.section-header { margin-bottom: 3rem; }
.section-header .tag { margin-bottom: 1rem; }
.section-title { font-family: var(--f-head); font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 300; letter-spacing: -.02em; line-height: 1.2; color: var(--c-text); }
.section-title strong { font-weight: 600; }
.section-desc { font-size: .9rem; color: var(--c-muted); line-height: 1.8; margin-top: .75rem; max-width: 540px; }

/* ─── HERO — real photo + blue overlay ───────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
/* Photo layer — slow Ken Burns zoom */
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('../img/bg-hero.png');
  background-size: cover; background-position: center 40%;
  background-repeat: no-repeat;
  animation: heroPanZoom 22s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes heroPanZoom {
  0%   { transform: scale(1)    translate(0,    0);    }
  33%  { transform: scale(1.06) translate(-1%,  0.5%); }
  66%  { transform: scale(1.04) translate(1%,  -0.5%); }
  100% { transform: scale(1.08) translate(0,    1%);   }
}
/* Blue overlay — preserves photo but saturates with navy */
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(14,34,66,.72) 0%,
      rgba(14,34,66,.55) 40%,
      rgba(14,34,66,.80) 75%,
      rgba(14,34,66,.96) 100%),
    radial-gradient(ellipse 70% 60% at 70% 35%, rgba(45,95,158,.35) 0%, transparent 65%);
}
.hero-grid { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(245,242,237,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(245,242,237,.02) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%); }
.hero-arc { position: absolute; right: -5%; top: 10%; width: 55vw; height: 55vw; max-width: 780px; border: 1px solid rgba(245,242,237,.06); border-radius: 50%; animation: arcRotate 30s linear infinite; }
.hero-arc::before { content: ''; position: absolute; inset: 10%; border: 1px solid rgba(245,242,237,.04); border-radius: 50%; }
.hero-arc::after  { content: ''; position: absolute; inset: 22%; border: 1px solid rgba(245,242,237,.025); border-radius: 50%; }
@keyframes arcRotate { to { transform: rotate(360deg); } }
.hero-glow { position: absolute; right: 10%; top: 28%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(74,143,212,.18) 0%, transparent 70%); filter: blur(50px); animation: glowPulse 6s ease-in-out infinite; }
@keyframes glowPulse { 0%,100%{opacity:.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.08)} }

/* Hero content — padding-top clears fixed nav (64px) + breathing room */
.hero-content { position: relative; z-index: 2; max-width: 1160px; margin-inline: auto; padding: 96px 2rem 4rem; width: 100%; }
.hero-eyebrow { font-family: var(--f-head); font-size: .65rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(245,242,237,.55); display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; opacity: 0; animation: fadeUp .8s .2s var(--ease) forwards; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: rgba(245,242,237,.4); }
.hero-title { font-family: var(--f-head); font-size: clamp(2.2rem, 4.8vw, 4.5rem); font-weight: 200; line-height: .95; letter-spacing: -.03em; color: #f5f2ed; max-width: 680px; opacity: 0; animation: fadeUp .9s .35s var(--ease) forwards; }
.hero-title strong { font-weight: 600; background: linear-gradient(135deg, #f5f2ed 0%, #7ab8e0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: .88rem; font-weight: 300; color: rgba(245,242,237,.62); max-width: 440px; line-height: 1.55; margin-top: 1rem; opacity: 0; animation: fadeUp .9s .5s var(--ease) forwards; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; opacity: 0; animation: fadeUp .9s .65s var(--ease) forwards; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid rgba(245,242,237,.15); opacity: 0; animation: fadeUp .9s .8s var(--ease) forwards; }
.hero-stat-num { font-family: var(--f-head); font-size: 1.8rem; font-weight: 300; color: #f5f2ed; letter-spacing: -.02em; }
.hero-stat-num span { color: rgba(122,184,224,.9); }
.hero-stat-label { font-size: .7rem; color: rgba(245,242,237,.45); letter-spacing: .05em; text-transform: uppercase; margin-top: .2rem; }
.hero-scroll { position: absolute; bottom: 2rem; right: 2rem; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem; opacity: 0; animation: fadeIn 1s 1.2s ease forwards; }
.hero-scroll-text { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,242,237,.35); writing-mode: vertical-rl; }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(122,184,224,.5), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(.5);opacity:.4} }

/* ─── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero { padding-top: 120px; padding-bottom: 5rem; position: relative; overflow: hidden; background: linear-gradient(170deg, var(--c-navy) 0%, #152e55 50%, #1a3a60 100%); }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,242,237,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(245,242,237,.025) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black 0%, transparent 100%); }
.page-hero-glow { position: absolute; right: 5%; top: 10%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(74,143,212,.18) 0%, transparent 70%); filter: blur(60px); }
.page-hero-content { position: relative; z-index: 1; max-width: 1160px; margin-inline: auto; padding: 0 2rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-family: var(--f-head); font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,242,237,.5); margin-bottom: 1.75rem; }
.breadcrumb a { color: rgba(245,242,237,.5); transition: color .2s; }
.breadcrumb a:hover { color: rgba(245,242,237,.8); }
.breadcrumb svg { width: 10px; height: 10px; stroke: rgba(245,242,237,.4); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.page-hero-title { font-family: var(--f-head); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 200; letter-spacing: -.025em; line-height: 1.05; color: #f5f2ed; max-width: 580px; animation: fadeUp .9s .1s both; }
.page-hero-title strong { font-weight: 600; }
.page-hero-sub { font-size: .95rem; color: rgba(245,242,237,.6); line-height: 1.8; max-width: 520px; margin-top: 1.25rem; animation: fadeUp .9s .25s both; }

/* ─── ABOUT STRIP ──────────────────────────────────────────── */
.about-strip { padding: 6rem 0; background: var(--c-bg-alt); border-top: 1px solid var(--c-border); }
.about-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--rad-lg); padding: 2.5rem 2.5rem 3.5rem; position: relative; overflow: visible; box-shadow: var(--shadow-md); }
.about-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--c-steel), var(--c-accent-lt)); border-radius: var(--rad-lg) var(--rad-lg) 0 0; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.about-value { display: flex; gap: .75rem; align-items: flex-start; }
.about-value-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-steel); margin-top: .35rem; flex-shrink: 0; }
.about-value-text { font-size: .8rem; color: var(--c-muted); line-height: 1.5; }
.about-value-text strong { display: block; color: var(--c-text); font-size: .82rem; margin-bottom: .1rem; }
.about-quote { background: rgba(45,95,158,.06); border-left: 2.5px solid var(--c-steel); border-radius: 0 var(--rad) var(--rad) 0; padding: 1.25rem 1.5rem; margin-top: 1.75rem; }
.about-quote p { font-size: .85rem; font-style: italic; color: var(--c-muted); line-height: 1.8; }
.about-quote cite { display: block; margin-top: .5rem; font-size: .68rem; font-style: normal; letter-spacing: .1em; text-transform: uppercase; color: var(--c-steel); }
.about-badge { position: absolute; bottom: -12px; right: 2rem; background: var(--c-navy); color: rgba(245,242,237,.7); border: 1px solid rgba(245,242,237,.1); border-radius: 100px; padding: .5rem 1.2rem; font-family: var(--f-head); font-size: .65rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }

/* ─── PILLARS ──────────────────────────────────────────────── */
.pillars { padding: 6rem 0; background: var(--c-bg); border-top: 1px solid var(--c-border); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.pillar { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--rad-lg); padding: 2rem 1.75rem; transition: border-color .3s, transform .3s, box-shadow .3s; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.pillar::after { content: attr(data-num); position: absolute; bottom: -1rem; right: 1rem; font-family: var(--f-head); font-size: 5rem; font-weight: 700; color: rgba(45,95,158,.05); line-height: 1; }
.pillar:hover { border-color: rgba(45,95,158,.35); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-num { font-family: var(--f-head); font-size: .65rem; font-weight: 600; letter-spacing: .2em; color: var(--c-accent-lt); margin-bottom: 1.25rem; }
.pillar-title { font-family: var(--f-head); font-size: 1rem; font-weight: 500; color: var(--c-text); line-height: 1.35; margin-bottom: .75rem; }
.pillar-text { font-size: .8rem; color: var(--c-muted); line-height: 1.75; }

/* ─── ASSOCIATES TICKER ───────────────────────────────────── */
.associates-ticker { padding: 4rem 0; background: var(--c-bg); border-top: 1px solid var(--c-border); overflow: hidden; }
.associates-ticker-header { text-align: center; margin-bottom: 2.5rem; }
.ticker-track-wrap { position: relative; overflow: hidden; }
/* fade edges */
.ticker-track-wrap::before,
.ticker-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.ticker-track-wrap::before { left: 0; background: linear-gradient(to right, var(--c-bg), transparent); }
.ticker-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--c-bg), transparent); }
.ticker-track { display: flex; gap: 1.5rem; width: max-content; animation: tickerScroll 40s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  flex-shrink: 0;
  width: 160px; height: 110px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
  padding: 0;
  display: flex; align-items: center; justify-content: center;
}
.ticker-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* contain keeps entire logo visible without cropping */
.ticker-item img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── NEWS ─────────────────────────────────────────────────── */
.news { padding: 6rem 0; background: var(--c-bg-alt); border-top: 1px solid var(--c-border); }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.news-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; }
.news-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--rad-lg); overflow: hidden; transition: border-color .3s, box-shadow .3s; cursor: pointer; box-shadow: var(--shadow-sm); }
.news-card:hover { border-color: rgba(45,95,158,.3); box-shadow: var(--shadow-md); }
.news-card-img { height: 180px; background: linear-gradient(135deg, var(--c-navy) 0%, #1e3560 100%); position: relative; overflow: hidden; }
.news-card:first-child .news-card-img { height: 220px; }
/* Real photo fills the card image area */
.news-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .6s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
/* Subtle overlay for text legibility (used on gradient-only cards) */
.news-card-img-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(14,34,66,.7) 0%, rgba(45,95,158,.4) 100%); }
.news-card-img-icon { font-size: 2.5rem; opacity: .5; }
.news-card-body { padding: 1.5rem; }
.news-card-cat { font-family: var(--f-head); font-size: .6rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--c-steel); margin-bottom: .5rem; }
.news-card-title { font-family: var(--f-head); font-size: .95rem; font-weight: 400; color: var(--c-text); line-height: 1.4; margin-bottom: .5rem; }
.news-card:first-child .news-card-title { font-size: 1.1rem; }
.news-card-excerpt { font-size: .78rem; color: var(--c-muted); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--c-border); }
.news-card-date { font-size: .68rem; color: var(--c-muted); letter-spacing: .05em; }

/* ─── CTA BANNER ───────────────────────────────────────────── */
.cta-banner { padding: 6rem 0; background: var(--c-bg); border-top: 1px solid var(--c-border); }
.cta-inner { background: linear-gradient(135deg, var(--c-navy) 0%, #1e3d72 60%, #2251a0 100%); border-radius: var(--rad-lg); padding: 4rem 3.5rem; display: flex; justify-content: space-between; align-items: center; gap: 3rem; position: relative; overflow: hidden; box-shadow: 0 8px 40px rgba(14,34,66,.25); }
.cta-inner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(245,242,237,.3) 30%, rgba(122,184,224,.5) 60%, transparent 100%); }
.cta-glow { position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(74,143,212,.2) 0%, transparent 70%); filter: blur(30px); }
.cta-text .tag { background: rgba(245,242,237,.1); border-color: rgba(245,242,237,.2); color: rgba(245,242,237,.8); margin-bottom: 1rem; }
.cta-title { font-family: var(--f-head); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; line-height: 1.25; color: #f5f2ed; max-width: 520px; }
.cta-title strong { font-weight: 600; }
.cta-subtitle { font-size: .85rem; color: rgba(245,242,237,.65); line-height: 1.8; margin-top: .75rem; max-width: 460px; }
.cta-actions { display: flex; flex-direction: column; gap: .75rem; flex-shrink: 0; }

/* ─── CATALOG ──────────────────────────────────────────────── */
.catalog { padding: 5rem 0; background: var(--c-bg-alt); border-top: 1px solid var(--c-border); }
.catalog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; gap: 1rem; flex-wrap: wrap; }
.catalog-filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-btn { font-family: var(--f-head); font-size: .68rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: .5rem 1.1rem; border-radius: 100px; border: 1px solid var(--c-border); color: var(--c-muted); cursor: pointer; background: var(--c-surface); transition: all .25s; }
.filter-btn:hover { border-color: rgba(45,95,158,.3); color: var(--c-text); }
.filter-btn.active { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.assoc-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--rad-lg); overflow: hidden; display: flex; flex-direction: column; transition: border-color .3s, transform .25s, box-shadow .3s; cursor: pointer; box-shadow: var(--shadow-sm); }
.assoc-card:hover { border-color: rgba(45,95,158,.3); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.assoc-logo-wrap { width: 100%; overflow: hidden; background: var(--c-surface2); display: flex; align-items: center; justify-content: center; padding: 0; height: 120px; }
.assoc-logo-wrap img { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; transition: transform .4s var(--ease-smooth); }
.assoc-card:hover .assoc-logo-wrap img { transform: scale(1.04); }
.assoc-body { padding: 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.assoc-name { font-family: var(--f-head); font-size: .9rem; font-weight: 500; color: var(--c-text); line-height: 1.3; }
.assoc-type { font-size: .72rem; color: var(--c-muted); }
.assoc-location { display: flex; align-items: center; gap: .35rem; font-size: .7rem; color: var(--c-muted); margin-top: .1rem; }
.assoc-location svg { width: 11px; height: 11px; stroke: var(--c-steel); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.assoc-footer { display: flex; justify-content: space-between; align-items: center; padding: .8rem 1.25rem; border-top: 1px solid var(--c-border); }
.assoc-chip { font-family: var(--f-head); font-size: .56rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .2rem .6rem; border-radius: 100px; background: rgba(45,95,158,.07); border: 1px solid rgba(45,95,158,.15); color: var(--c-steel); }
.assoc-link { font-family: var(--f-head); font-size: .62rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--c-steel); display: flex; align-items: center; gap: .3rem; }
.assoc-link svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.assoc-card:hover .assoc-link svg { transform: translateX(3px); }

/* ─── CALENDAR ─────────────────────────────────────────────── */
.calendar { padding: 5rem 0; background: var(--c-bg); border-top: 1px solid var(--c-border); }
.calendar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
.calendar-events { display: flex; flex-direction: column; gap: 1px; background: var(--c-border); border-radius: var(--rad-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.event-row { background: var(--c-surface); padding: 1.25rem 1.5rem; display: flex; gap: 1.5rem; align-items: center; transition: background .2s; cursor: pointer; }
.event-row:hover { background: var(--c-surface2); }
.event-date { flex-shrink: 0; text-align: center; min-width: 44px; }
.event-date-day { font-family: var(--f-head); font-size: 1.5rem; font-weight: 300; color: var(--c-text); line-height: 1; }
.event-date-month { font-family: var(--f-head); font-size: .6rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--c-steel); }
.event-divider { width: 1px; height: 36px; background: var(--c-border); flex-shrink: 0; }
.event-info { flex: 1; }
.event-name { font-family: var(--f-head); font-size: .88rem; font-weight: 400; color: var(--c-text); margin-bottom: .2rem; }
.event-meta { font-size: .72rem; color: var(--c-muted); }
.event-cat { flex-shrink: 0; font-family: var(--f-head); font-size: .58rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .2rem .65rem; border-radius: 100px; }
.event-cat.esporte  { background: rgba(45,95,158,.1);  color: var(--c-steel);  border: 1px solid rgba(45,95,158,.2); }
.event-cat.cultura  { background: rgba(165,100,74,.1); color: #a05a30; border: 1px solid rgba(165,100,74,.2); }
.event-cat.festival { background: rgba(50,140,80,.1);  color: #2a7a50; border: 1px solid rgba(50,140,80,.2); }
.info-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--rad-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.info-card h3 { font-family: var(--f-head); font-size: 1rem; font-weight: 500; color: var(--c-text); margin-bottom: .5rem; }
.info-card-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.info-card p { font-size: .8rem; color: var(--c-muted); line-height: 1.7; }
.info-card-meta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--c-border); }
.info-item { display: flex; justify-content: space-between; font-size: .78rem; margin-bottom: .4rem; }
.info-item-label { color: var(--c-muted); }
.info-item-val { color: var(--c-text); font-weight: 500; }

/* ─── HOW TO ────────────────────────────────────────────────── */
.how-to { padding: 5rem 0; background: var(--c-bg-alt); border-top: 1px solid var(--c-border); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.how-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--rad-lg); padding: 2rem 1.75rem; box-shadow: var(--shadow-sm); }
.how-num { font-family: var(--f-head); font-size: 2rem; font-weight: 200; color: var(--c-steel); margin-bottom: 1rem; }
.how-title { font-family: var(--f-head); font-size: .95rem; font-weight: 500; color: var(--c-text); margin-bottom: .5rem; }
.how-text { font-size: .8rem; color: var(--c-muted); line-height: 1.75; }

/* ─── SUSTAINABLE ──────────────────────────────────────────── */
.sustainable { padding: 5rem 0; background: var(--c-bg); border-top: 1px solid var(--c-border); }
.sustainable-inner { background: linear-gradient(135deg, var(--c-navy) 0%, #1e3d72 60%, #2251a0 100%); border-radius: var(--rad-lg); padding: 3.5rem; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; position: relative; overflow: hidden; box-shadow: 0 8px 40px rgba(14,34,66,.2); }
.sustainable-inner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,242,237,.3), transparent); }
.sustain-tag { display: inline-block; font-family: var(--f-head); font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #7ad4a0; border: 1px solid rgba(122,212,160,.25); padding: .25rem .75rem; border-radius: 100px; margin-bottom: 1rem; background: rgba(122,212,160,.08); }
.sustainable-inner h2 { font-family: var(--f-head); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; color: #f5f2ed; line-height: 1.25; }
.sustainable-inner h2 strong { font-weight: 600; }
.sustainable-inner p { font-size: .85rem; color: rgba(245,242,237,.65); line-height: 1.8; margin-top: .75rem; max-width: 560px; }
.sustain-badges { display: flex; flex-direction: column; gap: .75rem; flex-shrink: 0; }
.sustain-badge { display: flex; align-items: center; gap: .75rem; background: rgba(245,242,237,.08); border: 1px solid rgba(245,242,237,.12); border-radius: var(--rad); padding: .75rem 1.25rem; white-space: nowrap; }
.sustain-badge-icon { font-size: 1.1rem; }
.sustain-badge-text { font-family: var(--f-head); font-size: .68rem; font-weight: 500; letter-spacing: .06em; color: rgba(245,242,237,.75); }

/* ─── DEST CARDS ───────────────────────────────────────────── */
.destinations { padding: 5rem 0; background: var(--c-bg); border-top: 1px solid var(--c-border); }
.destinations-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.dest-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--rad-lg); overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s; cursor: pointer; box-shadow: var(--shadow-sm); }
.dest-card:hover { border-color: rgba(45,95,158,.3); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dest-card-visual { height: 200px; position: relative; overflow: hidden; }
.dest-card-visual-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; transition: transform .5s var(--ease-smooth); }
.dest-card:hover .dest-card-visual-inner { transform: scale(1.05); }
.dest-card-visual-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,34,66,.5) 0%, transparent 50%); }
.dest-card-badge { position: absolute; top: 1rem; left: 1rem; }
.dest-v1 { background: linear-gradient(135deg, #0a2040 0%, #1e3a5f 40%, #0a3050 100%); }
.dest-v2 { background: linear-gradient(135deg, #0d2535 0%, #1a4060 40%, #0a1a2e 100%); }
.dest-v3 { background: linear-gradient(135deg, #0a1e30 0%, #153050 40%, #0d2840 100%); }
.dest-card-body { padding: 1.5rem; }
.dest-card-title { font-family: var(--f-head); font-size: 1.1rem; font-weight: 400; color: var(--c-text); margin-bottom: .5rem; }
.dest-card-text { font-size: .8rem; color: var(--c-muted); line-height: 1.75; }
.dest-card-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: 1rem; }
.dest-chip { font-family: var(--f-head); font-size: .58rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: .2rem .65rem; border-radius: 100px; background: var(--c-surface2); border: 1px solid var(--c-border); color: var(--c-muted); }
.dest-chip-light { background: rgba(245,242,237,.15); border-color: rgba(245,242,237,.3); color: #f5f2ed; }
.dest-tabs { display: flex; gap: .5rem; margin-top: 2.5rem; flex-wrap: wrap; animation: fadeUp .9s .4s both; }
.dest-tab { font-family: var(--f-head); font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: .55rem 1.25rem; border-radius: 100px; border: 1px solid rgba(245,242,237,.2); color: rgba(245,242,237,.6); cursor: pointer; transition: all .25s; background: none; }
.dest-tab:hover { border-color: rgba(245,242,237,.4); color: rgba(245,242,237,.9); }
.dest-tab.active { background: var(--c-steel); border-color: var(--c-steel); color: #fff; }

/* ─── GOVERNANCE PAGE ──────────────────────────────────────── */
.gov-intro { padding: 5rem 0; background: var(--c-bg); border-top: 1px solid var(--c-border); }
.gov-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.gov-intro-text p { font-size: .9rem; color: var(--c-muted); line-height: 1.9; margin-bottom: 1.25rem; }
.gov-intro-text p strong { color: var(--c-text); font-weight: 600; }

/* Flow diagram */
.gov-flow { padding: 5rem 0; background: var(--c-bg-alt); border-top: 1px solid var(--c-border); }
.flow-chain { display: flex; flex-direction: column; align-items: center; gap: 0; max-width: 640px; margin: 3rem auto 0; }
.flow-node {
  width: 100%; background: var(--c-surface);
  border: 1px solid var(--c-border); border-radius: var(--rad-lg);
  padding: 1.25rem 2rem;
  display: flex; align-items: center; gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .3s, box-shadow .3s;
}
.flow-node:hover { border-color: rgba(45,95,158,.3); box-shadow: var(--shadow-md); }
.flow-node.highlight { border-color: rgba(45,95,158,.4); background: linear-gradient(135deg, rgba(45,95,158,.06) 0%, var(--c-surface) 100%); }
.flow-node-icon { font-size: 1.5rem; flex-shrink: 0; width: 44px; text-align: center; }
.flow-node-body { flex: 1; }
.flow-node-title { font-family: var(--f-head); font-size: .9rem; font-weight: 600; color: var(--c-text); }
.flow-node-desc { font-size: .78rem; color: var(--c-muted); line-height: 1.6; margin-top: .2rem; }
.flow-arrow { width: 2px; height: 2rem; background: linear-gradient(to bottom, var(--c-steel), rgba(45,95,158,.3)); margin: 0 auto; position: relative; }
.flow-arrow::after { content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 7px solid rgba(45,95,158,.5); }

/* Responsibilities grid */
.gov-roles { padding: 5rem 0; background: var(--c-bg); border-top: 1px solid var(--c-border); }
.roles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.role-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--rad-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .3s; }
.role-card:hover { box-shadow: var(--shadow-md); }
.role-card-header { padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1rem; background: linear-gradient(135deg, rgba(45,95,158,.06) 0%, transparent 100%); border-bottom: 1px solid var(--c-border); }
.role-card-icon { font-size: 1.75rem; }
.role-card-title { font-family: var(--f-head); font-size: 1.05rem; font-weight: 500; color: var(--c-text); }
.role-card-sub { font-size: .75rem; color: var(--c-muted); margin-top: .1rem; }
.role-card-body { padding: 1.5rem 2rem; }
.role-card-body p { font-size: .82rem; color: var(--c-muted); line-height: 1.8; margin-bottom: .75rem; }
.role-card-body p:last-child { margin-bottom: 0; }
.role-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.role-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .8rem; color: var(--c-muted); line-height: 1.6; }
.role-list li::before { content: '—'; color: var(--c-steel); font-weight: 600; flex-shrink: 0; margin-top: .05rem; }

/* COMTUR highlight box */
.comtur-box { margin-top: 3rem; background: linear-gradient(135deg, var(--c-navy) 0%, #1e3d72 100%); border-radius: var(--rad-lg); padding: 3rem; position: relative; overflow: hidden; box-shadow: 0 8px 40px rgba(14,34,66,.2); }
.comtur-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,242,237,.3), transparent); }
.comtur-box-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.comtur-box h3 { font-family: var(--f-head); font-size: 1.2rem; font-weight: 300; color: #f5f2ed; margin-bottom: 1rem; }
.comtur-box h3 strong { font-weight: 600; }
.comtur-box p { font-size: .82rem; color: rgba(245,242,237,.65); line-height: 1.8; }
.comtur-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.comtur-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .78rem; color: rgba(245,242,237,.65); line-height: 1.6; }
.comtur-list li::before { content: '→'; color: var(--c-accent-lt); flex-shrink: 0; }

/* ─── INSTITUTIONAL PARTNERS STRIP — white, above all footers ─ */
.partners-strip {
  background: #fff;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 2.5rem 0;
}
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: nowrap; }
.partners-logo-item { display: flex; align-items: center; justify-content: center; opacity: .8; transition: opacity .25s; }
.partners-logo-item:hover { opacity: 1; }
.partners-logo-item img { width: auto; object-fit: contain; }
.partners-logo-divider { width: 1px; height: 40px; background: var(--c-border); flex-shrink: 0; }

/* ─── FOOTER — blue gradient ──────────────────────────────── */
footer {
  background: linear-gradient(180deg, var(--c-navy-mid) 0%, var(--c-navy) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-main { background: transparent; padding: 0; }

.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0;          /* equal top/bottom — vertically balanced */
  border-bottom: 1px solid rgba(255,255,255,.07);
  align-items: center;        /* columns centred vertically */
}
.footer-brand img { height: 54px; margin-bottom: 1rem; filter: brightness(1.2) drop-shadow(0 0 8px rgba(74,143,212,.3)); }
.footer-brand p { font-size: .78rem; color: rgba(245,242,237,.5); line-height: 1.8; max-width: 240px; }
.footer-col h4 { font-family: var(--f-head); font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,242,237,.35); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .8rem; color: rgba(245,242,237,.55); transition: color .2s; }
.footer-col ul a:hover { color: #f5f2ed; }

.footer-bottom { padding: 1.25rem 0 1.75rem; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: .7rem; color: rgba(245,242,237,.3); }
.footer-dev { font-size: .7rem; color: rgba(245,242,237,.35); }
.footer-dev a { color: rgba(245,242,237,.55); transition: color .2s; text-decoration: none; }
.footer-dev a:hover { color: #f5f2ed; }

/* ─── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp  { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card:last-child { display: none; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .gov-intro-inner { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .comtur-box-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta, .nav-instagram { display: none; }
  .nav-hamburger { display: flex; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card:last-child { display: block; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner .cta-actions { align-items: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .destinations-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .calendar-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .sustainable-inner { grid-template-columns: 1fr; }
  .sustain-badges { flex-direction: row; flex-wrap: wrap; }
  .partners-logos { gap: 2rem; }
  .partners-logo-item img { height: 50px !important; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .cta-inner { padding: 2.5rem 1.75rem; }
  .catalog-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   ASSOCIAÇÃO PAGE
   ═══════════════════════════════════════════════════════════ */

/* Timeline / milestone strip */
.assoc-timeline { padding: 5rem 0; background: var(--c-bg); border-top: 1px solid var(--c-border); }
.timeline-track { position: relative; max-width: 820px; margin: 3rem auto 0; }
.timeline-track::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, var(--c-steel), var(--c-steel), transparent); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; align-items: center; margin-bottom: 3rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-left { text-align: right; padding-right: 2rem; }
.timeline-right { text-align: left; padding-left: 2rem; }
.timeline-center { display: flex; align-items: center; justify-content: center; z-index: 1; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--c-steel); border: 3px solid var(--c-bg); box-shadow: 0 0 0 2px var(--c-steel); flex-shrink: 0; }
.timeline-year { font-family: var(--f-head); font-size: 1.8rem; font-weight: 200; color: var(--c-accent-lt); letter-spacing: -.02em; line-height: 1; margin-bottom: .3rem; }
.timeline-label { font-family: var(--f-head); font-size: .9rem; font-weight: 500; color: var(--c-text); line-height: 1.35; }
.timeline-desc { font-size: .8rem; color: var(--c-muted); line-height: 1.7; margin-top: .3rem; }
.timeline-item:nth-child(odd) .timeline-right { visibility: hidden; }
.timeline-item:nth-child(even) .timeline-left { visibility: hidden; }

/* Pillar cards — 3-col */
.assoc-pillars { padding: 6rem 0; background: var(--c-bg-alt); border-top: 1px solid var(--c-border); }
.assoc-pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.assoc-pillar-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--rad-lg); padding: 2.25rem 2rem; box-shadow: var(--shadow-sm); transition: border-color .3s, transform .3s, box-shadow .3s; position: relative; overflow: hidden; }
.assoc-pillar-card:hover { border-color: rgba(45,95,158,.35); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.assoc-pillar-card::before { content: attr(data-num); position: absolute; bottom: -.5rem; right: 1rem; font-family: var(--f-head); font-size: 5.5rem; font-weight: 700; color: rgba(45,95,158,.04); line-height: 1; }
.assoc-pillar-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.assoc-pillar-num { font-family: var(--f-head); font-size: .6rem; font-weight: 700; letter-spacing: .2em; color: var(--c-accent-lt); margin-bottom: .6rem; }
.assoc-pillar-title { font-family: var(--f-head); font-size: 1.05rem; font-weight: 500; color: var(--c-text); line-height: 1.3; margin-bottom: .75rem; }
.assoc-pillar-text { font-size: .82rem; color: var(--c-muted); line-height: 1.8; }

/* Join CTA strip */
.assoc-join { padding: 6rem 0; background: var(--c-bg); border-top: 1px solid var(--c-border); }

/* ═══════════════════════════════════════════════════════════
   CAPACITAÇÃO PAGE
   ═══════════════════════════════════════════════════════════ */

.cap-layout { padding: 5rem 0; background: var(--c-bg); border-top: 1px solid var(--c-border); }
.cap-inner { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start; }

/* Sidebar nav */
.cap-sidebar { position: sticky; top: 90px; }
.cap-nav-list { display: flex; flex-direction: column; gap: 2px; background: var(--c-border); border-radius: var(--rad-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.cap-nav-item { background: var(--c-surface); padding: 1rem 1.25rem; cursor: pointer; transition: background .2s, border-left .2s; border-left: 3px solid transparent; display: flex; align-items: center; gap: .75rem; }
.cap-nav-item:hover { background: var(--c-surface2); }
.cap-nav-item.active { background: var(--c-surface2); border-left-color: var(--c-steel); }
.cap-nav-item-num { font-family: var(--f-head); font-size: .6rem; font-weight: 700; letter-spacing: .12em; color: var(--c-accent-lt); min-width: 24px; }
.cap-nav-item-title { font-family: var(--f-head); font-size: .8rem; font-weight: 400; color: var(--c-text); line-height: 1.3; }

/* Video panels */
.cap-panels { display: flex; flex-direction: column; gap: 1px; }
.cap-panel { display: none; }
.cap-panel.active { display: block; }
.cap-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--rad-lg); background: var(--c-navy); box-shadow: var(--shadow-md); }
.cap-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: var(--rad-lg); }
.cap-panel-body { margin-top: 1.75rem; }
.cap-panel-title { font-family: var(--f-head); font-size: 1.25rem; font-weight: 300; color: var(--c-text); letter-spacing: -.01em; margin-bottom: .5rem; }
.cap-panel-title strong { font-weight: 600; }
.cap-panel-source { font-size: .75rem; color: var(--c-muted); margin-bottom: 1rem; display: flex; align-items: center; gap: .4rem; }
.cap-panel-source a { color: var(--c-steel); text-decoration: none; }
.cap-panel-source a:hover { text-decoration: underline; }
.cap-panel-desc { font-size: .88rem; color: var(--c-muted); line-height: 1.8; max-width: 640px; }

/* Mobile tabs for capacitacao */
.cap-tabs-mobile { display: none; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.cap-tab-btn { font-family: var(--f-head); font-size: .65rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: .45rem 1rem; border-radius: 100px; border: 1px solid var(--c-border); background: var(--c-surface); color: var(--c-muted); cursor: pointer; transition: all .25s; }
.cap-tab-btn.active { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }

/* ═══════════════════════════════════════════════════════════
   ASSOCIADOS PAGE
   ═══════════════════════════════════════════════════════════ */

.assocs-grid-full { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.assocs-filter-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 2rem; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — new pages
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .assoc-pillars-grid { grid-template-columns: 1fr 1fr; }
  .assocs-grid-full { grid-template-columns: repeat(4, 1fr); }
  .cap-inner { grid-template-columns: 240px 1fr; }
}
@media (max-width: 768px) {
  .timeline-track::before { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr; }
  .timeline-left { display: none; }
  .timeline-right { text-align: left; padding-left: 1rem; visibility: visible !important; }
  .timeline-center { justify-content: flex-start; }
  .timeline-item:nth-child(even) .timeline-left { display: none; }
  .assoc-pillars-grid { grid-template-columns: 1fr; }
  .assocs-grid-full { grid-template-columns: repeat(2, 1fr); }
  .cap-inner { grid-template-columns: 1fr; }
  .cap-sidebar { position: static; display: none; }
  .cap-tabs-mobile { display: flex; }
}
@media (max-width: 480px) {
  .assocs-grid-full { grid-template-columns: repeat(2, 1fr); }
}
