/* ═══════════════════════════════════════════════════════════════
   Cultura Cristã Brasil — CCB · shared stylesheet
   Brand identity per briefing §11 (Mundial + Toska, navy/teal/green)
   ═══════════════════════════════════════════════════════════════ */

/* ─── FONTS ─────────────────────────────────────────────── */
@font-face { font-family:'Mundial'; src:url('../fonts/MundialLight.otf') format('opentype'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Mundial'; src:url('../fonts/MundialRegular.otf') format('opentype'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Mundial'; src:url('../fonts/MundialDemibold.otf') format('opentype'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Mundial'; src:url('../fonts/MundialBold.otf') format('opentype'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Mundial'; src:url('../fonts/MundialBlack.otf') format('opentype'); font-weight:900; font-style:normal; font-display:swap; }
@font-face { font-family:'Toska'; src:url('../fonts/Toska-Regular.otf') format('opentype'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Toska'; src:url('../fonts/Toska-Bold.otf') format('opentype'); font-weight:700; font-style:normal; font-display:swap; }

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

:root {
  --navy:        #102a37;
  --navy-deep:   #0b1e29;
  --teal:        #266882;
  --teal-light:  #3598b9;
  --teal-pale:   #58b6e7;
  --green-start: #178e64;
  --green-mid:   #209968;
  --green-end:   #51d081;
  --orange:      #ffa300;
  --orange-2:    #ff8b00;
  --orange-light:#ffcc44;
  --white:       #e8f4fb;
  --off-white:   #d6ecf7;
  --gray-light:  #c2dff0;
  --gray:        #8fa4af;
  --text-dark:   #0e2230;
  --text-body:   #3a5060;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Mundial', 'Helvetica Neue', sans-serif;
  font-weight: 400; color: var(--text-dark);
  background: var(--white); overflow-x: hidden;
}
::selection { background: rgba(53,152,185,0.25); }
img { max-width: 100%; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.gradient-text { background: linear-gradient(135deg, var(--teal), var(--teal-pale)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.green-text { background: linear-gradient(135deg, var(--green-start), var(--green-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-family: 'Mundial', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-end); margin-bottom: 14px; }
.section-label.dark { color: var(--green-mid); }
.section-label::before { content: ''; display: block; width: 22px; height: 2px; background: linear-gradient(90deg, var(--green-start), var(--green-end)); border-radius: 2px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; font-family: 'Mundial', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: all 0.25s ease; text-decoration: none; border: 2px solid transparent; }
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--teal-light)); color: var(--white); }
.btn-primary:hover { background: linear-gradient(135deg, var(--teal-light), var(--teal-pale)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(53,152,185,0.35); }
.btn-green { background: linear-gradient(135deg, var(--green-start), var(--green-mid)); color: var(--white); }
.btn-green:hover { background: linear-gradient(135deg, var(--green-mid), var(--green-end)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(23,142,100,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: var(--white); transform: translateY(-2px); }
.btn-teal-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-teal-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(38,104,130,0.3); }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(16, 42, 55, 0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); height: 68px; display: flex; align-items: center; padding: 0 32px; transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.35); }
.nav-inner { width: 100%; max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { height: 36px; width: auto; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { font-family: 'Mundial', sans-serif; font-weight: 400; font-size: 0.8rem; letter-spacing: 0.02em; color: rgba(255,255,255,0.78); text-decoration: none; padding: 6px 9px; border-radius: 4px; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--green-end); }
.nav-links a.nav-tool { color: var(--green-end); border: 1px solid rgba(81,208,129,0.35); margin-left: 4px; }
.nav-links a.nav-tool:hover { background: rgba(81,208,129,0.12); border-color: rgba(81,208,129,0.6); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-lang { display: flex; align-items: center; gap: 2px; font-family: 'Mundial', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.08em; border: 1px solid rgba(255,255,255,0.18); border-radius: 3px; overflow: hidden; }
.nav-lang button { background: none; border: none; color: rgba(255,255,255,0.5); font: inherit; padding: 5px 9px; cursor: pointer; transition: all 0.2s; }
.nav-lang button.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-lang button:not(.active):not(:disabled):hover { color: var(--white); }
.nav-lang button:disabled { cursor: not-allowed; opacity: 0.45; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ─── HERO (home) ────────────────────────────────────────── */
.hero { background-color: var(--navy); background-image: radial-gradient(ellipse 80% 60% at 72% 45%, rgba(38,104,130,0.24) 0%, transparent 65%), radial-gradient(ellipse 45% 55% at 8% 85%, rgba(23,142,100,0.1) 0%, transparent 55%); min-height: 100vh; padding-top: 68px; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.hero-inner { width: 100%; max-width: 1240px; margin: 0 auto; padding: 60px 40px 80px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-content { animation: fadeInUp 0.9s ease both; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(81,208,129,0.1); border: 1px solid rgba(81,208,129,0.25); border-radius: 20px; padding: 5px 14px 5px 10px; margin-bottom: 26px; }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-end); box-shadow: 0 0 8px var(--green-end); animation: pulse 2s infinite; }
.hero-badge span { font-family: 'Mundial', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-end); }
.hero-title { font-family: 'Mundial', sans-serif; font-weight: 900; font-size: clamp(2.7rem, 5vw, 4.7rem); line-height: 0.98; letter-spacing: -0.02em; color: var(--white); margin-bottom: 22px; text-transform: uppercase; }
.hero-title .line-teal { background: linear-gradient(90deg, var(--teal-light), var(--teal-pale)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-title .line-green { background: linear-gradient(90deg, var(--green-mid), var(--green-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-family: 'Mundial', sans-serif; font-weight: 300; font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.62); max-width: 500px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; height: 520px; animation: fadeIn 1.1s ease 0.3s both; display: flex; align-items: center; justify-content: center; }
.hero-ring, .hero-ring-2 { position: absolute; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero-ring { width: 480px; height: 480px; border: 1px solid rgba(255,255,255,0.05); }
.hero-ring-2 { width: 340px; height: 340px; border: 1px solid rgba(53,152,185,0.12); animation: spin 60s linear infinite; }
.hero-network { width: 100%; height: 100%; position: relative; z-index: 1; }
.hero-network svg { width: 100%; height: 100%; overflow: visible; }
.net-line { stroke: rgba(88,182,231,0.28); stroke-width: 1; }
.net-line.glow { stroke: rgba(81,208,129,0.45); }
.net-node { fill: var(--teal-pale); }
.net-node.lg { fill: var(--green-end); filter: drop-shadow(0 0 6px rgba(81,208,129,0.7)); }
.net-pulse { fill: none; stroke: var(--green-end); stroke-width: 1.5; opacity: 0; }
.net-label { font-family: 'Mundial', sans-serif; font-weight: 700; font-size: 9px; letter-spacing: 0.08em; fill: rgba(255,255,255,0.55); text-transform: uppercase; }
.hero-visual-tag { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 8px; background: rgba(16,42,55,0.7); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(8px); border-radius: 30px; padding: 8px 16px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; color: var(--teal-pale); text-transform: uppercase; }
.hero-scroll-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; animation: fadeInUp 1s ease 1.5s both; z-index: 1; }
.hero-scroll-hint span { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.scroll-line { width: 1px; height: 38px; background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent); animation: scrollPulse 2s infinite; }

/* ─── PAGE HERO (subpages) ───────────────────────────────── */
.page-hero { background-color: var(--navy); background-image: radial-gradient(ellipse 70% 80% at 80% 20%, rgba(38,104,130,0.25) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 0% 100%, rgba(23,142,100,0.1) 0%, transparent 55%); padding: 132px 40px 64px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(81,208,129,0.3), transparent); }
.page-hero-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.74rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green-end); }
.breadcrumb span { color: var(--teal-pale); }
.page-hero h1 { font-family: 'Mundial', sans-serif; font-weight: 900; font-size: clamp(2.1rem, 4vw, 3.4rem); line-height: 1.05; color: var(--white); letter-spacing: -0.01em; max-width: 16ch; }
.page-hero p { font-family: 'Mundial', sans-serif; font-weight: 300; font-size: 1.04rem; line-height: 1.7; color: rgba(255,255,255,0.66); max-width: 760px; margin-top: 18px; }

/* ─── SECTION SHELL ──────────────────────────────────────── */
section { scroll-margin-top: 68px; }
.pad-light { background: var(--white); padding: 90px 40px; }
.pad-pale  { background: var(--off-white); padding: 90px 40px; }
.pad-dark  { background: var(--navy); background-image: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(38,104,130,0.18) 0%, transparent 60%); padding: 90px 40px; position: relative; overflow: hidden; }
.head-center { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.head-center .section-label { justify-content: center; }
.sec-title { font-family: 'Mundial', sans-serif; font-weight: 900; font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.1; color: var(--navy); }
.pad-dark .sec-title { color: var(--white); }
.sec-lead { font-size: 1.02rem; line-height: 1.75; color: var(--text-body); margin-top: 18px; }
.pad-dark .sec-lead { color: rgba(255,255,255,0.66); }

/* ─── HOME · OVERVIEW CARDS ──────────────────────────────── */
.overview-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.overview-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; padding: 30px 28px; text-decoration: none; box-shadow: 0 4px 20px rgba(16,42,55,0.05); transition: all 0.3s ease; position: relative; overflow: hidden; }
.overview-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--green-end)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.overview-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(16,42,55,0.13); border-color: rgba(38,104,130,0.2); }
.overview-card:hover::before { transform: scaleX(1); }
.overview-ico { width: 46px; height: 46px; border-radius: 11px; background: linear-gradient(135deg, rgba(38,104,130,0.12), rgba(23,142,100,0.1)); border: 1px solid rgba(38,104,130,0.18); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.overview-ico svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.overview-card h3 { font-family: 'Mundial', sans-serif; font-weight: 700; font-size: 1.12rem; color: var(--navy); margin-bottom: 8px; }
.overview-card p { font-size: 0.88rem; line-height: 1.6; color: var(--text-body); flex-grow: 1; }
.overview-card .go { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-mid); }
.overview-card .go svg { width: 14px; height: 14px; transition: transform 0.25s; }
.overview-card:hover .go svg { transform: translateX(4px); }

/* ─── SOBRE / SPLIT ──────────────────────────────────────── */
.about-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-title { font-family: 'Mundial', sans-serif; font-weight: 900; margin-bottom: 4px; }
.about-title .big-line { font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; display: block; }
.about-title .sub-line { font-size: clamp(1.7rem, 3vw, 2.6rem); color: var(--navy); line-height: 1.1; display: block; margin-top: 2px; }
.about-divider { width: 48px; height: 3px; background: linear-gradient(90deg, var(--green-start), var(--green-end)); border-radius: 2px; margin: 18px 0 22px; }
.about-text { font-size: 0.98rem; line-height: 1.78; color: var(--text-body); margin-bottom: 24px; }
.fields-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 0.78rem; font-weight: 600; color: var(--teal); background: rgba(38,104,130,0.07); border: 1px solid rgba(38,104,130,0.18); border-radius: 20px; padding: 6px 14px; transition: all 0.2s; }
.chip:hover { background: rgba(38,104,130,0.13); transform: translateY(-1px); }
.about-visual { position: relative; height: 440px; border-radius: 14px; overflow: hidden; background: linear-gradient(160deg, var(--navy) 0%, #1a4a5e 55%, #0f3345 100%); box-shadow: 0 30px 70px rgba(16,42,55,0.22), 0 4px 16px rgba(0,0,0,0.12); display: flex; align-items: center; justify-content: center; }
.about-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 40% at 50% 25%, rgba(53,152,185,0.16) 0%, transparent 65%); }
.about-map { width: 78%; opacity: 0.9; position: relative; z-index: 1; }
.about-map .uf-dot { fill: var(--teal-pale); opacity: 0.55; }
.about-map .uf-dot.hot { fill: var(--green-end); opacity: 1; filter: drop-shadow(0 0 5px rgba(81,208,129,0.6)); }
.about-visual-tag { position: absolute; bottom: 18px; left: 18px; right: 18px; background: rgba(16,42,55,0.82); backdrop-filter: blur(8px); border-radius: 8px; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.08); z-index: 2; }
.about-visual-tag strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--white); }
.about-visual-tag span { font-size: 0.72rem; color: var(--teal-pale); }

