@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}

/* ====================================================================
   PROJETO SEMEAR — identidade real da marca
   Navy #0c263d (logo) + Creme #f9f8f6 + Dourado quente (esperança)
   ==================================================================== */
:root {
  color-scheme: light;
  --navy: #0c263d;
  --navy-2: #0a1f33;
  --navy-3: #14324f;
  --ink: #0c263d;
  --cream: #f9f8f6;
  --ivory: #f4f1ea;
  --paper: #efebe1;
  --surface: #ffffff;
  --gold: #c9a24a;
  --gold-deep: #a07f33;
  --gold-soft: rgba(201, 162, 74, 0.16);
  --green-wa: #25d366;
  --text: #1b2a3a;
  --muted: #5f7185;
  --white: #ffffff;
  --line: rgba(12, 38, 61, 0.12);
  --line-strong: rgba(12, 38, 61, 0.2);
  --shadow: 0 28px 70px rgba(8, 23, 40, 0.28);
  --shadow-soft: 0 14px 34px rgba(8, 23, 40, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}
body.menu-open, body.lightbox-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link, .sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 16px; left: 16px; z-index: 9999;
  width: auto; height: auto; padding: 12px 16px;
  background: var(--white); color: var(--ink); clip: auto;
  border: 1px solid var(--line);
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 16px; left: 50%;
  z-index: 1000;
  width: min(calc(100% - 32px), 1240px);
  min-height: 66px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  color: var(--white);
  background: rgba(10, 28, 46, 0.72);
  border: 1px solid rgba(201, 162, 74, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 52px rgba(6, 18, 32, 0.34);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background .2s ease, transform .2s ease;
}
.site-header.is-scrolled {
  background: rgba(9, 24, 40, 0.95);
  box-shadow: 0 18px 52px rgba(6, 18, 32, 0.5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  text-decoration: none;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1.02rem; line-height: 1.1; font-weight: 800; color: var(--white); letter-spacing: .01em; }
.brand small {
  margin-top: 3px; color: rgba(201, 162, 74, 0.95);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color .18s ease, background .18s ease;
}
.site-nav a:hover, .site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}
.site-nav .nav-cta {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #dcb863);
  box-shadow: 0 10px 26px rgba(201, 162, 74, 0.4);
  font-weight: 800;
}
.site-nav .nav-cta:hover { background: linear-gradient(135deg, #dcb863, var(--gold-deep)); color: var(--navy); }

.menu-button {
  display: none;
  width: 46px; height: 46px;
  flex: 0 0 46px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  cursor: pointer;
}
.menu-line {
  display: block; width: 20px; height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.menu-button.is-open .menu-line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-button.is-open .menu-line:nth-child(2) { opacity: 0; }
.menu-button.is-open .menu-line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 48px;
  padding: 132px max(24px, calc((100vw - var(--max)) / 2)) 86px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media {
  background:
    radial-gradient(900px 600px at 88% 8%, rgba(201,162,74,0.16), transparent 60%),
    radial-gradient(700px 600px at 10% 100%, rgba(20,50,79,0.9), transparent 65%),
    linear-gradient(135deg, #0c263d 0%, #0a1f33 55%, #08182a 100%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
}
.hero-content, .hero-stage { position: relative; z-index: 1; }

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid rgba(201,162,74,0.4);
  border-radius: 999px;
  background: var(--gold-soft);
}
/* Eyebrow on light backgrounds — darker gold for contrast */
.eyebrow.on-light { color: var(--gold-deep); }
.hero h1, .section h2, .contact-section h2, .curso-copy h2, .donate-head h2, .team-head h2, .social-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw + 1rem, 5rem);
  line-height: 0.98;
  text-wrap: balance;
  color: var(--white);
}
.hero h1 .accent { color: var(--gold); }
.hero-kicker {
  margin: 22px 0 0;
  color: var(--cream);
  font-size: 1.28rem;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, serif;
}
.hero-copy {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.8);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions, .contact-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 32px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); outline: none; }
.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #dcb863);
  box-shadow: 0 16px 34px rgba(201, 162, 74, 0.38);
}
.button-primary:hover { box-shadow: 0 20px 42px rgba(201, 162, 74, 0.52); }
.button-wa {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-wa), #128c7e);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32);
}
.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.07);
}
.button-ghost.dark {
  color: var(--navy);
  border-color: var(--line-strong);
  background: rgba(12,38,61,0.04);
}

