@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --primary: #276495;
  --primary-dark: #1F4F75;
  --secondary: #3D87B7;
  --accent-red: #ED373A;
  --accent-gold: #F4CF45;

  --blue-950: #0D1B2A;
  --blue-900: #122A44;
  --blue-800: #1A3B5C;
  --blue-700: #1F4F75;
  --blue-600: #276495;
  --blue-500: #3D87B7;
  --blue-400: #5BA3D3;
  --blue-300: #8BC1E3;
  --blue-200: #BDDCEE;
  --blue-100: #E3EFF7;

  --gold: #F4CF45;
  --gold-light: #F7DC7A;
  --gold-soft: #FCF0C0;

  --white: #ffffff;
  --bg: #F7F9FC;
  --gray-200: #E2E6EA;
  --gray-400: #9CA6B2;
  --gray-500: #5F6B7A;
  --gray-600: #3D4856;
  --gray-700: #2D3743;
  --text: #1D1D1D;
  --text-gray: #5F6B7A;

  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 16px 38px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.14);
  --radius-sm: 14px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --header-height: 82px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(2, 10, 20, 0.62);
  backdrop-filter: blur(2px);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }

.home-page main > .section {
  display: none;
}

.topic-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--blue-950);
  background: var(--blue-300);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.page-orbs {
  display: none;
  position: fixed;
  inset: 0;
  contain: strict;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.09;
}
.orb-one { top: 13%; right: -180px; width: 420px; height: 420px; background: var(--blue-400); }
.orb-two { top: 48%; left: -180px; width: 360px; height: 360px; background: var(--blue-500); }
.orb-three { right: -130px; bottom: 4%; width: 320px; height: 320px; background: var(--accent-gold); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  background: rgba(6, 22, 38, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(6, 22, 38, 0.94);
  border-color: rgba(39, 100, 149, 0.12);
  box-shadow: 0 10px 40px rgba(2, 10, 20, 0.24);
}

.detail-header {
  background: rgba(6, 22, 38, 0.93);
  border-color: rgba(39, 100, 149, 0.12);
  box-shadow: 0 12px 40px rgba(2, 10, 20, 0.18);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.site-header .brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--blue-400));
  border-radius: 13px 13px 13px 4px;
  box-shadow: 0 0 22px rgba(39, 100, 149, 0.26);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.8px;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-header .brand-logo-img {
  height: 40px;
  max-width: min(292px, 42vw);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-copy strong {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-header .brand-slogan small {
  margin-top: 0;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
  text-shadow: 0 0 8px color-mix(in srgb, var(--accent) 72%, transparent), 0 0 16px color-mix(in srgb, var(--accent) 38%, transparent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  background: var(--blue-500);
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link.active::after,
.nav-link:hover::after { transform: scaleX(1); }

.nav-contact {
  padding: 11px 19px;
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(39, 100, 149, 0.16);
}
.nav-contact:hover {
  color: var(--white);
  background: var(--blue-500);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 980px;
  padding: 158px 0 84px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 34%, rgba(39, 100, 149, 0.22), transparent 29%),
    radial-gradient(circle at 20% 16%, rgba(13, 27, 42, 0.3), transparent 33%),
    linear-gradient(130deg, var(--blue-950) 0%, var(--blue-900) 55%, var(--blue-800) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: 40px;
  width: 520px;
  height: 520px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(170px);
  opacity: 0.07;
}

.hero::after {
  content: "";
  position: absolute;
  right: -7%;
  bottom: -300px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(39, 100, 149, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(39, 100, 149, 0.025), 0 0 0 160px rgba(39, 100, 149, 0.02);
}

.hero-grid,
.contact-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue-400);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.eyebrow span {
  width: 24px;
  height: 1px;
  background: var(--blue-400);
  box-shadow: 0 0 8px var(--blue-400);
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  position: relative;
  color: var(--blue-400);
  font-style: normal;
  text-shadow: 0 0 32px rgba(0, 212, 117, 0.26);
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 9px;
  background: url("data:image/svg+xml,%3Csvg width='220' height='10' viewBox='0 0 220 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7c50-5 150-4 216-3' stroke='%23F5A83E' stroke-width='5' fill='none' stroke-linecap='round' opacity='.75'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero-copy > p {
  max-width: 580px;
  margin: 27px 0 0;
  color: rgba(227, 243, 247, 0.7);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button:hover { transform: translateY(-2px); }

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -100%;
  left: -55%;
  width: 35%;
  height: 300%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(22deg);
  transition: left 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.button:hover::before { left: 125%; }

.button-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 12px 30px rgba(39, 100, 149, 0.2), 0 0 30px rgba(39, 100, 149, 0.1);
}
.button-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 16px 38px rgba(39, 100, 149, 0.27);
}

.button-ghost {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.16);
}
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-outline {
  min-height: 41px;
  padding-inline: 17px;
  color: var(--primary);
  background: transparent;
  border-color: rgba(39, 100, 149, 0.2);
  font-size: 11px;
}
.button-outline:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.button-gold {
  color: var(--blue-950);
  background: var(--accent-gold);
  box-shadow: 0 12px 30px rgba(244, 207, 69, 0.2);
}
.button-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 16px 38px rgba(244, 207, 69, 0.27);
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 38px;
}
.hero-social > span {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-social a {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.hero-social a:hover {
  color: var(--blue-400);
  background: rgba(0, 212, 117, 0.08);
  border-color: rgba(0, 212, 117, 0.38);
  transform: translateY(-2px);
}
.hero-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.hero-social svg rect,
.hero-social svg circle { fill: none; stroke: currentColor; stroke-width: 1.8; }
.hero-social svg .fill-dot { fill: currentColor; stroke: none; }
.hero-social svg .play { fill: var(--blue-950); }

.portrait-shell {
  position: relative;
  width: min(100%, 500px);
  margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.portrait-glow {
  position: absolute;
  inset: 8% -8% -4% 6%;
  background:
    radial-gradient(circle at 30% 22%, rgba(46, 201, 255, 0.32), transparent 42%),
    linear-gradient(140deg, rgba(23, 180, 255, 0.24), rgba(38, 232, 164, 0.28));
  border-radius: 36px;
  filter: blur(58px);
  opacity: 0.38;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  padding: 1px;
  background:
    linear-gradient(145deg, rgba(127, 255, 209, 0.9), rgba(46, 201, 255, 0.24) 48%, rgba(83, 245, 185, 0.6)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  border-radius: 34px;
  box-shadow:
    0 38px 100px rgba(0, 8, 18, 0.42),
    0 24px 70px rgba(46, 201, 255, 0.12),
    0 0 0 8px rgba(255, 255, 255, 0.025),
    inset 0 0 0 7px rgba(4, 23, 39, 0.6);
  overflow: hidden;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 8px solid rgba(5, 25, 42, 0.7);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2, 16, 28, 0.38), transparent 34%),
    radial-gradient(circle at 72% 20%, rgba(38, 232, 164, 0.1), transparent 28%);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.96) contrast(1.03);
  transform: scale(1.02);
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}

.portrait-shell:hover .portrait-art {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.045);
}

.mandate-card {
  position: absolute;
  right: -34px;
  bottom: 80px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 18px;
  background: rgba(5, 25, 42, 0.82);
  border: 1px solid rgba(83, 245, 185, 0.25);
  border-radius: 13px;
  box-shadow: 0 18px 44px rgba(0, 8, 18, 0.32);
  backdrop-filter: blur(14px);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--blue-400);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(91, 163, 211, 0.1), 0 0 17px var(--blue-400);
}

.mandate-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.mandate-card small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mandate-card strong {
  margin-top: 3px;
  font-size: 12px;
}

.hero-seal {
  position: absolute;
  top: 38px;
  left: -48px;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  color: var(--blue-400);
  background: rgba(6, 22, 38, 0.86);
  border: 1px solid rgba(91, 163, 211, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(91, 163, 211, 0.16);
}
.hero-seal svg {
  position: absolute;
  inset: 7px;
  width: 94px;
  height: 94px;
  animation: rotate 18s linear infinite;
}
.hero-seal text {
  fill: rgba(255, 255, 255, 0.6);
  font-family: "Manrope", sans-serif;
  font-size: 8.2px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.hero-seal span {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 21px;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.impact-strip {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  align-items: center;
  min-height: 115px;
  padding: 0 34px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(5, 22, 40, 0.84);
  border: 1px solid rgba(39, 100, 149, 0.14);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 10, 22, 0.18), inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}

.impact-intro,
.impact-item {
  display: flex;
  flex-direction: column;
}

.impact-intro small {
  color: var(--blue-400);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.impact-intro strong {
  margin-top: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
}

.impact-item {
  position: relative;
  padding-left: 34px;
}
.impact-item::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.impact-item strong {
  color: var(--blue-400);
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  line-height: 1.2;
}
.impact-item > span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}
.section-label.light { color: var(--blue-400); }

.section h2 {
  margin: 0;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.section h2 span { color: var(--primary); }

.about {
  background: var(--white);
  overflow: hidden;
}

.about::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -180px;
  width: 350px;
  height: 350px;
  background: var(--blue-400);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.08;
  transform: translateY(-50%);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.about-visual { position: relative; }

.about-image {
  position: relative;
  min-height: 525px;
  display: flex;
  align-items: flex-end;
  padding: 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 27% 30%, rgba(39, 100, 149, 0.18), transparent 28%),
    linear-gradient(145deg, var(--blue-800), var(--blue-950) 75%);
  border: 1px solid rgba(39, 100, 149, 0.14);
  border-radius: 20px 90px 20px 20px;
  box-shadow: 0 25px 70px rgba(2, 20, 40, 0.16);
  overflow: hidden;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(39, 100, 149, 0.18);
  border-radius: 13px 66px 13px 13px;
}

.about-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(61, 135, 183, 0.24) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(135deg, black, transparent 70%);
}

.about-monogram {
  position: absolute;
  top: 38%;
  left: 50%;
  color: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 190px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
  -webkit-text-stroke: 1px rgba(39, 100, 149, 0.2);
  transform: translate(-50%, -50%);
}

.about-lines {
  position: absolute;
  top: 67px;
  right: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(39, 100, 149, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(39, 100, 149, 0.025), 0 0 0 80px rgba(39, 100, 149, 0.02);
}

.about-destaque {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.about-image > .about-quote {
  position: relative;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.experience-badge {
  position: absolute;
  right: -35px;
  bottom: -30px;
  width: 148px;
  height: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blue-950);
  background: var(--accent-gold);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(244, 207, 69, 0.23);
  text-align: center;
}
.experience-badge strong {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  line-height: 1;
}
.experience-badge span {
  width: 90px;
  margin-top: 7px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-copy .lead {
  margin: 26px 0 16px;
  color: var(--gray-700);
  font-size: 17px;
  font-weight: 600;
}

.about-copy > p:not(.lead) {
  margin: 0;
  color: var(--gray-500);
  font-size: 14px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-top: 30px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.value-item:hover {
  background: rgba(39, 100, 149, 0.045);
  border-color: rgba(39, 100, 149, 0.1);
  transform: translateX(3px);
}
.value-item:last-child { grid-column: 1 / -1; }

.value-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--primary);
  background: rgba(39, 100, 149, 0.08);
  border: 1px solid rgba(39, 100, 149, 0.13);
  border-radius: 10px;
}
.value-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-item div {
  display: flex;
  flex-direction: column;
}
.value-item strong { font-size: 13px; }
.value-item small {
  color: var(--gray-500);
  font-size: 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  position: relative;
}

.text-link span {
  color: var(--primary);
  font-size: 18px;
  transition: transform 0.2s ease;
}
.text-link:hover span { transform: translateX(4px); }

.text-link::after {
  content: "";
  position: absolute;
  right: 27px;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.text-link:hover::after { transform: scaleX(1); }

.projects {
  background:
    radial-gradient(circle at 8% 0%, rgba(61, 135, 183, 0.06), transparent 25%),
    var(--bg);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
}
.section-heading > p {
  margin: 0 0 6px;
  color: var(--gray-500);
  font-size: 13px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 51px;
}

.project-card {
  position: relative;
  isolation: isolate;
  background: var(--white);
  border: 1px solid rgba(11, 55, 77, 0.09);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card:hover {
  transform: translateY(-9px);
  border-color: rgba(39, 100, 149, 0.24);
  box-shadow: 0 30px 75px rgba(2, 30, 50, 0.15);
}

.project-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: radial-gradient(380px circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(39, 100, 149, 0.1), transparent 42%);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.project-card:hover::after { opacity: 1; }

.project-art {
  position: relative;
  height: 205px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--blue-900);
}

.project-art .topic-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.86) brightness(0.76) contrast(1.05);
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.5s ease;
}
.project-card:hover .project-art .topic-photo {
  filter: saturate(0.98) brightness(0.82) contrast(1.04);
  transform: scale(1.055);
}

.project-art::before,
.project-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.project-art::before {
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.025);
  z-index: 1;
}
.project-art::after {
  z-index: 1;
  right: -35px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  background: rgba(39, 100, 149, 0.16);
  filter: blur(35px);
}

.project-art svg {
  position: relative;
  z-index: 2;
  width: 86px;
  color: rgba(255, 255, 255, 0.82);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1), opacity 0.4s ease;
}
.project-card:hover .project-art svg {
  transform: translateY(-5px) scale(1.08);
}

.art-women { background: linear-gradient(145deg, #c0397a, #6a1e4a); }
.art-autism { background: linear-gradient(145deg, #2a7ab0, #0e3a5e); }
.art-security { background: linear-gradient(145deg, #1a5a7a, #0a2a3e); }
.art-health { background: linear-gradient(145deg, #00a86b, #005a3e); }
.art-tourism { background: linear-gradient(145deg, #d4a84b, #8a6a2a); }

.project-number {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 18px;
  padding: 4px 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(2, 16, 30, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  backdrop-filter: blur(8px);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}

.project-body {
  padding: 27px 28px 29px;
}

.tag {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--blue-700);
  background: rgba(39, 100, 149, 0.09);
  border-radius: 5px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-body h3 {
  margin: 13px 0 9px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.project-body p {
  min-height: 66px;
  margin: 0;
  color: var(--gray-500);
  font-size: 12px;
}

.project-body a,
.news-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--text);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.project-body a span,
.news-content a span {
  color: var(--primary);
  font-size: 14px;
  transition: transform 0.2s ease;
}
.project-body a:hover span,
.news-content a:hover span { transform: translate(3px, -2px); }

.projects-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
  padding: 21px 25px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(31, 79, 117, 0.18);
  border-radius: 13px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.75);
}
.projects-cta p {
  margin: 0;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 600;
}
.projects-cta p span {
  display: inline-grid;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  place-items: center;
  color: var(--primary);
  background: rgba(39, 100, 149, 0.1);
  border-radius: 50%;
  font-size: 17px;
}

.news {
  background: var(--white);
}

.news-heading {
  grid-template-columns: 1fr auto;
}
.news-heading .text-link { margin: 0 0 7px; }

.news-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  margin-top: 50px;
}

.news-card {
  position: relative;
  isolation: isolate;
  background: var(--white);
  border: 1px solid rgba(8, 50, 72, 0.09);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.news-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: radial-gradient(380px circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(39, 100, 149, 0.1), transparent 42%);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.news-card:hover::after { opacity: 1; }

.news-card:hover {
  border-color: rgba(39, 100, 149, 0.2);
  box-shadow: 0 26px 70px rgba(2, 30, 50, 0.14);
  transform: translateY(-5px);
}

.news-cover {
  position: relative;
  height: 285px;
  overflow: hidden;
  background: var(--blue-900);
}

.news-cover .topic-photo,
.news-thumb .topic-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.5s ease;
}
.news-cover .topic-photo { filter: saturate(0.9) brightness(0.8) contrast(1.04); }
.news-thumb .topic-photo { filter: saturate(0.88) brightness(0.84) contrast(1.03); }

.news-card:hover .news-cover .topic-photo,
.news-card:hover .news-thumb .topic-photo {
  filter: saturate(0.98) brightness(0.82) contrast(1.04);
  transform: scale(1.055);
}

.cover-one {
  background:
    radial-gradient(circle at 72% 19%, rgba(39, 100, 149, 0.24), transparent 20%),
    linear-gradient(135deg, var(--blue-600), var(--blue-900) 72%);
}

.cover-two { background: linear-gradient(145deg, var(--primary), var(--blue-800)); }
.cover-three { background: linear-gradient(145deg, var(--blue-500), var(--blue-800)); }
.cover-four { background: linear-gradient(145deg, var(--blue-600), var(--blue-900)); }

.news-category {
  display: inline-flex;
  width: max-content;
  padding: 5px 9px;
  color: var(--primary);
  background: rgba(39, 100, 149, 0.1);
  border-radius: 5px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-cover .news-category {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  color: var(--white);
  background: var(--primary);
}

.news-main .news-cover::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(39, 100, 149, 0.05));
  pointer-events: none;
}

.news-main .news-content { padding: 27px 30px 31px; }

.news-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-content time {
  color: var(--gray-500);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.news-content h3 {
  margin: 10px 0 0;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.news-content p {
  margin: 10px 0 0;
  color: var(--gray-500);
  font-size: 12px;
}

.news-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-horizontal {
  display: grid;
  grid-template-columns: 175px 1fr;
  min-height: 191px;
}

.news-thumb {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  overflow: hidden;
}

.news-horizontal .news-content {
  justify-content: center;
  padding: 23px;
}
.news-horizontal .news-category { margin-bottom: 8px; }
.news-horizontal h3 {
  font-size: 15px;
  line-height: 1.4;
}
.news-horizontal .news-content a { margin-top: 13px; }

.contact {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 80%, rgba(39, 100, 149, 0.18), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(39, 100, 149, 0.1), transparent 23%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 65%, var(--blue-800));
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(39, 100, 149, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(39, 100, 149, 0.025), 0 0 0 110px rgba(39, 100, 149, 0.018);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 90px;
}

.contact h2 { color: var(--white); }
.contact h2 span {
  display: block;
  color: var(--blue-400);
}

.contact-copy > p {
  max-width: 465px;
  margin: 24px 0 0;
  color: rgba(224, 239, 243, 0.62);
  font-size: 14px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.whatsapp-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  background: rgba(39, 100, 149, 0.11);
  border: 1px solid rgba(39, 100, 149, 0.26);
  border-radius: 13px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.whatsapp-card:hover {
  background: rgba(39, 100, 149, 0.16);
  transform: translateY(-2px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--blue-400);
  background: rgba(39, 100, 149, 0.1);
  border: 1px solid rgba(39, 100, 149, 0.14);
  border-radius: 10px;
}
.contact-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-card > span:nth-child(2),
.contact-row a > span:last-child,
.contact-row div > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-methods small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}
.contact-methods strong {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.method-arrow { color: var(--blue-400); }

.contact-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}
.contact-row > a,
.contact-row > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.contact-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 29px;
  font-size: 10px;
}
.contact-social span {
  padding-right: 12px;
  color: rgba(255, 255, 255, 0.37);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-social a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  transition: color 0.2s ease;
}
.contact-social a:hover { color: var(--blue-400); }

.contact-form-card {
  padding: 36px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 21px;
  box-shadow: 0 36px 100px rgba(0, 8, 18, 0.36), 0 0 0 1px rgba(39, 100, 149, 0.08);
}

.form-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.form-heading span {
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.form-heading small {
  margin-top: 3px;
  color: var(--gray-500);
  font-size: 10px;
}

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

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 13px;
}

.field label {
  margin-bottom: 6px;
  color: var(--gray-700);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--text);
  background: #eef3f5;
  border: 1px solid #d0d9e0;
  border-radius: 9px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
  height: 46px;
  padding: 0 13px;
}

.field textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a9aa8;
  font-size: 11px;
}

.field select {
  color: var(--gray-500);
  font-size: 11px;
  appearance: none;
}

.select-wrap { position: relative; }
.select-wrap::after {
  content: "⌄";
  position: absolute;
  top: 8px;
  right: 14px;
  color: var(--gray-500);
  pointer-events: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(39, 100, 149, 0.09);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #d74b5d; }

.field-error,
.privacy-error {
  min-height: 0;
  margin-top: 3px;
  color: #c53247;
  font-size: 9px;
  line-height: 1.3;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--gray-500);
  font-size: 9px;
  cursor: pointer;
}
.privacy-check input {
  width: 14px;
  height: 14px;
  margin: 1px 0 0;
  accent-color: var(--primary);
}

.privacy-error {
  display: block;
  margin: 3px 0 8px 22px;
}

.button-submit {
  width: 100%;
  margin-top: 6px;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 10px 25px rgba(39, 100, 149, 0.17);
}
.button-submit:hover { background: var(--primary-dark); }
.button-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin-top: 9px;
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.site-footer {
  padding: 48px 0 20px;
  color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(115deg, #115795 0%, #0B4878 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px 11px 11px 3px;
}

.footer-brand .brand-logo-img {
  height: 58px;
}

.footer-main > p {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.footer-main nav {
  display: flex;
  gap: 22px;
}

.footer-main nav a {
  font-size: 10px;
  transition: color 0.2s ease;
}
.footer-main nav a:hover { color: var(--blue-400); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 8px;
}
.footer-logos {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.footer-logos img {
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-left: 0 !important;
}

.footer-logos img[alt="ALEAM"] {
  height: 64px !important;
}

.footer-logos img[alt="Podemos"] {
  height: 52px !important;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #20af12 url("../assets/whatsapp.png") center / 100% 100% no-repeat;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.33), 0 0 0 0 rgba(37, 211, 102, 0.25);
  animation: pulse 2.7s infinite;
  transition: transform 0.2s ease;
}
.floating-whatsapp:hover { transform: scale(1.08); }
.floating-whatsapp img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}
.floating-whatsapp svg {
  width: 25px;
  fill: currentColor;
  stroke: none;
}

.floating-whatsapp::before {
  display: none;
}

.floating-whatsapp > svg {
  display: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(39, 100, 149, 0.33), 0 0 0 0 rgba(39, 100, 149, 0.25); }
  50% { box-shadow: 0 10px 30px rgba(39, 100, 149, 0.33), 0 0 0 12px rgba(39, 100, 149, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.992);
  transition:
    opacity 0.75s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============== INNER PAGES =============== */

.detail-page {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 92% 16%, rgba(61, 135, 183, 0.08), transparent 22%),
    #f0f4f8;
}

.inner-hero {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  padding: 152px 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 35%, rgba(39, 100, 149, 0.15), transparent 25%),
    radial-gradient(circle at 15% 10%, rgba(39, 100, 149, 0.2), transparent 32%),
    linear-gradient(130deg, var(--blue-950), var(--blue-900) 66%, var(--blue-800));
  overflow: hidden;
}

.inner-hero::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -120px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(39, 100, 149, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(39, 100, 149, 0.025), 0 0 0 150px rgba(39, 100, 149, 0.018);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.inner-hero .container { position: relative; z-index: 2; }

.inner-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
  align-items: center;
  gap: 90px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.breadcrumb a { transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--blue-400); }
.breadcrumb span { color: rgba(255, 255, 255, 0.22); }

.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--blue-400);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.detail-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.inner-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(43px, 5.6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.inner-hero h1 span { color: var(--blue-400); }

.inner-hero-copy > p {
  max-width: 720px;
  margin: 25px 0 0;
  color: rgba(229, 243, 246, 0.68);
  font-size: 16px;
}

.inner-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}
.inner-meta > span,
.inner-meta > time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.inner-meta > span + span,
.inner-meta > span + time,
.inner-meta > time + span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.inner-meta svg {
  width: 15px;
  fill: none;
  stroke: var(--blue-400);
  stroke-width: 1.8;
}

.hero-emblem {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-inline: auto;
  color: var(--accent-gold);
  background:
    radial-gradient(circle, rgba(244, 207, 69, 0.11), transparent 66%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(244, 207, 69, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(244, 207, 69, 0.025),
    0 30px 80px rgba(0, 8, 18, 0.25),
    inset 0 0 55px rgba(244, 207, 69, 0.055);
}
.hero-emblem::before,
.hero-emblem::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(244, 207, 69, 0.12);
  border-radius: 50%;
}
.hero-emblem::before {
  inset: 13%;
  border-style: dashed;
  animation: rotate 28s linear infinite reverse;
}
.hero-emblem::after { inset: 27%; }
.hero-emblem svg {
  width: 35%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(244, 207, 69, 0.28));
}
.hero-emblem strong {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
}

.detail-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(39, 100, 149, 0.2);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 8, 18, 0.38), 0 0 0 8px rgba(255, 255, 255, 0.025);
  overflow: hidden;
}
.detail-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2, 14, 26, 0.78), transparent 48%),
    linear-gradient(135deg, rgba(61, 135, 183, 0.08), transparent 35%, rgba(39, 100, 149, 0.08));
  pointer-events: none;
}
.detail-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.91) contrast(1.03);
  transition: transform 1s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.5s ease;
}

