:root {
  --navy: #062b45;
  --navy-2: #0c4168;
  --blue: #1f5f96;
  --teal: #507f78;
  --ink: #08263d;
  --muted: #5d6c78;
  --line: #cbdde6;
  --paper: #f5f9fa;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(8, 38, 61, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

section {
  scroll-margin-top: 84px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 8vw;
  border-bottom: 1px solid rgba(8, 38, 61, .12);
  background: rgba(245, 249, 250, .94);
  backdrop-filter: blur(16px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 17px;
  font-weight: 800;
}

.site-nav a {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(8, 38, 61, .08);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px auto;
  background: var(--ink);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 64px;
  line-height: .98;
  font-weight: 900;
}

h2 {
  max-width: 860px;
  margin-bottom: 26px;
  font-size: 40px;
  line-height: 1.04;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

p {
  color: var(--muted);
  font-size: 20px;
}

.dark-section {
  background: var(--navy);
  color: var(--white);
}

.dark-section .eyebrow,
.dark-section p {
  color: #c9d9e3;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(460px, .78fr);
  gap: 62px;
  align-items: center;
  padding: 54px 8vw 62px;
  min-height: clamp(640px, 84vh, 760px);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, .92), rgba(245, 249, 250, .96)),
    radial-gradient(circle at 75% 55%, rgba(31, 95, 150, .13), transparent 40%);
}

.hero-copy p:not(.eyebrow) {
  max-width: 780px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.btn.primary {
  background: var(--navy-2);
  color: var(--white);
}

.btn.secondary {
  border-color: var(--navy-2);
  background: transparent;
  color: var(--navy-2);
}

.btn.light {
  background: var(--white);
  color: var(--ink);
}

.btn.outline-light {
  border-color: rgba(255, 255, 255, .42);
  background: transparent;
  color: var(--white);
}

.hero-proof {
  position: relative;
  min-height: 440px;
}

.deck-card,
.report-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.deck-card {
  left: 0;
  top: 44px;
  width: 72%;
}

.report-card {
  right: 0;
  top: 0;
  width: 38%;
}

.analysis-card {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 55%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.analysis-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.analysis-card p {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
}

.analysis-card span {
  color: var(--muted);
  font-size: 17px;
}

.experience {
  min-height: 820px;
  padding: 0;
  overflow: clip;
  background: var(--navy);
  color: var(--white);
}

.experience-sticky {
  position: sticky;
  top: 76px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(500px, .9fr);
  gap: 54px;
  align-items: center;
  min-height: 560px;
  padding: 54px 8vw;
}

.experience-copy h2 {
  max-width: 660px;
  color: var(--white);
}

.experience-copy p:not(.eyebrow) {
  max-width: 680px;
  color: #d7e2e9;
}

.experience-mark {
  position: relative;
  min-height: 340px;
}

.impact-logo {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(430px, 33vw);
  opacity: calc(.9 - var(--portal-progress, 0) * .72);
  transform: translate(-50%, -52%) scale(calc(.94 + var(--portal-progress, 0) * .14));
  transition: opacity .08s linear, transform .08s linear;
}

.experience-metrics {
  --metrics-progress: max(0, min(1, calc((var(--portal-progress, 0) - .13) * 3.6)));
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 116px;
  opacity: var(--metrics-progress);
  transform: translateY(calc(28px - var(--metrics-progress) * 28px));
  transition: opacity .08s linear, transform .08s linear;
}

.experience-metrics div {
  min-height: 134px;
  padding: 25px 28px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
}

.experience-metrics div:first-child {
  border-radius: 8px 0 0 8px;
}

.experience-metrics div:last-child {
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.experience-metrics strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 76px;
  line-height: .9;
  font-weight: 900;
}

.experience-metrics span {
  display: block;
  color: #d7e2e9;
  font-size: 18px;
  line-height: 1.24;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip div {
  min-height: 118px;
  padding: 30px 8vw;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.trust-strip span {
  color: var(--muted);
  font-size: 18px;
}

.section {
  padding: 58px 8vw;
}

.section > h2 {
  margin-bottom: 30px;
}

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

.audience-card,
.service-grid article,
.recurring-list article,
.confidentiality,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.audience-card {
  padding: 22px;
}

.audience-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border: 1px solid #9cc8df;
  border-radius: 50%;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 900;
}

.audience-card p,
.service-grid p,
.recurring p {
  font-size: 16.5px;
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .78fr);
  gap: 72px;
  padding: 66px 8vw;
}

.statement h2,
.matrix h2,
.contact h2 {
  color: var(--white);
}

.statement p {
  font-size: 19px;
}

.download-proof {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 22px;
  align-items: center;
  margin: 28px 0 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.download-proof img {
  border-radius: 5px;
}

.download-proof figcaption {
  color: #d7e2e9;
  font-size: 18px;
  font-weight: 700;
}

.download-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-grid article {
  min-height: 172px;
  padding: 18px 20px;
}

.service-grid span {
  display: block;
  margin-bottom: 14px;
  color: #3ba3bd;
  font-size: 16px;
  font-weight: 900;
}

#servicos > h2 {
  max-width: 760px;
  font-size: clamp(26px, 2.15vw, 32px);
  margin-bottom: 22px;
}

.service-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.18;
}

.service-grid p {
  font-size: 14.5px;
  line-height: 1.38;
}

.recurring {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(400px, .8fr);
  gap: 48px;
  align-items: start;
}

.recurring-list {
  display: grid;
  gap: 14px;
}

.recurring-list article {
  padding: 21px 22px;
}

.matrix {
  padding: 66px 8vw;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.matrix-grid div {
  padding: 19px 20px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #d7e2e9;
  font-size: 17px;
  font-weight: 900;
}

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

.check-grid div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 19px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.check-grid span {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 3px solid #3ba3bd;
  border-radius: 50%;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(460px, .9fr);
  gap: 52px;
  align-items: center;
  background: var(--white);
}

.about-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-panel-bg {
  width: 100%;
  height: 390px;
  object-fit: cover;
  opacity: .72;
}

.about-panel-doc {
  position: absolute;
  right: 28px;
  top: 54px;
  width: 28%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-panel-caption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  padding: 22px 24px;
  border-radius: 8px;
  background: rgba(6, 43, 69, .92);
  color: var(--white);
}

.about-panel-caption strong,
.about-panel-caption span {
  display: block;
}

.about-panel-caption strong {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 900;
}

.about-panel-caption span {
  color: #d7e2e9;
  font-size: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-row span,
.deliverable-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.deliverable-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 980px;
}

.confidentiality {
  max-width: 980px;
  margin-top: 24px;
  padding: 23px 24px;
}

.confidentiality p {
  margin-bottom: 0;
  font-size: 18px;
}

.faq details {
  max-width: 920px;
  margin-bottom: 12px;
  padding: 19px 22px;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}

.faq details p {
  margin: 14px 0 0;
  font-size: 17px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .72fr);
  gap: 70px;
  padding: 70px 8vw;
}

.contact-copy > p {
  max-width: 780px;
  font-size: 19px;
}

.meeting-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
  max-width: 720px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.meeting-box > div {
  grid-column: 1 / -1;
}

.meeting-box h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.meeting-box p {
  max-width: 620px;
  margin-bottom: 0;
  color: #d7e2e9;
  font-size: 16px;
  line-height: 1.5;
}

.meeting-box .btn {
  width: 100%;
}

.contact-form {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  color: #d7e2e9;
  font-size: 17px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 0;
  border-radius: 7px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  font-weight: 700;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #238755;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(8, 38, 61, .24);
  transition: opacity .18s ease, transform .18s ease;
}

.whatsapp-float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.site-footer {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px 8vw;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer img {
  width: 70px;
}

.site-footer p {
  margin: 0;
  font-size: 16px;
}

.site-footer a {
  font-weight: 900;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  .hero,
  .statement,
  .recurring,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    min-height: 420px;
  }

  .audience-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 74px;
    padding: 0 7vw;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 13px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 11px 7vw;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    padding: 42px 7vw 54px;
  }

  .experience-sticky {
    position: sticky;
    top: 74px;
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: calc(100vh - 74px);
    padding: 42px 7vw;
  }

  .experience-mark {
    position: relative;
    display: block;
    min-height: 310px;
  }

  .impact-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(310px, 72vw);
    margin: 0;
    opacity: calc(.9 - var(--portal-progress, 0) * .86);
    transform: translate(-50%, -52%) scale(calc(.94 + var(--portal-progress, 0) * .12));
  }

  .experience-metrics {
    --metrics-progress: max(0, min(1, calc((var(--portal-progress, 0) - .12) * 3.8)));
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    right: 0;
    grid-template-columns: 1fr;
    margin-top: 0;
    opacity: var(--metrics-progress);
    transform: translateY(calc(-50% + 24px - var(--metrics-progress) * 24px));
  }

  .experience-metrics div,
  .experience-metrics div:first-child,
  .experience-metrics div:last-child {
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
  }

  .experience-metrics div + div {
    margin-top: 10px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 0;
    padding: 24px 7vw;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .statement,
  .matrix,
  .contact {
    padding: 54px 7vw;
  }

  .matrix-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    gap: 34px;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0 26px;
  }

  .site-nav a {
    padding: 11px 26px;
  }

  .hero,
  .section,
  .statement,
  .matrix,
  .contact,
  .experience-sticky {
    padding-left: 26px;
    padding-right: 26px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.06;
  }

  h2,
  .statement h2,
  .matrix h2,
  .about-copy h2,
  .contact h2 {
    font-size: 29px;
    line-height: 1.1;
  }

  h3 {
    font-size: 21px;
  }

  p {
    font-size: 17px;
  }

  .hero-actions,
  .download-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    font-size: 16px;
  }

  .hero-proof {
    min-height: 330px;
  }

  .deck-card {
    top: 36px;
    width: 84%;
  }

  .report-card {
    width: 42%;
  }

  .analysis-card {
    left: auto;
    right: 0;
    bottom: 0;
    width: min(82%, 360px);
    padding: 20px;
  }

  .analysis-card p {
    font-size: 23px;
    line-height: 1.22;
  }

  .analysis-card span {
    font-size: 18px;
    line-height: 1.36;
  }

  .experience-metrics div {
    min-height: 118px;
    padding: 22px;
  }

  .experience-metrics strong {
    font-size: 58px;
  }

  .experience-metrics span {
    font-size: 17px;
  }

  .trust-strip strong {
    font-size: 21px;
  }

  .trust-strip span {
    font-size: 17px;
  }

  .audience-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .service-grid article,
  .recurring-list article,
  .confidentiality,
  .faq details {
    padding: 22px;
  }

  .service-grid article {
    min-height: auto;
    padding: 20px 22px;
  }

  .service-grid span {
    margin-bottom: 16px;
  }

  .service-grid h3 {
    font-size: 20px;
  }

  .audience-card span {
    margin-bottom: 22px;
  }

  .download-proof {
    grid-template-columns: 1fr;
  }

  .download-proof img {
    width: 140px;
  }

  .about-panel {
    min-height: 300px;
  }

  .about-panel-bg {
    height: 300px;
  }

  .about-panel-doc {
    right: 18px;
    top: 38px;
    width: 34%;
  }

  .about-panel-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
  }

  .tag-row,
  .deliverable-tags {
    display: grid;
  }

  .meeting-box {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
    padding: 16px;
  }

  .contact .eyebrow {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .contact h2 {
    font-size: 22px;
    line-height: 1.12;
    margin-bottom: 20px;
  }

  .meeting-box p {
    font-size: 15px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-width: 92px;
    min-height: 38px;
    padding: 9px 14px;
    font-size: 14px;
  }
}
