:root {
  --navy: #0a1a44;
  --navy-deep: #081242;
  --navy-mid: #1a2f6b;
  --navy-soft: #e8eef8;
  --sky: #dce7f8;
  --ink: #0f172a;
  --muted: #475569;
  --line: #d7e0ef;
  --bg: #f4f7fc;
  --bg-elevated: #ffffff;
  --whatsapp: #128c7e;
  --whatsapp-hover: #0f7a6e;
  --radius: 20px;
  --shadow: 0 22px 60px rgba(8, 18, 66, 0.12);
  --shadow-sm: 0 10px 28px rgba(8, 18, 66, 0.08);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding-left: 1.15rem;
}

li + li {
  margin-top: 0.55rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 80;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--navy-mid), #4f7dff);
  transition: width 0.05s linear;
}

.container {
  width: min(1180px, calc(100% - 2.75rem));
  margin-inline: auto;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0a1a44;
  border-bottom: none;
  box-shadow: 0 12px 40px rgba(4, 10, 31, 0.35);
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.22), transparent 42%),
    radial-gradient(circle at 80% 30%, rgba(45, 212, 191, 0.16), transparent 40%);
  animation: header-glow 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes header-glow {
  from { transform: translateX(-2%) scale(1); }
  to { transform: translateX(3%) scale(1.05); }
}

.header-accent {
  position: relative;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, #1e3a5f, #334155, #1e3a5f);
  background-size: 100% 100%;
  animation: none;
}

@keyframes accent-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.header-inner {
  position: relative;
  z-index: 1;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #f8fafc;
  transition: transform 0.25s var(--ease), filter 0.25s;
}

.brand:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.35));
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-text { display: grid; gap: 0.05rem; }

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  background: none;
}

.brand-tag {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.84);
  padding: 0.55rem 0.8rem;
  border-radius: 0;
  transition: color 0.2s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: rgba(226, 232, 240, 0.7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: transparent;
  transform: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-actions .btn-ghost {
  background: transparent;
  border-color: rgba(203, 213, 225, 0.35);
  color: #e2e8f0;
}

.nav-actions .btn-ghost:hover {
  border-color: rgba(226, 232, 240, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.nav-actions .btn-primary {
  background: #1e3a5f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.nav-actions .btn-primary:hover {
  background: #254a75;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #e2e8f0;
  margin: 4px auto;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

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

.btn:focus-visible {
  outline: 2px solid var(--navy-mid);
  outline-offset: 3px;
}

.btn-sm {
  min-height: 42px;
  padding: 0.5rem 1.05rem;
  font-size: 0.88rem;
}

.btn-lg {
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  font-size: 1rem;
}

.btn-primary {
  background: #0a1a44;
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 18, 66, 0.2);
}

.btn-primary:hover {
  background: #132a5c;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.45);
  color: var(--navy);
}

.btn-ghost:hover {
  border-color: rgba(100, 116, 139, 0.55);
  background: rgba(15, 23, 42, 0.03);
  box-shadow: none;
}

.btn-whatsapp {
  background: #1f6b5a;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #185649;
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  padding: 3.25rem 0 0;
  overflow: hidden;
  background:
    linear-gradient(155deg, #d5e0ef 0%, #c9d8ea 28%, #c5ddd8 62%, #d2d9eb 100%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}

.hero-mesh {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.28), transparent 42%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.18), transparent 40%),
    radial-gradient(circle at 70% 75%, rgba(20, 184, 166, 0.24), transparent 45%),
    radial-gradient(circle at 25% 80%, rgba(245, 158, 11, 0.12), transparent 40%);
  filter: blur(8px);
  animation: mesh-shift 16s ease-in-out infinite alternate;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grid,
.marquee {
  position: relative;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.55;
  animation: drift 14s ease-in-out infinite;
}

.orb-a {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.45), transparent 70%);
  top: 4%;
  left: 0%;
}

.orb-b {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.35), transparent 70%);
  right: -4%;
  top: 26%;
  animation-delay: -4s;
}

.orb-c {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.22), transparent 70%);
  left: 38%;
  bottom: 8%;
  animation-delay: -7s;
}

.orb-d {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
  left: 58%;
  top: 8%;
  animation-delay: -2s;
}

