:root {
  --navy: #071b2d;
  --navy-2: #0d2940;
  --navy-3: #12344e;
  --gold: #bd8a35;
  --gold-2: #d0a153;
  --cream: #f8f5ef;
  --paper: #ffffff;
  --ink: #0b1d30;
  --muted: #657281;
  --line: #e6e8eb;
  --shadow: 0 18px 50px rgba(7, 27, 45, .10);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(7,27,45,.08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 168px;
  height: 54px;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 700;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--gold);
  transition: .25s ease;
}

.main-nav a:hover::after { right: 0; }

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 25px rgba(189,138,53,.24);
}

.btn-gold:hover { background: #aa782c; }

.btn-outline {
  border-color: rgba(7,27,45,.34);
  background: rgba(255,255,255,.75);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 76% 30%, rgba(189,138,53,.11), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 900;
  color: var(--gold);
}

.gold { color: var(--gold-2); }

.hero h1,
.section-heading h2,
.methodology h2,
.about h2,
.leadership-title h2,
.cta-box h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  max-width: 760px;
}

.hero h1 span { color: var(--gold); }

.hero-copy > p {
  max-width: 680px;
  margin: 24px 0 28px;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-badges {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-badges span {
  font-size: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f0f2f4;
  color: #51606e;
}

.hero-visual {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}

.apex-mark {
  position: relative;
  width: 320px;
  height: 320px;
  filter: drop-shadow(0 28px 35px rgba(7,27,45,.13));
}

.apex-mark::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 135px;
  width: 22px;
  height: 28px;
  background: #bd8a35;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.gold-left {
  position: absolute;
  width: 17px;
  height: 290px;
  background: #bd8a35;
  left: 20px;
  top: 8px;
  transform: rotate(24deg);
  transform-origin: bottom center;
}

.gold-right {
  position: absolute;
  width: 17px;
  height: 230px;
  background: #bd8a35;
  left: 230px;
  top: 15px;
  transform: rotate(-24deg);
  transform-origin: bottom center;
}

.gold-leg-left,
.gold-leg-right {
  position: absolute;
  bottom: 20px;
  width: 14px;
  height: 57px;
  background: #bd8a35;
}

.gold-leg-left {
  left: 120px;
}

.gold-leg-right {
  left: 131px;
}

.blue-horizontal {
  position: absolute;
  left: 120px;
  top: 237px;
  width: 160px;
  height: 16px;
  background: #101b28;
}

.blue-vertical {
  position: absolute;
  left: 266px;
  top: 144px;
  width: 28px;
  height: 150px;
  background: #101b28;
}

.visual-card {
  position: absolute;
  right: 0;
  bottom: 8px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(7,27,45,.08);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  border-radius: 16px;
  max-width: 290px;
}

.visual-card small {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .12em;
}

.visual-card strong { display: block; margin-top: 6px; font-size: 17px; }
.visual-card p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }

.hero-lines {
  position: absolute;
  border: 1px solid rgba(189,138,53,.16);
  transform: rotate(32deg);
}

.hero-lines-1 { width: 380px; height: 380px; right: 10%; top: -130px; }
.hero-lines-2 { width: 240px; height: 240px; right: -60px; top: 140px; }

.section { padding: 96px 0; }
.section-sm { padding: 32px 0 58px; }

.pillars {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pillar {
  padding: 16px 14px;
}

.pillar .icon {
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 8px;
}

.pillar h3 { margin: 0 0 6px; }
.pillar p { margin: 0; color: var(--muted); font-size: 14px; }

.section-dark {
  background:
    linear-gradient(150deg, rgba(255,255,255,.02) 0 20%, transparent 20% 100%),
    var(--navy);
  color: #fff;
}

.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-heading h2,
.methodology h2,
.about h2,
.leadership-title h2,
.cta-box h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
}

.section-dark .section-heading p,
.about-copy p { color: #cbd4dc; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-card {
  position: relative;
  min-height: 300px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(208,161,83,.22);
  background: rgba(255,255,255,.04);
  transition: .25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(208,161,83,.62);
  background: rgba(255,255,255,.07);
}

.product-card.featured {
  background: linear-gradient(135deg, rgba(189,138,53,.24), rgba(255,255,255,.05));
}

.product-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(208,161,83,.12);
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 28px;
}

