:root {
  --pink: #ff2a6f;
  --navy: #0b0b1c;
  --ink: #0f0f1a;
  --ivory: #f4edd9;
  --yellow: #f8d648;
  --blue: #3474ff;
  --mint: #55f3c2;
  --purple: #6a2be6;
  --text: #0f0f1a;
  --muted: #2f2f3a;
  --max: 1200px;
  --radius: 18px;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
  --font-display: "Poppins", "Roboto", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;
  --topbar-height: 76px;
  --font-brand: "KT HIGER", "Poppins", "Roboto", system-ui, sans-serif;
  --service-loader-duration: 7.2s;
  --service-accent: var(--blue);
  --service-accent-ink: #ffffff;
  --service-reference-bg: #0b0b1c;
  --service-reference-text: var(--service-accent);
}

/* Use local install if available, without requesting missing files */
@font-face {
  font-family: "KT HIGER";
  src: local("KT HIGER"), local("KT-HIGER-Black");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

body {
  margin: 0;
  background: var(--ivory);
  font-family: var(--font-body);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

html {
  background: #020216;
}
main {
  margin-top: 0;
}

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

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

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

.topbar {
  position: fixed;
  top: 0;
  z-index: 50;
  background: transparent;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: var(--topbar-height);
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
  pointer-events: none;
}

body.has-scrolled .topbar {
  z-index: 1000;
}

.topbar__shell {
  background: rgba(5, 7, 20, 0.58);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  width: 100%;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  padding: 0 32px;
  margin-top: -10px;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
  pointer-events: auto;
}

@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
  .topbar__shell {
    border-radius: 0;
    -webkit-mask-image: url("../img/notch-snosotros.svg");
    mask-image: url("../img/notch-snosotros.svg");
    -webkit-mask-size: auto 100%;
    mask-size: auto 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: 20% top;
    mask-position: 20% top;
  }
}

.topbar__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.22) 1px, transparent 0);
  background-repeat: repeat;
  background-size: 14px 14px;
  opacity: 0.08;
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 0;
}

.topbar__content {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(130px, 14vw, 220px) 0 0;
  position: relative;
  margin: 0 auto;
  justify-content: flex-start;
  z-index: 1;
  width: 100%;
}

.brand__logo {
  margin-left: 0;
  height: 40px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  flex: 1 1 auto;
  justify-content: flex-start;
  margin-left: 0;
  min-width: 0;
}

.menu a {
  padding: 8px 12px;
  border-radius: 0;
  transition: color 0.15s ease;
  color: #f2f2f2;
  font-size: 15px;
  font-weight: 700;
  background: transparent;
}

.menu a:not(.menu__cta):hover,
.menu a:not(.menu__cta):focus-visible {
  background: transparent;
  color: #ffffff;
}

.menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ed1b76 !important;
  color: #fff;
  padding: 13px 24px;
  border-radius: 10px !important;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.menu__cta:hover {
  background: #ffffff !important;
  color: #0b0b1c;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
}

.menu__access {
  display: none;
}

@keyframes pulseGradient {
  0% { filter: brightness(1) saturate(1); }
  100% { filter: brightness(1.12) saturate(1.15); }
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding-left: 0;
  min-width: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--ghost {
  padding: 10px 18px;
  border-radius: 10px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 38px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  height: 100svh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding-top: 0;
  overflow: hidden;

}

.hero__video {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 38%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.05), transparent 32%),
    #0b0b1c;
}

.hero__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
}


.hero__logo {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  width: clamp(120px, 14vw, 180px);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
}

.hero__intranet {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 4vw, 36px);
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(5, 7, 20, 0.2);
  z-index: 52;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hero__intranet:hover,
.hero__intranet:focus-visible {
  background: transparent;
  border: 1px solid #34e2a8;
  color: #34e2a8;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 19px;
  height: 19px;
  display: block;
  color: #fff;
  text-decoration: none;
  animation: heroScroll 3s ease-in-out infinite;
}

.hero__scroll span {
  display: block;
  width: 13px;
  height: 13px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin: 0 auto;
}

@keyframes heroScroll {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.9; }
  50% { transform: translate(-50%, 10px); opacity: 0.5; }
}

.block {
  width: 100%;
  min-height: 50vh;
}

.block--pink {
  background: url("../img/fondo1.svg") center/cover no-repeat, var(--pink);
  color: #fff;
  padding: calc((80px + var(--topbar-height)) / 2) 0 calc((80px + var(--topbar-height)) / 2);
  position: relative;
  min-height: 40vh;
  overflow: hidden;
}

.block--pink::before {
  content: "";
  position: absolute;
  inset: 12% 6% auto auto;
  width: 110px;
  height: 110px;
  background: url("../img/graf2-fondo1.svg") center/contain no-repeat;
  pointer-events: none;
  opacity: 0.85;
}

.block--pink::after {
  content: "";
  position: absolute;
  inset: 18% auto auto 8%;
  width: clamp(120px, 10vw, 160px);
  height: clamp(120px, 10vw, 160px);
  background: url("../img/graf-fondo1.svg") center/contain no-repeat;
  pointer-events: none;
  opacity: 0.9;
}

.block__grid {
  display: grid;
  gap: 18px;
}

.block__grid--two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.block--pink .block__grid--two {
  grid-template-columns: minmax(320px, 0.48fr) 0.52fr;
  gap: clamp(16px, 2.6vw, 28px);
  align-items: center;
}

