:root {
  --navy-1000: #031322;
  --navy-950: #061d35;
  --navy-900: #082846;
  --navy-850: #0a3157;
  --navy-800: #0b3a65;
  --blue-700: #126da8;
  --blue-600: #1789c1;
  --blue-500: #2aa9d9;
  --blue-300: #8edaf1;
  --blue-150: #d7f1fa;
  --blue-100: #eaf7fc;
  --blue-050: #f5fbfd;
  --gold-700: #9b6b18;
  --gold-600: #bb8528;
  --gold-500: #d6a643;
  --gold-400: #e3bc68;
  --gold-300: #efd593;
  --gold-150: #f8ebc9;
  --ink: #15314c;
  --muted: #5b7185;
  --muted-light: #7d91a2;
  --white: #fff;
  --surface: #f8fbfd;
  --surface-warm: #fffdf8;
  --border: rgba(11, 54, 95, .13);
  --border-light: rgba(255, 255, 255, .16);
  --shadow: 0 28px 70px rgba(8, 40, 70, .14);
  --shadow-soft: 0 14px 38px rgba(8, 40, 70, .09);
  --shadow-dark: 0 32px 80px rgba(2, 17, 31, .32);
  --radius-2xl: 44px;
  --radius-xl: 34px;
  --radius-lg: 25px;
  --radius-md: 17px;
  --container: 1200px;
  --header-h: 90px;
  --ease: cubic-bezier(.22, .72, .24, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 115px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.67;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
::selection { background: var(--gold-300); color: var(--navy-1000); }

.container { width: min(calc(100% - 42px), var(--container)); margin-inline: auto; }
.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 { position: fixed; left: 18px; top: -90px; z-index: 9999; padding: 12px 18px; border-radius: 0 0 12px 12px; background: var(--gold-400); color: var(--navy-1000); font-weight: 900; transition: top .2s; }
.skip-link:focus { top: 0; }

.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 5000; height: 3px; pointer-events: none; background: transparent; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold-500), var(--blue-300)); box-shadow: 0 0 14px rgba(214, 166, 67, .55); }

.topbar { position: relative; z-index: 1200; background: var(--navy-1000); color: rgba(255,255,255,.74); }
.topbar__inner { min-height: 33px; display: flex; align-items: center; justify-content: space-between; gap: 28px; font-size: .72rem; }
.topbar p { display: flex; align-items: center; gap: 8px; margin: 0; }
.topbar__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 5px rgba(227,188,104,.09); }
.topbar__links { display: flex; align-items: center; gap: 10px; }
.topbar a { transition: color .2s; }
.topbar a:hover { color: var(--white); }

