:root {
  --color-black: #05090d;
  --color-ink: #091017;
  --color-graphite: #101820;
  --color-panel: #121c24;
  --color-panel-soft: #17242d;
  --color-line: rgba(255, 255, 255, 0.12);
  --color-line-strong: rgba(255, 255, 255, 0.2);
  --color-white: #ffffff;
  --color-muted: #a8b4bd;
  --color-yellow: #ffd000;
  --color-yellow-deep: #eab500;
  --color-teal: #20c6c8;
  --color-red: #ff2a2a;
  --shadow-panel: 0 22px 50px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.24);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-card: 8px;
  --radius-control: 8px;
  --container: 1180px;
  --header-height: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-family: inherit;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(32, 198, 200, 0.08), transparent 28%),
    radial-gradient(circle at 72% 8%, rgba(255, 208, 0, 0.08), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.icon-sprite {
  display: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 12px max(22px, calc((100vw - var(--container)) / 2));
  background: rgba(5, 9, 13, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(5, 9, 13, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 128px;
}

.brand img {
  width: 128px;
  max-height: 64px;
  object-fit: contain;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--color-teal);
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-control);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.header-cta {
  background: var(--color-yellow);
  color: #080b0e;
  box-shadow: 0 12px 28px rgba(255, 208, 0, 0.18);
}

.header-cta svg,
.button svg,
.floating-whatsapp svg,
.feature-card svg,
.process-list svg,
.coverage-panel svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.header-cta:hover,
.button:hover,
.format-grid a:hover,
.coverage-panel a:hover {
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 88svh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-black);
}

.hero-media,
.hero-overlay,
.final-media {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #03080c;
  transform: scale(1.02);
  animation: heroDrift 9000ms ease-in-out infinite alternate;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 9, 13, 0.92) 0%, rgba(5, 9, 13, 0.76) 34%, rgba(5, 9, 13, 0.24) 64%, rgba(5, 9, 13, 0.36) 100%),
    linear-gradient(180deg, rgba(5, 9, 13, 0.08) 0%, rgba(5, 9, 13, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 0 86px;
}

.hero-label,
.section-kicker {
  margin: 0 0 16px;
  color: var(--color-teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-label {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(32, 198, 200, 0.55);
  border-radius: 4px;
  background: rgba(5, 9, 13, 0.56);
  animation: riseIn 600ms var(--ease-out) both;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.final-content h2 {
  margin: 0;
  max-width: 720px;
  font-weight: 1000;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: 4.8rem;
  animation: riseIn 700ms var(--ease-out) 80ms both;
}

.hero h1::first-line {
  color: var(--color-white);
}

.hero-lead {
  max-width: 540px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
  line-height: 1.55;
  animation: riseIn 700ms var(--ease-out) 160ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  animation: riseIn 700ms var(--ease-out) 240ms both;
}

.button-primary {
  background: var(--color-yellow);
  color: #070a0d;
  box-shadow: 0 18px 38px rgba(255, 208, 0, 0.2);
}

.button-primary:hover,
.header-cta:hover {
  box-shadow: 0 22px 46px rgba(255, 208, 0, 0.28);
}

.button-outline {
  border: 1px solid rgba(255, 208, 0, 0.68);
  background: rgba(5, 9, 13, 0.42);
  color: var(--color-white);
}

.button-small {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(32, 198, 200, 0.62);
  color: var(--color-teal);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  animation: riseIn 700ms var(--ease-out) 320ms both;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 220px;
}

.hero-proof svg {
  width: 30px;
  height: 30px;
  color: var(--color-teal);
}

.hero-proof span:nth-child(2) svg {
  color: var(--color-yellow);
}

.hero-proof span:nth-child(3) svg {
  color: var(--color-red);
}

.brand-stripe {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 12px;
}

.brand-stripe span:nth-child(1) {
  background: var(--color-teal);
}

.brand-stripe span:nth-child(2) {
  background: var(--color-yellow);
}

.brand-stripe span:nth-child(3) {
  background: var(--color-red);
}

.section {
  padding: 90px 0;
  background: var(--color-black);
}

.intro-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(32, 198, 200, 0.12), transparent 38%),
    linear-gradient(180deg, #03070a 0%, #081116 100%);
}

.intro-section::before {
  content: "LED";
  position: absolute;
  left: max(12px, calc((100vw - var(--container)) / 2));
  bottom: 0.05em;
  color: rgba(32, 198, 200, 0.035);
  -webkit-text-stroke: 1px rgba(32, 198, 200, 0.13);
  font-size: clamp(7.5rem, 18vw, 16rem);
  font-weight: 1000;
  line-height: 0.8;
  letter-spacing: 0.03em;
  pointer-events: none;
}

.formats-section {
  background:
    linear-gradient(180deg, #070c10 0%, #040709 100%);
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #061216 0%, #031014 100%);
}

.process-section::before {
  content: "RECORRIDO";
  position: absolute;
  right: max(12px, calc((100vw - var(--container)) / 2));
  bottom: 0.02em;
  color: rgba(255, 255, 255, 0.025);
  -webkit-text-stroke: 1px rgba(32, 198, 200, 0.1);
  font-size: clamp(4.8rem, 12vw, 10.5rem);
  font-weight: 1000;
  line-height: 0.8;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.split-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 56px;
}

.split-grid.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-card);
  background: var(--color-panel);
  box-shadow: var(--shadow-panel);
  transform: translateZ(0);
  transition: transform 480ms var(--ease-spring), border-color 240ms ease, box-shadow 240ms ease;
}

.media-frame:hover {
  border-color: rgba(32, 198, 200, 0.46);
  transform: translateY(-4px);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  object-position: center;
}

.integrated-vehicle-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 198, 200, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(32, 198, 200, 0.12), transparent 42%),
    #05090d;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.46);
}

