﻿:root {
  --navy: #061f38;
  --navy-deep: #031729;
  --teal: #1198a8;
  --teal-bright: #13bfd0;
  --ink: #0d1b2a;
  --muted: #536474;
  --line: #dfe8ee;
  --paper: #ffffff;
  --shadow: 0 18px 40px rgba(9, 31, 48, 0.12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(12, 48, 77, 0.08);
  backdrop-filter: blur(14px);
}
.nav, .wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  width: 210px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  overflow: hidden;
  border: 1px solid rgba(12, 48, 77, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(9, 31, 48, 0.08);
}
.brand img, .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand img {
  object-position: center;
}
.footer-logo img { object-position: center; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-link {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.nav-link:hover { color: var(--teal); }
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(17, 152, 168, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(17, 152, 168, 0.28); }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-primary, .btn-phone { background: linear-gradient(135deg, var(--teal), var(--teal-bright)); }
.btn-whatsapp { background: linear-gradient(135deg, #19c879, #0fa968); box-shadow: 0 12px 24px rgba(19, 138, 82, 0.22); }

.hero {
  min-height: 515px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 24, 42, 0.99) 0%, rgba(4, 24, 42, 0.95) 30%, rgba(4, 24, 42, 0.58) 55%, rgba(4, 24, 42, 0.08) 100%),
    url("assets/hero-team.jpg") center right / cover no-repeat;
}
.hero-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 515px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 58px 0;
}
.hero-copy { width: min(630px, 100%); }
.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6.3vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}
.hero h1 span, .difference h2 { color: var(--teal-bright); }
.hero p {
  width: min(560px, 100%);
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.91);
  font-weight: 650;
}
.hero .btn { min-height: 52px; margin-top: 24px; padding: 0 24px; }