.hero-stage {
  display: grid;
  gap: 18px;
  justify-items: end;
}
.cinema-frame {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(201,162,74,0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(201,162,74,0.14), transparent 60%),
    linear-gradient(160deg, var(--navy-3), var(--navy-2));
}
.cinema-frame img { width: 72%; height: auto; object-fit: contain; filter: drop-shadow(0 12px 30px rgba(0,0,0,0.4)); }
.cinema-frame::before {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(201, 162, 74, 0.34);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
}
.frame-caption {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  padding: 12px 16px;
  background: rgba(8,20,34,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.frame-caption span { display: block; color: rgba(255,255,255,0.7); font-size: 0.78rem; }
.frame-caption strong { display: block; margin-top: 4px; color: var(--gold); font-size: 1rem; }
.hero-stat {
  width: min(100%, 330px);
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(201,162,74,0.95), rgba(160,127,51,0.92));
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px rgba(8,23,40,0.3);
  color: var(--navy);
}
.hero-stat strong { display: block; margin-bottom: 6px; font-size: 1.5rem; font-weight: 800; }
.hero-stat span { color: rgba(12,38,61,0.82); font-size: 0.88rem; line-height: 1.45; font-weight: 600; }

/* ---------- INTRO BAND ---------- */
.intro-band {
  display: grid; gap: 14px; place-items: center;
  padding: 56px 24px;
  color: var(--cream);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(201,162,74,0.12), transparent 70%),
    var(--navy-2);
  text-align: center;
}
.quote-mark {
  position: relative;
  max-width: 900px; margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw + .6rem, 1.65rem);
  line-height: 1.5;
  font-style: italic;
}
.quote-mark::before {
  content: "\201C";
  display: block;
  font-size: 3.4rem;
  line-height: 0;
  margin-bottom: 18px;
  color: var(--gold);
}
.intro-band span { color: var(--gold); font-weight: 700; letter-spacing: .02em; }

/* ---------- SECTIONS ---------- */
.section { padding: 94px max(24px, calc((100vw - var(--max)) / 2)); }
.section-light { background: var(--cream); }
.section-ivory { background: var(--ivory); }
.section-dark { color: var(--white); background: var(--navy); position: relative; overflow: hidden; }
.section-dark::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 500px at 85% 0%, rgba(201,162,74,0.1), transparent 60%);
  pointer-events: none;
}
.section-dark h2, .section-dark p { color: var(--white); position: relative; }

.section-heading { max-width: 760px; margin-bottom: 46px; position: relative; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section h2, .contact-section h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.3vw + 1rem, 3.1rem);
  line-height: 1.06;
  text-wrap: balance;
}
.section-dark .eyebrow { color: var(--gold); }
.section-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}
.section-dark .section-heading p { color: rgba(255,255,255,0.78); }

/* ---------- ESSENCE / VALUE CARDS ---------- */
.essence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.essence-card, .value-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.essence-card::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  opacity: 0; transition: opacity .25s ease;
}
.essence-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(8,23,40,0.14); border-color: rgba(201,162,74,0.4); }
.essence-card:hover::after { opacity: 1; }
.section-dark .value-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(201,162,74,0.22);
  color: var(--white);
}
.section-dark .value-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.08); border-color: rgba(201,162,74,0.5); box-shadow: 0 24px 50px rgba(0,0,0,0.3); }
.card-icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 22px;
  font-size: 26px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #dcb863);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(201, 162, 74, 0.36);
}
.section-dark .card-icon { color: var(--navy); }
.essence-card h3, .value-card h3 {
  position: relative;
  margin: 0 0 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 700;
}
.section-dark .value-card h3 { color: var(--white); }
.essence-card p, .value-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.section-dark .value-card p { color: rgba(255,255,255,0.78); }

/* ---------- CURSO DE PANIFICAÇÃO ---------- */
.curso-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 50px;
  align-items: center;
  padding: 94px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ivory);
}
.curso-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/11;
}
.curso-media img { width: 100%; height: 100%; object-fit: cover; }
.curso-media .badge-free {
  position: absolute; top: 16px; left: 16px;
  padding: 8px 16px;
  background: var(--green-wa); color: #06351f;
  border-radius: 999px; font-weight: 800; font-size: 0.84rem;
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}
.curso-copy h2 { color: var(--navy); font-size: clamp(2rem, 3vw + 1rem, 2.9rem); line-height: 1.06; }
.curso-copy > p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin: 16px 0 0; }
.curso-points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.curso-points li { display: flex; gap: 12px; align-items: flex-start; }
.curso-points li b { color: var(--navy); }
.curso-points li span { color: var(--muted); }
.curso-points .ck {
  flex: 0 0 26px; width: 26px; height: 26px; margin-top: 2px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-deep);
  font-weight: 900; font-size: 0.9rem;
}