.portrait-photo {
  width: min(100%, 380px);
  aspect-ratio: 4 / 5;
  justify-self: center;
  border-radius: 28px 92px 28px 28px;
}

.portrait-photo img {
  object-position: center 16%;
}
.detail-photo:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.04);
}
.detail-photo figcaption {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.detail-photo figcaption span { color: var(--blue-400); }

.detail-main { padding: 104px 0 116px; }

.detail-stats-strip {
  padding: 44px 0;
  background: var(--blue-950);
}

.detail-stats-strip .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}

.detail-stats-strip .impact-item {
  padding: 0;
}

.detail-stats-strip .impact-item::before {
  display: none;
}

.detail-stats-strip .impact-item strong {
  font-size: 30px;
}

.detail-stats-strip .impact-item > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 82px;
}

.article-prose { min-width: 0; }

.article-prose .lead {
  margin: 0 0 32px;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
.article-prose > p {
  margin: 0 0 22px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.9;
}
.article-prose h2 {
  margin: 55px 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}
.article-prose h3 {
  margin: 35px 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
}
.article-prose blockquote {
  position: relative;
  margin: 40px 0;
  padding: 30px 32px 30px 38px;
  color: var(--text);
  background: linear-gradient(120deg, rgba(39, 100, 149, 0.09), rgba(61, 135, 183, 0.045));
  border: 1px solid rgba(39, 100, 149, 0.15);
  border-radius: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}
.article-prose blockquote::before {
  content: "“";
  position: absolute;
  top: 14px;
  left: 13px;
  color: var(--primary);
  font-size: 42px;
  line-height: 1;
}

.article-sidebar {
  position: sticky;
  top: 102px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 62, 84, 0.09);
  border-radius: 20px;
  box-shadow: 0 20px 55px rgba(2, 30, 50, 0.09);
}
.info-card.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(39, 100, 149, 0.13), transparent 38%),
    linear-gradient(145deg, var(--blue-800), var(--blue-950));
  border-color: rgba(39, 100, 149, 0.14);
}

