:root {
  --charcoal: #151a20;
  --deep-navy: #10263d;
  --steel-blue: #315b78;
  --off-white: #f5f6f7;
  /* Accent palette: cool = structure/interactive, warm = numbers/results */
  --accent-cool: #6fc3ff;
  --accent-cool-strong: #a5d9ff;
  --accent-warm: #f0b45a;
  --accent-cool-bg: rgba(111, 195, 255, 0.1);
  --accent-cool-border: rgba(111, 195, 255, 0.28);
  --accent-warm-bg: rgba(240, 180, 90, 0.16);
  /* Text color roles */
  --text-heading: #f0f6fc;
  --text-body: rgba(226, 236, 246, 0.82);
  --text-muted: rgba(198, 214, 229, 0.66);
  /* Gradient text treatments */
  --grad-hero: linear-gradient(92deg, #ffffff 0%, #a5d9ff 45%, #6fc3ff 100%);
  --grad-title: linear-gradient(90deg, #f2f7fc 0%, #bfe0ff 55%, #6fc3ff 100%);
  --glass: rgba(245, 246, 247, 0.08);
  --glass-2: rgba(245, 246, 247, 0.12);
  --stroke: rgba(245, 246, 247, 0.18);
  --stroke-2: rgba(49, 91, 120, 0.35);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.2);
  --radius: 20px;
  --radius-lg: 28px;
  --max: 1160px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  background: radial-gradient(1200px 700px at 75% -10%, rgba(49, 91, 120, 0.35), transparent 60%),
    radial-gradient(900px 600px at 0% 10%, rgba(16, 38, 61, 0.75), transparent 60%),
    radial-gradient(800px 600px at 80% 60%, rgba(49, 91, 120, 0.24), transparent 55%),
    linear-gradient(180deg, #0e2236 0%, #0a141d 55%, #060b10 100%);
  overflow-x: hidden;
}

body {
  height: 100%;
  margin: 0;
  color: var(--text-heading);
  font-family: var(--font);
}

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

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

#tech-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(10, 20, 29, 0.72), rgba(10, 20, 29, 0.25));
  border-bottom: 1px solid rgba(245, 246, 247, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  height: 36px;
  width: auto;
  filter: saturate(1.05) contrast(1.05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__link {
  font-weight: 500;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, color 180ms ease;
  border: 1px solid transparent;
  color: var(--text-body);
}

.nav__link:hover {
  background: rgba(245, 246, 247, 0.06);
  border-color: var(--accent-cool-border);
  color: var(--accent-cool-strong);
  transform: translateY(-1px);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu {
  display: none;
  appearance: none;
  border: 1px solid rgba(245, 246, 247, 0.16);
  background: rgba(245, 246, 247, 0.06);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.menu__bar {
  display: block;
  height: 2px;
  background: rgba(245, 246, 247, 0.9);
  border-radius: 999px;
  margin: 5px 0;
}

.mobile {
  display: none;
  border-top: 1px solid rgba(245, 246, 247, 0.08);
}

.mobile__inner {
  display: grid;
  gap: 10px;
  padding: 18px 0;
}

.mobile__link {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(245, 246, 247, 0.04);
  border: 1px solid rgba(245, 246, 247, 0.1);
}

.mobile__btn {
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  user-select: none;
}

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

.btn--primary {
  background: linear-gradient(135deg, rgba(49, 91, 120, 0.9), rgba(16, 38, 61, 0.9));
  border-color: rgba(245, 246, 247, 0.16);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(245, 246, 247, 0.06);
  border-color: rgba(245, 246, 247, 0.16);
}

.btn--ghost:hover {
  background: rgba(245, 246, 247, 0.09);
  border-color: rgba(245, 246, 247, 0.22);
  transform: translateY(-1px);
}

.btn--block {
  width: 100%;
}

.glass {
  background: radial-gradient(700px 260px at 40% 0%, rgba(49, 91, 120, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(245, 246, 247, 0.10), rgba(245, 246, 247, 0.05));
  border: 1px solid rgba(245, 246, 247, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  padding: 72px 0 34px;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 32px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(245, 246, 247, 0.06);
  border: 1px solid var(--accent-cool-border);
  color: var(--text-heading);
  font-weight: 500;
  font-size: 14px;
}

.pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe3ae, var(--accent-warm));
  box-shadow: 0 0 0 4px var(--accent-warm-bg);
}

.hero__title {
  margin: 14px 0 14px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.grad {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-body);
  max-width: 58ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust__item {
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(245, 246, 247, 0.10);
  background: rgba(21, 26, 32, 0.18);
}

.trust__kpi {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--accent-warm);
}

.trust__label {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.3;
}

.hero__panel {
  position: relative;
  display: grid;
  gap: 14px;
}

.heroImage {
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.heroImage__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.heroImage__cap {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 246, 247, 0.14);
  background: rgba(10, 20, 29, 0.45);
  backdrop-filter: blur(12px);
  font-size: 12px;
  color: var(--text-heading);
}

.heroImage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 30% 0%, rgba(49, 91, 120, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(10, 20, 29, 0.05), rgba(10, 20, 29, 0.45));
  pointer-events: none;
}

.card {
  border-radius: var(--radius-lg);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.card--big {
  padding: 20px 20px 18px;
}

.card__head {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.chip {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(49, 91, 120, 0.15);
  border: 1px solid rgba(49, 91, 120, 0.35);
  color: var(--accent-cool-strong);
}

.chip--soft {
  background: rgba(245, 246, 247, 0.06);
  border-color: rgba(245, 246, 247, 0.14);
}

.metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(245, 246, 247, 0.03);
  border: 1px solid rgba(245, 246, 247, 0.08);
}

.metric__label {
  color: var(--text-body);
  font-size: 13px;
}

.metric__value {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 20px;
  color: var(--accent-warm);
}

.divider {
  margin: 16px 0 12px;
  height: 1px;
  background: rgba(245, 246, 247, 0.12);
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline__row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 16px;
  background: rgba(16, 38, 61, 0.22);
  border: 1px solid rgba(245, 246, 247, 0.08);
}

.timeline__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d6ecff, var(--accent-cool));
  box-shadow: 0 0 0 4px var(--accent-cool-bg);
}

.timeline__text {
  color: var(--text-heading);
  font-weight: 500;
  font-size: 13px;
}

.timeline__tag {
  font-size: 12px;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 246, 247, 0.10);
  background: rgba(245, 246, 247, 0.04);
}

.card--mini {
  border-radius: var(--radius);
  padding: 14px 16px;
}

.card__miniTitle {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-heading);
}

.card__miniText {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-body);
}

.glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 50% 40%, rgba(49, 91, 120, 0.35), transparent 55%);
  filter: blur(18px);
  z-index: -1;
  animation: glow 8s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    transform: translate3d(-2%, -1%, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(2%, 1%, 0) scale(1.04);
    opacity: 0.9;
  }
}

