/* ============================================================
   Unifique — Venha inovar com a Unifique
   ============================================================ */

:root {
  --navy:        #212492;
  --navy-deep:   #0d1255;
  --navy-soft:   #1a1f7a;
  --cyan:        #3fcfd5;
  --cyan-deep:   #28b8be;
  --blue:        #00a2ff;

  --ink:         #0e1230;
  --ink-soft:    #3b4060;
  --slate:       #5b6280;
  --line:        #e5e8f3;
  --soft:        #f4f6fc;
  --softer:      #fafbfe;
  --white:       #ffffff;

  --section-y:   clamp(72px, 9vw, 132px);
  --gap:         clamp(20px, 2.4vw, 32px);
  --radius:      18px;
  --radius-sm:   10px;
  --shadow-sm:   0 1px 2px rgba(13, 18, 85, .04), 0 4px 16px rgba(13, 18, 85, .04);
  --shadow-md:   0 4px 12px rgba(13, 18, 85, .06), 0 16px 48px rgba(13, 18, 85, .08);
  --max:         1240px;
}

.u-root--d-compacto { --section-y: clamp(56px, 7vw, 96px); }
.u-root--d-amplo    { --section-y: clamp(96px, 11vw, 168px); }

.u-root--p-cyan {
  --navy:      #007680;
  --navy-deep: #003d44;
  --navy-soft: #005a63;
  --cyan:      #3fcfd5;
}

.u-root--p-dark {
  --navy:      #0a0e30;
  --navy-deep: #050720;
  --navy-soft: #0d1238;
  background: #050720;
  color: #e8ecff;
}
.u-root--p-dark .u-section { background: #050720; color: #e8ecff; }
.u-root--p-dark .u-section--soft { background: #0a0e30; }
.u-root--p-dark .u-shead__title,
.u-root--p-dark .u-pilar__title,
.u-root--p-dark .u-vertical__name { color: #e8ecff; }
.u-root--p-dark .u-shead__sub,
.u-root--p-dark .u-pilar__body { color: #a5acd5; }
.u-root--p-dark .u-pilar,
.u-root--p-dark .u-programa,
.u-root--p-dark .u-vertical,
.u-root--p-dark .u-numero,
.u-root--p-dark .u-step__body,
.u-root--p-dark .u-quote {
  background: #0d1238;
  border-color: #1f2560;
  color: #e8ecff;
}
.u-root--p-dark .u-header { background: #050720; border-color: #1f2560; }
.u-root--p-dark .u-header__nav a { color: #d6dcff; }

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }
em { font-style: normal; color: var(--cyan-deep); }

.u-container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.u-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: -.01em;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.u-btn:hover { transform: translateY(-1px); }
.u-btn--lg { padding: 15px 30px; font-size: 1rem; }
.u-btn--block { width: 100%; justify-content: center; }
.u-btn--cyan {
  background: var(--cyan);
  color: var(--navy-deep);
}
.u-btn--cyan:hover { background: #4fdfe5; }
.u-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.28);
}
.u-btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

/* ============================================================
   HEADER
   ============================================================ */
.u-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.u-header.is-scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
}
.u-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.u-header__nav {
  display: flex;
  gap: 6px;
}
.u-header__nav a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .15s, color .15s;
}
.u-header__nav a:hover { background: var(--soft); color: var(--navy); }
.u-header__cta { font-size: .88rem; padding: 10px 20px; }

@media (max-width: 880px) {
  .u-header__nav { display: none; }
}

/* ============================================================
   SECTION HEAD / EYEBROW
   ============================================================ */
.u-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
}
.u-eyebrow__bar {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cyan);
}
.u-eyebrow--light { color: var(--cyan); }

.u-shead {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.u-shead--light { color: var(--white); }
.u-shead--light .u-shead__title { color: var(--white); }
.u-shead--light .u-shead__sub { color: rgba(255,255,255,.7); }

.u-shead__title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--ink);
  text-wrap: balance;
}
.u-shead__sub {
  margin-top: 18px;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: var(--slate);
  max-width: 620px;
  text-wrap: pretty;
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.u-section {
  padding-block: var(--section-y);
  position: relative;
}
.u-section--soft { background: var(--soft); }
.u-section--navy {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.u-section--navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(63,207,213,.18), transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.u-section--navy > .u-container { position: relative; }

/* ============================================================
   HERO
   ============================================================ */
.u-hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(96px, 14vw, 180px) clamp(80px, 10vw, 140px);
}
.u-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.u-hero__backdrop--mesh {
  background: var(--navy-deep);
}
.u-mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.u-mesh--1 { width: 600px; height: 600px; top: -10%; left: -10%; background: var(--navy); }
.u-mesh--2 { width: 500px; height: 500px; top: 30%; right: -10%; background: var(--cyan); opacity: .35; }
.u-mesh--3 { width: 700px; height: 700px; bottom: -30%; left: 30%; background: var(--blue); opacity: .25; }

.u-hero__backdrop--minimal { background: var(--navy-deep); }
.u-hero__beam {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(63,207,213,.3), transparent 60%),
    linear-gradient(180deg, #0a0e30 0%, var(--navy-deep) 60%, var(--navy) 100%);
}

.u-hero__inner { position: relative; }

.u-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  background: rgba(255,255,255,.04);
}
.u-hero__pulse {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(63,207,213,.7);
  animation: u-pulse 2s infinite;
}
@keyframes u-pulse {
  0% { box-shadow: 0 0 0 0 rgba(63,207,213,.6); }
  70% { box-shadow: 0 0 0 12px rgba(63,207,213,0); }
  100% { box-shadow: 0 0 0 0 rgba(63,207,213,0); }
}