.integrated-vehicle-frame:hover {
  border-color: rgba(255, 208, 0, 0.3);
}

.integrated-vehicle-frame .intro-vehicle-scene {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04);
}

.section-copy h2,
.section-heading h2 {
  font-size: 2.55rem;
}

.section-copy p,
.section-heading p,
.coverage-panel p,
.final-content p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-copy p {
  max-width: 620px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.mini-grid span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--color-teal);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 830px;
  margin: 0 auto 42px;
}

.section-heading.left {
  justify-items: start;
  text-align: left;
  margin-left: 0;
}

.benefit-grid,
.format-grid {
  display: grid;
  gap: 16px;
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.format-grid article {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.022));
  box-shadow: var(--shadow-soft);
  transition: transform 260ms var(--ease-out), border-color 220ms ease, background 220ms ease;
}

.feature-card:hover,
.format-grid article:hover,
.campaign-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 198, 200, 0.34);
}

.feature-card {
  padding: 26px;
  min-height: 292px;
}

.feature-card svg {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
}

.accent-teal svg {
  color: var(--color-teal);
}

.accent-yellow svg {
  color: var(--color-yellow);
}

.accent-red svg {
  color: var(--color-red);
}

.feature-card h3,
.campaign-card h3,
.process-list h3,
.format-grid h3,
.coverage-panel h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.3;
}

.feature-card p,
.campaign-card span,
.process-list p,
.format-grid p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.benefits-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(32, 198, 200, 0.13), transparent 32%),
    radial-gradient(circle at 86% 74%, rgba(255, 48, 51, 0.08), transparent 28%),
    linear-gradient(180deg, #05090d 0%, #071018 100%);
}

.benefits-section::before {
  content: "VISIBLE";
  position: absolute;
  right: max(12px, calc((100vw - var(--container)) / 2));
  top: 0.22em;
  color: rgba(32, 198, 200, 0.035);
  -webkit-text-stroke: 1px rgba(32, 198, 200, 0.13);
  font-size: clamp(5rem, 12vw, 11.5rem);
  font-weight: 1000;
  line-height: 0.82;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.benefits-section .container {
  position: relative;
}

.benefits-section .section-heading {
  justify-items: start;
  text-align: left;
  max-width: 860px;
  margin-left: 0;
}

.benefits-section .section-heading h2 {
  max-width: 820px;
}

.benefits-section .section-heading h2::after {
  content: "";
  display: block;
  width: min(420px, 58vw);
  height: 6px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-yellow));
}