.card {
  background: rgba(0, 0, 0, 0.75);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.block--pink .card {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

.block--pink .card--text {
  max-width: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding-right: clamp(8px, 2vw, 18px);
}

.card--text {
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card--text h2 {
  font-family: var(--font-brand);
  font-size: clamp(46px, 7.5vw, 68px);
  margin: 4px 0 12px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.card--text p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.block--pink .card--text p {
  max-width: none;
}

.eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  font-size: 14px;
}

.card--video {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 60px);
  letter-spacing: 0.08em;
  background: linear-gradient(145deg, rgba(7, 8, 20, 0.92), rgba(5, 6, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.block--pink .card--video {
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 0;
}

.block--services {
  background: url("../img/fondo2.png") center/cover no-repeat, var(--ivory);
  padding: 89px 0 97px;
  display: flex;
  align-items: center;
  min-height: 60vh;
}

.block__grid--split {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
  gap: 26px;
}

.panel {
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}

.panel--reference {
  aspect-ratio: 1 / 1;
  background: var(--service-reference-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  color: #f7f6ff;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}

.panel--reference span {
  font-size: clamp(44px, 8vw, 68px);
  line-height: 1.1;
  font-family: var(--font-brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 12ch;
  min-height: 1.6em;
  display: block;
  color: var(--service-reference-text);
  transition: color 0.2s ease;
}

.panel--service {
  color: var(--text);
  display: grid;
  position: relative;
  align-content: center;
  gap: 14px;
  padding: 18px 22px;
}

.panel--service::before {
  content: "";
  width: 62px;
  height: 6px;
  border-radius: 999px;
  background: var(--service-accent);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.panel--service h3 {
  font-family: var(--font-brand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(46px, 8vw, 72px);
  margin: 4px 0 8px;
  line-height: 1.03;
  max-width: 14ch;
  min-height: 2.15em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.panel--service .lede {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
  min-height: 4.8em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service__timer {
  position: absolute;
  top: auto;
  right: 12px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.35);
  box-sizing: border-box;
  transform: rotate(45deg) scale(0.65);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service__timer.is-visible {
  opacity: 1;
  transform: rotate(45deg) scale(0.78);
}

.service__timer.is-animating {
  /* animation runs on ::before */
}

.service__timer::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 8px solid var(--service-accent);
  box-sizing: border-box;
  clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0);
}

.service__timer.is-animating::before {
  animation: serviceLoader var(--service-loader-duration) linear infinite;
}

@keyframes serviceLoader {
  0%   { clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0); }
  25%  { clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0); }
  50%  { clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%); }
  75%  { clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%); }
  100% { clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0); }
}

.service__dots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 0;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 12px;
  min-height: 46px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.75);
  color: #0f0f1a;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-chip:hover,
.service-chip:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
  border-color: var(--chip-accent, var(--service-accent));
}

.service-chip.is-active {
  background: var(--chip-accent, var(--service-accent));
  color: var(--chip-ink, var(--service-accent-ink));
  border-color: transparent;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

.block--gallery {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.05), transparent 28%),
    radial-gradient(circle at 76% 14%, rgba(255, 255, 255, 0.03), transparent 24%),
    #0b0d22;
  padding: 76px 0 0;
}

@media (min-width: 1025px) {
  .block--packages {
    padding: clamp(28px, 3.2vh, 40px) 0 clamp(24px, 3vh, 34px);
  }

  .packages__intro {
    margin-bottom: 14px;
  }

  .packages__intro h3 {
    font-size: clamp(28px, 3.6vw, 42px);
    margin: 2px 0 6px;
    line-height: 0.98;
  }

  .packages {
    align-items: stretch;
    max-height: calc(80vh - 118px);
  }

  .package-card {
    max-height: 100%;
    padding: 12px 16px 16px;
    gap: 8px;
  }

  .package-card__cover {
    height: 76px;
    border-radius: 16px;
    padding: 10px;
  }

  .package-card__count,
  .package-card__tag {
    min-height: 24px;
    padding: 0 10px;
    font-size: 11px;
  }

  .package-card h3 {
    font-size: clamp(19px, 1.8vw, 26px);
  }

  .package-card .package-copy {
    min-height: 0;
    font-size: 12px;
    line-height: 1.38;
  }

  .package-accordion {
    margin-top: 0;
    overflow: auto;
    scrollbar-width: none;
  }

  .package-accordion::-webkit-scrollbar {
    display: none;
  }

  .package-accordion__trigger {
    padding: 9px 0;
    font-size: 11px;
  }

  .package-accordion__panel {
    padding: 0 0 8px;
  }

  .package-accordion__panel p {
    font-size: 11px;
    line-height: 1.38;
  }

  .block--gallery {
    min-height: 90vh;
    padding-top: clamp(44px, 5vh, 64px);
  }

  .gallery__intro {
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .gallery__intro h3 {
    font-size: clamp(28px, 3.2vw, 46px);
    margin: 6px 0 8px;
  }

  .gallery__intro .lede {
    font-size: 15px;
    line-height: 1.5;
  }

  .gallery__track {
    padding-top: 8px;
    padding-bottom: 14px;
  }

  .tile {
    flex-basis: clamp(380px, 32vw, 540px);
    aspect-ratio: 16 / 8;
    padding: 18px 20px 20px;
  }

  .tile__title {
    font-size: clamp(20px, 1.6vw, 28px);
  }

  .tile__copy {
    font-size: 14px;
    min-height: calc(1.45em * 2);
    -webkit-line-clamp: 2;
  }

  .reels-showcase {
    margin-top: 24px;
    padding-bottom: 0;
  }

  .reels-showcase__tabs {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .reels-showcase__layout {
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 18px;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  }

  .reels-stage__title {
    font-size: clamp(34px, 4.2vw, 64px);
    margin: 4px 0 12px;
  }

  .reels-stage__copy {
    max-width: 28ch;
    font-size: 15px;
    line-height: 1.45;
  }

  .reels-stage__track {
    gap: 18px;
    padding-right: calc(var(--reels-shell-gutter) + 14px);
    padding-bottom: 12px;
  }

  .reel-card {
    flex-basis: clamp(180px, 14vw, 248px);
  }

  .reels-showcase__progress {
    padding-bottom: 16px;
  }
}
.block--packages {
  position: relative;
  background: var(--ivory) url("../img/white-bleached-wood-textured-background.jpg") center top / 760px auto repeat;
  padding: 72px 0 80px;
  overflow: hidden;
}

.block--packages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 237, 217, 0.7);
  pointer-events: none;
}

.block--packages::after {
  content: none;
  pointer-events: none;
}

.packages__intro {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 34px;
  padding: 0 6px;
  text-align: center;
}

.packages__intro h3 {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: -0.015em;
  margin: 10px 0 12px;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.02;
  font-weight: 700;
  text-wrap: balance;
  color: #0b0b1c;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.packages__intro .lede {
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
  max-width: 56ch;
  text-align: center;
}

.packages__intro .eyebrow {
  font-size: 15px;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: #15162a;
}

.block--cta-mini {
  background: url("../img/fondo3.png") center/cover no-repeat;
  color: #fff;
  padding: 32px 0;
  max-height: 15vh;
  min-height: 120px;
  transition: box-shadow 0.2s ease;
}

#cta-mini {
  width: 100%;
}

#cta-mini.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 95;
  max-height: none;
  min-height: 0;
  padding: 10px 0 14px;
  box-shadow: none;
  animation: ctaMiniSlideUp 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, opacity;
}

#cta-mini.is-fixed .cta-mini {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  width: min(92vw, 1320px);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0 10px 0;
}

#cta-mini.is-fixed .cta-mini__text {
  display: flex;
  align-items: center;
  min-width: 0;
}

#cta-mini.is-fixed .cta-mini__text .eyebrow,
#cta-mini.is-fixed .cta-mini__text .lede {
  display: none;
}

#cta-mini.is-fixed .cta-mini__text h3 {
  margin: 0;
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.14;
  color: #fff;
  max-width: 48ch;
  text-wrap: balance;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#cta-mini.is-fixed .cta-mini__actions {
  display: flex;
  flex-wrap: nowrap;
  width: auto;
  gap: 8px;
  justify-content: flex-end;
  align-self: center;
}

#cta-mini.is-fixed .cta-mini__actions .cta-mini__icon-link {
  width: 48px;
  height: 48px;
}

#cta-mini.is-fixed .cta-mini__actions .cta-mini__icon-link svg {
  width: 21px;
  height: 21px;
}