.product-card h3 { color: var(--gold-2); margin: 0; font-size: 23px; }
.product-card h4 { margin: 4px 0 12px; font-size: 14px; color: #fff; }
.product-card p { color: #c6d0d8; font-size: 14px; }
.product-card a { color: var(--gold-2); font-weight: 800; font-size: 14px; position: absolute; bottom: 22px; }

.solutions-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.solutions-section .container { position: relative; z-index: 1; }
.solutions-section .section-heading { position: relative; }

.solutions-section .section-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform-origin: left;
}

.accordion {
  display: grid;
  gap: 14px;
  counter-reset: solution;
}

.accordion details {
  counter-increment: solution;
  border: 1px solid rgba(7,27,45,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 24px rgba(7,27,45,.035);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.accordion details:hover {
  border-color: rgba(189,138,53,.42);
  transform: translateX(4px);
}

.accordion details[open] {
  border-color: rgba(189,138,53,.48);
  box-shadow: 0 18px 44px rgba(7,27,45,.09);
}

.accordion summary {
  position: relative;
  cursor: pointer;
  padding: 22px 72px 22px 78px;
  font-weight: 900;
  font-size: 18px;
  list-style: none;
  transition: color .25s ease, background .25s ease;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary::before {
  content: "0" counter(solution);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(189,138,53,.1);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .04em;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7,27,45,.12);
  border-radius: 50%;
  color: var(--gold);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%) rotate(0);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .25s ease, color .25s ease;
}

.accordion details[open] summary {
  color: var(--gold);
  background: linear-gradient(90deg, rgba(189,138,53,.075), transparent 55%);
  border-bottom: 1px solid rgba(189,138,53,.16);
}

.accordion details[open] summary::before {
  color: #fff;
  background: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.accordion details[open] summary::after {
  color: #fff;
  background: var(--navy);
  transform: translateY(-50%) rotate(45deg);
}

.detail-grid {
  padding: 20px 22px 24px 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.detail-grid span {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(7,27,45,.055);
  background: #f6f7f8;
  font-size: 14px;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.detail-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(189,138,53,.3);
  background: #fffaf2;
}

.accordion details[open] .detail-grid span { animation: solution-chip-in .42s both; }
.accordion details[open] .detail-grid span:nth-child(2) { animation-delay: 35ms; }
.accordion details[open] .detail-grid span:nth-child(3) { animation-delay: 70ms; }
.accordion details[open] .detail-grid span:nth-child(4) { animation-delay: 105ms; }
.accordion details[open] .detail-grid span:nth-child(5) { animation-delay: 140ms; }
.accordion details[open] .detail-grid span:nth-child(6) { animation-delay: 175ms; }
.accordion details[open] .detail-grid span:nth-child(7) { animation-delay: 210ms; }
.accordion details[open] .detail-grid span:nth-child(8) { animation-delay: 245ms; }

@keyframes solution-chip-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


.methodology { background: var(--cream); }

.method-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 48px;
  align-items: stretch;
}

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

.steps article {
  border-top: 1px dashed rgba(189,138,53,.5);
  padding-top: 18px;
}

.steps span {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
}

.steps h3 { margin: 6px 0; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.quote-card {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.quote-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -90px;
  border: 1px solid rgba(208,161,83,.32);
  border-radius: 50%;
}

.quote-card > span { font-size: 64px; color: var(--gold); line-height: 1; }
.quote-card h3 { font-size: 28px; line-height: 1.25; }
.quote-card p { color: #c8d2da; }

.row-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.text-link {
  font-weight: 800;
  white-space: nowrap;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) .9fr;
  gap: 18px;
}

.article-card,
.guide-card {
  border-radius: 16px;
  overflow: hidden;
}

.article-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(7,27,45,.05);
}

.article-cover {
  height: 170px;
  display: flex;
  align-items: end;
  padding: 16px;
  color: #fff;
  background-size: cover;
}

.article-cover span {
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 900;
}

.cover-1 { background: linear-gradient(135deg, #1b3348, #b98a3a); }
.cover-2 { background: linear-gradient(135deg, #e7ebef, #60778a); }
.cover-3 { background: linear-gradient(135deg, #7590a3, #0b2a43); }

.article-body { padding: 20px; }
.article-body small { color: var(--gold); font-weight: 900; }
.article-body h3 { font-size: 18px; line-height: 1.3; }
.article-body p { color: var(--muted); font-size: 14px; }
.article-body a { font-weight: 800; font-size: 14px; }

.guide-card {
  background: var(--navy);
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-card h3 { font-size: 24px; }

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.about-copy p {
  font-size: 17px;
  margin-top: 0;
  margin-bottom: 18px;
}

.leadership-title {
  margin-top: 88px;
  max-width: 760px;
}


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

.leader-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid rgba(208,161,83,.18);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 46px rgba(0,0,0,.24);
  border-color: rgba(208,161,83,.45);
}

.leader-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .75;
}

.leader-photo {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #0c2337;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.01);
}

.leader-gustavo .leader-photo img { object-position: center 25%; }
.leader-victor .leader-photo img { object-position: center 18%; }
.leader-pedro .leader-photo img { object-position: center 24%; }

.leader-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,27,45,.06) 0%, rgba(7,27,45,.26) 58%, rgba(7,27,45,.84) 100%);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 18px;
  z-index: 2;
}

.leader-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  background: rgba(7,27,45,.50);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
}

.leader-info {
  padding: 24px 24px 26px;
}

.leader-info h3 {
  margin: 0;
  color: var(--gold-2);
  font-size: 28px;
}

.leader-info .role {
  margin: 6px 0 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.leader-info p,
.leader-info li {
  color: #d1d8de;
  font-size: 15px;
}

.leader-info ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.leader-info li { margin-bottom: 4px; }


.cta-section {
  margin-top: -1px;
  padding: 0 0 30px;
  background: var(--navy);
}

.cta-box {
  background: linear-gradient(110deg, var(--gold), #d5a75a);
  border-radius: 18px;
  padding: 30px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cta-box .eyebrow { color: #fff; opacity: .8; margin-bottom: 6px; }
.cta-box h2 { font-size: 30px; color: #fff; }
.cta-box p { color: #fff; margin: 7px 0 0; }

.site-footer {
  background: #061625;
  color: #c4cdd5;
  padding: 58px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr;
  gap: 52px;
}

.footer-logo {
  width: 180px;
  padding: 6px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 18px;
}

.site-footer h4 { color: #fff; margin: 0 0 12px; }
.site-footer a { display: block; margin: 6px 0; font-size: 14px; }
.site-footer p { font-size: 14px; }

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
  z-index: 999;
  font-size: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-card { min-height: 260px; }
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    margin: 0;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open { display: flex; }

  .hero { padding: 70px 0; }
  .hero-grid,
  .method-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 340px; }
  .apex-mark { transform: scale(.8); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .leaders-grid { grid-template-columns: 1fr; }
  .leader-photo { height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 26px, var(--container)); }
  .section { padding: 72px 0; }
  .hero h1 { font-size: 42px; }
  .hero-copy > p { font-size: 16px; }
  .hero-visual { display: none; }
  .pillars-grid,
  .product-grid,
  .insights-grid,
  .detail-grid,
  .steps,
  .footer-grid { grid-template-columns: 1fr; }
  .row-heading,
  .cta-box,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-card { min-height: 270px; }
  .about-grid { gap: 28px; }
  .leadership-title { margin-top: 60px; }
  .accordion summary { padding: 19px 58px 19px 64px; font-size: 16px; }
  .accordion summary::before { left: 16px; width: 32px; height: 32px; }
  .accordion summary::after { right: 16px; width: 30px; height: 30px; }
  .detail-grid { padding: 16px 16px 20px 64px; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .accordion details[open] .detail-grid span { animation: none; }
  .accordion details,
  .accordion summary::before,
  .accordion summary::after,
  .detail-grid span { transition: none; }
}

/* refined leadership portraits - studio version */
.leader-photo {
  height: 350px;
  background: #030508;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.leader-gustavo .leader-photo img { object-position: center 18%; }
.leader-victor .leader-photo img { object-position: center 18%; }
.leader-pedro .leader-photo img { object-position: center 18%; }

.leader-photo::after {
  background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(7,27,45,.10) 40%, rgba(7,27,45,.72) 100%);
}

.leader-info p strong,
.leader-info li strong {
  font-weight: inherit;
  color: inherit;
}