/* ---------- FOUNDER ---------- */
.founder-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  padding: 94px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
}
.founder-image { position: relative; max-width: 460px; }
.founder-image::before {
  content: "";
  position: absolute; inset: -16px 16px 16px -16px;
  z-index: 0;
  border: 2px solid rgba(201,162,74,0.5);
  border-radius: var(--radius-lg);
}
.founder-image img {
  position: relative; z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.founder-copy .eyebrow { color: var(--gold-deep); background: var(--gold-soft); border-color: rgba(201,162,74,0.4); }
.founder-copy h2 { color: var(--navy); }
.founder-copy p { color: var(--muted); font-size: 1.02rem; line-height: 1.78; }
.founder-copy .roles {
  margin: 14px 0 22px;
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: .02em;
}

/* ---------- EQUIPE / DIRETORIA ---------- */
.team-section { padding: 94px max(24px, calc((100vw - var(--max)) / 2)); background: var(--ivory); }
.team-head { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.team-head .eyebrow { color: var(--gold-deep); }
.team-head h2 { color: var(--navy); font-size: clamp(2rem, 3vw + 1rem, 3rem); }
.team-head p { color: var(--muted); margin-top: 14px; line-height: 1.7; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(8,23,40,0.14); }
.team-card img {
  width: 110px; height: 110px;
  margin: 0 auto 14px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 22px rgba(8,23,40,0.16);
}
.team-card h3 { margin: 0; font-size: 1.02rem; color: var(--navy); font-weight: 800; }
.team-card .role { display: block; margin-top: 6px; color: var(--gold-deep); font-size: 0.82rem; font-weight: 700; }
.team-card p { margin: 12px 0 0; color: var(--muted); font-size: 0.86rem; line-height: 1.55; }

/* ---------- DOAÇÃO / COMO AJUDAR ---------- */
.donate-section {
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--navy);
  color: var(--white);
  position: relative; overflow: hidden;
}
.donate-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 500px at 12% 0%, rgba(201,162,74,0.12), transparent 60%);
  pointer-events: none;
}
.donate-head { max-width: 760px; margin: 0 auto 46px; text-align: center; position: relative; }
.donate-head .eyebrow { color: var(--gold); }
.donate-head h2 { color: var(--white); font-size: clamp(2rem, 3vw + 1rem, 3rem); }
.donate-head p { color: rgba(255,255,255,0.8); margin-top: 14px; line-height: 1.7; }
.donate-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.donate-card {
  display: flex; flex-direction: column;
  padding: 26px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,74,0.22);
  border-radius: var(--radius-lg);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.donate-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.08); border-color: rgba(201,162,74,0.55); }
.donate-card .card-icon { margin-bottom: 18px; }
.donate-card h3 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 1.24rem; color: var(--white); }
.donate-card p { margin: 0 0 20px; color: rgba(255,255,255,0.78); font-size: 0.92rem; line-height: 1.6; flex: 1; }
.donate-card .dn-btn {
  min-height: 46px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 800; font-size: 0.92rem;
  text-decoration: none;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #dcb863);
  transition: transform .18s ease, box-shadow .18s ease;
}
.donate-card .dn-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(201,162,74,0.4); }

/* ---------- TRANSPARÊNCIA STATS + CERT ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.stat-card {
  text-align: center;
  padding: 30px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.stat-card .num { font-size: 2.4rem; font-weight: 900; color: var(--gold-deep); line-height: 1; }
.stat-card .num.sm { font-size: 1.3rem; }
.stat-card h3 { margin: 10px 0 6px; color: var(--navy); font-size: 1.05rem; }
.stat-card p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.55; }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cert-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.cert-card h4 { margin: 0 0 6px; color: var(--navy); font-size: 1rem; }
.cert-card span { display: block; color: var(--muted); font-size: 0.86rem; line-height: 1.5; }

/* ---------- TRANSPARÊNCIA — sub-títulos dos grupos ---------- */
.trans-subhead {
  margin: 42px 0 4px;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.trans-subhead::before {
  content: "";
  flex: none;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}
.trans-subnote { margin: 0 0 18px; color: var(--muted); font-size: 0.92rem; }

/* cert-card agora é link clicável */
a.cert-card { display: block; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-left-color .18s ease; }
a.cert-card:hover, a.cert-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(8, 23, 40, 0.16);
  border-left-color: var(--gold-deep);
  outline: none;
}
.cert-open {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 700;
}
.cert-open svg { width: 15px; height: 15px; }