.benefit-grid {
  position: relative;
  grid-template-columns: 1.24fr 1fr 1fr;
  gap: 16px;
  margin-top: 42px;
  border: 0;
}

.benefit-grid::before {
  display: none;
}

.benefit-grid .feature-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(32, 198, 200, 0.16);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.054), rgba(255, 255, 255, 0.014)),
    rgba(5, 9, 13, 0.72);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.benefit-grid .feature-card + .feature-card {
  padding-left: 28px;
}

.benefit-grid .feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(32, 198, 200, 0.42);
}

.benefit-grid .feature-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 18px rgba(32, 198, 200, 0.2));
}

.benefit-grid .feature-card h3 {
  max-width: 180px;
  font-size: 1.18rem;
  text-transform: uppercase;
}

.benefit-grid .feature-card p {
  max-width: 245px;
}

.benefit-grid .feature-card:first-child {
  grid-row: span 2;
  display: flex;
  min-height: 456px;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 18% 18%, rgba(32, 198, 200, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(32, 198, 200, 0.1), rgba(255, 208, 0, 0.06)),
    rgba(5, 9, 13, 0.86);
  border-color: rgba(32, 198, 200, 0.34);
}

.benefit-grid .accent-red svg {
  color: var(--color-yellow);
}

.benefit-grid .feature-card:first-child svg {
  width: 64px;
  height: 64px;
}

.benefit-grid .feature-card:first-child h3 {
  max-width: 320px;
  font-size: 2.05rem;
  line-height: 0.98;
}

.benefit-grid .feature-card:first-child p {
  max-width: 330px;
  font-size: 1rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  position: relative;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 3%;
  right: 3%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-yellow), var(--color-red), var(--color-teal));
  opacity: 0.72;
}

.process-list li {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  transition: transform 260ms var(--ease-out);
}

.process-list li::after {
  display: none;
}

.process-list li:hover {
  transform: translateY(-4px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  box-shadow: 0 0 0 8px #03080c, 0 12px 24px rgba(255, 208, 0, 0.18);
  border-radius: 50%;
  background: var(--color-yellow);
  color: #070a0d;
  font-size: 0.95rem;
  font-weight: 1000;
}

.process-list svg {
  width: 26px;
  height: 26px;
  color: var(--color-teal);
}

.process-head {
  display: grid;
  grid-template-columns: 42px 30px;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.process-head h3 {
  grid-column: 1 / -1;
  margin-top: 18px;
  max-width: 190px;
}

.process-list li:nth-child(3) svg {
  color: var(--color-red);
}

.process-list li:nth-child(5) svg {
  color: var(--color-yellow);
}

.campaign-section {
  background:
    linear-gradient(180deg, #020405 0%, #05090d 100%);
}

.campaign-heading {
  grid-template-columns: 1fr auto;
  justify-items: stretch;
  align-items: end;
  max-width: none;
  text-align: left;
}

.campaign-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.campaign-toolbar button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
  cursor: pointer;
}

.campaign-toolbar button.is-active {
  border-color: var(--color-teal);
  background: rgba(32, 198, 200, 0.12);
  color: var(--color-teal);
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.campaign-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
  transition: transform 300ms var(--ease-spring), border-color 220ms ease, box-shadow 220ms ease;
}

.campaign-card.is-hidden {
  display: none;
}

.campaign-card.wide {
  grid-column: span 2;
}

.campaign-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  background: #1c232b;
  transition: transform 520ms var(--ease-out);
}

.campaign-card:hover img {
  transform: scale(1.035);
}

.campaign-card.wide img {
  aspect-ratio: 2.62 / 1;
}

.campaign-card div {
  padding: 16px;
}

.campaign-card p {
  margin: 0 0 6px;
  color: var(--color-yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-proof-section {
  background:
    linear-gradient(120deg, rgba(255, 208, 0, 0.08), transparent 34%),
    linear-gradient(240deg, rgba(32, 198, 200, 0.1), transparent 38%),
    #071018;
}

.video-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 48px;
}

.video-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.video-points span {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.video-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-yellow);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 198, 200, 0.26);
  border-radius: var(--radius-card);
  background:
    linear-gradient(90deg, rgba(5, 9, 13, 0.52), rgba(5, 9, 13, 0.08)),
    url("assets/hero-poster.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-panel);
}

.video-shell::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 208, 0, 0.18);
  border-radius: 4px;
}