.site-header { position: sticky; top: 0; z-index: 1100; min-height: var(--header-h); color: var(--white); background: rgba(6,29,53,.96); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(18px); transition: min-height .25s var(--ease), box-shadow .25s, background .25s; }
.site-header.is-scrolled { min-height: 78px; background: rgba(3,19,34,.97); box-shadow: 0 12px 34px rgba(1,12,22,.2); }
.header__inner { min-height: inherit; display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand__phoenix { width: 246px; height: auto; filter: drop-shadow(0 8px 20px rgba(0,0,0,.18)); transition: width .25s var(--ease); }
.site-header.is-scrolled .brand__phoenix { width: 220px; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 22px; color: rgba(255,255,255,.78); font-size: .79rem; font-weight: 760; }
.main-nav a:not(.nav-donate) { position: relative; padding: 12px 0; transition: color .2s; }
.main-nav a:not(.nav-donate)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; border-radius: 2px; background: var(--gold-400); transition: right .25s var(--ease); }
.main-nav a:hover, .main-nav a.is-active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.nav-donate { padding: 11px 16px; border: 1px solid rgba(239,213,147,.45); border-radius: 999px; color: var(--navy-1000); background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); box-shadow: 0 9px 24px rgba(214,166,67,.16); transition: transform .2s, box-shadow .2s; }
.nav-donate:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(214,166,67,.27); }
.idealizadora { display: flex; align-items: center; gap: 10px; padding-left: 16px; border-left: 1px solid rgba(255,255,255,.13); }
.idealizadora > span:first-child { color: var(--gold-300); text-transform: uppercase; letter-spacing: .12em; font-size: .58rem; font-weight: 900; }
.idealizadora__logo { display: grid; place-items: center; width: 49px; height: 49px; border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.4), 0 8px 20px rgba(0,0,0,.13); overflow: hidden; }
.idealizadora__logo img { width: 43px; height: 43px; object-fit: contain; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; color: #fff; background: rgba(255,255,255,.06); }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: currentColor; transition: .25s; }

.hero { position: relative; min-height: 780px; padding: 92px 0 150px; overflow: hidden; background: linear-gradient(120deg, #f9fcfd 0%, #f9fcfd 54%, #eef8fc 100%); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .25; background-image: radial-gradient(rgba(11,54,95,.23) .7px, transparent .7px); background-size: 22px 22px; mask-image: linear-gradient(to right, #000, transparent 52%); }
.hero__mesh { position: absolute; width: 720px; height: 720px; right: -160px; top: -210px; border-radius: 50%; opacity: .55; background: repeating-radial-gradient(circle at center, transparent 0 34px, rgba(42,169,217,.09) 35px 36px); transform: rotate(8deg); }
.hero__orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); }
.hero__orb--one { width: 310px; height: 310px; left: -170px; top: 70px; background: radial-gradient(circle, rgba(142,218,241,.24), transparent 68%); }
.hero__orb--two { width: 260px; height: 260px; right: 36%; bottom: 30px; background: radial-gradient(circle, rgba(214,166,67,.12), transparent 68%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 78px; }
.hero__content { padding-bottom: 25px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 17px; color: var(--blue-700); text-transform: uppercase; letter-spacing: .13em; font-size: .71rem; font-weight: 900; }
.eyebrow > span { width: 26px; height: 2px; border-radius: 3px; background: linear-gradient(90deg, var(--gold-500), var(--blue-500)); }
.eyebrow--light { color: var(--gold-300); }
.hero h1, .section h2, .gallery__heading h2, .faq h2, .contact h2 { margin: 0; color: var(--navy-900); letter-spacing: -.045em; line-height: 1.06; }
.hero h1 { max-width: 680px; font-size: clamp(3.45rem, 5.4vw, 5.8rem); font-weight: 840; }
.hero h1 em { color: var(--blue-700); font-style: normal; position: relative; }
.hero h1 em::after { content: ""; position: absolute; left: 3px; right: 0; bottom: -7px; height: 7px; border-radius: 50%; border-top: 2px solid var(--gold-500); opacity: .75; transform: rotate(-1.3deg); }
.hero__lead { max-width: 650px; margin: 30px 0 0; color: var(--muted); font-size: 1.08rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 33px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 21px; border: 1px solid transparent; border-radius: 14px; font-size: .84rem; font-weight: 850; transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s, border-color .2s; }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--navy-850)); box-shadow: 0 14px 30px rgba(11,58,101,.24); }
.button--primary:hover { box-shadow: 0 18px 38px rgba(11,58,101,.31); }
.button--ghost { color: var(--navy-900); border-color: rgba(8,40,70,.2); background: rgba(255,255,255,.72); }
.button--ghost:hover { border-color: var(--blue-500); background: #fff; }
.button--light { margin-top: 30px; color: var(--navy-1000); background: linear-gradient(135deg, #fff, var(--blue-100)); box-shadow: 0 16px 35px rgba(0,0,0,.16); }
.hero__trust { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 12px; max-width: 585px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.hero__trust-mark { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(214,166,67,.45); border-radius: 50%; color: var(--gold-700); background: var(--gold-150); font-size: .76rem; font-weight: 900; }
.hero__trust p { margin: 2px 0 0; color: var(--muted); font-size: .78rem; }
.hero__visual { position: relative; min-height: 560px; transform-style: preserve-3d; will-change: transform; transition: transform .2s ease-out; }
.hero__image-shell { position: absolute; inset: 20px 10px 18px 42px; overflow: hidden; border: 9px solid rgba(255,255,255,.94); border-radius: 44% 25px 44% 25px; background: var(--blue-100); box-shadow: var(--shadow); }
.hero__image-shell::after { content: ""; position: absolute; inset: 17px; border: 1px solid rgba(255,255,255,.48); border-radius: inherit; pointer-events: none; }
.hero__image-shell img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.03); }
.hero__image-overlay { position: absolute; inset: 0; background: linear-gradient(150deg, transparent 43%, rgba(6,29,53,.32)); }
.hero__floating { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.82); background: rgba(255,255,255,.9); backdrop-filter: blur(16px); box-shadow: var(--shadow-soft); }
.hero__floating strong, .hero__floating small { display: block; }
.hero__floating strong { color: var(--navy-900); font-size: .8rem; }
.hero__floating small { color: var(--muted); font-size: .66rem; }
.hero__floating--care { left: 0; top: 105px; padding: 14px 17px; border-radius: 18px; }
.floating-icon { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 13px; color: var(--gold-700); background: var(--gold-150); font-size: 1.05rem; }
.hero__floating--idealizer { right: -20px; bottom: 72px; padding: 12px 15px 12px 10px; border-radius: 17px; }
.hero__floating--idealizer img { width: 45px; height: 45px; border-radius: 50%; object-fit: contain; background: #fff; }
.hero__orbit { position: absolute; inset: -10px 0 0 0; z-index: 3; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.hero__orbit path { fill: none; stroke: var(--gold-500); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 6 11; opacity: .65; animation: dash 18s linear infinite; }
.hero__scroll { position: absolute; z-index: 4; left: 50%; bottom: 58px; display: flex; flex-direction: column; align-items: center; gap: 7px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .6rem; font-weight: 900; transform: translateX(-50%); }
.hero__scroll i { position: relative; width: 24px; height: 38px; border: 1px solid rgba(8,40,70,.24); border-radius: 999px; }
.hero__scroll i::before { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px; border-radius: 4px; background: var(--gold-500); transform: translateX(-50%); animation: scrollDot 1.8s ease-in-out infinite; }
.hero__curve { position: absolute; left: -4%; right: -4%; bottom: -76px; height: 145px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; background: #fff; box-shadow: 0 -1px 0 rgba(8,40,70,.04); }

.principles { position: relative; z-index: 7; margin-top: -56px; }
.principles__grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.9); border-radius: 28px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.principle-card { position: relative; min-height: 215px; padding: 31px 27px 27px; transition: background .25s, transform .25s; }
.principle-card + .principle-card { border-left: 1px solid var(--border); }
.principle-card::after { content: ""; position: absolute; left: 26px; right: 100%; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--gold-500), var(--blue-500)); transition: right .35s var(--ease); }
.principle-card:hover { background: linear-gradient(180deg, #fff, var(--blue-050)); }
.principle-card:hover::after { right: 26px; }
.icon-badge { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(214,166,67,.26); border-radius: 15px; color: var(--gold-700); background: var(--gold-150); }
.icon-badge svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.principle-card h2 { margin: 20px 0 7px; color: var(--navy-900); font-size: 1rem; letter-spacing: -.02em; }
.principle-card p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.55; }

.section { position: relative; padding: 118px 0; }
.section--soft { background: linear-gradient(180deg, var(--blue-050), #eef8fc); }
.section-copy h2, .section-heading h2 { font-size: clamp(2.35rem, 4vw, 4.2rem); }
.section-copy > p:not(.eyebrow), .section-heading > p:not(.eyebrow), .gallery__heading > p, .faq__intro > p:not(.eyebrow) { color: var(--muted); }
.section-copy > p:not(.eyebrow) { margin: 22px 0 0; }
.section-heading { max-width: 770px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading > p:not(.eyebrow) { max-width: 650px; margin: 23px auto 0; }

.section--about { padding-top: 135px; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 92px; }
.about-visual { position: relative; min-height: 580px; padding: 20px 0 86px 52px; }
.about-photo { position: absolute; inset: 0 18px 70px 0; overflow: hidden; border-radius: 28px 46% 28px 38%; box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); transition: transform .7s var(--ease); }
.about-visual:hover .about-photo img { transform: scale(1.07); }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 42%, rgba(6,29,53,.24)); }
.about-mark { position: absolute; left: 0; top: 12px; z-index: -1; color: rgba(42,169,217,.07); font-size: 24rem; line-height: .8; font-weight: 900; }
.about-quote { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; max-width: 440px; margin-left: auto; padding: 26px 28px; border: 1px solid rgba(255,255,255,.8); border-radius: 20px; color: #fff; background: linear-gradient(135deg, rgba(8,40,70,.96), rgba(11,58,101,.94)); box-shadow: var(--shadow-dark); }
.about-quote > span { position: absolute; right: 18px; top: -8px; color: rgba(239,213,147,.22); font-family: Georgia, serif; font-size: 6rem; line-height: 1; }
.about-quote p { position: relative; margin: 0; font-size: .92rem; font-weight: 700; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 31px; }
.about-values div { padding: 17px 15px; border: 1px solid var(--border); border-radius: 15px; background: var(--surface); }
.about-values strong, .about-values span { display: block; }
.about-values strong { color: var(--navy-900); font-size: .79rem; }
.about-values span { margin-top: 3px; color: var(--muted); font-size: .66rem; line-height: 1.4; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 29px; color: var(--blue-700); font-size: .83rem; font-weight: 900; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }

.action-section { overflow: hidden; }
.action-section::before { content: ""; position: absolute; width: 680px; height: 680px; right: -350px; top: -260px; border-radius: 50%; border: 1px solid rgba(42,169,217,.16); box-shadow: -90px 50px 0 rgba(214,166,67,.025); }
.action-experience { display: grid; grid-template-columns: .39fr .61fr; gap: 20px; margin-top: 55px; padding: 12px; border: 1px solid rgba(255,255,255,.9); border-radius: 31px; background: rgba(255,255,255,.69); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.action-tabs { display: grid; align-content: start; gap: 12px; padding: 9px; }
.action-tab { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; width: 100%; min-height: 130px; padding: 20px; border: 1px solid transparent; border-radius: 20px; color: var(--ink); text-align: left; background: transparent; transition: background .25s, border-color .25s, box-shadow .25s, transform .25s; }
.action-tab:hover { transform: translateX(4px); background: rgba(255,255,255,.72); }
.action-tab.is-active { border-color: rgba(42,169,217,.18); background: #fff; box-shadow: var(--shadow-soft); }
.action-tab__number { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; color: var(--blue-700); background: var(--blue-100); font-size: .75rem; font-weight: 900; }
.action-tab.is-active .action-tab__number { color: var(--navy-1000); background: var(--gold-300); }
.action-tab strong, .action-tab small { display: block; }
.action-tab strong { color: var(--navy-900); font-size: .9rem; }
.action-tab small { margin-top: 5px; color: var(--muted); font-size: .68rem; line-height: 1.45; }
.action-tab i { color: var(--blue-700); font-style: normal; transition: transform .2s; }
.action-tab.is-active i { transform: translateX(3px); }
.action-panels { min-width: 0; }
.action-panel { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 490px; overflow: hidden; border-radius: 24px; color: rgba(255,255,255,.78); background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.action-panel[hidden] { display: none; }
.action-panel__content { position: relative; z-index: 2; padding: 51px 45px; }
.action-panel h3 { margin: 0; color: #fff; font-size: clamp(2rem, 3vw, 3.15rem); letter-spacing: -.04em; line-height: 1.05; }
.action-panel__content > p:not(.eyebrow) { margin: 20px 0 0; font-size: .91rem; }
.check-list { display: grid; gap: 11px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; font-size: .8rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; color: var(--navy-1000); background: var(--gold-300); font-size: .62rem; font-weight: 900; }
.action-panel__visual { position: relative; min-height: 100%; overflow: hidden; background: radial-gradient(circle at 50% 50%, rgba(42,169,217,.22), transparent 60%); }
.action-panel__visual::before { content: ""; position: absolute; width: 450px; height: 450px; right: -160px; top: -130px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: -50px 55px 0 rgba(255,255,255,.035), -100px 110px 0 rgba(255,255,255,.025); }
.network-visual { position: absolute; inset: 0; }
.network-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.network-visual path { fill: none; stroke: rgba(239,213,147,.45); stroke-width: 1.4; stroke-dasharray: 5 8; animation: dash 18s linear infinite; }
.network-node { position: absolute; z-index: 2; display: grid; place-items: center; width: 82px; height: 82px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(8px); font-size: .68rem; font-weight: 850; box-shadow: 0 15px 35px rgba(0,0,0,.12); }
.network-node--center { left: 50%; top: 50%; width: 105px; height: 105px; color: var(--navy-1000); background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); transform: translate(-50%, -50%); }
.network-node--one { left: 10%; top: 9%; }
.network-node--two { right: 7%; top: 12%; }
.network-node--three { right: 3%; bottom: 9%; }
.network-node--four { left: 7%; bottom: 8%; }
.shelter-visual { position: absolute; inset: 0; display: grid; place-items: center; }
.shelter-roof { position: absolute; top: 82px; width: 225px; height: 225px; border-top: 4px solid var(--gold-300); border-left: 4px solid var(--gold-300); border-radius: 24px 0 0; transform: rotate(45deg); opacity: .85; }
.shelter-heart { position: relative; z-index: 2; display: grid; place-items: center; width: 132px; height: 132px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--gold-300); background: rgba(255,255,255,.07); box-shadow: 0 0 0 24px rgba(255,255,255,.025), 0 0 0 48px rgba(255,255,255,.015); font-size: 3.5rem; }
.shelter-line { position: absolute; bottom: 105px; width: 190px; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent); }
.shelter-line--one { transform: translateY(-18px); }
.shelter-line--two { transform: translateY(18px); }
.shelter-visual small { position: absolute; bottom: 56px; color: rgba(255,255,255,.7); letter-spacing: .07em; font-size: .61rem; }
.action-disclaimer { max-width: 820px; margin: 23px auto 0; color: var(--muted); text-align: center; font-size: .73rem; }

.journey { overflow: hidden; background: #fff; }
.journey__heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 75px; }
.journey__heading h2 { font-size: clamp(2.45rem, 4vw, 4.3rem); }
.journey__heading > p { margin: 0 0 6px; color: var(--muted); }
.journey-experience { margin-top: 56px; }
.journey-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.journey-track::before { content: ""; position: absolute; left: 11%; right: 11%; top: 45px; height: 1px; background: linear-gradient(90deg, var(--gold-400), var(--blue-300)); opacity: .65; }
.journey-step { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; min-height: 170px; padding: 0 16px; border: 0; color: var(--muted); text-align: center; background: transparent; }
.journey-step i { display: grid; place-items: center; width: 91px; height: 91px; margin: 0 auto 18px; border: 1px solid var(--border); border-radius: 50%; color: var(--blue-700); background: #fff; box-shadow: 0 10px 28px rgba(8,40,70,.08); font-size: 1.3rem; font-style: normal; transition: color .25s, background .25s, transform .25s, box-shadow .25s; }
.journey-step:hover i { transform: translateY(-5px); }
.journey-step.is-active i { color: var(--navy-1000); background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); box-shadow: 0 16px 35px rgba(214,166,67,.25); transform: translateY(-5px); }
.journey-step__number { position: absolute; top: -4px; right: calc(50% - 54px); color: var(--blue-700); font-size: .58rem; font-weight: 900; }
.journey-step strong, .journey-step small { display: block; }
.journey-step strong { color: var(--navy-900); font-size: .9rem; }
.journey-step small { margin-top: 4px; font-size: .67rem; }
.journey-panel { position: relative; display: grid; grid-template-columns: 155px 1fr; align-items: center; gap: 32px; max-width: 900px; min-height: 220px; margin: 29px auto 0; padding: 36px 44px; overflow: hidden; border: 1px solid var(--border); border-radius: 25px; background: linear-gradient(135deg, var(--surface-warm), var(--blue-050)); box-shadow: var(--shadow-soft); }
.journey-panel::after { content: ""; position: absolute; width: 260px; height: 260px; right: -130px; top: -130px; border: 1px solid rgba(42,169,217,.14); border-radius: 50%; box-shadow: -40px 35px 0 rgba(214,166,67,.025); }
.journey-panel__index { color: rgba(18,109,168,.1); font-size: 6.4rem; line-height: 1; font-weight: 900; }
.journey-panel h3 { margin: 0; color: var(--navy-900); font-size: clamp(1.55rem, 2.6vw, 2.4rem); letter-spacing: -.035em; line-height: 1.1; }
.journey-panel p:last-child { max-width: 620px; margin: 13px 0 0; color: var(--muted); }
.journey__note { margin: 25px 0 0; color: var(--muted); text-align: center; font-size: .72rem; }

.responsibility { padding-top: 60px; background: linear-gradient(180deg, #fff, var(--blue-050)); }
.responsibility__layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 66px; align-items: center; }
.responsibility__intro h2 { font-size: clamp(2.25rem, 3.6vw, 3.8rem); }
.responsibility__intro > p:not(.eyebrow) { margin-top: 20px; color: var(--muted); }
.responsibility__cards { display: grid; gap: 13px; }
.responsibility-card { display: grid; grid-template-columns: 56px .8fr 1fr; align-items: center; gap: 18px; padding: 22px 24px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.84); transition: transform .25s, box-shadow .25s, border-color .25s; }
.responsibility-card:hover { transform: translateX(7px); border-color: rgba(42,169,217,.3); box-shadow: var(--shadow-soft); }
.responsibility-card > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; color: var(--gold-700); background: var(--gold-150); font-size: .72rem; font-weight: 900; }
.responsibility-card h3 { margin: 0; color: var(--navy-900); font-size: .92rem; }
.responsibility-card p { margin: 0; color: var(--muted); font-size: .75rem; }

.section--navy { overflow: hidden; color: rgba(255,255,255,.75); background: radial-gradient(circle at 15% 20%, rgba(42,169,217,.16), transparent 30%), linear-gradient(135deg, var(--navy-1000), var(--navy-800)); }
.section--navy::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: radial-gradient(rgba(255,255,255,.25) .7px, transparent .7px); background-size: 23px 23px; mask-image: linear-gradient(90deg, #000, transparent 74%); }
.impact-orbit { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.impact-orbit--one { width: 560px; height: 560px; right: -260px; top: -250px; box-shadow: -65px 70px 0 rgba(255,255,255,.025), -130px 140px 0 rgba(255,255,255,.015); }
.impact-orbit--two { width: 330px; height: 330px; left: -250px; bottom: -170px; border-color: rgba(239,213,147,.12); }
.impact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .74fr 1.26fr; gap: 78px; align-items: center; }
.impact-intro h2 { color: #fff; font-size: clamp(2.45rem, 4vw, 4.25rem); }
.impact-intro > p:not(.eyebrow) { margin: 24px 0 0; }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.impact-card { position: relative; min-height: 235px; padding: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 21px; background: rgba(255,255,255,.07); backdrop-filter: blur(8px); transition: transform .25s var(--ease), background .25s, border-color .25s; }
.impact-card:hover { transform: translateY(-7px); border-color: rgba(239,213,147,.35); background: rgba(255,255,255,.1); }
.impact-card__icon { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(239,213,147,.25); border-radius: 15px; color: var(--gold-300); background: rgba(239,213,147,.08); font-size: 1.25rem; }
.impact-card h3 { margin: 20px 0 8px; color: #fff; font-size: 1rem; }
.impact-card p { margin: 0; font-size: .78rem; }
.impact-card > i { position: absolute; right: -22px; bottom: -22px; width: 90px; height: 90px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }

.gallery { background: #fff; }
.gallery__heading { display: grid; grid-template-columns: 1fr .65fr; gap: 70px; align-items: end; }
.gallery__heading h2 { font-size: clamp(2.4rem, 4vw, 4.1rem); }
.gallery__heading > p { margin: 0 0 7px; }
.gallery-feature { display: grid; grid-template-columns: 1.25fr .75fr; gap: 19px; margin-top: 48px; }
.gallery-photo { position: relative; min-height: 520px; padding: 0; overflow: hidden; border: 0; border-radius: 29px; text-align: left; background: var(--navy-900); box-shadow: var(--shadow); }
.gallery-photo img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; transition: transform .65s var(--ease); }
.gallery-photo:hover img { transform: scale(1.05); }
.gallery-photo__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 43%, rgba(3,19,34,.78)); }
.gallery-photo__label { position: absolute; left: 31px; right: 80px; bottom: 29px; color: #fff; }
.gallery-photo__label small, .gallery-photo__label strong { display: block; }
.gallery-photo__label small { color: var(--gold-300); text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; font-weight: 900; }
.gallery-photo__label strong { margin-top: 7px; font-size: 1.05rem; }
.gallery-photo__expand { position: absolute; right: 24px; bottom: 24px; display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: #fff; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); font-size: 1.05rem; transition: transform .25s, background .25s; }
.gallery-photo:hover .gallery-photo__expand { transform: rotate(45deg); background: rgba(255,255,255,.2); }
.gallery-note { position: relative; padding: 42px 36px; overflow: hidden; border: 1px solid var(--border); border-radius: 29px; background: linear-gradient(145deg, var(--surface-warm), var(--blue-050)); }
.gallery-note::after { content: ""; position: absolute; width: 250px; height: 250px; right: -130px; bottom: -130px; border: 1px solid rgba(42,169,217,.13); border-radius: 50%; box-shadow: -40px -40px 0 rgba(214,166,67,.025); }
.gallery-note__icon { display: grid; place-items: center; width: 51px; height: 51px; border-radius: 16px; color: var(--gold-700); background: var(--gold-150); }
.gallery-note h3 { margin: 0; color: var(--navy-900); font-size: 1.42rem; line-height: 1.22; }
.gallery-note > p:not(.eyebrow) { margin-top: 18px; color: var(--muted); font-size: .84rem; }
.gallery-note .eyebrow { margin-top: 30px; }
.gallery-safeguards { position: relative; z-index: 2; display: grid; gap: 9px; margin-top: 24px; }
.gallery-safeguards span { padding: 10px 12px; border: 1px solid var(--border); border-radius: 11px; color: var(--navy-900); background: rgba(255,255,255,.72); font-size: .72rem; font-weight: 800; }

.faq { background: linear-gradient(180deg, var(--blue-050), #fff); }
.faq__layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 82px; align-items: start; }
.faq__intro { position: sticky; top: 120px; }
.faq__intro h2 { font-size: clamp(2.35rem, 3.8vw, 3.9rem); }
.faq__intro > p:not(.eyebrow) { margin-top: 20px; }
.faq__list { display: grid; gap: 12px; }
.faq details { overflow: hidden; border: 1px solid var(--border); border-radius: 17px; background: rgba(255,255,255,.82); transition: border-color .2s, box-shadow .2s; }
.faq details[open] { border-color: rgba(42,169,217,.3); box-shadow: var(--shadow-soft); }
.faq summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 22px 24px; color: var(--navy-900); list-style: none; font-size: .91rem; font-weight: 850; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { position: relative; flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--blue-100); }
.faq summary span::before, .faq summary span::after { content: ""; position: absolute; left: 8px; right: 8px; top: 13px; height: 2px; border-radius: 2px; background: var(--blue-700); transition: transform .25s; }
.faq summary span::after { transform: rotate(90deg); }
.faq details[open] summary span::after { transform: rotate(0); }
.faq details p { margin: 0; padding: 0 72px 24px 24px; color: var(--muted); font-size: .82rem; }

.contact { overflow: hidden; background: linear-gradient(135deg, #f8fcfd, #e9f7fc); }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: radial-gradient(rgba(11,54,95,.2) .7px, transparent .7px); background-size: 23px 23px; mask-image: linear-gradient(to right, #000, transparent 64%); }
.contact__glow { position: absolute; width: 650px; height: 650px; right: -320px; bottom: -320px; border-radius: 50%; border: 1px solid rgba(42,169,217,.17); box-shadow: -90px -60px 0 rgba(214,166,67,.035), -175px -120px 0 rgba(42,169,217,.025); }
.contact__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .76fr 1.24fr; gap: 74px; align-items: start; }
.contact__copy h2 { font-size: clamp(2.45rem, 4vw, 4.2rem); }
.contact__copy > p:not(.eyebrow) { margin-top: 22px; color: var(--muted); }
.contact__benefits { display: grid; gap: 13px; margin-top: 30px; }
.contact__benefits > div { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 12px; }
.contact__benefits > div > span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: var(--gold-700); background: var(--gold-150); font-size: .7rem; font-weight: 900; }
.contact__benefits p { margin: 0; }
.contact__benefits strong, .contact__benefits small { display: block; }
.contact__benefits strong { color: var(--navy-900); font-size: .81rem; }
.contact__benefits small { margin-top: 2px; color: var(--muted); font-size: .68rem; }
.contact__direct { display: grid; gap: 11px; margin-top: 31px; }
.contact__direct a { padding: 15px 17px; border: 1px solid var(--border); border-radius: 14px; background: rgba(255,255,255,.66); transition: transform .2s, border-color .2s, background .2s; }
.contact__direct a:hover { transform: translateX(4px); border-color: rgba(42,169,217,.3); background: #fff; }
.contact__direct span, .contact__direct strong { display: block; }
.contact__direct span { color: var(--muted); font-size: .66rem; }
.contact__direct strong { margin-top: 2px; color: var(--navy-900); font-size: .83rem; overflow-wrap: anywhere; }

.contact-wizard { position: relative; min-height: 600px; padding: 30px; border: 1px solid rgba(255,255,255,.88); border-radius: 30px; background: rgba(255,255,255,.95); box-shadow: var(--shadow); }
.wizard__header { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 27px; padding-bottom: 21px; border-bottom: 1px solid var(--border); }
.wizard__header small, .wizard__header strong { display: block; }
.wizard__header small { color: var(--muted); font-size: .64rem; }
.wizard__header strong { color: var(--navy-900); font-size: .81rem; }
.wizard__progress { height: 7px; overflow: hidden; border-radius: 999px; background: var(--blue-100); }
.wizard__progress span { display: block; width: 33.333%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold-500), var(--blue-500)); transition: width .4s var(--ease); }
.wizard-step { padding: 29px 2px 6px; }
.js .wizard-step { display: none; }
.js .wizard-step.is-active { display: block; animation: stepIn .35s var(--ease); }
.wizard-step__eyebrow { margin: 0 0 7px; color: var(--blue-700); text-transform: uppercase; letter-spacing: .12em; font-size: .65rem; font-weight: 900; }
.wizard-step h3 { margin: 0 0 24px; color: var(--navy-900); font-size: 1.45rem; letter-spacing: -.025em; }
.subject-options { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.subject-options label { margin: 0; }
.subject-options input { position: absolute; opacity: 0; pointer-events: none; }
.subject-options label > span { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 11px; min-height: 112px; padding: 16px; border: 1px solid var(--border); border-radius: 15px; background: var(--surface); cursor: pointer; transition: border-color .2s, background .2s, transform .2s, box-shadow .2s; }
.subject-options label:hover > span { transform: translateY(-3px); border-color: rgba(42,169,217,.32); background: #fff; box-shadow: 0 10px 24px rgba(8,40,70,.07); }
.subject-options input:checked + span { border-color: var(--blue-500); background: linear-gradient(145deg, #fff, var(--blue-100)); box-shadow: 0 0 0 3px rgba(42,169,217,.1); }
.subject-options i { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 11px; color: var(--gold-700); background: var(--gold-150); font-style: normal; }
.subject-options strong, .subject-options small { display: block; }
.subject-options strong { color: var(--navy-900); font-size: .77rem; line-height: 1.3; }
.subject-options small { margin-top: 5px; color: var(--muted); font-size: .63rem; line-height: 1.35; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-wizard label { display: block; margin-bottom: 16px; }
.contact-wizard label > span:not(.subject-options span) { display: block; margin-bottom: 7px; color: var(--navy-900); font-size: .77rem; font-weight: 850; }
.contact-wizard input[type="text"], .contact-wizard input[type="tel"], .contact-wizard input[type="email"], .contact-wizard textarea { width: 100%; border: 1px solid rgba(8,40,70,.18); border-radius: 13px; color: var(--ink); background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; }
.contact-wizard input[type="text"], .contact-wizard input[type="tel"], .contact-wizard input[type="email"] { height: 51px; padding: 0 14px; }
.contact-wizard textarea { min-height: 160px; padding: 13px 14px; resize: vertical; }
.contact-wizard input:focus, .contact-wizard textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(42,169,217,.1); }
.contact-wizard .consent { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 10px; margin-top: 18px; }
.contact-wizard .consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--blue-700); }
.contact-wizard .consent span { margin: 0; color: var(--muted); font-size: .7rem; font-weight: 500; }
.form-status { min-height: 22px; margin: 12px 0 4px; color: #a23838; font-size: .76rem; font-weight: 800; }
.wizard__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 8px; }
.wizard__back { margin-right: auto; }
[hidden] { display: none !important; }

.site-footer { position: relative; color: rgba(255,255,255,.7); background: var(--navy-1000); }
.footer__line { height: 3px; background: linear-gradient(90deg, var(--gold-500), var(--blue-500), transparent 85%); }
.footer__top { display: grid; grid-template-columns: 1.25fr .55fr .8fr 1fr; gap: 48px; padding: 72px 0 53px; }
.footer__phoenix { width: 250px; filter: drop-shadow(0 8px 18px rgba(0,0,0,.18)); }
.footer__brand p { max-width: 330px; margin: 21px 0 0; font-size: .82rem; }
.footer__idealizer { display: flex; flex-direction: column; align-items: flex-start; }
.footer__idealizer > span { margin-bottom: 11px; color: var(--gold-300); text-transform: uppercase; letter-spacing: .14em; font-size: .59rem; font-weight: 900; }
.footer__idealizer > div { display: grid; place-items: center; width: 105px; height: 105px; border-radius: 50%; background: #fff; }
.footer__idealizer img { width: 96px; height: 96px; object-fit: contain; }
.footer__links { display: grid; align-content: start; gap: 9px; }
.footer__links h2 { margin: 0 0 10px; color: #fff; font-size: .91rem; }
.footer__links a { font-size: .78rem; transition: color .2s, transform .2s; }
.footer__links a:hover { color: #fff; transform: translateX(3px); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding: 19px 0 25px; border-top: 1px solid rgba(255,255,255,.09); font-size: .71rem; }
.footer__bottom p { margin: 0; }

.floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.back-to-top { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid rgba(8,40,70,.13); border-radius: 50%; color: var(--navy-900); background: rgba(255,255,255,.94); box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.whatsapp-float { display: flex; align-items: center; gap: 10px; min-height: 57px; padding: 0 17px; border-radius: 999px; color: #fff; background: #24d366; box-shadow: 0 14px 34px rgba(0,0,0,.22); font-size: .73rem; font-weight: 900; transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.whatsapp-float svg { width: 29px; height: 29px; fill: currentColor; }

.lightbox { position: fixed; inset: 0; z-index: 4000; display: none; place-items: center; padding: 30px; background: rgba(2,15,27,.94); backdrop-filter: blur(10px); }
.lightbox.is-open { display: grid; animation: fadeIn .2s; }
.lightbox figure { margin: 0; text-align: center; }
.lightbox img { max-width: min(1080px, 94vw); max-height: 82vh; border-radius: 18px; box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.lightbox figcaption { margin-top: 12px; color: rgba(255,255,255,.68); font-size: .72rem; }
.lightbox__close { position: absolute; right: 22px; top: 18px; display: grid; place-items: center; width: 48px; height: 48px; border: 0; border-radius: 50%; color: var(--navy-1000); background: #fff; font-size: 2rem; line-height: 1; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes dash { to { stroke-dashoffset: -170; } }
@keyframes scrollDot { 0%,100% { transform: translate(-50%,0); opacity: 1; } 60% { transform: translate(-50%,14px); opacity: .25; } }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 1180px) {
  .header__inner { grid-template-columns: 230px 1fr auto; gap: 18px; }
  .brand__phoenix { width: 220px; }
  .main-nav { gap: 16px; font-size: .74rem; }
  .idealizadora > span:first-child { display: none; }
  .hero__grid { gap: 48px; }
  .hero__visual { min-height: 520px; }
  .hero__floating--idealizer { right: 0; }
  .principles__grid { grid-template-columns: 1fr 1fr; }
  .principle-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
  .principle-card:nth-child(4) { border-top: 1px solid var(--border); }
  .footer__top { grid-template-columns: 1.2fr .6fr 1fr; }
  .footer__links:last-child { grid-column: 3; }
}

@media (max-width: 940px) {
  :root { --header-h: 78px; }
  .topbar { display: none; }
  .header__inner { grid-template-columns: 1fr auto auto; }
  .brand__phoenix { width: 205px; }
  .site-header.is-scrolled .brand__phoenix { width: 188px; }
  .idealizadora { order: 2; padding-left: 0; border-left: 0; }
  .menu-toggle { display: block; order: 3; }
  .main-nav { position: fixed; left: 18px; right: 18px; top: calc(var(--header-h) + 9px); display: grid; justify-content: stretch; gap: 0; max-height: calc(100vh - var(--header-h) - 28px); overflow-y: auto; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; color: var(--ink); background: rgba(255,255,255,.98); box-shadow: var(--shadow-dark); transform: translateY(-14px); opacity: 0; visibility: hidden; transition: .24s var(--ease); }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a:not(.nav-donate) { padding: 12px 9px; }
  .main-nav a:not(.nav-donate)::after { display: none; }
  .main-nav a:hover, .main-nav a.is-active { color: var(--blue-700); }
  .nav-donate { margin-top: 7px; text-align: center; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding: 70px 0 135px; }
  .hero__grid { grid-template-columns: 1fr; gap: 50px; }
  .hero__content { max-width: 750px; }
  .hero__visual { min-height: 590px; max-width: 750px; width: 100%; margin: 0 auto; }
  .hero__scroll { display: none; }
  .about-layout, .impact-layout, .contact__grid, .faq__layout, .responsibility__layout { grid-template-columns: 1fr; gap: 54px; }
  .about-visual { max-width: 720px; width: 100%; margin: 0 auto; }
  .action-experience { grid-template-columns: 1fr; }
  .action-tabs { grid-template-columns: 1fr 1fr; }
  .action-tab { min-height: 115px; }
  .action-panel { min-height: 460px; }
  .journey__heading, .gallery__heading { grid-template-columns: 1fr; gap: 22px; }
  .journey-track { overflow-x: auto; grid-template-columns: repeat(4, minmax(190px, 1fr)); padding-bottom: 8px; scrollbar-width: thin; }
  .journey-track::before { left: 95px; right: -500px; }
  .responsibility__intro { max-width: 720px; }
  .impact-intro { max-width: 720px; }
  .faq__intro { position: static; max-width: 720px; }
  .gallery-feature { grid-template-columns: 1fr; }
  .gallery-note { min-height: 360px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__links:last-child { grid-column: auto; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand__phoenix { width: 160px; }
  .site-header.is-scrolled .brand__phoenix { width: 150px; }
  .idealizadora__logo { width: 43px; height: 43px; }
  .idealizadora__logo img { width: 38px; height: 38px; }
  .menu-toggle { width: 43px; height: 43px; border-radius: 13px; }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: clamp(2.75rem, 12vw, 4.3rem); }
  .hero__lead { font-size: .98rem; }
  .hero__actions { display: grid; }
  .button { width: 100%; }
  .hero__visual { min-height: 440px; }
  .hero__image-shell { inset: 0 0 0 18px; border-width: 6px; border-radius: 42% 22px 42% 22px; }
  .hero__floating--care { left: 0; top: 54px; max-width: 210px; }
  .hero__floating--idealizer { right: 0; bottom: 34px; max-width: 225px; }
  .hero__orbit { display: none; }
  .hero__curve { bottom: -88px; }
  .principles { margin-top: -34px; }
  .principles__grid { grid-template-columns: 1fr; }
  .principle-card { min-height: auto; padding: 25px; }
  .principle-card + .principle-card { border-left: 0; border-top: 1px solid var(--border); }
  .section { padding: 83px 0; }
  .section--about { padding-top: 103px; }
  .section-copy h2, .section-heading h2, .gallery__heading h2, .faq__intro h2, .contact__copy h2, .journey__heading h2, .responsibility__intro h2, .impact-intro h2 { font-size: clamp(2.25rem, 10vw, 3.35rem); }
  .about-visual { min-height: 490px; padding-left: 0; padding-bottom: 105px; }
  .about-photo { inset: 0 0 85px; border-radius: 24px 38% 24px 34%; }
  .about-quote { max-width: calc(100% - 18px); padding: 22px; }
  .about-values { grid-template-columns: 1fr; }
  .action-tabs { grid-template-columns: 1fr; }
  .action-tab { min-height: 105px; }
  .action-panel { grid-template-columns: 1fr; min-height: auto; }
  .action-panel__content { padding: 38px 27px; }
  .action-panel__visual { min-height: 350px; }
  .journey-panel { grid-template-columns: 1fr; gap: 14px; padding: 28px 25px; }
  .journey-panel__index { font-size: 4.4rem; }
  .responsibility-card { grid-template-columns: auto 1fr; }
  .responsibility-card p { grid-column: 2; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card { min-height: 205px; }
  .gallery-photo, .gallery-photo img { min-height: 390px; }
  .gallery-note { padding: 32px 25px; }
  .faq details p { padding-right: 24px; }
  .contact-wizard { min-height: 650px; padding: 23px 18px; }
  .wizard__header { grid-template-columns: 1fr; gap: 13px; }
  .subject-options { grid-template-columns: 1fr; }
  .subject-options label > span { min-height: 91px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .wizard__actions { display: grid; grid-template-columns: 1fr; }
  .wizard__back { grid-row: 2; margin: 0; }
  .footer__top { grid-template-columns: 1fr; gap: 33px; }
  .footer__bottom { flex-direction: column; }
  .whatsapp-float { width: 58px; min-height: 58px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
  .floating-actions { right: 15px; bottom: 15px; }
}

@media (max-width: 430px) {
  .header__inner { gap: 7px; }
  .brand__phoenix { width: 142px; }
  .site-header.is-scrolled .brand__phoenix { width: 137px; }
  .idealizadora { display: none; }
  .hero__visual { min-height: 390px; }
  .hero__floating--care { top: 37px; padding: 11px 12px; }
  .hero__floating--idealizer { bottom: 21px; padding: 9px 11px 9px 8px; }
  .hero__floating--idealizer img { width: 38px; height: 38px; }
}

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

/* =========================================================
   Projeto Phoenix V3 — experiência fotográfica e interativa
   ========================================================= */

.brand__phoenix,
.footer__phoenix {
  object-fit: contain;
  object-position: left center;
}

.hero__visual { min-height: 590px; }
.hero__image-shell { background: var(--navy-900); }
.hero-gallery { isolation: isolate; }
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.045);
  transition: opacity .7s var(--ease), transform 1.2s var(--ease), visibility .7s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide figcaption {
  position: absolute;
  z-index: 3;
  left: 30px;
  right: 92px;
  bottom: 27px;
  color: #fff;
  text-shadow: 0 3px 16px rgba(0,0,0,.42);
}
.hero-slide figcaption small,
.hero-slide figcaption strong { display: block; }
.hero-slide figcaption small {
  margin-bottom: 4px;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .6rem;
  font-weight: 900;
}
.hero-slide figcaption strong {
  max-width: 400px;
  font-size: .92rem;
  line-height: 1.28;
}
.hero__image-overlay {
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3,19,34,.04) 30%, rgba(3,19,34,.78) 100%);
}
.hero-gallery__controls {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(3,19,34,.44);
  backdrop-filter: blur(12px);
}
.hero-gallery__controls > button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.1);
  transition: transform .2s, background .2s;
}
.hero-gallery__controls > button:hover { transform: translateY(-1px); background: rgba(255,255,255,.2); }
.hero-gallery__dots { display: flex; align-items: center; gap: 6px; }
.hero-gallery__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.46);
  transition: width .25s var(--ease), background .25s;
}
.hero-gallery__dots button.is-active { width: 23px; background: var(--gold-300); }

.action-photo { margin: 0; isolation: isolate; }
.action-photo::before { display: none; }
.action-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease);
}
.action-panel:hover .action-photo img { transform: scale(1.04); }
.action-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3,19,34,.86));
}
.action-photo figcaption {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 25px;
  color: #fff;
}
.action-photo figcaption small,
.action-photo figcaption strong { display: block; }
.action-photo figcaption small {
  margin-bottom: 5px;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .6rem;
  font-weight: 900;
}
.action-photo figcaption strong { font-size: .95rem; line-height: 1.3; }

.journey-panel {
  grid-template-columns: 180px 105px 1fr;
  gap: 28px;
  max-width: 1040px;
  padding: 24px 38px 24px 24px;
}
.journey-panel__photo {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px 42% 22px 32%;
  box-shadow: var(--shadow-soft);
  background: var(--blue-100);
}
.journey-panel__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .22s, transform .55s var(--ease);
}
.journey-panel.is-changing .journey-panel__photo img { opacity: .25; transform: scale(1.06); }
.journey-panel__index { position: relative; z-index: 2; text-align: center; }
.journey-panel__copy { position: relative; z-index: 2; }

.gallery { overflow: hidden; background: linear-gradient(180deg, #fff 0%, var(--blue-050) 100%); }
.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
  padding: 7px;
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(8,40,70,.06);
  backdrop-filter: blur(12px);
}
.gallery-toolbar button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: .72rem;
  font-weight: 850;
  transition: color .2s, background .2s, transform .2s, box-shadow .2s;
}
.gallery-toolbar button:hover { color: var(--navy-900); transform: translateY(-1px); }
.gallery-toolbar button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--navy-850));
  box-shadow: 0 10px 22px rgba(11,58,101,.18);
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
  margin-top: 26px;
}
.gallery-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  color: #fff;
  text-align: left;
  background: var(--navy-900);
  box-shadow: 0 15px 34px rgba(8,40,70,.1);
  transition: opacity .35s var(--ease), transform .35s var(--ease), box-shadow .25s;
}
.gallery-card--wide { grid-column: span 2; }
.gallery-card--tall { grid-row: span 2; }
.gallery-card.is-filtered-out {
  display: none;
}
.gallery-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(8,40,70,.18); }
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .4s;
}
.gallery-card:hover img { transform: scale(1.065); filter: saturate(1.05); }
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(3,19,34,.84));
}
.gallery-card > span {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 55px;
  bottom: 18px;
}
.gallery-card > span small,
.gallery-card > span strong { display: block; }
.gallery-card > span small {
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .56rem;
  font-weight: 900;
}
.gallery-card > span strong { margin-top: 4px; font-size: .82rem; line-height: 1.25; }
.gallery-card > i {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 15px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(7px);
  font-style: normal;
  transition: transform .25s, background .25s;
}
.gallery-card:hover > i { transform: rotate(45deg); background: rgba(255,255,255,.2); }
.gallery-card:focus-visible,
.gallery-toolbar button:focus-visible,
.hero-gallery__controls button:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}
.gallery-safety {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.gallery-safety > div {
  display: grid;
  grid-template-columns: 37px 1fr;
  align-items: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(255,255,255,.8);
}
.gallery-safety > div > span {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  color: var(--gold-700);
  background: var(--gold-150);
  font-weight: 900;
}
.gallery-safety p { margin: 0; }
.gallery-safety strong,
.gallery-safety small { display: block; }
.gallery-safety strong { color: var(--navy-900); font-size: .78rem; }
.gallery-safety small { margin-top: 2px; color: var(--muted); font-size: .65rem; line-height: 1.45; }

.lightbox figure { max-width: min(1120px, 86vw); }
.lightbox img { width: auto; max-width: 100%; }
.lightbox figcaption { font-size: .8rem; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background .2s, transform .2s;
}
.lightbox__nav:hover { background: rgba(255,255,255,.18); transform: translateY(-50%) scale(1.04); }
.lightbox__nav--prev { left: 25px; }
.lightbox__nav--next { right: 25px; }

@media (max-width: 940px) {
  .gallery-mosaic { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 250px; }
  .gallery-safety { grid-template-columns: 1fr; }
  .journey-panel { grid-template-columns: 170px 85px 1fr; }
  .journey-panel__photo { width: 170px; height: 170px; }
}

@media (max-width: 700px) {
  .hero__visual { min-height: 475px; }
  .hero-slide figcaption { left: 20px; right: 68px; bottom: 23px; }
  .hero-slide figcaption strong { font-size: .79rem; }
  .hero-gallery__controls { right: 13px; bottom: 13px; transform: scale(.9); transform-origin: right bottom; }
  .hero__floating--care { top: 34px; }
  .hero__floating--idealizer { bottom: 72px; }
  .action-photo figcaption { left: 22px; right: 22px; bottom: 20px; }
  .journey-panel { grid-template-columns: 110px 1fr; gap: 17px; padding: 22px; }
  .journey-panel__photo { width: 110px; height: 110px; grid-row: 1 / span 2; }
  .journey-panel__index { text-align: left; font-size: 3.5rem; }
  .journey-panel__copy { grid-column: 1 / -1; }
  .gallery-toolbar { width: 100%; flex-wrap: nowrap; overflow-x: auto; border-radius: 17px; scrollbar-width: none; }
  .gallery-toolbar::-webkit-scrollbar { display: none; }
  .gallery-toolbar button { flex: 0 0 auto; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; gap: 10px; }
  .gallery-card--wide { grid-column: span 2; }
  .gallery-card--tall { grid-row: span 2; }
  .gallery-card > span { left: 14px; right: 47px; bottom: 13px; }
  .gallery-card > span strong { font-size: .72rem; }
  .gallery-card > i { right: 10px; bottom: 10px; width: 32px; height: 32px; }
  .lightbox { padding: 70px 15px 90px; }
  .lightbox figure { max-width: 100%; }
  .lightbox__nav { top: auto; bottom: 20px; transform: none; }
  .lightbox__nav:hover { transform: scale(1.04); }
  .lightbox__nav--prev { left: calc(50% - 66px); }
  .lightbox__nav--next { right: calc(50% - 66px); }
}

@media (max-width: 430px) {
  .hero__visual { min-height: 430px; }
  .hero-slide figcaption { right: 55px; }
  .gallery-mosaic { grid-auto-rows: 165px; }
  .gallery-card > span small { font-size: .5rem; }
  .gallery-card > span strong { font-size: .66rem; }
}

/* =========================================================
   V4 — CAPA APROVADA | MODELO 2
   Logo oficial atual + fotografia real + experiência premium
   ========================================================= */

.site-header--approved {
  position: sticky;
  top: 0;
  z-index: 1400;
  min-height: 96px;
  color: #fff;
  background: linear-gradient(135deg, rgba(3,19,34,.985), rgba(6,32,57,.975));
  border-bottom: 1px solid rgba(227,188,104,.13);
  box-shadow: 0 10px 34px rgba(0,9,18,.16);
  backdrop-filter: blur(20px);
}
.site-header--approved.is-scrolled {
  min-height: 80px;
  background: rgba(3,19,34,.985);
  box-shadow: 0 16px 42px rgba(0,9,18,.24);
}
.header__inner--approved {
  min-height: inherit;
  display: grid;
  grid-template-columns: 305px minmax(0,1fr) auto;
  align-items: center;
  gap: 30px;
}
.brand--approved { min-width: 0; }
.brand--approved .brand__phoenix {
  width: 285px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.2));
}
.site-header--approved.is-scrolled .brand__phoenix { width: 252px; }
.main-nav--approved {
  justify-content: flex-end;
  gap: clamp(13px,1.35vw,23px);
  font-size: .72rem;
  letter-spacing: .015em;
}
.main-nav--approved a:not(.nav-donate) { white-space: nowrap; }
.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid rgba(239,213,147,.36);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg,#c58b27,#e0b450);
  box-shadow: 0 12px 28px rgba(187,133,40,.19);
  font-size: .73rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .025em;
  transition: transform .22s var(--ease), box-shadow .22s;
}
.header-contact:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(187,133,40,.29); }
.header-contact svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hero--approved {
  position: relative;
  min-height: 760px;
  padding: 0 0 154px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--navy-1000);
}
.hero--approved::before,
.hero--approved::after { display: none; }
.hero-approved__gallery {
  position: absolute;
  inset: 0 0 0 34%;
  z-index: -3;
  overflow: hidden;
  border-top-left-radius: 72px;
  background: #07192b;
}
.hero-approved__gallery .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.05s var(--ease), visibility 1.05s;
}
.hero-approved__gallery .hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-approved__gallery .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.025);
  transition: transform 8s linear;
}
.hero-approved__gallery .hero-slide.is-active img { transform: scale(1.025); }
.hero-approved__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3,19,34,.58) 0%, rgba(3,19,34,.18) 28%, rgba(3,19,34,.04) 62%, rgba(3,19,34,.12) 100%),
    linear-gradient(180deg, rgba(2,15,27,.08), rgba(2,15,27,.02) 54%, rgba(2,15,27,.45));
}
.hero-approved__content-wrap {
  position: relative;
  z-index: 5;
  min-height: 610px;
  display: flex;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 68px;
}
.hero-approved__panel {
  width: min(100%, 505px);
  padding: 34px 38px 36px;
  border: 1px solid rgba(227,188,104,.62);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(4,25,44,.91), rgba(7,37,65,.79));
  box-shadow: 0 34px 85px rgba(0,8,17,.39), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(16px) saturate(122%);
}
.hero-approved__eyebrow {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 13px;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: .075em;
  font-size: .79rem;
  font-weight: 850;
}
.hero-approved__eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-500);
}
.hero--approved h1 {
  max-width: 445px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem,4.25vw,4.65rem);
  font-weight: 840;
  letter-spacing: -.045em;
  line-height: .99;
}
.hero--approved h1 em {
  color: var(--gold-500);
  font-style: normal;
}
.hero--approved h1 em::after { display: none; }
.hero-approved__lead {
  max-width: 430px;
  margin: 23px 0 0;
  color: rgba(255,255,255,.84);
  font-size: .98rem;
  line-height: 1.62;
}
.hero-approved__idealizer {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-approved__idealizer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 7px 15px rgba(0,0,0,.25));
}
.hero-approved__idealizer span,
.hero-approved__idealizer small,
.hero-approved__idealizer strong { display: block; }
.hero-approved__idealizer small {
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .57rem;
  font-weight: 900;
}
.hero-approved__idealizer strong {
  margin-top: 3px;
  color: #fff;
  font-size: .89rem;
}
.hero-approved__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.button--gold {
  color: #fff;
  background: linear-gradient(135deg,#bd8120,#e2b54e);
  box-shadow: 0 14px 30px rgba(187,133,40,.24);
}
.button--gold:hover { box-shadow: 0 18px 38px rgba(187,133,40,.34); }
.button--outline-light {
  color: #fff;
  border-color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
}
.button--outline-light:hover { border-color: var(--gold-400); background: rgba(255,255,255,.1); }
.hero-gallery__controls--approved {
  position: absolute;
  z-index: 8;
  right: max(24px,calc((100vw - var(--container))/2));
  bottom: 177px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(3,19,34,.52);
  backdrop-filter: blur(12px);
}
.hero-gallery__controls--approved > button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.1);
}
.hero-gallery__controls--approved > button:hover { background: var(--gold-500); }
.hero-gallery__controls--approved .hero-gallery__dots { display: flex; align-items: center; gap: 7px; }
.hero-gallery__controls--approved .hero-gallery__dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.48);
  transition: width .25s, border-radius .25s, background .25s;
}
.hero-gallery__controls--approved .hero-gallery__dots button.is-active { width: 23px; border-radius: 9px; background: var(--gold-400); }
.hero-feature-grid {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  transform: translateX(-50%);
}
.hero-feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 157px;
  padding: 23px 25px;
  border: 1px solid rgba(8,40,70,.08);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255,255,255,.97);
  box-shadow: 0 24px 52px rgba(3,19,34,.19);
  backdrop-filter: blur(12px);
  transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
}
.hero-feature-card:hover { transform: translateY(-7px); border-color: rgba(214,166,67,.42); box-shadow: 0 30px 65px rgba(3,19,34,.25); }
.hero-feature-card__icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg,#bc8123,#e6bd62);
  box-shadow: 0 13px 28px rgba(187,133,40,.22);
}
.hero-feature-card__icon svg,
.principle-approved > span svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-feature-card h2 { margin: 0; color: var(--navy-900); font-size: 1rem; line-height: 1.25; letter-spacing: -.02em; }
.hero-feature-card p { margin: 8px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.52; }
.hero-approved__curve {
  position: absolute;
  z-index: 6;
  left: -2%;
  right: -2%;
  bottom: -94px;
  height: 145px;
  border-top: 2px solid var(--gold-500);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  background: #fff;
}