@keyframes mesh-shift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-3%, 2%, 0) scale(1.08);
  }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: center;
  padding-bottom: 2.5rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.pill-soft {
  background: var(--navy-soft);
  border-color: transparent;
  color: var(--navy-mid);
}

.hero-brand {
  margin: 0 0 0.55rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--navy-deep);
}

.hero-sub {
  margin: 1.2rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.85rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.1rem;
}

.stat {
  padding: 1.05rem 0.95rem;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(226, 242, 255, 0.88));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(8px);
}

.hero-shot {
  position: relative;
  width: min(100%, 580px);
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
  background: #0a1a44;
}

.hero-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: none;
}

.hero-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 26, 68, 0.35));
}

.float-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  color: #0a1a44;
  animation: none;
  backdrop-filter: blur(8px);
}

.chip-a {
  left: 1rem;
  top: 1rem;
}

.chip-b {
  right: 1rem;
  left: auto;
  bottom: 1rem;
  top: auto;
  color: #0a1a44;
  border-color: rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.94);
}

.chip-c {
  display: none;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floaty-center {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.stat strong {
  font-size: 1.55rem;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.stat span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-mid);
}

.stat p {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-visual {
  display: grid;
  justify-items: center;
  align-self: stretch;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0d9488;
  box-shadow: none;
}

.marquee {
  border-block: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(226, 232, 240, 0.55);
  overflow: hidden;
  padding: 0.95rem 0;
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--navy-mid);
}

.section {
  padding: 5.75rem 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.75rem;
}

.section-head h2,
.problem-copy h2,
.showcase-copy h2,
.trust h2,
.contact-copy h2 {
  margin: 0.4rem 0 0.85rem;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--navy);
}

.section-head p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.problem {
  background: #fff;
}

.problem-grid,
.showcase-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: center;
}

.check-list {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--navy);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f7dff, var(--navy));
  box-shadow: 0 0 0 4px rgba(79, 125, 255, 0.15);
}

.media-frame,
.showcase-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.media-frame img,
.showcase-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.media-frame:hover img,
.showcase-visual:hover img {
  transform: scale(1.04);
}