body.has-fixed-mini .whatsapp-floating {
  bottom: 118px;
}

#cta-mini.is-fixed.is-leaving {
  animation: ctaMiniSlideDown 220ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes ctaMiniSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes ctaMiniSlideDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}

.cta-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.cta-mini__text h3 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
}

.cta-mini__text .lede {
  margin: 6px 0 0;
  max-width: 46ch;
  font-size: 16px;
}

#cta-mini-spacer {
  display: block;
  width: 100%;
  height: 94px;
  pointer-events: none;
}

.cta-mini-marker {
  height: 1px;
  width: 100%;
  pointer-events: none;
}

@media (min-width: 1025px) {
  .topbar__content {
    --menu-rule-width: clamp(568px, calc(16.43vw + 329px), 650px);
    padding-left: max(24px, 20%);
    padding-right: clamp(72px, 6vw, 120px);
    gap: clamp(10px, 1vw, 16px);
  }

  .brand {
    position: static;
    transform: none;
    min-width: 0;
    margin-left: -145px;
    margin-right: 80px;
    z-index: 2;
    flex: 0 0 auto;
  }

  .brand__logo {
    height: clamp(30px, 2vw, 38px);
    width: auto;
  }

  .menu {
    gap: 35px;
    margin-left: -50px;
  }

  .menu a {
    font-size: 15px;
    padding: 8px 10px;
  }

  .menu__cta {
    padding: 11px 18px;
  }

  #cta-mini {
    display: none;
  }

  #cta-mini.is-fixed {
    display: flex;
  }
}

.cta-mini__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.cta-mini__icon-link {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: 0 12px 24px rgba(3, 7, 22, 0.24);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-mini__icon-link:hover,
.cta-mini__icon-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 16px 28px rgba(3, 7, 22, 0.28);
}

.cta-mini__icon-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.packages {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  align-items: start;
}

.package-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(24, 24, 34, 0.98), rgba(17, 17, 27, 0.98)),
    rgba(15, 15, 24, 0.96);
  border-radius: 28px;
  padding: 18px 22px 24px;
  box-shadow: 0 20px 40px rgba(7, 9, 24, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  isolation: isolate;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%),
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.08), transparent 34%);
  pointer-events: none;
  z-index: 0;
}

.package-card > * {
  position: relative;
  z-index: 1;
}

.package-card--base {
  --package-accent: var(--blue);
}

.package-card--growth {
  --package-accent: var(--yellow);
}

.package-card--scale {
  --package-accent: var(--pink);
}

.package-card__cover {
  position: relative;
  height: 96px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(12, 12, 24, 0.18), rgba(12, 12, 24, 0.72)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 7px,
      rgba(255, 255, 255, 0.015) 7px,
      rgba(255, 255, 255, 0.015) 14px
    ),
    #1a1b30;
}

.package-card__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 38%);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.package-card--base .package-card__cover {
  background:
    linear-gradient(180deg, rgba(9, 13, 30, 0.12), rgba(9, 13, 30, 0.76)),
    radial-gradient(circle at 78% 22%, rgba(52, 116, 255, 0.3), transparent 30%),
    linear-gradient(135deg, rgba(52, 116, 255, 0.3), transparent 52%),
    #11152f;
}

.package-card--growth .package-card__cover {
  background:
    linear-gradient(180deg, rgba(12, 12, 24, 0.12), rgba(12, 12, 24, 0.74)),
    radial-gradient(circle at 80% 18%, rgba(248, 214, 72, 0.36), transparent 28%),
    linear-gradient(135deg, rgba(248, 214, 72, 0.18), transparent 54%),
    #181b3a;
}

.package-card--scale .package-card__cover {
  background:
    linear-gradient(180deg, rgba(12, 12, 24, 0.12), rgba(12, 12, 24, 0.74)),
    radial-gradient(circle at 78% 18%, rgba(255, 42, 111, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(255, 42, 111, 0.18), transparent 52%),
    #18172f;
}

.package-card__cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--package-accent, var(--yellow));
}

.package-card__count,
.package-card__tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.package-card__count {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.package-card__tag {
  background: var(--package-accent, var(--yellow));
  color: #0b0b1c;
}

.package-card .eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 900;
  color: var(--package-accent, var(--yellow));
  margin: 2px 0 0;
}

.package-card h3 {
  font-family: var(--font-brand);
  text-transform: uppercase;
  letter-spacing: 0.035em;
  margin: 0;
  font-size: clamp(23px, 2.8vw, 32px);
  min-height: 0;
  display: grid;
  gap: 2px;
  color: #f7f4e8;
  line-height: 0.94;
  width: 100%;
  max-width: 100%;
  text-wrap: unset;
}

.package-card h3 span {
  display: block;
}

.package-card .package-copy {
  margin: 0;
  color: rgba(244, 237, 217, 0.76);
  line-height: 1.6;
  min-height: 5.2em;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
}

.package-accordion {
  margin-top: 6px;
  display: grid;
  gap: 0;
  flex: 1;
  min-height: 0;
  overflow: visible;
  padding-right: 0;
}

.package-accordion__item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.package-accordion__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-accordion__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: #f7f4e8;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  cursor: pointer;
}

.package-accordion__trigger span:first-child {
  flex: 1;
}

.package-accordion__trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.28);
  outline-offset: 6px;
  border-radius: 10px;
}

.package-accordion__icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
  margin-right: 4px;
}

.package-accordion__trigger[aria-expanded="true"] .package-accordion__icon {
  transform: rotate(225deg);
}

.package-accordion__panel {
  padding: 0 0 14px;
}

.package-accordion__panel p {
  margin: 0;
  color: rgba(244, 237, 217, 0.64);
  font-size: 13px;
  line-height: 1.6;
}

.package-card--featured {
  position: relative;
  background:
    linear-gradient(180deg, rgba(18, 22, 52, 0.98), rgba(17, 18, 40, 0.98)),
    rgba(15, 18, 46, 0.96);
  border: 1px solid rgba(248, 214, 72, 0.7);
  box-shadow: 0 24px 42px rgba(10, 12, 36, 0.14);
}

.package-card--featured .eyebrow {
  color: var(--yellow);
}

.package-card--featured h3 {
  color: #fff7d0;
}

.package-card--featured .package-copy {
  color: rgba(244, 237, 217, 0.82);
}

.package-card--featured .package-accordion__item {
  border-top-color: rgba(248, 214, 72, 0.18);
}

.package-card--featured .package-accordion__item:last-child {
  border-bottom-color: rgba(248, 214, 72, 0.18);
}

.package-card--featured .package-accordion__trigger {
  color: #fff7d0;
}

.package-card--featured .package-accordion__panel p {
  color: rgba(244, 237, 217, 0.74);
}

.package-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(11, 11, 28, 0.14);
  background: #0b0b1c;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.package-card__cta:hover,
.package-card__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.22);
}