.section {
  padding: 64px 0;
}

.section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section__title {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.02em;
}

/* Section and CTA titles share the gradient-text pattern */
.section__title,
.cta__title {
  background: var(--grad-title);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__subtitle {
  margin: 0;
  color: var(--text-body);
  max-width: 70ch;
  line-height: 1.55;
}

.servicesShowcase {
  border-radius: 28px;
  padding: 14px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.servicesShowcase__viewport {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(245, 246, 247, 0.10);
  background: rgba(21, 26, 32, 0.10);
}

.servicesShowcase__track {
  display: flex;
  width: 600%;
  will-change: transform;
  animation: servicesShowcaseSlide 18s ease-in-out infinite;
}

.servicesSlide {
  margin: 0;
  position: relative;
  width: 16.6667%;
  aspect-ratio: 16 / 5;
  min-height: 168px;
}

.servicesSlide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.servicesSlide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 260px at 20% 0%, rgba(49, 91, 120, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(10, 20, 29, 0.10), rgba(10, 20, 29, 0.65));
  pointer-events: none;
}

.servicesSlide__cap {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: grid;
  gap: 6px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(245, 246, 247, 0.12);
  background: rgba(10, 20, 29, 0.35);
  backdrop-filter: blur(12px);
  z-index: 1;
}

.servicesSlide__title {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-heading);
}