/* ─── PILLARS (SNCC) ─────────────────────────────────────── */
.pillars-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar-card { background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 26px 24px; transition: all 0.3s ease; }
.pillar-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(53,152,185,0.3); transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.3); }
.pillar-ico { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, rgba(38,104,130,0.35), rgba(23,142,100,0.25)); border: 1px solid rgba(81,208,129,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pillar-ico svg { width: 22px; height: 22px; stroke: var(--green-end); fill: none; stroke-width: 1.8; }
.pillar-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.pillar-card p { font-size: 0.86rem; line-height: 1.6; color: rgba(255,255,255,0.6); }

/* ─── LEGAL NOTE ─────────────────────────────────────────── */
.legal-note { display: flex; align-items: flex-start; gap: 10px; max-width: 1240px; margin: 36px auto 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-left: 3px solid var(--orange); border-radius: 8px; padding: 14px 18px; }
.legal-note svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; flex-shrink: 0; margin-top: 1px; }
.legal-note p { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.62); }
.legal-note.on-light { background: rgba(255,163,0,0.06); border-color: rgba(255,163,0,0.22); border-left-color: var(--orange); }
.legal-note.on-light p { color: var(--text-body); }

/* ─── CONSELHOS ──────────────────────────────────────────── */
.councils-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.council-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; padding: 28px 26px; box-shadow: 0 4px 20px rgba(16,42,55,0.06); transition: all 0.3s ease; position: relative; overflow: hidden; }
.council-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--green-end)); }
.council-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(16,42,55,0.13); }
.council-level { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 8px; }
.council-card h3 { font-size: 1.12rem; font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 6px; }
.council-sigla { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: var(--teal); background: rgba(38,104,130,0.08); border-radius: 4px; padding: 3px 9px; margin-bottom: 14px; }
.council-card p { font-size: 0.86rem; line-height: 1.6; color: var(--text-body); }