.package-card--featured .package-card__cta {
  background: #1ebe6c;
  color: #fff;
  border-color: #1ebe6c;
}

.gallery {
  position: relative;
  max-width: none;
  margin: 0 auto;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-bottom: 0;
}

.gallery__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: auto;
  padding-top: 12px;
  padding-right: 0;
  padding-bottom: 20px;
  padding-left: max(36px, calc((100vw - min(1600px, calc(100vw - 72px))) / 2));
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.block--gallery .gallery__intro.container {
  width: min(1600px, calc(100vw - 72px));
}

.block--gallery > .gallery.container {
  width: 100vw;
  max-width: none;
}

.gallery__intro {
  max-width: none;
  margin: 0 auto 28px;
  text-align: center;
  position: relative;
  padding-right: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery__intro-top {
  display: flex;
  justify-content: center;
}

.gallery__intro h3 {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: -0.01em;
  margin: 8px 0 12px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  text-wrap: nowrap;
  display: inline-block;
  max-width: none;
}

.gallery__intro .lede {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  font-size: 16px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.gallery__intro .eyebrow {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.gallery__nav {
  display: none;
}

.gallery__arrow {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gallery__arrow:hover,
.gallery__arrow:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.gallery__arrow svg {
  width: 22px;
  height: 22px;
  display: block;
}

.gallery__arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reels-showcase {
  --reels-bg: var(--purple);
  --reels-overlay: rgba(11, 11, 28, 0.08);
  --reels-accent: rgba(255, 255, 255, 0.92);
  --reels-text: #ffffff;
  --reels-copy: rgba(255, 255, 255, 0.78);
  --reels-tab-muted: rgba(255, 255, 255, 0.54);
  --reels-tab-border: rgba(255, 255, 255, 0.14);
  --reels-tab-icon-filter: none;
  --reels-arrow-bg: rgba(11, 14, 38, 0.72);
  --reels-arrow-bg-hover: rgba(21, 28, 72, 0.88);
  --reels-progress-track: rgba(255, 255, 255, 0.16);
  --reels-progress-core: #071026;
  --reels-chip-bg: rgba(30, 34, 44, 0.56);
  --reels-card-fade-bottom: rgba(0, 0, 0, 0.5);
  --reels-ui-surface: rgba(68, 74, 84, 0.58);
  --reels-ui-surface-strong: rgba(52, 58, 68, 0.72);
  --reels-ui-ink: #ffffff;
  --reel-card-1: #0b0b1c;
  --reel-card-2: #3474ff;
  --reel-card-3: #6a2be6;
  --reel-card-4: #123b8c;
  --reel-card-5: #0f5d79;
  --reels-shell-width: min(1600px, calc(100vw - 72px));
  --reels-shell-gutter: max(36px, calc((100vw - var(--reels-shell-width)) / 2));
  margin-top: 42px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 0 28px;
  overflow: hidden;
  position: relative;
  background: var(--reels-bg);
}

.reels-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--reels-overlay);
  pointer-events: none;
}

.reels-showcase__tabs {
  position: relative;
  z-index: 1;
  width: var(--reels-shell-width);
  margin: 0 auto;
  padding: 22px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--reels-tab-border);
}

.reels-showcase__tabs::-webkit-scrollbar {
  display: none;
}

.reels-showcase__layout {
  position: relative;
  z-index: 1;
  width: auto;
  margin: 0 0 0 var(--reels-shell-gutter);
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 44px 0 30px 0;
}

.reels-client {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--reels-tab-muted);
  cursor: pointer;
  flex: 0 0 auto;
  position: relative;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.reels-client:hover,
.reels-client:focus-visible,
.reels-client.is-active {
  color: var(--reels-text);
  opacity: 1;
}

.reels-client:active,
.reels-client.is-active {
  background: transparent;
}

.reels-client:focus-visible {
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--reels-accent) 64%, white 36%);
}

.reels-client::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: var(--reels-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.reels-client.is-active::after,
.reels-client:hover::after,
.reels-client:focus-visible::after {
  transform: scaleX(1);
}

.reels-client__label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.reels-client__label--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
}

.reels-client__label--icon img {
  display: block;
  height: 28px;
  width: auto;
  opacity: 0.54;
  filter: var(--reels-tab-icon-filter);
  transition: opacity 0.2s ease;
}

.reels-client__label--telmax img {
  height: 24px;
}

.reels-client__label--lf img {
  height: 30px;
}

.reels-client__label--tuki img {
  height: 34px;
  margin-top: -5px;
  margin-bottom: -5px;
}

.reels-client__label--martini img {
  height: 35px;
}

.reels-client__label--aaeta img {
  height: 32px;
}

.reels-client__label--cosanostra img {
  height: 28px;
}

.reels-client:hover .reels-client__label--icon img,
.reels-client:focus-visible .reels-client__label--icon img,
.reels-client.is-active .reels-client__label--icon img {
  opacity: 0.96;
}

.reels-client__label--tuki {
  font-weight: 900;
  letter-spacing: 0.12em;
}

.reels-client__label--lf {
  justify-content: center;
}