.u-hero__headline {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.035em;
  margin-bottom: 28px;
  text-wrap: balance;
}
.u-hero__headline em {
  font-style: italic;
  font-weight: 700;
  color: var(--cyan);
  position: relative;
}
.u-hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,.78);
  max-width: 600px;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.u-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.u-hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.14);
  max-width: 880px;
}
.u-hero__stat-value {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 4px;
}
.u-hero__stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .02em;
}
@media (max-width: 720px) {
  .u-hero__strip { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* ============================================================
   PILARES
   ============================================================ */
.u-pilares {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
}
.u-pilar {
  position: relative;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.u-pilar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.u-pilar__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(63,207,213,.18), rgba(33,36,146,.12));
  color: var(--navy);
  margin-bottom: 24px;
}
.u-pilar__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--cyan-deep);
  letter-spacing: .04em;
}
.u-pilar__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 12px;
  color: var(--ink);
  text-wrap: balance;
}
.u-pilar__body {
  font-size: .94rem;
  color: var(--slate);
  line-height: 1.55;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   PROGRAMAS
   ============================================================ */
.u-programas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}
.u-programa {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.u-programa:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}
.u-programa__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.u-programa__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--navy);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  border-radius: 999px;
}
.u-programa__num {
  font-size: .82rem;
  font-weight: 700;
  color: var(--cyan-deep);
}
.u-programa__title {
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  color: var(--ink);
  text-wrap: balance;
}
.u-programa__body {
  font-size: .94rem;
  color: var(--slate);
  margin-bottom: 20px;
}
.u-programa__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.u-programa__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.u-programa__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  transition: gap .2s, color .2s;
}
.u-programa__link:hover { gap: 12px; color: var(--cyan-deep); }

/* ============================================================
   VERTICAIS
   ============================================================ */
.u-verticais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.u-vertical {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
}
.u-vertical:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-sm);
}
.u-vertical__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(63,207,213,.12);
  color: var(--navy);
  margin-bottom: 16px;
}
.u-vertical__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.u-vertical__name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 4px;
  color: var(--ink);
}
.u-vertical__desc {
  font-size: .82rem;
  color: var(--slate);
}
.u-verticais__foot {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.u-verticais__foot p {
  color: var(--slate);
  font-size: .98rem;
}

.u-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .94rem;
  font-weight: 700;
  color: var(--navy);
  transition: gap .2s, color .2s;
}
.u-link-arrow:hover { gap: 12px; color: var(--cyan-deep); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.u-portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.u-portfolio__cell {
  background: var(--white);
  padding: 32px 16px;
  display: grid;
  place-items: center;
  transition: background .2s;
}
.u-portfolio__cell:hover { background: var(--softer); }
.u-startup-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.u-startup-mark__name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
.u-portfolio__foot {
  margin-top: 32px;
  text-align: center;
}

/* ============================================================
   PROCESSO
   ============================================================ */
.u-processo {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 980px) {
  .u-processo { grid-template-columns: 1fr; gap: 16px; }
}
.u-step {
  position: relative;
  padding: 0 12px;
}
.u-step__num {
  font-family: "Montserrat";
  font-weight: 900;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -.04em;
  color: var(--cyan);
  margin-bottom: 16px;
  line-height: 1;
}
.u-step__line {
  height: 2px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan) 50%, var(--line) 50%);
  margin-bottom: 20px;
  position: relative;
}
.u-step:last-child .u-step__line {
  background: var(--cyan);
}
.u-step__line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  transform: translateY(-50%);
}
.u-step__body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 8px;
  color: var(--ink);
  text-wrap: balance;
}
.u-step__body p {
  font-size: .88rem;
  color: var(--slate);
  text-wrap: pretty;
}
@media (max-width: 980px) {
  .u-step__line { background: var(--cyan); }
}

/* ============================================================
   QUOTE
   ============================================================ */