.info-card-label {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.info-card.dark .info-card-label { color: var(--blue-400); }

.info-card h3 {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.info-card p {
  margin: 0;
  color: var(--gray-500);
  font-size: 12px;
}
.info-card.dark p { color: rgba(255, 255, 255, 0.55); }

.info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--gray-700);
  font-size: 12px;
}
.info-card.dark .info-list li { color: rgba(255, 255, 255, 0.68); }
.info-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.profile-card-photo {
  position: relative;
  height: 235px;
  margin: -28px -28px 24px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.profile-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 14, 26, 0.48), transparent 45%);
}
.profile-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 55px 0;
}
.detail-stat {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(7, 62, 84, 0.08);
  border-radius: 16px;
  box-shadow: 0 15px 38px rgba(2, 30, 50, 0.065);
}
.detail-stat strong {
  display: block;
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-size: 29px;
  line-height: 1.1;
}
.detail-stat span {
  display: block;
  margin-top: 8px;
  color: var(--gray-500);
  font-size: 10px;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 38px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 18px;
  width: 1px;
  background: linear-gradient(var(--primary), rgba(39, 100, 149, 0.08));
}
.timeline-item {
  position: relative;
  padding: 23px 25px 23px 58px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 62, 84, 0.08);
  border-radius: 17px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.timeline-item:hover {
  border-color: rgba(39, 100, 149, 0.18);
  box-shadow: 0 17px 40px rgba(2, 30, 50, 0.08);
  transform: translateX(4px);
}
.timeline-dot {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: 12px;
  width: 13px;
  height: 13px;
  background: var(--primary);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(39, 100, 149, 0.12);
}
.timeline-item time {
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.timeline-item h3 { margin: 5px 0; font-size: 16px; }
.timeline-item p {
  margin: 0;
  color: var(--gray-500);
  font-size: 12px;
}

.share-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid rgba(7, 62, 84, 0.1);
}
.share-row > span {
  margin-right: 8px;
  color: var(--gray-500);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.share-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid rgba(7, 62, 84, 0.11);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.share-button:hover {
  color: var(--primary);
  border-color: rgba(39, 100, 149, 0.3);
  transform: translateY(-2px);
}

.archive-section { padding: 95px 0 116px; }

.archive-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.archive-toolbar h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(31px, 4vw, 43px);
  letter-spacing: -0.045em;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 39px;
  padding: 0 15px;
  color: var(--gray-700);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(7, 62, 84, 0.1);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.filter-button.active,
.filter-button:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

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

.archive-card {
  position: relative;
  display: flex;
  min-height: 400px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(7, 62, 84, 0.085);
  border-radius: 21px;
  box-shadow: 0 18px 50px rgba(2, 30, 50, 0.075);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 0.35s ease;
}
.archive-card:hover {
  box-shadow: 0 30px 72px rgba(2, 30, 50, 0.14);
  transform: translateY(-7px);
}
.archive-card[hidden] { display: none; }

.archive-visual {
  position: relative;
  height: 180px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--blue-900);
}
.archive-visual .topic-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.86) brightness(0.82) contrast(1.04);
  transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.4s ease;
}
.archive-card:hover .archive-visual .topic-photo {
  filter: saturate(0.98) brightness(0.88) contrast(1.04);
  transform: scale(1.06);
}