/* ─── TERRITÓRIOS ────────────────────────────────────────── */
.terr-split { max-width: 1240px; margin: 0 auto 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.terr-block { background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 30px 28px; }
.terr-block h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.terr-block p { font-size: 0.9rem; line-height: 1.66; color: rgba(255,255,255,0.62); }
.uf-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(9, 1fr); gap: 8px; }
.uf-item { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-family: 'Mundial', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.02em; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.uf-item:hover { color: var(--navy); background: var(--green-end); border-color: var(--green-end); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(81,208,129,0.25); }
.terr-cta { text-align: center; margin-top: 40px; }

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band { max-width: 1240px; margin: 0 auto; background: linear-gradient(135deg, var(--navy) 0%, #14495e 100%); border-radius: 16px; padding: 56px 60px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; box-shadow: 0 30px 70px rgba(16,42,55,0.25); }
.cta-band::after { content: ''; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(81,208,129,0.18), transparent 70%); }
.cta-band h2 { font-family: 'Mundial'; font-weight: 900; font-size: clamp(1.6rem, 2.8vw, 2.3rem); color: var(--white); line-height: 1.12; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-band p { font-size: 0.94rem; line-height: 1.68; color: rgba(255,255,255,0.66); position: relative; z-index: 1; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }

/* ─── ESPECIALISTAS ──────────────────────────────────────── */
.especialistas-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.specialist-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 0 24px; border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); transition: all 0.3s ease; cursor: pointer; }
.specialist-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(53,152,185,0.3); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.specialist-avatar { width: 100%; height: 220px; position: relative; margin-bottom: 18px; flex-shrink: 0; }
.avatar-inner { position: absolute; inset: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.specialist-name { font-family: 'Mundial'; font-weight: 700; font-size: 1.02rem; color: var(--white); margin-bottom: 5px; }
.specialist-role { font-size: 0.78rem; color: var(--teal-pale); letter-spacing: 0.03em; }
.specialist-social { display: flex; gap: 8px; margin-top: 14px; }
.social-dot { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.2s; cursor: pointer; }
.social-dot:hover { background: rgba(53,152,185,0.2); border-color: var(--teal-light); }
.social-dot svg { width: 12px; height: 12px; fill: rgba(255,255,255,0.5); }
.especialistas-cta { text-align: center; margin-top: 44px; }

/* ─── EVENTOS ────────────────────────────────────────────── */
.events-wrap { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.event-card { display: flex; gap: 20px; align-items: center; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; padding: 22px 24px; box-shadow: 0 4px 20px rgba(16,42,55,0.05); transition: all 0.3s; }
.event-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(16,42,55,0.1); border-color: rgba(38,104,130,0.2); }
.event-date { flex-shrink: 0; width: 64px; text-align: center; background: linear-gradient(160deg, var(--navy), #1a4a5e); border-radius: 10px; padding: 12px 0; color: var(--white); }
.event-date .d { font-family: 'Mundial'; font-weight: 900; font-size: 1.5rem; line-height: 1; }
.event-date .m { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-pale); margin-top: 3px; }
.event-info .event-cat { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-mid); }
.event-info h3 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin: 5px 0; }
.event-info .event-loc { font-size: 0.8rem; color: var(--gray); }
.events-note { max-width: 1240px; margin: 28px auto 0; text-align: center; }

/* ─── APOIE ──────────────────────────────────────────────── */
.support-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.support-card { background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 32px 28px; text-align: center; transition: all 0.3s; }
.support-card:hover { transform: translateY(-5px); border-color: rgba(255,163,0,0.35); background: rgba(255,255,255,0.06); }
.support-ico { width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 12px; background: linear-gradient(135deg, rgba(255,163,0,0.2), rgba(255,139,0,0.12)); border: 1px solid rgba(255,163,0,0.3); display: flex; align-items: center; justify-content: center; }
.support-ico svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 1.8; }
.support-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.support-card p { font-size: 0.86rem; line-height: 1.6; color: rgba(255,255,255,0.6); }
.support-cta { text-align: center; margin-top: 40px; }