.reels-client__label--martini {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.reels-client__label--aaeta {
  font-size: 13px;
  letter-spacing: 0.11em;
}

.reels-client__label--bao {
  font-weight: 900;
  letter-spacing: 0.14em;
}

.reels-client__label--soro {
  font-size: 13px;
  letter-spacing: 0.09em;
}

.reels-client__label--cosanostra {
  font-size: 13px;
  letter-spacing: 0.09em;
}

.reels-stage {
  display: contents;
}

.reels-stage__detail {
  padding: 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.reels-stage__kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
  color: var(--reels-copy);
}

.reels-stage__title {
  margin: 8px 0 18px;
  color: var(--reels-text);
  font-family: var(--font-display);
  font-size: clamp(46px, 5.8vw, 90px);
  letter-spacing: 0.06em;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}

.reels-stage__title--logo {
  margin: 0 0 10px;
  width: 100%;
}

.reels-stage__title img {
  display: block;
  width: clamp(290px, 34vw, 500px);
  height: auto;
  max-height: 210px;
  object-fit: contain;
  object-position: center;
  margin-left: auto;
  margin-right: auto;
}

.reels-stage__title-logo--tuki {
  margin-top: -22px;
  margin-bottom: -22px;
}

.reels-stage__title-logo--telmax {
  max-height: 176px;
}

.reels-stage__title-logo--lf {
  max-height: 182px;
  margin-top: -8px;
  margin-bottom: -10px;
  filter: brightness(0) saturate(100%);
}

.reels-stage__title-logo--martini {
  max-height: 166px;
  margin-top: -6px;
  margin-bottom: -10px;
}

.reels-stage__title-logo--aaeta {
  max-height: 178px;
  margin-top: -4px;
  margin-bottom: -8px;
}

.reels-stage__title-logo--cosanostra {
  max-height: 186px;
  margin-top: -4px;
  margin-bottom: -8px;
}

.reels-stage__copy {
  margin: 0;
  max-width: 300px;
  color: var(--reels-copy);
  line-height: 1.55;
}

.reels-stage__handle {
  margin: -2px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--reels-text);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.reels-stage__handle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

.reels-stage__viewport {
  position: relative;
  min-width: 0;
  margin-right: calc(var(--reels-shell-gutter) * -1);
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.reels-stage__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 16px calc(var(--reels-shell-gutter) + 96px) 28px 0;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reels-stage__track::-webkit-scrollbar {
  display: none;
}

.reels-stage__viewport::before,
.reels-stage__viewport::after {
  display: none;
}

.reels-stage__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--reels-text);
  background: var(--reels-arrow-bg);
  box-shadow: 0 14px 30px rgba(1, 4, 18, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
  backdrop-filter: blur(8px);
}

.reels-stage__viewport:hover .reels-stage__arrow,
.reels-stage__viewport:focus-within .reels-stage__arrow {
  transform: translateY(-50%) scale(1);
}

.reels-stage__viewport.can-scroll-prev:hover .reels-stage__arrow--prev,
.reels-showcase:hover .reels-stage__viewport.can-scroll-prev .reels-stage__arrow--prev,
.reels-stage__viewport.can-scroll-prev:focus-within .reels-stage__arrow--prev,
.reels-stage__viewport.can-scroll-next:hover .reels-stage__arrow--next,
.reels-showcase:hover .reels-stage__viewport.can-scroll-next .reels-stage__arrow--next,
.reels-stage__viewport.can-scroll-next:focus-within .reels-stage__arrow--next {
  opacity: 1;
  pointer-events: auto;
}

.reels-stage__arrow:hover,
.reels-stage__arrow:focus-visible {
  background: var(--reels-arrow-bg-hover);
}

.reels-stage__arrow--prev {
  left: 14px;
}

.reels-stage__arrow--next {
  right: calc(var(--reels-shell-gutter) + 14px);
}

.reels-stage__arrow svg {
  width: 24px;
  height: 24px;
}

.reels-stage__arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reels-showcase__progress {
  position: relative;
  z-index: 1;
  width: var(--reels-shell-width);
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  padding: 0 0 26px;
}

.reels-showcase__progress-ring {
  --reels-progress: 1;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: conic-gradient(var(--reels-accent) calc(var(--reels-progress) * 1turn), var(--reels-progress-track) 0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.reels-showcase__progress-ring::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--reels-progress-core);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.reel-card {
  flex: 0 0 clamp(208px, 17vw, 286px);
  min-width: 0;
  position: relative;
  scroll-snap-align: start;
  transition: transform 0.1s ease-out, opacity 0.2s ease, filter 0.2s ease, margin 0.1s ease-out;
}

.reel-card:not(.reel-card--active):hover,
.reel-card:not(.reel-card--active):focus-within {
  transform: none;
}

.reel-card__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  padding: 16px;
  background: var(--reel-card-1);
  border: 0;
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}

.reel-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.reel-card--video .reel-card__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, var(--reels-card-fade-bottom) 100%);
  pointer-events: none;
  z-index: 1;
}

.reel-card--active {
  transform: scale(1.04);
  z-index: 3;
  margin-right: 14px;
}

.reel-card:first-child.reel-card--active {
  transform-origin: left center;
}

.reels-stage__track.has-active-reel .reel-card:not(.reel-card--active) .reel-card__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 14, 0.34);
  pointer-events: none;
  z-index: 1;
}

.reel-card--active .reel-card__frame {
  box-shadow: none;
}

.reel-card:nth-child(2) .reel-card__frame {
  background: var(--reel-card-2);
}

.reel-card:nth-child(3) .reel-card__frame {
  background: var(--reel-card-3);
}

.reel-card:nth-child(4) .reel-card__frame {
  background: var(--reel-card-4);
}

.reel-card:nth-child(5) .reel-card__frame {
  background: var(--reel-card-5);
}

.reel-card__play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--reels-ui-surface);
  border: 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  appearance: none;
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.reel-card__play:hover,
.reel-card__play:focus-visible {
  background: var(--reels-ui-surface);
}

.reel-card__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--reels-ui-ink);
}

.reel-card--active .reel-card__play {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

.reel-card__meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: #ffffff;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.38);
}

.reel-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}

.reel-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reel-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--reels-ui-surface);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.reel-card__chip--views svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.reel-card__chip--platform {
  justify-content: center;
  min-width: 38px;
  padding: 0 10px;
}

.reel-card__chip--platform svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.tile {
  --tile-accent: #ffffff;
  --tile-ink: #0b0b1c;
  flex: 0 0 clamp(440px, 38vw, 620px);
  min-width: 0;
  scroll-snap-align: none;
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 8.8;
  border-radius: 22px;
  overflow: hidden;
  background: #12142a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 22px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.tile--service-social {
  --tile-accent: #ffffff;
  --tile-ink: #0b0b1c;
}

.tile--service-web {
  --tile-accent: #ffffff;
  --tile-ink: #0b0b1c;
}

.tile--c21,
.tile--telmax,
.tile--tuki {
  background:
    linear-gradient(180deg, rgba(9, 13, 30, 0.22), rgba(9, 13, 30, 0.78)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 8px,
      rgba(255, 255, 255, 0.01) 8px,
      rgba(255, 255, 255, 0.01) 16px
    ),
    #0f142b;
}

.tile:hover,
.tile:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.26);
}

.tile__content {
  margin-top: 12px;
  width: 100%;
  display: grid;
  gap: 8px;
  z-index: 2;
  max-width: 34ch;
}

.tile__title {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  display: block;
  line-height: 1;
  min-height: 1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tile__meta {
  position: absolute;
  right: 14px;
  top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 2;
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.09), transparent 44%);
  opacity: 1;
  pointer-events: none;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 12, 30, 0.08) 16%, rgba(6, 9, 20, 0.92) 100%);
  pointer-events: none;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.tile__badge {
  position: relative;
  top: auto;
  left: auto;
  display: inline-flex;
  align-items: center;
  background: #f8d648;
  color: #0b0b1c;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  z-index: 2;
}

.tile__copy {
  margin: 0;
  display: -webkit-box;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 0.88vw, 16px);
  line-height: 1.45;
  max-width: 34ch;
  min-height: calc(1.45em * 3);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.tile:hover,
.tile:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(6, 10, 30, 0.28);
}

.tile:hover::after,
.tile:focus-within::after {
  opacity: 0.88;
}

body.has-project-sheet {
  overflow: hidden;
}

.project-sheet {
  position: fixed;
  inset: 0;
  z-index: 180;
  pointer-events: none;
}

.project-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 20, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.project-sheet__panel {
  position: absolute;
  --sheet-gap: 72px;
  left: 50%;
  width: min(calc(100% - (var(--sheet-gap) * 2)), 1180px);
  top: var(--sheet-gap);
  bottom: 0;
  background: #f6f3eb;
  border-radius: 24px 24px 0 0;
  border: 1px solid rgba(11, 11, 28, 0.1);
  box-shadow: 0 -20px 46px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, 102%);
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto;
  padding: 26px 26px 40px;
}