.archive-visual::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.025);
}
.archive-visual .archive-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  color: rgba(255, 255, 255, 0.76);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.45s ease;
}
.archive-card:hover .archive-visual .archive-icon { transform: translateY(-4px) scale(1.08); }

.archive-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}
.archive-content time {
  color: var(--gray-500);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.archive-content h2,
.archive-content h3 {
  margin: 10px 0 9px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.03em;
}
.archive-content p {
  margin: 0;
  color: var(--gray-500);
  font-size: 11px;
}
.archive-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--text);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.archive-content a span {
  color: var(--primary);
  transition: transform 0.2s ease;
}
.archive-content a:hover span { transform: translateX(4px); }

.tone-green { background: linear-gradient(145deg, var(--primary), var(--blue-800)); }
.tone-blue { background: linear-gradient(145deg, var(--blue-500), var(--blue-800)); }
.tone-gold { background: linear-gradient(145deg, var(--accent-gold), #8a6a2a); }
.tone-indigo { background: linear-gradient(145deg, #315b9f, #142e5b); }
.tone-teal { background: linear-gradient(145deg, #087d84, #063c4d); }
.tone-pink { background: linear-gradient(145deg, #c0397a, #6a1e4a); }
.tone-navy { background: linear-gradient(145deg, var(--blue-700), var(--blue-950)); }

.detail-cta {
  position: relative;
  padding: 62px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(39, 100, 149, 0.14), transparent 26%),
    linear-gradient(120deg, var(--blue-900), var(--blue-800));
  overflow: hidden;
}
.detail-cta::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -240px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(39, 100, 149, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(39, 100, 149, 0.02);
}
.detail-cta .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.detail-cta h2 {
  max-width: 660px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.detail-cta p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.back-link span { transition: transform 0.2s ease; }
.back-link:hover span { transform: translateX(-4px); }

.reading-progress {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--accent-gold));
  box-shadow: 0 0 14px rgba(39, 100, 149, 0.45);
}

.toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(4, 20, 36, 0.94);
  border: 1px solid rgba(39, 100, 149, 0.25);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 8, 18, 0.25);
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* =============== PROPOSTAS PAGE =============== */

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

.proposta-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(7, 62, 84, 0.09);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.proposta-card:hover {
  transform: translateY(-7px);
  border-color: rgba(39, 100, 149, 0.24);
  box-shadow: 0 25px 60px rgba(2, 30, 50, 0.13);
}

.proposta-visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  overflow: hidden;
  background: var(--blue-900);
}

.proposta-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 14, 26, 0.6), transparent 50%);
}

.proposta-visual .topic-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) brightness(0.7);
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.proposta-card:hover .proposta-visual .topic-photo { transform: scale(1.06); }