.principles--approved {
  position: relative;
  z-index: 7;
  margin-top: 0;
  padding: 36px 0 42px;
  color: #fff;
  background: #fff;
}
.principles-approved__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  overflow: hidden;
  border: 1px solid rgba(227,188,104,.22);
  border-radius: 20px;
  background: linear-gradient(135deg,var(--navy-1000),var(--navy-900));
  box-shadow: 0 22px 48px rgba(3,19,34,.18);
}
.principle-approved {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 115px;
  padding: 22px 24px;
}
.principle-approved:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: rgba(255,255,255,.16);
}
.principle-approved > span { color: var(--gold-500); }
.principle-approved > span svg { width: 41px; height: 41px; }
.principle-approved strong,
.principle-approved small { display: block; }
.principle-approved strong { color: #fff; font-size: .87rem; text-transform: uppercase; letter-spacing: .025em; }
.principle-approved small { margin-top: 4px; color: rgba(255,255,255,.7); font-size: .68rem; line-height: 1.46; }

@media (max-width: 1180px) {
  .header__inner--approved { grid-template-columns: 250px 1fr auto; gap: 20px; }
  .brand--approved .brand__phoenix { width: 238px; }
  .main-nav--approved { gap: 13px; font-size: .66rem; }
  .header-contact { padding-inline: 15px; }
  .hero-feature-card { padding: 20px; gap: 14px; }
  .hero-feature-card__icon { width: 57px; height: 57px; }
}

@media (max-width: 1020px) {
  .site-header--approved { min-height: 82px; }
  .header__inner--approved { grid-template-columns: 1fr auto; }
  .brand--approved .brand__phoenix { width: 235px; max-height: 60px; }
  .header-contact { margin-left: auto; }
  .main-nav--approved {
    position: fixed;
    inset: 82px 16px auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 17px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(3,19,34,.985);
    box-shadow: 0 28px 70px rgba(0,0,0,.36);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .24s var(--ease);
  }
  .main-nav--approved.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav--approved a:not(.nav-donate) { padding: 13px 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .menu-toggle { display: block; }
  .header__inner--approved { grid-template-columns: 1fr auto auto; }
  .hero-feature-grid { grid-template-columns: repeat(3,1fr); }
  .hero-feature-card { grid-template-columns: 1fr; align-content: start; min-height: 190px; }
  .principles-approved__grid { grid-template-columns: repeat(2,1fr); }
  .principle-approved:nth-child(2)::after { display: none; }
  .principle-approved:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 84px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header--approved { min-height: 76px; }
  .header__inner--approved { grid-template-columns: 1fr auto; gap: 12px; }
  .brand--approved .brand__phoenix { width: 205px; max-height: 53px; }
  .site-header--approved.is-scrolled .brand__phoenix { width: 190px; }
  .header-contact { display: none; }
  .main-nav--approved { inset: 76px 12px auto; }
  .hero--approved { min-height: auto; padding-bottom: 0; }
  .hero-approved__gallery { position: relative; inset: auto; left: auto; right: auto; height: 330px; border-radius: 0; }
  .hero-approved__gallery .hero-slide img { object-position: center; }
  .hero-approved__overlay { background: linear-gradient(180deg,rgba(3,19,34,.08),rgba(3,19,34,.48)); }
  .hero-approved__content-wrap { min-height: auto; margin-top: -66px; padding: 0 0 24px; }
  .hero-approved__panel { width: 100%; padding: 27px 24px 29px; border-radius: 24px; background: linear-gradient(145deg,rgba(3,19,34,.98),rgba(7,42,73,.96)); }
  .hero--approved h1 { font-size: clamp(2.75rem,13vw,4.1rem); }
  .hero-approved__lead { font-size: .92rem; }
  .hero-approved__idealizer img { width: 52px; height: 52px; }
  .hero-approved__actions { display: grid; grid-template-columns: 1fr; }
  .hero-approved__actions .button { width: 100%; }
  .hero-gallery__controls--approved { right: 20px; bottom: auto; top: 270px; }
  .hero-feature-grid {
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 26px;
    transform: none;
  }
  .hero-feature-card { grid-template-columns: auto 1fr; min-height: 0; padding: 20px; border-radius: 18px; }
  .hero-approved__curve { display: none; }
  .principles--approved { padding: 12px 0 34px; background: #fff; }
  .principles-approved__grid { grid-template-columns: 1fr; }
  .principle-approved { min-height: 100px; }
  .principle-approved::after { display: none !important; }
  .principle-approved:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 410px) {
  .brand--approved .brand__phoenix { width: 178px; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero-approved__gallery { height: 285px; }
  .hero-gallery__controls--approved { top: 226px; }
  .hero-approved__panel { padding-inline: 20px; }
  .hero-feature-card__icon { width: 53px; height: 53px; }
}