.servicesSlide__text {
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-body);
}

@keyframes servicesShowcaseSlide {
  0% {
    transform: translateX(0%);
  }
  16% {
    transform: translateX(0%);
  }
  24% {
    transform: translateX(-16.6667%);
  }
  40% {
    transform: translateX(-33.3334%);
  }
  56% {
    transform: translateX(-50.0001%);
  }
  72% {
    transform: translateX(-66.6668%);
  }
  88% {
    transform: translateX(-83.3335%);
  }
  100% {
    transform: translateX(-83.3335%);
  }
}

@media (hover: hover) and (pointer: fine) {
  .servicesShowcase:hover .servicesShowcase__track {
    animation-play-state: paused;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tile {
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.tile:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 246, 247, 0.22);
}

.tile__icon {
  width: 48px;
  height: 48px;
  color: rgba(111, 195, 255, 0.65);
  margin-bottom: 16px;
}

.tile__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.tile__title {
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  font-size: 16px;
  color: var(--text-heading);
}

.tile__text {
  margin: 0;
  color: var(--text-body);
  line-height: 1.55;
  font-size: 14px;
}

.tile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-cool-bg);
  border: 1px solid var(--accent-cool-border);
  color: var(--accent-cool-strong);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  border-radius: var(--radius);
  padding: 18px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.step__icon {
  width: 44px;
  height: 44px;
  color: rgba(111, 195, 255, 0.65);
  flex-shrink: 0;
}

.step__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.step__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step__n {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-cool-bg);
  border: 1px solid var(--accent-cool-border);
  color: var(--accent-cool);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.step__title {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-heading);
}

.step__text {
  margin-top: 6px;
  color: var(--text-body);
  line-height: 1.5;
  font-size: 13px;
}

.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case {
  border-radius: var(--radius);
  padding: 18px 18px 16px;
}

.case__icon {
  width: 44px;
  height: 44px;
  color: rgba(111, 195, 255, 0.65);
  margin-bottom: 14px;
}

.case__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.case__title {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text-heading);
}

.case__text {
  margin: 0;
  color: var(--text-body);
  line-height: 1.55;
  font-size: 14px;
}

.case__kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.kpi {
  border-radius: 16px;
  border: 1px solid rgba(245, 246, 247, 0.10);
  background: rgba(21, 26, 32, 0.16);
  padding: 12px 12px;
}

.kpi__v {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--accent-warm);
}

.kpi__l {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.3;
}

.cta {
  padding: 60px 0;
}

.cta__panel {
  border-radius: 34px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.cta__title {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.cta__text {
  margin: 0;
  color: var(--text-body);
  line-height: 1.55;
}

.form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(21, 26, 32, 0.16);
  border: 1px solid rgba(245, 246, 247, 0.10);
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 12px;
  color: var(--text-muted);
}

.field__input {
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(245, 246, 247, 0.14);
  background: rgba(245, 246, 247, 0.06);
  color: var(--text-heading);
  padding: 10px 12px;
  font-family: var(--font);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

select.field__input {
  height: 46px;
}

select.field__input option {
  background: var(--off-white);
  color: var(--deep-navy);
}

select.field__input option:disabled {
  color: rgba(16, 38, 61, 0.55);
}

.field__input:focus {
  border-color: rgba(111, 195, 255, 0.65);
  background: rgba(245, 246, 247, 0.08);
}

.form__hint {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.3;
}

.faq {
  display: grid;
  gap: 12px;
}

.qa {
  border-radius: var(--radius);
  padding: 14px 16px;
}

.qa__q {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: -0.01em;
  outline: none;
  color: var(--text-heading);
  transition: color 160ms ease;
}

.qa__q:hover {
  color: var(--accent-cool-strong);
}

.qa[open] .qa__q {
  color: var(--accent-cool);
}

.qa__q::-webkit-details-marker {
  display: none;
}

.qa__a {
  margin-top: 10px;
  color: var(--text-body);
  line-height: 1.55;
  font-size: 14px;
}

.footer {
  padding: 30px 0 46px;
  border-top: 1px solid rgba(245, 246, 247, 0.08);
  background: rgba(6, 11, 16, 0.55);
  backdrop-filter: blur(14px);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
}

.footer__name {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-heading);
}

.footer__tag {
  margin-top: 6px;
  color: var(--accent-cool-strong);
  font-size: 13px;
}

.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid transparent;
}