.video-shell video,
.video-shell iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}

.youtube-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  background: #0d151b;
}

.youtube-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04) brightness(0.74);
  transition: transform 520ms var(--ease-out), filter 280ms ease;
}

.youtube-poster:hover img {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.08) brightness(0.86);
}

.youtube-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 18px 46px rgba(255, 208, 0, 0.32);
  transform: translate(-50%, -50%);
}

.youtube-play::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 21px solid #05090d;
}

.youtube-caption,
.youtube-fallback {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.youtube-caption {
  padding: 9px 12px;
  border: 1px solid rgba(32, 198, 200, 0.4);
  background: rgba(5, 9, 13, 0.66);
}

.audience-section {
  background:
    linear-gradient(90deg, rgba(32, 198, 200, 0.08), transparent 45%),
    #081018;
}

.audience-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
}

.audience-list li {
  position: relative;
  padding: 0 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.58;
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(32, 198, 200, 0.12);
}

.coverage-panel {
  padding: 34px;
  border: 1px solid rgba(32, 198, 200, 0.32);
  border-radius: var(--radius-card);
  background:
    linear-gradient(150deg, rgba(32, 198, 200, 0.14), transparent 58%),
    var(--color-panel);
  box-shadow: var(--shadow-panel);
}

.coverage-panel svg {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--color-teal);
}

.coverage-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.coverage-panel li {
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.coverage-panel li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 9px 1px -16px;
  border-radius: 50%;
  background: var(--color-yellow);
}

.coverage-panel a,
.format-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--color-yellow);
  font-weight: 900;
}

.format-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.format-grid article {
  padding: 26px;
}

.format-grid h3 {
  color: var(--color-white);
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: center;
  background: #05090d;
}

.final-media {
  background-image:
    linear-gradient(90deg, rgba(5, 9, 13, 0.96) 0%, rgba(5, 9, 13, 0.86) 50%, rgba(5, 9, 13, 0.34) 100%),
    url("assets/hero-poster.jpg");
  background-size: cover;
  background-position: center;
}

.final-content {
  position: relative;
  z-index: 2;
}

.final-content h2 {
  max-width: 720px;
  font-size: 3.35rem;
}

.final-content p {
  max-width: 560px;
  margin: 18px 0 28px;
}