.project-sheet.is-open {
  pointer-events: auto;
}

.project-sheet.is-open .project-sheet__backdrop {
  opacity: 1;
}

.project-sheet.is-open .project-sheet__panel {
  transform: translate(-50%, 0);
}

.project-sheet__close {
  position: sticky;
  top: 15px;
  margin-left: auto;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(11, 11, 28, 0.16);
  background: rgba(246, 243, 235, 0.94);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.project-sheet__close span {
  grid-area: 1 / 1;
  width: 16px;
  height: 2px;
  background: #0b0b1c;
  border-radius: 2px;
}

.project-sheet__close span:first-child { transform: rotate(45deg); }
.project-sheet__close span:last-child { transform: rotate(-45deg); }

.project-sheet__brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 18px auto 10px;
  width: fit-content;
}

.project-sheet__brand img {
  width: 100px;
  height: auto;
  filter: brightness(0);
}

.project-sheet__hero {
  max-width: 860px;
  margin: 6px auto 18px;
}

.project-sheet__hero h3 {
  margin: 6px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.04;
  text-transform: none;
  letter-spacing: -0.01em;
}

.project-sheet__hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.project-sheet__article {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  padding-bottom: 56px;
}

.project-sheet__article h4 {
  margin: 6px 0 2px;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.08;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.project-sheet__article h5 {
  margin: 8px 0 0;
  font-size: 18px;
  font-family: var(--font-display);
}

.project-sheet__article p,
.project-sheet__article li {
  margin: 0 0 2px;
  color: var(--muted);
  line-height: 1.6;
}

.project-sheet__article ul,
.project-sheet__article ol {
  margin: 2px 0 4px;
  padding-left: 22px;
  display: grid;
  gap: 6px;
}

.project-sheet__kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 10px;
}

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

.project-sheet__kpis--hero {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
  align-items: stretch;
}

.project-sheet__kpi {
  margin: 0;
  background: #faf8f1;
  border: 1px solid rgba(11, 11, 28, 0.12);
  border-radius: 14px;
  padding: 14px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.project-sheet__kpi::before {
  display: none;
}

.project-sheet__kpis--hero .project-sheet__kpi {
  display: flex;
  flex-direction: column;
  min-height: 170px;
}

.project-sheet__kpi-label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 11, 28, 0.6);
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.2;
  min-height: 2.4em;
}