.proposta-icon {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(39, 100, 149, 0.85);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.proposta-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proposta-body {
  padding: 24px 26px 28px;
}
.proposta-body h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  letter-spacing: -0.03em;
}
.proposta-body p {
  margin: 0;
  color: var(--gray-500);
  font-size: 12px;
  line-height: 1.7;
}

/* =============== REALIZACOES PAGE =============== */

.realizacoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.realizacoes-eixos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.realizacao-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(7, 62, 84, 0.085);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(2, 30, 50, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.realizacao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(2, 30, 50, 0.12);
}
.realizacao-card[hidden] { display: none; }

.realizacao-top {
  position: relative;
  padding: 20px 22px 16px;
  color: var(--white);
}

.realizacao-numero {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.realizacao-ano {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
}

.realizacao-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 22px 22px;
}

.realizacao-categoria {
  display: inline-flex;
  width: max-content;
  padding: 4px 8px;
  color: var(--primary);
  background: rgba(39, 100, 149, 0.08);
  border-radius: 4px;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.realizacao-body p {
  margin: 0;
  color: var(--gray-500);
  font-size: 11px;
  line-height: 1.65;
}

.realizacao-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.realizacao-list li {
  position: relative;
  padding-left: 16px;
  color: var(--gray-600);
  font-size: 12px;
  line-height: 1.55;
}

.realizacao-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.realizacao-list strong {
  color: var(--text);
}

/* =============== CONTATO PAGE =============== */

.map-placeholder {
  width: 100%;
  height: 240px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  font-size: 11px;
  text-align: center;
  margin-top: 28px;
}
.map-placeholder svg {
  width: 32px;
  margin-bottom: 8px;
  fill: none;
  stroke: var(--blue-400);
  stroke-width: 1.5;
}

/* =============== SOBRE PAGE =============== */

.bandeiras-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.bandeira-tag {
  padding: 8px 16px;
  color: var(--white);
  background: var(--primary);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
}

.sobre-foto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.sobre-foto-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
}
.sobre-foto-grid img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

/* =============== NOTICIAS DETALHE =============== */

.noticia-completa h2 {
  margin-top: 45px;
}
.noticia-completa p {
  margin: 0 0 20px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.9;
}
.noticia-completa .noticia-imagem {
  width: 100%;
  border-radius: 18px;
  margin: 28px 0;
  aspect-ratio: 16/9;
  object-fit: cover;
}

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