.u-quote {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 40px 32px;
}
.u-quote__mark {
  font-family: "Montserrat";
  font-size: 8rem;
  font-weight: 900;
  line-height: .6;
  color: var(--cyan);
  opacity: .4;
  margin-bottom: 8px;
}
.u-quote blockquote {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 32px;
  text-wrap: balance;
}
.u-quote blockquote em {
  font-style: italic;
  font-weight: 700;
}
.u-quote figcaption {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.u-quote__name {
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink);
}
.u-quote__role {
  font-size: .82rem;
  color: var(--slate);
  margin-top: 2px;
}

/* ============================================================
   CTA / FORM
   ============================================================ */
.u-section--cta {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.u-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.u-cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 920px) {
  .u-cta { grid-template-columns: 1fr; }
}
.u-cta__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.u-cta__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--cyan);
}
.u-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 460px;
  margin-bottom: 32px;
}
.u-cta__perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.u-cta__perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .98rem;
  color: rgba(255,255,255,.92);
  font-weight: 500;
}

.u-form {
  background: var(--white);
  color: var(--ink);
  padding: clamp(32px, 4vw, 48px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.u-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) {
  .u-form__row { grid-template-columns: 1fr; }
}
.u-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.u-form input[type="text"],
.u-form input[type="email"],
.u-form select,
.u-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .94rem;
  color: var(--ink);
  background: var(--softer);
  transition: border-color .2s, background .2s;
  font-weight: 400;
}
.u-form input:focus,
.u-form select:focus,
.u-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
}
.u-form textarea { resize: vertical; min-height: 100px; }

.u-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.u-chip {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
  user-select: none;
}
.u-chip input { display: none; }
.u-chip span {
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--softer);
  transition: all .2s;
}
.u-chip:hover span { border-color: var(--cyan); }
.u-chip input:checked + span {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.u-form__legal {
  font-size: .76rem;
  color: var(--slate);
  margin-top: 4px;
  line-height: 1.4;
}
.u-form__sent {
  text-align: center;
  padding: 32px 16px;
}
.u-form__check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.u-form__sent h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.u-form__sent p {
  color: var(--slate);
  max-width: 360px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.u-footer {
  background: #050720;
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}
.u-footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: 48px;
}
@media (max-width: 720px) {
  .u-footer__inner { grid-template-columns: 1fr; }
}
.u-footer__brand p {
  margin-top: 18px;
  font-size: .92rem;
  max-width: 260px;
  color: rgba(255,255,255,.55);
}
.u-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 540px) {
  .u-footer__cols { grid-template-columns: 1fr 1fr; }
}
.u-footer__cols h5 {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.u-footer__cols a {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  padding-block: 5px;
  transition: color .15s;
}
.u-footer__cols a:hover { color: var(--white); }
.u-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 22px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.u-footer__bottom > .u-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   LOGO IMG
   ============================================================ */
.u-logo-img { height: 24px; width: auto; display: block; }
/* Wrap logo on a navy chip on light headers */
.u-logo-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--navy);
  border-radius: 8px;
}
.u-logo-img--white { filter: none; }

/* ============================================================
   HERO LAYOUT WITH PHOTO
   ============================================================ */
.u-hero__layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(56px, 7vw, 96px);
}
@media (max-width: 880px) {
  .u-hero__layout { grid-template-columns: 1fr; }
  .u-hero__visual { max-width: 420px; margin-inline: auto; }
}
.u-hero__visual {
  position: relative;
}
.u-hero__photo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
  animation: u-float 6s ease-in-out infinite;
}
@keyframes u-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ============================================================
   PILAR ICON (PNG)
   ============================================================ */
.u-pilar__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.u-pilar__icon {
  background: linear-gradient(135deg, rgba(63,207,213,.12), rgba(33,36,146,.06));
  padding: 14px;
  width: 80px;
  height: 80px;
  border-radius: 18px;
}

/* ============================================================
   PRÊMIOS (substitui u-numeros)
   ============================================================ */
.u-premios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
}
.u-premio {
  padding: 28px 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .25s, border-color .25s, transform .25s;
}
.u-premio:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(63,207,213,.4);
  transform: translateY(-4px);
}
.u-premio__art {
  height: 100px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.96);
  border-radius: 12px;
  padding: 14px;
}
.u-premio__art img {
  max-height: 72px;
  max-width: 90%;
  object-fit: contain;
}
.u-premio__titulo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.u-premio__detalhe {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

/* ============================================================
   PORTFOLIO CELL — IMG
   ============================================================ */
.u-portfolio__cell img {
  max-width: 80%;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(.2);
  transition: filter .25s, transform .25s;
}
.u-portfolio__cell:hover img {
  filter: grayscale(0);
  transform: scale(1.06);
}
@media (max-width: 540px) {
  .u-hero__actions { flex-direction: column; align-items: stretch; }
  .u-hero__actions .u-btn { justify-content: center; }
}
