:root {
  --navy-900: #061229;
  --navy-800: #0a1f3d;
  --navy-700: #102a52;
  --navy-600: #1a3a6b;
  --yellow: #fbbf1f;
  --white: #ffffff;
  --gray-100: #f4f6fa;
  --gray-300: #c7cfd9;
  --gray-500: #6f7a8a;
  --shadow: 0 20px 60px -20px rgba(6, 18, 41, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  color: var(--navy-800);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Barlow Condensed", sans-serif; line-height: 1; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; max-width: 1200px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand-mark {
  width: 40px; height: 40px; border-radius: 8px; background: var(--yellow);
  display: grid; place-items: center; font-family: "Barlow Condensed", sans-serif; font-weight: 900;
  color: var(--navy-800); font-size: 20px;
}
.brand-text { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 18px; line-height: 1.05; text-transform: uppercase; letter-spacing: 0.02em; }
.brand-text small { display: block; font-size: 11px; font-weight: 500; color: var(--gray-300); letter-spacing: 0.15em; }
nav ul { display: flex; gap: 32px; list-style: none; }
nav a { color: var(--white); font-size: 14px; font-weight: 500; opacity: 0.85; transition: 0.2s; }
nav a:hover { color: var(--yellow); opacity: 1; }

.btn {
  display: inline-block; padding: 14px 28px; background: var(--yellow); color: var(--navy-800);
  font-weight: 700; font-size: 14px; letter-spacing: 0.03em; border-radius: 6px; transition: 0.25s;
  text-transform: uppercase; border: 2px solid var(--yellow); cursor: pointer;
}
.btn:hover { background: transparent; color: var(--yellow); }
.btn-outline { background: transparent; color: var(--yellow); }
.btn-outline:hover { background: var(--yellow); color: var(--navy-800); }

.hero {
  background: var(--navy-800);
  color: var(--white);
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(251, 191, 31, 0.08), transparent 50%),
              radial-gradient(circle at 10% 90%, rgba(26, 58, 107, 0.6), transparent 50%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(48px, 6vw, 84px); font-weight: 900; text-transform: uppercase; color: var(--yellow); margin-bottom: 28px; }
.hero h1 span { color: var(--white); display: block; }
.hero p.lead { font-size: 19px; font-weight: 300; max-width: 560px; margin-bottom: 20px; color: rgba(255, 255, 255, 0.85); font-style: italic; }
.hero-meta { font-size: 16px; font-weight: 600; margin-bottom: 22px; color: rgba(255, 255, 255, 0.9); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.skyline {
  position: relative;
  max-width: 10px !important;
  max-height: 10px !important;
  min-width: 10px;
  min-height: 10px;
  width: fit-content;
  margin-left: auto;
  filter: drop-shadow(0 30px 40px rgba(3, 10, 25, 0.55));
  overflow: hidden;
}
.skyline-image {
  display: block;
  width: auto;
  height: auto;
  width: 10px !important;
  height: 10px !important;
  max-width: 10px !important;
  max-height: 10px !important;
  min-width: 10px;
  min-height: 10px;
  object-fit: contain;
  object-position: right bottom;
}
.skyline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, rgba(251, 191, 31, 0) 0%, rgba(251, 191, 31, 0.8) 50%, rgba(251, 191, 31, 0) 100%);
}
.badge-stamp {
  position: absolute; bottom: 18px; left: 18px; background: var(--yellow); padding: 14px 18px;
  border-radius: 4px; box-shadow: var(--shadow); font-family: "Barlow Condensed", sans-serif; font-weight: 800;
  font-size: 13px; line-height: 1.1; text-transform: uppercase; color: var(--navy-800); letter-spacing: 0.04em;
}
.badge-stamp small { display: block; font-size: 10px; font-weight: 700; margin-top: 4px; }

.pillars { background: var(--navy-700); padding: 56px 0; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; color: var(--white); }
.pillar-icon {
  width: 60px; height: 60px; border: 2px solid var(--yellow); border-radius: 50%;
  margin-bottom: 16px; display: flex; align-items: center; justify-content: center; color: var(--yellow);
  line-height: 0;
  background: radial-gradient(circle at 35% 30%, rgba(251, 191, 31, 0.13), rgba(251, 191, 31, 0.02) 55%, transparent 70%);
  box-shadow: inset 0 0 0 1px rgba(251, 191, 31, 0.15);
}
.pillar-icon svg {
  width: 34px !important; height: 34px !important; display: block;
  position: static !important; transform: none !important;
  flex: 0 0 auto;
}
.pillar h4 { font-family: "Inter", sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; color: var(--yellow); letter-spacing: 0.08em; margin-bottom: 10px; }
.pillar p { font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.8); }