/* ─── CONTATO ────────────────────────────────────────────── */
.contact { display: grid; grid-template-columns: 1fr 1fr; }
.contact-left { background: var(--navy); background-image: radial-gradient(ellipse 80% 60% at 10% 50%, rgba(38,104,130,0.25) 0%, transparent 60%); padding: 90px 60px; display: flex; flex-direction: column; justify-content: center; }
.contact-heading { font-family: 'Mundial'; font-weight: 900; font-size: clamp(2rem, 3vw, 2.8rem); color: var(--white); line-height: 1.1; margin-bottom: 12px; }
.contact-sub { font-size: 0.94rem; color: rgba(255,255,255,0.55); margin-bottom: 40px; line-height: 1.65; max-width: 420px; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; stroke: var(--teal-pale); fill: none; }
.contact-item-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-pale); margin-bottom: 3px; }
.contact-item-value { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.contact-right { background: var(--white); padding: 90px 60px; display: flex; flex-direction: column; justify-content: center; }
.form-title { font-family: 'Mundial'; font-weight: 900; font-size: 1.5rem; color: var(--navy); margin-bottom: 6px; }
.form-intro { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-body); }
.form-group input, .form-group textarea, .form-group select { font-family: 'Mundial', sans-serif; font-size: 0.88rem; padding: 12px 14px; border: 1.5px solid var(--gray-light); border-radius: 6px; color: var(--text-dark); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; resize: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal-light); box-shadow: 0 0 0 3px rgba(53,152,185,0.12); }
.form-group textarea { height: 110px; }
.btn-submit { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--teal), var(--teal-light)); color: var(--white); font-family: 'Mundial'; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; border: none; border-radius: 6px; cursor: pointer; transition: all 0.25s; }
.btn-submit:hover { background: linear-gradient(135deg, var(--teal-light), var(--teal-pale)); box-shadow: 0 8px 24px rgba(53,152,185,0.35); transform: translateY(-2px); }
.form-feedback { display: none; border-radius: 8px; padding: 13px 16px; margin-bottom: 18px; font-size: 0.86rem; line-height: 1.55; }
.form-feedback.show { display: block; }
.form-feedback.ok { background: rgba(23,142,100,0.1); border: 1px solid rgba(81,208,129,0.4); color: var(--green-start); }
.form-feedback.err { background: rgba(255,139,0,0.08); border: 1px solid rgba(255,163,0,0.4); color: #b45f00; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.05); padding: 56px 40px 28px; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px; }
.footer-brand { max-width: 280px; }
.footer-logo { height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.4); }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-pale); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.5); text-decoration: none; display: block; padding: 4px 0; transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.social-btn:hover { background: rgba(53,152,185,0.15); border-color: rgba(53,152,185,0.4); }
.social-btn svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.5); transition: fill 0.2s; }
.social-btn:hover svg { fill: rgba(255,255,255,0.9); }
.footer-disclaimer { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 16px 20px; margin-bottom: 24px; }
.footer-disclaimer strong { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.footer-disclaimer p { font-size: 0.76rem; line-height: 1.65; color: rgba(255,255,255,0.4); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.footer-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.22); font-style: italic; font-family: 'Toska', serif; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 6px var(--green-end); opacity: 1; } 50% { box-shadow: 0 0 14px var(--green-end); opacity: 0.7; } }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 0.7; transform: scaleY(1.15); } }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ─── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 99; background: rgba(11, 30, 41, 0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.08); max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.mobile-menu.open { max-height: 85vh; overflow-y: auto; }
.mobile-menu ul { list-style: none; padding: 10px 0 24px; }
.mobile-menu ul li a { display: block; font-family: 'Mundial'; font-weight: 600; font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.75); text-decoration: none; padding: 14px 28px; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s, background 0.2s; }
.mobile-menu ul li a:hover, .mobile-menu ul li a.active { color: var(--green-end); background: rgba(255,255,255,0.04); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
}
@media (max-width: 1024px) {
  .especialistas-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid, .councils-grid, .support-grid, .overview-grid { grid-template-columns: 1fr; }
  .hero-inner { gap: 36px; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; height: 360px; margin-top: 24px; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .about-inner { grid-template-columns: 1fr; gap: 44px; }
  .about-visual { height: 320px; }
  .terr-split { grid-template-columns: 1fr; }
  .uf-grid { grid-template-columns: repeat(6, 1fr); }
  .cta-band { grid-template-columns: 1fr; padding: 44px 36px; }
  .events-wrap { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 28px; }
}
@media (max-width: 640px) {
  .navbar { padding: 0 20px; }
  .hero-inner { padding: 36px 20px 56px; }
  .page-hero { padding: 110px 20px 48px; }
  .pad-light, .pad-dark { padding: 64px 20px; }
  .pad-pale { padding: 64px 20px; }
  .especialistas-grid { grid-template-columns: 1fr 1fr; }
  .uf-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-left, .contact-right { padding: 56px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
  .footer { padding: 44px 20px 24px; }
  .footer-cols { gap: 32px; }
}
@media (max-width: 420px) {
  .especialistas-grid { grid-template-columns: 1fr; }
  .uf-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
}