.footer__link:hover {
  border-color: var(--accent-cool-border);
  background: rgba(245, 246, 247, 0.05);
  color: var(--accent-cool-strong);
}

.footer__copy {
  justify-self: end;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

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

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

  .cases {
    grid-template-columns: 1fr;
  }

  .cta__panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .menu {
    display: inline-block;
  }

  .mobile[aria-hidden="false"] {
    display: block;
  }

  .trust {
    grid-template-columns: 1fr;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer__copy {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow {
    animation: none;
  }

  .servicesShowcase__track {
    animation: none !important;
  }

  .tile,
  .btn,
  .nav__link {
    transition: none;
  }

  .whatsapp {
    animation: none;
  }
}

/* ── WhatsApp floating widget ── */
.whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  background: rgba(18, 140, 70, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(18, 140, 70, 0.25), 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  animation: waPulse 2.4s ease-in-out infinite;
}

.whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 38px rgba(18, 140, 70, 0.35), 0 4px 12px rgba(0, 0, 0, 0.35);
  background: rgba(22, 160, 80, 0.95);
  animation: none;
}

.whatsapp:active {
  transform: translateY(0) scale(0.97);
}

.whatsapp__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp__label {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(18, 140, 70, 0.25), 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 38px rgba(18, 140, 70, 0.45), 0 4px 14px rgba(18, 140, 70, 0.2), 0 2px 8px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 720px) {
  .whatsapp {
    bottom: 18px;
    right: 18px;
    padding: 12px;
    gap: 0;
  }

  .whatsapp__label {
    display: none;
  }

  .whatsapp__icon {
    width: 22px;
    height: 22px;
  }
}

.presence {
  padding-top: 32px;
}

.presenceTabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.presenceTabs__btn {
  appearance: none;
  border: 1px solid rgba(245, 246, 247, 0.14);
  background: rgba(21, 26, 32, 0.16);
  color: var(--text-body);
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.presenceTabs__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(111, 195, 255, 0.38);
  color: var(--text-heading);
}

.presenceTabs__btn.is-active {
  background: linear-gradient(180deg, rgba(49, 91, 120, 0.28), rgba(21, 26, 32, 0.16));
  border-color: rgba(111, 195, 255, 0.50);
  color: var(--text-heading);
}

.presenceTabs__code {
  height: 30px;
  min-width: 40px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: var(--text-heading);
  background: rgba(245, 246, 247, 0.06);
  border: 1px solid rgba(245, 246, 247, 0.10);
}

.presenceTabs__btn.is-active .presenceTabs__code {
  border-color: rgba(111, 195, 255, 0.55);
  background: rgba(111, 195, 255, 0.12);
}

.presenceTabs__country {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.presenceDeck {
  display: grid;
  gap: 12px;
}

.presenceBranch {
  display: none;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius-lg);
}

.presenceBranch.is-active {
  display: grid;
}

.presenceBranch__media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(245, 246, 247, 0.10);
  background: rgba(21, 26, 32, 0.12);
  aspect-ratio: 16 / 9;
}

.presenceBranch__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.presenceBranch__content {
  padding: 6px 4px;
}

.presenceBranch__title {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.presenceBranch__text {
  margin: 0 0 14px;
  color: var(--text-body);
  line-height: 1.5;
}

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

.presenceStat {
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(245, 246, 247, 0.10);
  background: rgba(21, 26, 32, 0.16);
}

.presenceStat__k {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.presenceStat__v {
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  font-size: 13px;
}

@media (max-width: 900px) {
  .presenceBranch {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .presenceStats {
    grid-template-columns: 1fr;
  }
}
