:root {
  --navy-950: #0b2238;
  --navy-900: #122e4b;
  --navy-800: #203d63;
  --yellow: #ffca28;
  --yellow-bright: #ffd500;
  --paper: #f7f8fa;
  --white: #ffffff;
  --ink: #163457;
  --muted: #667b97;
  --line: #dce4ec;
  --whatsapp: #20d66b;
}

* { 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", sans-serif;
  font-weight: 400;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  -webkit-font-smoothing: antialiased;
}
@supports (font-variation-settings: normal) {
  body { font-family: "Inter var", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.97);
  color: var(--ink);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(22,52,87,.08);
}
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name strong { color: var(--ink); font-size: 23px; font-weight: 850; letter-spacing: -.6px; }
.brand-name small {
  max-width: 230px;
  margin-top: 6px;
  color: #8798ad;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2.15px;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(255,202,40,.22);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.header-cta-channel { color: #087d41; }
.header-cta:hover {
  background: var(--yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,202,40,.32);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 105px 24px 112px;
  background: var(--navy-800);
  color: white;
  text-align: center;
}
.hero-orbit { position: absolute; border: 1px solid rgba(255,202,40,.13); border-radius: 50%; }
.orbit-a { width: 720px; height: 720px; top: -430px; right: -140px; }
.orbit-b { width: 590px; height: 590px; bottom: -390px; left: -125px; }

.eyebrow,
.section-label {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3.4px;
  text-transform: uppercase;
}
.eyebrow {
  padding: 10px 16px;
  border: 1px solid rgba(255,202,40,.34);
  border-radius: 999px;
  background: rgba(255,202,40,.07);
}
.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.1rem, 6.7vw, 6.25rem);
  font-weight: 850;
  line-height: .95;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero h1 span { display: block; color: var(--yellow); }
.hero-subtitle {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 31px auto 0;
  color: #d5dfeb;
  font-size: clamp(1.04rem, 2vw, 1.32rem);
  font-weight: 450;
  line-height: 1.58;
}
.hero-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 38px;
  padding: 15px 22px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-size: 14px;
  font-weight: 850;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.hero-link:hover { border-color: var(--yellow); background: rgba(255,202,40,.1); transform: translateY(-2px); }

.pyramid-section {
  padding: 100px max(20px, calc((100vw - 1180px) / 2)) 120px;
  background: var(--paper);
}
.section-heading {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}
.section-heading .section-label { margin-bottom: 13px; color: #9a7100; }
.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 850;
  line-height: .93;
  letter-spacing: -.052em;
}
.section-heading > p { max-width: 560px; margin: 0; color: var(--muted); font-size: 18px; font-weight: 450; line-height: 1.7; }

.infographic-frame {
  position: relative;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 65px rgba(22,52,87,.11);
}
.infographic-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -18px -18px 8%;
  border-radius: 26px;
  background: var(--yellow);
  opacity: .78;
}
.pyramid-image { display: block; width: 100%; height: auto; border-radius: 13px; }
.infographic-frame figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 10px 3px;
  color: #71849a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.infographic-frame figcaption span { width: 4px; height: 4px; border-radius: 50%; background: var(--yellow); }

.product-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 24px;
  background: var(--yellow-bright);
  color: var(--ink);
  text-align: center;
}
.product-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,.24), transparent 50%);
}
.cta-orbit { position: absolute; border: 1px solid rgba(22,52,87,.11); border-radius: 50%; }
.cta-orbit-a { width: 600px; height: 600px; top: -390px; left: -165px; }
.cta-orbit-b { width: 790px; height: 790px; right: -250px; bottom: -610px; }
.product-cta .section-label { margin-bottom: 20px; color: var(--ink); }
.product-cta h2 {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(3rem, 6vw, 5.55rem);
  font-weight: 850;
  line-height: .94;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.product-cta > p:not(.section-label) {
  position: relative;
  max-width: 680px;
  margin: 29px auto 0;
  color: #3e5878;
  font-size: 18px;
  font-weight: 450;
  line-height: 1.65;
}
.primary-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 330px;
  margin-top: 39px;
  padding: 19px 30px;
  border-radius: 999px;
  background: var(--navy-800);
  color: white;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(22,52,87,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary-cta:hover { transform: translateY(-3px); box-shadow: 0 22px 45px rgba(22,52,87,.3); }
.whatsapp-word { color: var(--whatsapp); }
.primary-cta > span:last-child { margin-left: 8px; }
.product-cta small { position: relative; display: block; margin-top: 16px; color: #60728b; font-size: 12px; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 27px max(24px, calc((100vw - 1180px) / 2));
  background: var(--navy-950);
  color: #a9bdca;
}
footer .brand-logo { width: 38px; height: 38px; }
footer .brand-name strong { color: white; font-size: 19px; }
footer .brand-name small { color: #8fa3b8; font-size: 7px; }
footer p, footer > a { font-size: 12px; }
footer > a:hover { color: var(--yellow); }

@media (max-width: 720px) {
  .site-header { padding: 11px 15px; }
  .brand-logo { width: 39px; height: 39px; }
  .brand-name strong { font-size: 19px; }
  .brand-name small { max-width: 150px; font-size: 6px; letter-spacing: 1.3px; }
  .header-cta { padding: 10px 13px; font-size: 11px; }
  .header-cta-channel { display: none; }
  .hero { min-height: 700px; padding: 88px 18px 94px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.75rem); }
  .pyramid-section { padding: 76px 12px 90px; }
  .section-heading { grid-template-columns: 1fr; gap: 23px; margin: 0 10px 38px; }
  .section-heading h2 { font-size: 3.35rem; }
  .section-heading > p { font-size: 16px; }
  .infographic-frame { padding: 7px; border-radius: 16px; }
  .pyramid-image { border-radius: 10px; }
  .infographic-frame::before { inset: 10% -5px -9px 8%; border-radius: 18px; }
  .infographic-frame figcaption { flex-wrap: wrap; gap: 6px; padding: 14px 8px 7px; font-size: 8px; }
  .product-cta { padding: 88px 18px; }
  .product-cta h2 { font-size: 3.45rem; }
  .product-cta > p:not(.section-label) { font-size: 16px; }
  .primary-cta { width: 100%; min-width: 0; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .header-cta, .hero-link, .primary-cta { transition: none; }
}