.section { padding: 58px 0; }
.section.tight { padding-top: 52px; }
.section-soft {
  background:
    radial-gradient(circle at 82% 48%, rgba(17, 152, 168, 0.13), transparent 29%),
    linear-gradient(180deg, #f3fbfd, #fff);
}
.split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 58px;
}
.split-reverse { grid-template-columns: 0.92fr 1fr; }
h2 { margin: 0 0 18px; font-size: clamp(32px, 4vw, 46px); line-height: 1.05; letter-spacing: 0; }
h3 { margin: 0 0 10px; font-size: 17px; line-height: 1.25; }
p { margin: 0; }
.text-stack p { margin-bottom: 17px; color: #233747; font-weight: 600; }
.lead { color: var(--muted); font-weight: 650; }
.center { max-width: 780px; margin: 0 auto; text-align: center; }
.photo {
  min-height: 292px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce9ee;
  box-shadow: var(--shadow);
}
.photo img { width: 100%; height: 100%; min-height: 292px; object-fit: cover; }
.photo-dashboard, .photo-dashboard img { min-height: 355px; }

.cards, .mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cards { margin-top: 44px; }
.card, .mini {
  border: 1px solid rgba(11, 45, 70, 0.09);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.card { min-height: 206px; padding: 26px 24px; }
.icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #0f6f97);
  box-shadow: 0 12px 24px rgba(17, 152, 168, 0.25);
}
.icon svg { width: 27px; height: 27px; }
.card p, .mini p, .benefit p, .step p { color: #334b5d; font-size: 14px; font-weight: 600; }
.checklist {
  display: grid;
  gap: 11px;
  margin: 23px 0 26px;
  padding: 0;
  list-style: none;
  color: #283d4d;
  font-weight: 700;
}
.checklist li { position: relative; padding-left: 31px; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 7px;
  width: 15px;
  height: 8px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}
.mini-grid { margin-top: 40px; }
.mini { min-height: 184px; padding: 26px 22px; text-align: center; }
.mini-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 15px;
  color: var(--teal);
}
.mini-icon svg { width: 38px; height: 38px; }
.section-note { margin-top: 28px; color: #087f91; font-size: 18px; font-weight: 900; text-align: center; }
.difference {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 20, 36, 0.99), rgba(3, 20, 36, 0.92) 43%, rgba(3, 20, 36, 0.25)),
    url("assets/growth-chart-realistic.png") center right / cover no-repeat;
}
.difference .wrap { min-height: 355px; display: grid; align-items: center; padding: 58px 0; }
.difference-copy { width: min(560px, 100%); }
.difference-copy p { color: rgba(255, 255, 255, 0.9); font-weight: 650; }
.differ-list { display: grid; gap: 22px; margin-top: 30px; }
.differ-item { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 16px; font-weight: 850; }
.differ-item svg { width: 34px; height: 34px; color: var(--teal-bright); }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 38px; }
.benefit { min-height: 150px; padding: 8px 25px; text-align: center; border-right: 1px solid var(--line); }
.benefit:last-child { border-right: 0; }
.process { padding-bottom: 72px; }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 40px; }
.steps::before { content: ""; position: absolute; top: 24px; left: 18%; right: 18%; border-top: 2px dotted #9edbe2; }
.step { position: relative; z-index: 1; padding: 0 18px; text-align: center; }
.number {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0d8c9e, #15b6c6);
  box-shadow: 0 12px 24px rgba(17, 152, 168, 0.22);
  font-weight: 900;
}

.cta {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(19, 191, 208, 0.18), transparent 32%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 52%, #092c4b);
}
.cta-inner {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  align-items: end;
  gap: 62px;
  padding: 62px 0 72px;
}
.cta-copy { align-self: center; width: min(650px, 100%); }
.cta-copy h2 { font-size: clamp(34px, 4.2vw, 50px); }
.cta-copy p { width: min(570px, 100%); margin-bottom: 16px; color: rgba(255, 255, 255, 0.9); font-weight: 650; }
.cta-copy .btn { margin-top: 10px; }
.cta-portrait { align-self: stretch; min-height: 420px; margin: 0; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.cta-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.call-strip {
  position: relative;
  z-index: 2;
  width: min(800px, calc(100% - 40px));
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin: -44px auto 0;
  overflow: hidden;
  border: 1px solid rgba(11, 45, 70, 0.14);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}
.call-strip-item, .phone-number { min-height: 92px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; color: #203345; font-size: 20px; font-weight: 900; }
.call-strip-item { border-right: 1px solid var(--line); color: #334b5d; font-size: 18px; font-weight: 800; }
.call-strip svg { width: 23px; height: 23px; color: var(--teal); }
.phone-number img { width: min(620px, 92%); height: auto; user-select: none; pointer-events: none; }
.footer { padding: 78px 0 38px; color: #fff; background: radial-gradient(circle at 70% 18%, rgba(18, 182, 200, 0.22), transparent 34%), #03182a; }
.footer-inner { width: min(1180px, calc(100% - 40px)); display: grid; justify-items: center; gap: 18px; margin: 0 auto; text-align: center; }
.footer-logo { width: min(320px, 88vw); height: 84px; display: block; padding: 10px 18px; border-radius: 8px; background: #fff; box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18); }
.footer-meta { display: grid; gap: 6px; max-width: 760px; color: rgba(255, 255, 255, 0.8); font-weight: 650; }
.float-whatsapp { position: fixed; right: 24px; bottom: 22px; z-index: 35; min-height: 54px; padding: 0 24px; border-radius: 999px; }

.ia-page {
  background:
    linear-gradient(180deg, #fff 0, #f7fbfd 44%, #fff 100%);
}
.ia-page h2 {
  color: #073c63;
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
}
.ia-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 560px;
  color: #fff;
  background: var(--navy-deep);
}
.ia-hero-copy {
  display: grid;
  align-content: center;
  padding: 78px 58px 78px max(36px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 84% 32%, rgba(19, 191, 208, 0.16), transparent 34%),
    linear-gradient(135deg, #03182a, #062844);
}
.ia-hero h1 {
  max-width: 650px;
  margin: 0 0 24px;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 900;
}
.ia-hero h1 span { color: var(--teal-bright); }
.ia-hero p {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  font-weight: 650;
}
.ia-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.ia-time {
  display: inline-grid;
  grid-template-columns: 30px minmax(0, 250px);
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}
.ia-time svg { width: 30px; height: 30px; color: #fff; }
.ia-hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.ia-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 24, 42, 0.18), rgba(3, 24, 42, 0.02));
}
.ia-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.ia-screen {
  position: absolute;
  z-index: 1;
  top: 46px;
  right: clamp(26px, 5vw, 70px);
  width: min(360px, calc(100% - 52px));
  padding: 22px;
  border: 6px solid #162333;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  text-align: center;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.2);
}
.ia-screen strong { display: block; font-size: 22px; color: #073c63; }
.ia-screen span { display: block; margin-top: 4px; color: var(--muted); font-size: 15px; font-weight: 700; }
.ia-screen-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
  color: #087f91;
  font-size: 11px;
  font-weight: 900;
}
.section-title-line,
.section-title-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title-line {
  justify-content: center;
  margin-bottom: 28px;
  text-align: center;
}
.section-title-line h2,
.section-title-inline h2 { margin: 0; }
.reason-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.reason-grid article {
  min-height: 190px;
  padding: 10px 24px 0;
  text-align: center;
  border-right: 1px solid var(--line);
}
.reason-grid article:last-child { border-right: 0; }
.line-icon {
  display: block;
  min-height: 52px;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 52px;
  line-height: 1;
  font-weight: 400;
}
.reason-grid h3,
.format-grid h3 {
  color: #061f38;
  font-size: 15px;
  text-transform: uppercase;
}
.reason-grid p,
.format-grid p,
.ia-quote p,
.audience-box p,
.about-impactus p,
.next-step p {
  color: #263b4d;
  font-weight: 600;
}
.ia-two-col,
.ia-format-layout,
.final-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 62px;
  align-items: start;
}
.ia-checks {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 650;
}
.ia-checks li {
  position: relative;
  padding-left: 30px;
}
.ia-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 900;
}
.ia-checks.compact { gap: 13px; }
.ia-quote {
  padding: 34px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 10%, rgba(19, 191, 208, 0.22), transparent 28%),
    linear-gradient(135deg, #eef9fc, #fff);
  box-shadow: var(--shadow);
}
.quote-mark {
  display: block;
  color: var(--teal);
  font-size: 76px;
  line-height: 0.72;
  font-weight: 900;
}
.ia-quote h3 {
  color: #073c63;
  font-size: 25px;
  text-transform: uppercase;
}
.ia-quote p { margin-top: 20px; font-size: 17px; }
.ia-content-map { padding-top: 0; }
.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.format-grid article {
  min-height: 210px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(9, 31, 48, 0.08);
}
.format-icon {
  display: block;
  min-height: 40px;
  color: var(--teal);
  font-size: 34px;
  line-height: 1;
}
.small-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.association-gain {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}
.audience-box {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 34px;
  align-items: center;
  padding: 28px 34px;
  border: 1px solid rgba(17, 152, 168, 0.15);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eef9fc, #fff);
}
.audience-box ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.audience-box li {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  border-left: 1px solid var(--line);
  color: #263b4d;
  text-align: center;
  font-size: 14px;
  font-weight: 750;
}
.ia-final { padding-top: 0; }
.about-impactus {
  min-height: 300px;
  padding: 34px;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(19, 191, 208, 0.2), transparent 34%),
    linear-gradient(135deg, #03182a, #062844);
}
.about-impactus h2,
.about-impactus p { color: #fff; }
.impactus-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 28px;
}
.impactus-pillars span {
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}
.impactus-pillars span:last-child { border-right: 0; }
.next-step {
  min-height: 300px;
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.next-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-weight: 900;
}
.next-actions a:not(.btn) { color: #073c63; }
.compact-footer { padding: 24px 0; }
.compact-footer .footer-logo { width: 210px; height: 56px; }
.compact-footer .footer-inner {
  grid-template-columns: auto 1fr;
  justify-items: stretch;
  text-align: right;
}
.compact-footer .footer-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 42px;
}

@media (max-width: 980px) {
  .hero { background: linear-gradient(180deg, rgba(4, 24, 42, 0.98) 0%, rgba(4, 24, 42, 0.9) 51%, rgba(4, 24, 42, 0.22) 100%), url("assets/hero-team.jpg") center bottom / cover no-repeat; }
  .hero-inner { align-items: start; padding-top: 76px; }
  .split, .split-reverse, .cta-inner { grid-template-columns: 1fr; gap: 34px; }
  .split-reverse .text-stack { order: -1; }
  .cards, .mini-grid, .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(1), .benefit:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .benefit:nth-child(3), .benefit:nth-child(4) { padding-top: 24px; }
  .cta-inner { align-items: center; padding-bottom: 88px; }
  .cta-portrait { min-height: 360px; border-radius: var(--radius); }
  .ia-hero,
  .ia-two-col,
  .ia-format-layout,
  .final-grid,
  .audience-box { grid-template-columns: 1fr; }
  .reason-grid { grid-template-columns: repeat(3, 1fr); }
  .reason-grid article:nth-child(3) { border-right: 0; }
  .reason-grid article:nth-child(n+4) { padding-top: 24px; border-top: 1px solid var(--line); }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .association-gain { padding-left: 0; border-left: 0; }
  .audience-box ul { grid-template-columns: repeat(2, 1fr); }
  .compact-footer .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .compact-footer .footer-meta { justify-content: center; }
}

@media (max-width: 700px) {
  .nav, .wrap, .hero-inner, .footer-inner { width: min(100% - 28px, 1180px); }
  .nav { min-height: 72px; }
  .brand { width: 170px; height: 48px; padding: 7px 9px; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn { width: 42px; padding: 0; }
  .nav-actions .btn span { display: none; }
  .hero, .hero-inner { min-height: 640px; }
  .hero h1 { font-size: 42px; }
  .section { padding: 46px 0; }
  .cards, .mini-grid, .benefits, .steps { grid-template-columns: 1fr; }
  .benefit, .benefit:nth-child(2), .benefit:nth-child(3), .benefit:nth-child(4) { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px 16px; }
  .benefit:last-child { border-bottom: 0; }
  .steps::before { display: none; }
  .difference { background: linear-gradient(180deg, rgba(3, 20, 36, 0.98), rgba(3, 20, 36, 0.92) 62%, rgba(3, 20, 36, 0.4)), url("assets/growth-chart-realistic.png") center bottom / cover no-repeat; }
  .difference .wrap { min-height: 500px; align-items: start; padding-top: 48px; }
  .call-strip { grid-template-columns: 1fr; margin-top: -30px; min-height: 78px; }
  .phone-number { min-height: 78px; }
  .phone-number img { width: min(560px, 94%); }
  .call-strip-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .float-whatsapp { right: 16px; bottom: 16px; min-height: 48px; padding: 0 16px; }
  .float-whatsapp span { display: none; }
  .nav-link { display: none; }
  .ia-hero-copy { padding: 48px 20px; }
  .ia-hero h1 { font-size: 38px; }
  .ia-hero p { font-size: 17px; }
  .ia-hero-visual,
  .ia-hero-visual img { min-height: 390px; }
  .ia-screen {
    top: 24px;
    right: 20px;
    width: calc(100% - 40px);
    padding: 18px;
  }
  .ia-screen-icons { grid-template-columns: 1fr; }
  .reason-grid,
  .format-grid,
  .audience-box ul,
  .impactus-pillars { grid-template-columns: 1fr; }
  .reason-grid article,
  .reason-grid article:nth-child(3) {
    min-height: 0;
    padding: 20px 8px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .reason-grid article:first-child { border-top: 0; }
  .audience-box { padding: 24px 20px; }
  .audience-box li { border-left: 0; border-top: 1px solid var(--line); }
  .about-impactus,
  .next-step,
  .ia-quote { padding: 26px 20px; }
  .impactus-pillars span {
    padding: 12px 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .next-actions { gap: 16px; }
  .compact-footer .footer-meta { display: grid; gap: 8px; }
}