.what { background: var(--white); padding: 110px 0; }
.section-title { font-size: clamp(36px, 4vw, 56px); font-weight: 900; text-transform: uppercase; color: var(--navy-800); margin-bottom: 12px; }
.section-divider { width: 60px; height: 4px; background: var(--yellow); margin-bottom: 48px; }
.what-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.what-card {
  border: 1px solid #e4e8ee; padding: 32px; border-radius: 10px; transition: 0.3s;
  display: flex; gap: 20px; background: var(--white);
}
.what-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.what-card-ico {
  flex-shrink: 0; width: 58px; height: 58px; border-radius: 50%; border: 2px solid var(--navy-800);
  display: flex; align-items: center; justify-content: center; color: var(--navy-800);
  line-height: 0;
  background: radial-gradient(circle at 35% 30%, rgba(10, 31, 61, 0.08), rgba(10, 31, 61, 0.02) 55%, transparent 70%);
  box-shadow: inset 0 0 0 1px rgba(10, 31, 61, 0.08);
}
.what-card-ico svg {
  width: 32px !important; height: 32px !important; display: block;
  position: static !important; transform: none !important;
  flex: 0 0 auto;
}
.what-card h3 { font-family: "Inter", sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy-800); margin-bottom: 8px; }
.what-card p { font-size: 15px; color: var(--gray-500); }

.for-whom { background: var(--navy-800); color: var(--white); padding: 110px 0; }
.fw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.fw-card { border: 2px solid var(--yellow); padding: 44px; border-radius: 12px; text-align: center; }
.fw-card-ico {
  width: 76px; height: 76px; border-radius: 50%; border: 2px solid var(--yellow);
  margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; color: var(--yellow);
  line-height: 0;
  background: radial-gradient(circle at 35% 30%, rgba(251, 191, 31, 0.14), rgba(251, 191, 31, 0.02) 55%, transparent 70%);
  box-shadow: inset 0 0 0 1px rgba(251, 191, 31, 0.15);
}
.fw-card-ico svg {
  width: 40px !important; height: 40px !important; display: block;
  position: static !important; transform: none !important;
  flex: 0 0 auto;
}
.fw-card p { font-size: 18px; font-weight: 300; line-height: 1.6; }
.for-whom h2 { color: var(--yellow); }
.for-whom .lead { font-size: 18px; color: rgba(255, 255, 255, 0.85); margin-bottom: 32px; max-width: 480px; }

.benefits { background: var(--gray-100); padding: 110px 0; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.benefits-intro { font-size: 18px; color: var(--gray-500); max-width: 420px; }
.ben-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.ben-list li {
  display: flex; gap: 18px; align-items: flex-start; padding: 22px; background: var(--white);
  border-radius: 10px; transition: 0.25s; border-left: 4px solid transparent;
}
.ben-list li:hover { border-left-color: var(--yellow); transform: translateX(4px); }
.ben-list .ico {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--yellow);
  display: flex; align-items: center; justify-content: center; color: var(--navy-800);
  line-height: 0;
  background: radial-gradient(circle at 35% 30%, rgba(251, 191, 31, 0.12), rgba(251, 191, 31, 0.02) 55%, transparent 70%);
}
.ben-list .ico svg {
  width: 25px !important; height: 25px !important; display: block;
  position: static !important; transform: none !important;
  flex: 0 0 auto;
}
.ben-list h4 { font-family: "Inter", sans-serif; font-size: 16px; font-weight: 700; color: var(--navy-800); margin-bottom: 4px; }
.ben-list p { font-size: 14px; color: var(--gray-500); }

.cta {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  padding: 90px 0; color: var(--white); text-align: center; border-top: 6px solid var(--yellow);
}
.cta h2 { color: var(--yellow); margin-bottom: 16px; }
.section-title-center { text-align: center; }
.cta p { font-size: 20px; max-width: 560px; margin: 0 auto 32px; opacity: 0.9; }

footer { background: var(--yellow); color: var(--navy-800); padding: 28px 0; }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-left { display: flex; align-items: center; gap: 16px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; max-width: 600px; }
.foot-icon {
  width: 42px; height: 42px; border: 2px solid var(--navy-800); border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  line-height: 0;
}
.foot-icon svg {
  width: 24px !important; height: 24px !important; display: block;
  position: static !important; transform: none !important;
  flex: 0 0 auto;
}

/* Unifica visual da familia de icones em todas as secoes */
.pillar-icon svg,
.what-card-ico svg,
.fw-card-ico svg,
.ben-list .ico svg,
.foot-icon svg {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

/* Pilares com um pouco mais de presenca visual */
.pillars .pillar-icon svg {
  stroke-width: 2;
}
.foot-acip { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: 28px; line-height: 1; text-transform: uppercase; }
.foot-acip small { display: block; font-family: "Inter", sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.15em; margin-top: 2px; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .hero-grid, .benefits-grid, .fw-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 820px) { nav ul { display: none; } }
@media (max-width: 800px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .what-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .pillars-grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