.site-footer {
  padding: 54px 0 22px;
  background: #030608;
  border-top: 1px solid var(--color-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 50px;
}

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

.site-footer p,
.site-footer span,
.site-footer a {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.site-footer nav,
.site-footer div:last-child {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer h3 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer-bottom {
  width: min(100% - 40px, var(--container));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 28;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #12c95b;
  color: var(--color-white);
  box-shadow: 0 18px 38px rgba(18, 201, 91, 0.28);
  animation: whatsappPulse 2400ms ease-in-out infinite;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    padding: 26px 24px 30px;
    background: rgba(5, 9, 13, 0.98);
    border-bottom: 1px solid var(--color-line);
  }

  .site-nav.is-open {
    display: grid;
    gap: 18px;
  }

  .site-nav a::after {
    bottom: -5px;
    right: auto;
    width: 38px;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-white);
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .benefit-grid,
  .process-list,
  .video-layout,
  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li {
    min-height: auto;
  }

  .process-list li::after {
    inset: 0 0 auto 0;
    width: auto;
    height: 3px;
  }

  .campaign-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid {
    border-bottom: 0;
  }

  .benefit-grid::before {
    display: none;
  }

  .benefit-grid .feature-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .benefit-grid .feature-card + .feature-card {
    padding-left: 24px;
  }

  .benefit-grid .feature-card:nth-child(3) {
    padding-left: 24px;
  }

  .benefit-grid .feature-card:first-child {
    grid-column: span 2;
    grid-row: auto;
    min-height: 320px;
  }

}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    min-height: 74px;
    padding: 10px 14px;
  }

  :root {
    --header-height: 74px;
  }

  .brand,
  .brand img {
    width: 104px;
    max-height: 54px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 86svh;
    align-items: end;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-media video {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 9, 13, 0.9), rgba(5, 9, 13, 0.58)),
      linear-gradient(180deg, rgba(5, 9, 13, 0.12), rgba(5, 9, 13, 0.9));
  }

  .hero-content {
    padding: 76px 0 58px;
  }

  .hero-label {
    font-size: 0.74rem;
  }

  .hero h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

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

  .button {
    width: 100%;
    min-height: 52px;
  }

  .section {
    padding: 64px 0;
  }

  .intro-section::before,
  .benefits-section::before,
  .process-section::before {
    right: 14px;
    left: auto;
    bottom: 0.05em;
    font-size: clamp(3.4rem, 18vw, 6.5rem);
    letter-spacing: 0.02em;
  }

  .benefits-section::before {
    top: 0.28em;
    bottom: auto;
  }

  .process-section::before {
    left: 14px;
    right: auto;
    font-size: clamp(2.6rem, 13vw, 3.8rem);
    letter-spacing: 0;
  }

  .split-grid,
  .split-grid.reverse,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-copy h2,
  .section-heading h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .section-heading,
  .section-heading.left,
  .campaign-heading {
    display: grid;
    justify-items: start;
    text-align: left;
  }

  .mini-grid,
  .benefit-grid,
  .process-list,
  .campaign-grid,
  .format-grid,
  .video-layout,
  .coverage-panel ul {
    grid-template-columns: 1fr;
  }

  .process-list {
    gap: 24px;
  }

  .process-list::before {
    top: 0;
    bottom: 0;
    left: 21px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--color-teal), var(--color-yellow), var(--color-red), var(--color-teal));
  }

  .process-list li {
    padding: 18px;
  }

  .process-head {
    grid-template-columns: 42px 28px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 10px;
  }

  .process-head h3 {
    grid-column: auto;
    max-width: none;
    margin-top: 0;
  }

  .process-list p {
    margin-left: 80px;
    margin-top: 0;
  }

  .feature-card {
    min-height: auto;
  }

  .benefit-grid {
    border-top: 0;
  }

  .benefit-grid .feature-card,
  .benefit-grid .feature-card + .feature-card,
  .benefit-grid .feature-card:nth-child(3) {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .benefit-grid .feature-card h3,
  .benefit-grid .feature-card p {
    max-width: none;
  }

  .benefit-grid .feature-card:first-child {
    grid-column: auto;
    min-height: auto;
  }

  .benefit-grid .feature-card:first-child h3 {
    font-size: 1.5rem;
  }

  .campaign-card.wide {
    grid-column: auto;
  }

  .campaign-card.wide img {
    aspect-ratio: 1.25 / 1;
  }

  .final-content h2 {
    font-size: 2.35rem;
    line-height: 1.06;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.24rem;
  }

  .campaign-toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-toolbar button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(8px);
  will-change: transform, opacity, filter;
}

.reveal.is-visible {
  animation: fadeUp 820ms var(--ease-spring) both;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }
  to {
    transform: scale(1.045) translateX(-14px);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 18px 38px rgba(18, 201, 91, 0.28);
  }
  50% {
    box-shadow: 0 18px 44px rgba(18, 201, 91, 0.48);
  }
}