/* ---------- BALANÇOS (documentos financeiros) ---------- */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 14px;
}
.doc-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 18px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.doc-card:hover, .doc-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(8, 23, 40, 0.16);
  outline: none;
}
.doc-card .doc-ic { width: 26px; height: 26px; color: var(--gold-deep); margin-bottom: 4px; }
.doc-card .doc-year { font-size: 1.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.doc-card .doc-label { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }
.doc-card .doc-dl {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px; font-size: 0.8rem; font-weight: 700; color: var(--gold-deep);
}
.doc-card .doc-dl-ic { width: 15px; height: 15px; flex: 0 0 auto; }
.doc-card:hover .doc-dl-ic { transform: translateY(2px); transition: transform .18s ease; }

/* ---------- PARCEIROS ---------- */
.partners-section { background: var(--cream); padding: 80px max(24px, calc((100vw - var(--max)) / 2)); border-top: 1px solid var(--line); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}
.partner-logo {
  display: grid;
  place-items: center;
  height: 92px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(8, 23, 40, 0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.partner-logo:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(8, 23, 40, 0.12); }
.partner-logo img { max-width: 100%; max-height: 58px; object-fit: contain; }

/* ---------- REDES SOCIAIS ---------- */
.social-section {
  padding: 86px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ivory);
  text-align: center;
}
.social-head h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw + 1rem, 2.7rem); }
.social-head .eyebrow { color: var(--gold-deep); }
.social-head p { color: var(--muted); margin: 14px auto 0; max-width: 600px; line-height: 1.7; }
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 42px auto 0;
}
.social-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.social-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(8,23,40,0.16); border-color: rgba(201,162,74,0.5); }
.social-card svg { width: 34px; height: 34px; }
.social-card .si {
  width: 60px; height: 60px; display: grid; place-items: center;
  border-radius: 16px; color: #fff;
}
.si.ig { background: linear-gradient(135deg,#feda75,#d62976 45%,#962fbf 75%,#4f5bd5); }
.si.fb { background: #1877f2; }
.si.yt { background: #ff0000; }
.si.wa { background: var(--green-wa); }
.social-card strong { font-size: 1rem; }
.social-card span { color: var(--muted); font-size: 0.84rem; }

/* ---------- CONTACT ---------- */
.contact-section {
  padding: 98px 24px;
  color: var(--white);
  background:
    radial-gradient(700px 460px at 50% 0%, rgba(201,162,74,0.18), transparent 62%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  text-align: center;
}
.contact-inner { width: min(100%, 920px); margin: 0 auto; }
.contact-section .eyebrow { color: var(--gold); }
.contact-section h2, .contact-section p { color: var(--white); }
.contact-section p { max-width: 680px; margin: 16px auto 0; opacity: 0.86; line-height: 1.7; }
.contact-actions { justify-content: center; }
.phone { margin-top: 26px; font-weight: 800; font-size: 1.1rem; color: var(--gold); }

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 56px max(24px, calc((100vw - var(--max)) / 2)) 28px;
  color: rgba(255,255,255,0.7);
  background: #06151f;
  font-size: 0.92rem;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img { width: 56px; height: 56px; object-fit: contain; }
.footer-brand strong { display: block; color: var(--white); font-size: 1.1rem; }
.footer-brand p { margin: 8px 0 0; max-width: 360px; line-height: 1.65; }
.footer-col h4 { margin: 0 0 14px; color: var(--white); font-size: 0.96rem; }
.footer-col a, .footer-col p { display: block; margin: 0 0 9px; color: rgba(255,255,255,0.72); text-decoration: none; transition: color .18s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 10px; background: rgba(255,255,255,0.08); color: #fff;
  transition: background .18s ease, transform .18s ease;
}
.footer-social a:hover { transform: translateY(-2px); background: var(--gold); color: var(--navy); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  padding-top: 22px;
}
.footer-bottom span { color: rgba(255,255,255,0.55); font-size: 0.84rem; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 18px 38px rgba(37,211,102,0.42);
  transition: transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.6);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(.92); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.whatsapp-float:hover, .whatsapp-float:focus-visible { transform: translateY(-3px) scale(1.05); outline: none; }
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }

/* ---------- REVEAL ANIMATION ---------- */
body.reveal-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
body.reveal-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    top: 92px;
    left: 16px; right: 16px;
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 14px;
    background: rgba(9, 24, 40, 0.97);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .site-nav a { justify-content: center; }
  .menu-button { display: grid; }

  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 124px; }
  .hero-stage { justify-items: start; }
  .cinema-frame { width: min(100%, 340px); }

  .essence-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .curso-section, .founder-section { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .donate-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { top: 10px; width: min(calc(100% - 20px), 1240px); padding-left: 12px; }
  .brand small { display: none; }
  .brand strong { font-size: 0.92rem; }

  .hero { padding: 116px 18px 54px; }
  .hero-actions, .contact-actions { display: grid; }
  .button { width: 100%; }

  .section, .contact-section, .curso-section, .founder-section, .team-section, .donate-section, .social-section, .partners-section {
    padding-left: 18px; padding-right: 18px;
  }
  .section, .curso-section, .founder-section, .team-section, .donate-section, .social-section { padding-top: 64px; padding-bottom: 64px; }

  .essence-grid, .values-grid, .donate-grid, .stats-grid, .cert-grid, .social-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .whatsapp-float::before { display: none; }
}