.project-sheet__kpi-value {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 0.95;
  color: #0b0b1c;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow-wrap: normal;
  font-variant-numeric: tabular-nums;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

.project-sheet__kpis--hero .project-sheet__kpi:nth-child(1) .project-sheet__kpi-value {
  color: var(--navy);
}

.project-sheet__kpis--hero .project-sheet__kpi:nth-child(2) .project-sheet__kpi-value {
  color: var(--navy);
}

.project-sheet__kpis--hero .project-sheet__kpi:nth-child(3) .project-sheet__kpi-value {
  color: var(--navy);
}

.project-sheet__kpi-note {
  margin: 4px 0 12px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11, 11, 28, 0.58);
  font-weight: 700;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.project-sheet__kpi-sub {
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.3;
  color: rgba(11, 11, 28, 0.56);
  font-weight: 700;
  margin-top: auto;
  white-space: normal;
  letter-spacing: 0;
}

.project-sheet__highlights {
  margin: 10px 0 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.project-sheet__highlight {
  background: #faf8f1;
  border: 1px solid rgba(11, 11, 28, 0.12);
  border-radius: 12px;
  padding: 12px 12px 11px;
}

.project-sheet__highlight-kicker {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11, 11, 28, 0.58);
  font-weight: 700;
}

.project-sheet__highlight-title {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.12;
  color: #0b0b1c;
  font-weight: 700;
}

.project-sheet__highlight-copy {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(11, 11, 28, 0.72);
}

@media (max-width: 1180px) {
  .project-sheet__kpis--hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-sheet__kpis--hero .project-sheet__kpi {
    min-height: 152px;
  }

  .project-sheet__highlights {
    grid-template-columns: 1fr;
  }
}

.project-sheet__sep {
  border: 0;
  border-top: 1px dashed rgba(11, 11, 28, 0.18);
  margin: 4px 0;
}

.project-sheet__media {
  margin: 2px 0 6px;
}

.project-sheet__media-box {
  width: 100%;
  min-height: 220px;
  border-radius: 12px;
  border: 1px dashed rgba(11, 11, 28, 0.24);
  background: repeating-linear-gradient(
    -45deg,
    rgba(11, 11, 28, 0.04) 0,
    rgba(11, 11, 28, 0.04) 12px,
    rgba(11, 11, 28, 0.01) 12px,
    rgba(11, 11, 28, 0.01) 24px
  );
  display: grid;
  place-items: center;
  color: rgba(11, 11, 28, 0.5);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-sheet__media figcaption {
  margin-top: 8px;
  color: rgba(11, 11, 28, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.project-sheet__cta {
  margin: 10px auto 0;
  max-width: 860px;
  border-radius: 16px;
  padding: 22px 22px 20px;
  background: url("../img/fondo3.png") center/cover no-repeat;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 30px rgba(11, 11, 28, 0.2);
}

.project-sheet__cta h4 {
  margin: 8px 0 0;
  font-family: var(--font-brand);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.96;
  font-size: clamp(34px, 5vw, 58px);
}

.project-sheet__cta-actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 10px;
}

.project-sheet__cta .btn--whatsapp,
.project-sheet__cta .btn--mail {
  min-height: 52px;
  padding: 14px 18px;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 10px;
  box-shadow: none;
}


.block--cta {
  background: url("../img/fondo3.png") center/cover no-repeat;
  color: #fff;
  padding: 64px 0 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block--cta::after,
.block--cta::before {
  display: none;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.cta__text h2 {
  font-family: var(--font-brand);
  font-size: clamp(65px, 9vw, 97px);
  margin: 6px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-align: center;
}

.cta__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-width: 240px;
  justify-items: stretch;
  width: 50%;
}

.btn--whatsapp,
.btn--mail {
  padding: 22px 36px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow);
}

.btn--whatsapp { background: #1ebe6c; }
.btn--mail { background: #f44336; }

.footer {
  padding: 0;
  margin-top: -65px;
  position: relative;
  z-index: 2;
}

.footer__notch {
  display: block;
  width: 100%;
  height: auto;
}

.footer__social {
  position: absolute;
  left: 82.35%;
  top: 8px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  white-space: nowrap;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  transition: transform 0.2s ease, color 0.2s ease;
  transform-origin: 50% 100%;
}

.footer__social-link svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  transform: translateY(-1px) scale(1.2);
  color: #dfe6ff;
}

.whatsapp-floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ebe6c);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  z-index: 120;
  transition: bottom 0.24s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-floating:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.28);
}

.whatsapp-floating span {
  display: block;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.whatsapp-floating svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .whatsapp-floating {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 26px;
  }
}

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

  .topbar__shell {
    padding: 0 14px;
    margin-top: 0;
    border-radius: 0;
    -webkit-mask-image: none;
    mask-image: none;
    background: rgba(6, 8, 20, 0.78);
    overflow: visible;
  }

  .topbar__content {
    width: 100%;
    padding: 0;
    gap: 10px;
    justify-content: space-between;
  }

  .brand {
    margin-left: 0;
    min-width: 44px;
    z-index: 2;
  }

  .brand__logo {
    margin-left: 0;
    height: 34px;
  }

  .menu {
    margin-left: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 340px);
    height: 100svh;
    background: rgba(7, 8, 21, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 92px 16px 22px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 160ms ease;
    display: flex;
    z-index: 120;
  }

  .menu.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu a {
    width: 100%;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .menu__access {
    display: inline-flex;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
  }

  .menu__cta {
    margin-top: 6px;
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
    z-index: 121;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero__intranet {
    display: none;
  }

  .hero__video {
    border-radius: 0;
  }

  .block--services {
    min-height: auto;
    padding: 26px 0 22px;
    align-items: flex-start;
  }

  .block--cta-mini {
    max-height: none;
    min-height: 0;
    padding: 22px 0;
  }

  .cta-mini {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-mini__text {
    padding-top: 8px;
  }

  .cta-mini__text h3 {
    font-size: clamp(26px, 6vw, 34px);
    line-height: 1.08;
  }

  .block--pink .block__grid--two {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .block__grid--split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .panel--reference {
    width: min(100%, 440px);
    margin: 0 auto 6px;
    aspect-ratio: 16 / 10;
  }

  .panel--reference span {
    font-size: clamp(30px, 6vw, 52px);
    max-width: 11ch;
  }

  .panel {
    padding: 20px;
  }

  .panel--service {
    align-content: start;
  }

  .panel--service h3,
  .panel--service .lede {
    min-height: 0;
    max-width: none;
  }

  .panel--service h3 {
    display: block;
    font-size: clamp(30px, 7.2vw, 40px);
    line-height: 1.02;
    margin: 2px 0 6px;
    min-height: 0;
    overflow: visible;
  }

  .panel--service .lede {
    display: block;
    overflow: visible;
    line-height: 1.45;
  }

  .service__dots {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(130px, auto);
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 20px 2px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service__dots::-webkit-scrollbar {
    display: none;
  }

  .service-chip {
    min-height: 42px;
    padding: 10px 10px;
    font-size: 12px;
    white-space: nowrap;
    line-height: 1.1;
    letter-spacing: 0.01em;
    width: auto;
  }

  .service__timer {
    right: 8px;
    bottom: -20px;
  }

  .packages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    overflow: visible;
    padding: 2px 0 10px;
  }

  .package-card,
  .package-card--featured {
    height: auto;
  }

  .package-accordion {
    overflow: visible;
    padding-right: 0;
  }

  .package-card {
    padding: 16px 18px 20px;
    width: 100%;
    min-width: 0;
  }

  .package-card__cover {
    height: 96px;
    border-radius: 18px;
  }

  .package-card--featured,
  .package-card--featured:hover {
    transform: none;
  }

  .block--gallery .gallery__intro.container {
    width: min(1400px, calc(100vw - 48px));
  }

  .block--gallery > .gallery.container {
    width: 100vw;
    max-width: none;
  }

  .gallery__intro {
    padding-right: 0;
  }

  .gallery__track {
    gap: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .reels-showcase {
    padding-bottom: 18px;
    --reels-shell-width: min(100vw - 48px, 1400px);
    --reels-shell-gutter: 24px;
  }

  .reels-showcase__tabs,
  .reels-showcase__layout {
    width: var(--reels-shell-width);
  }

  .reels-showcase__tabs {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 18px;
    padding-bottom: 16px;
  }

  .reels-client {
    padding-bottom: 8px;
  }

  .reels-client__label,
  .reels-client__label--martini,
  .reels-client__label--aaeta,
  .reels-client__label--soro,
  .reels-client__label--cosanostra {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .reels-showcase__layout {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 28px;
    margin-left: auto;
    margin-right: auto;
  }

  .reels-showcase__progress {
    width: min(100vw - 48px, 1400px);
    padding-bottom: 22px;
  }

  .reels-stage__detail {
    text-align: center;
    justify-items: center;
  }

  .reels-stage__copy {
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
  }

  .reels-stage__title img {
    width: min(66vw, 300px);
    margin-left: auto;
    margin-right: auto;
  }

  .reels-stage__viewport {
    overflow: hidden;
  }

  .tile {
    flex-basis: min(420px, 72vw);
    aspect-ratio: 4 / 4.8;
  }

  .gallery__intro h3 {
    font-size: clamp(28px, 5vw, 38px);
    white-space: normal;
    text-wrap: balance;
  }

  .tile__title {
    font-size: clamp(18px, 2.1vw, 26px);
  }

  .tile__copy {
    font-size: 14px;
  }

  .gallery__arrow {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .project-sheet__panel {
    --sheet-gap: 24px;
    width: min(calc(100% - (var(--sheet-gap) * 2)), 860px);
    top: var(--sheet-gap);
    padding: 16px 14px 28px;
    border-radius: 20px 20px 0 0;
  }

  .project-sheet__hero h3 {
    font-size: clamp(26px, 7vw, 36px);
  }

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

  .project-sheet__kpis--hero .project-sheet__kpi {
    min-height: 152px;
  }

  .project-sheet__kpi-value {
    font-size: clamp(26px, 6.6vw, 42px);
  }

  .project-sheet__cta h4 {
    font-size: clamp(30px, 8vw, 46px);
  }

  #cta-mini.is-fixed-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    padding: 8px 12px 12px;
  }

  #cta-mini.is-fixed-mobile .cta-mini {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    width: min(100%, 760px);
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  #cta-mini.is-fixed-mobile .cta-mini__text {
    padding-top: 0;
    min-width: 0;
  }

  #cta-mini.is-fixed-mobile .cta-mini__text .eyebrow,
  #cta-mini.is-fixed-mobile .cta-mini__text .lede {
    display: none;
  }

  #cta-mini.is-fixed-mobile .cta-mini__text h3 {
    margin: 0;
    font-size: clamp(14px, 2.5vw, 17px);
    line-height: 1.1;
    display: block;
    color: #fff;
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-wrap: balance;
  }

  #cta-mini.is-fixed-mobile .cta-mini__actions {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 6px;
    align-self: end;
  }

  #cta-mini.is-fixed-mobile .cta-mini__actions .cta-mini__icon-link {
    width: 40px;
    height: 40px;
  }

  #cta-mini.is-fixed-mobile .cta-mini__actions .cta-mini__icon-link svg {
    width: 17px;
    height: 17px;
  }

  body.has-fixed-mini .whatsapp-floating {
    bottom: 92px;
  }

  #cta-mini.is-fixed + #cta-mini-spacer {
    display: none;
  }

  .btn--pill { width: 100%; justify-content: center; }
  .cta { flex-direction: column; align-items: center; text-align: center; }

  .cta__actions {
    width: 100%;
    max-width: 420px;
    min-width: 0;
  }

  .btn--whatsapp,
  .btn--mail {
    padding: 18px 18px;
    font-size: 16px;
  }

  .footer {
    margin-top: 0;
    padding: 18px 0 20px;
    background: #04061a;
  }

  .footer__notch {
    display: none;
  }

  .footer__social {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    justify-content: center;
    width: 100%;
  }
}

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

  .menu {
    width: min(86vw, 320px);
  }

  .card--text h2 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.02;
  }

  .panel--service h3 {
    font-size: clamp(28px, 8.8vw, 36px);
    line-height: 1.02;
  }

  .packages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    padding: 2px 0 8px;
  }

  .package-card {
    padding: 14px 16px 18px;
    width: 100%;
    min-width: 0;
    border-radius: 16px;
  }

  .package-card--featured {
    height: auto;
  }

  .package-accordion {
    overflow: visible;
    padding-right: 0;
  }

  .package-card__cover {
    height: 84px;
    border-radius: 14px;
    padding: 12px;
  }

  .package-card__count,
  .package-card__tag {
    min-height: 28px;
    padding: 0 12px;
    font-size: 12px;
  }

  .footer__social {
    gap: 6px;
    top: 8px;
  }

  .footer__social-link {
    width: 42px;
    height: 42px;
  }

  .footer__social-link svg {
    width: 24px;
    height: 24px;
  }

  .hero__logo { width: 130px; }
  .block--pink { padding: 54px 0 44px; }
  .panel--reference::after,
  .panel--reference::before { display: none; }
  .gallery__intro-top {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .gallery__nav {
    position: static;
    margin-top: 0;
  }

  .gallery__intro {
    padding-right: 0;
  }

  .reels-showcase {
    margin-top: 30px;
    padding-top: 0;
    padding-bottom: 18px;
    --reels-shell-width: calc(100vw - 24px);
    --reels-shell-gutter: 12px;
  }

  .reels-showcase__tabs {
    width: var(--reels-shell-width);
    padding: 18px 0 14px;
    gap: 10px 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .reels-client {
    padding: 0 2px 8px;
  }

  .reels-client__label,
  .reels-client__label--martini,
  .reels-client__label--aaeta,
  .reels-client__label--soro,
  .reels-client__label--cosanostra,
  .reels-client__label--bao {
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .reels-showcase__layout {
    width: var(--reels-shell-width);
    gap: 16px;
    padding: 22px 0 18px;
    margin-left: auto;
    margin-right: auto;
  }

  .reels-showcase__progress {
    width: calc(100vw - 24px);
    padding-bottom: 18px;
  }

  .reels-stage__detail {
    padding-top: 0;
    text-align: center;
    justify-items: center;
  }

  .reels-stage__title {
    font-size: clamp(28px, 9.8vw, 44px);
    margin-bottom: 12px;
  }

  .reels-stage__title img {
    width: min(66vw, 280px);
    margin-left: auto;
    margin-right: auto;
  }

  .reels-stage__copy {
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
  }

  .reels-stage__track {
    gap: 12px;
    padding-right: 18px;
    padding-top: 12px;
    padding-bottom: 18px;
  }

  .reel-card {
    flex: 0 0 min(72vw, 250px);
  }

  .reels-stage__arrow {
    display: none;
  }

  .reels-showcase__progress-ring {
    width: 20px;
    height: 20px;
  }

  .reels-stage__viewport {
    margin-right: 0;
    overflow: hidden;
  }

  .reel-card__frame {
    border-radius: 20px;
    padding: 14px;
  }

  .reel-card__play {
    width: 42px;
    height: 42px;
  }

  .reel-card__play-icon {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 12px;
  }

  .reel-card__chip {
    min-height: 34px;
    padding: 0 13px;
    font-size: 12px;
  }

  .reel-card__chip--platform {
    min-width: 34px;
    padding: 0 9px;
  }

  .reel-card--active {
    transform: scale(1.03);
    margin-right: 10px;
  }

  .gallery__track {
    gap: 12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .tile {
    flex-basis: calc(100vw - 48px);
    aspect-ratio: 4 / 4.9;
    padding: 14px 14px 16px;
  }

  .gallery__arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 18px;
  }
  .tile__meta {
    display: none;
  }
  .tile__badge {
    top: auto;
    left: auto;
    font-size: 11px;
    letter-spacing: 0.01em;
    padding: 6px 12px;
  }
  .tile__content {
    gap: 6px;
  }
  .tile__title {
    font-size: clamp(22px, 7.4vw, 30px);
    line-height: 1;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .gallery__intro h3 {
    white-space: normal;
    text-wrap: balance;
  }
  .tile__copy {
    font-size: clamp(14px, 4.2vw, 17px);
    line-height: 1.35;
    max-width: 28ch;
    -webkit-line-clamp: 4;
  }
  .project-sheet__panel {
    --sheet-gap: 18px;
    width: calc(100% - (var(--sheet-gap) * 2));
    top: var(--sheet-gap);
    border-radius: 18px 18px 0 0;
    padding: 12px 10px 22px;
  }
  .project-sheet__close {
    width: 38px;
    height: 38px;
  }

  .project-sheet__kpis,
  .project-sheet__kpis--compact {
    grid-template-columns: 1fr;
  }

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

  .project-sheet__kpis--hero .project-sheet__kpi {
    min-height: 138px;
  }

  .project-sheet__cta {
    padding: 18px 14px 16px;
  }

  .project-sheet__cta-actions {
    grid-template-columns: 1fr;
  }

  .project-sheet__kpi-label,
  .project-sheet__kpi-sub {
    white-space: normal;
  }

  .project-sheet__kpi-value {
    white-space: normal;
    line-height: 1.05;
  }

  .cta__text h2 {
    font-size: clamp(42px, 14vw, 66px);
  }

  .cta-mini__text h3 {
    font-size: clamp(24px, 7.5vw, 32px);
  }

  .cta-mini__actions {
    grid-template-columns: 1fr;
  }

  .cta__text {
    text-align: center;
  }

  .cta__actions {
    width: min(100%, 420px);
  }

  .footer {
    margin-top: 0;
    padding: 18px 0 20px;
    background: #04061a;
  }

  .footer__notch {
    display: none;
  }

  .footer__social {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .topbar__shell {
    padding: 0 10px;
  }

  .menu a {
    font-size: 14px;
  }

  .cta-mini__text h3 {
    font-size: clamp(22px, 8.5vw, 28px);
  }
}
h1, h2, h3 {
  font-family: var(--font-brand);
}