.product {
  background:
    radial-gradient(600px 280px at 100% 0%, rgba(79, 125, 255, 0.1), transparent 60%),
    linear-gradient(180deg, #eef3fb 0%, var(--bg) 100%);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.pillar {
  padding: 1.55rem 1.4rem 1.45rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.pillar-media {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar h3,
.benefit-block h3,
.steps-list h3,
.feature-tile h3 {
  margin: 1rem 0 0.45rem;
  color: var(--navy);
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.pillar p,
.steps-list p,
.feature-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.mini-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin-top: 1rem;
}

.mini-tags li {
  margin: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--navy-soft);
  color: var(--navy-mid);
  font-size: 0.75rem;
  font-weight: 700;
}

.showcase {
  background: #fff;
}

.showcase-visual img {
  aspect-ratio: 16 / 9;
}

.showcase-glow {
  position: absolute;
  inset: auto 10% -20% 10%;
  height: 40%;
  background: radial-gradient(circle, rgba(79, 125, 255, 0.25), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.feature-tiles {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.feature-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.benefits {
  background:
    linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.benefit-block {
  padding: 1.85rem 1.6rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #ffffff 0%, #eef3fb 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.benefit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-mid);
}

.benefit-badge {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
}

.benefit-block ul {
  color: var(--muted);
  margin-top: 0.85rem;
}

.steps {
  background:
    radial-gradient(700px 300px at 0% 0%, rgba(26, 47, 107, 0.08), transparent 60%),
    var(--bg);
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.steps-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.step-num {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: #4f7dff;
  min-width: 2.4rem;
}

.trust {
  background:
    radial-gradient(800px 360px at 50% -20%, rgba(79, 125, 255, 0.18), transparent 55%),
    linear-gradient(180deg, #ffffff, #eef3fb);
}

.trust-inner {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.trust-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.2rem;
  border-radius: 24px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: visible;
}

.trust-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact {
  background: #fff;
}

.contact-channels {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.channel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #f8fafc;
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  flex-shrink: 0;
}

.channel-icon.wa {
  color: var(--whatsapp);
}

.channel-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.channel-value {
  display: block;
  font-weight: 700;
  color: var(--navy);
}

.contact-form {
  padding: 1.7rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--ink);
  background: #fbfcfe;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #8aa0c8;
  box-shadow: 0 0 0 4px rgba(26, 47, 107, 0.12);
}

.form-note {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-note.ok {
  color: var(--whatsapp);
}

.form-note.err {
  color: #b91c1c;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #0a1a44;
  color: rgba(226, 232, 240, 0.88);
  padding: 4rem 0 2rem;
  border-top: none;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: rgba(148, 163, 184, 0.35);
  animation: none;
}

.footer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 260px at 12% 0%, rgba(56, 189, 248, 0.2), transparent 55%),
    radial-gradient(520px 240px at 88% 100%, rgba(45, 212, 191, 0.16), transparent 50%);
  animation: header-glow 12s ease-in-out infinite alternate;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.25rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand-card,
.footer-col {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-mark {
  width: 44px;
  height: 44px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.footer-brand strong {
  color: #fff;
  display: block;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.footer-brand p {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7dd3fc;
  font-weight: 800;
}

.footer-desc {
  margin: 1.1rem 0 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(203, 213, 225, 0.88);
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #67e8f9;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0;
  color: rgba(226, 232, 240, 0.86);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s, text-shadow 0.2s;
}

.footer-col a + a,
.footer-col p + a,
.footer-col a + p {
  margin-top: 0.75rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #fff;
  transform: translateX(3px);
  text-shadow: none;
}

.footer-cta {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  background: transparent;
  border: none;
  color: inherit;
  box-shadow: none;
  padding: 0;
}

.footer-cta h3 {
  color: #cbd5e1;
  border-bottom: none;
}

.footer-cta .btn {
  justify-content: center;
  width: 100%;
  max-width: 240px;
}

.footer-cta .btn-ghost {
  background: transparent;
  border-color: rgba(203, 213, 225, 0.35);
  color: #e2e8f0;
}

.footer-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.footer-cta .btn-primary {
  background: #1e3a5f;
  color: #fff;
  animation: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta .btn-whatsapp {
  background: #1f6b5a;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 0;
  background: transparent;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: auto;
  padding: 0.25rem 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #7dd3fc;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.2s, text-shadow 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: transparent;
  border-color: transparent;
  transform: translateY(-2px);
  color: #fff;
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.5);
}

.footer-social a.is-wa {
  border: none;
  color: #5eead4;
  background: transparent;
}

.footer-social a.is-wa:hover {
  background: transparent;
  color: #fff;
}


.fab-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 16px 36px rgba(18, 140, 126, 0.35);
  z-index: 60;
  transition: transform 0.2s var(--ease), background 0.2s;
  animation: pulse 2.8s ease-in-out infinite;
}

.fab-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  background: var(--whatsapp-hover);
}

.hover-lift {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -16px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 16px 36px rgba(18, 140, 126, 0.35);
  }
  50% {
    box-shadow: 0 16px 36px rgba(18, 140, 126, 0.55), 0 0 0 12px rgba(18, 140, 126, 0.12);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .pillars,
  .benefit-grid,
  .problem-grid,
  .showcase-grid,
  .contact-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-shot {
    width: min(100%, 100%);
  }

  .nav-toggle {
    display: block;
  }

  .brand-tag {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem 1.15rem 1.35rem;
    background: #0a1a44;
    border-bottom: none;
    box-shadow: 0 18px 40px rgba(4, 10, 31, 0.45);
  }

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

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    border-radius: 0;
    padding: 0;
    background: transparent;
    border: none;
  }

  .nav-links a {
    padding: 0.85rem 0.8rem;
  }

  .nav-links a::after {
    left: 0.8rem;
    right: auto;
    width: 28px;
  }

  .nav-actions {
    flex-direction: column;
  }

  .nav-actions .btn {
    width: 100%;
  }

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

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .orb,
  .float-chip,
  .fab-whatsapp,
  .marquee-track,
  .hover-lift,
  .media-frame img,
  .showcase-visual img,
  .hero-mesh,
  .header-accent,
  .site-header::before,
  .footer-glow,
  .nav-actions .btn-primary,
  .footer-cta .btn-primary {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-canvas {
    display: none;
  }
}
