:root {
  --bg: #020813;
  --bg-soft: #06182c;
  --panel: rgba(7, 25, 45, 0.64);
  --panel-strong: rgba(8, 31, 55, 0.82);
  --line: rgba(124, 255, 99, 0.28);
  --neon: #7cff63;
  --neon-2: #c8ff73;
  --cyan: #38dfff;
  --white: #ffffff;
  --muted: #a8bacb;
  --dark: #02050b;
  --radius: 8px;
  --max: 1180px;
  --glow: 0 0 28px rgba(124, 255, 99, 0.48);
  --glow-soft: 0 0 38px rgba(124, 255, 99, 0.2);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 2%, rgba(124, 255, 99, 0.14), transparent 30rem),
    radial-gradient(circle at 86% 16%, rgba(56, 223, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, #02050b 0%, #061425 46%, #02050b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(124, 255, 99, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 223, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: #03110b;
  border-radius: var(--radius);
  background: var(--neon);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(124, 255, 99, 0.14), transparent 24rem),
    #02050b;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader img {
  width: 112px;
  filter: drop-shadow(var(--glow));
  animation: loader-float 1.8s ease-in-out infinite;
}

.page-loader span {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(124, 255, 99, 0.34);
  border-radius: 50%;
  box-shadow: inset var(--glow-soft), var(--glow-soft);
  animation: spin 4s linear infinite;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding: 14px clamp(16px, 4vw, 32px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(124, 255, 99, 0.2);
  background: rgba(2, 8, 19, 0.76);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), 100%);
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 1;
  mix-blend-mode: normal;
  border-radius: 12px;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(124, 255, 99, 0.5),
    0 0 18px rgba(124, 255, 99, 0.5),
    0 10px 28px rgba(0, 0, 0, 0.42);
  filter:
    contrast(1.08)
    saturate(1.12)
    drop-shadow(0 0 10px rgba(124, 255, 99, 0.54));
  image-rendering: auto;
}

.brand span {
  font-size: 0.94rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  font-weight: 760;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--neon);
  text-shadow: var(--glow);
}

.nav-links a[aria-current="page"] {
  color: var(--neon);
  text-shadow: var(--glow);
}

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

.nav-cta {
  padding: 12px 16px;
  color: #03110b;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--neon), var(--neon-2));
  box-shadow: var(--glow);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(124, 255, 99, 0.42);
  border-radius: var(--radius);
  background: rgba(3, 14, 27, 0.72);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--neon);
  box-shadow: var(--glow);
  transition: transform 0.2s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 132px clamp(18px, 5vw, 48px) 92px;
  overflow: hidden;
  isolation: isolate;
  background: #02050b;
}

.hero-bg,
.hero-overlay,
.digital-grid,
.particle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1.2px) saturate(1.16) contrast(1.08) brightness(0.72);
  transform: scale(1.035);
}

.hero-overlay {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(2, 5, 11, 0.96), rgba(2, 5, 11, 0.72) 48%, rgba(2, 5, 11, 0.88)),
    linear-gradient(180deg, rgba(2, 5, 11, 0.12), #02050b 94%);
}

.digital-grid {
  z-index: -3;
  opacity: 0.58;
  background:
    linear-gradient(108deg, transparent 0 16%, rgba(124, 255, 99, 0.18) 16% 16.12%, transparent 16.12% 52%, rgba(56, 223, 255, 0.13) 52% 52.12%, transparent 52.12%),
    linear-gradient(180deg, transparent 0 45%, rgba(124, 255, 99, 0.08) 45% 45.1%, transparent 45.1%);
  background-size: 840px 100%, 100% 220px;
  animation: digital-lines 16s linear infinite;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 88%, transparent);
}

.particle-field {
  z-index: -2;
}

.particle-field span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 18px rgba(124, 255, 99, 0.9);
  opacity: 0.74;
  animation: particle 7.5s ease-in-out infinite;
}

.particle-field span:nth-child(1) { left: 8%; top: 28%; animation-delay: -1s; }
.particle-field span:nth-child(2) { left: 24%; top: 18%; background: var(--cyan); animation-delay: -2.2s; }
.particle-field span:nth-child(3) { left: 45%; top: 74%; animation-delay: -3.4s; }
.particle-field span:nth-child(4) { left: 72%; top: 16%; animation-delay: -4.4s; }
.particle-field span:nth-child(5) { left: 88%; top: 60%; background: var(--cyan); animation-delay: -2.8s; }
.particle-field span:nth-child(6) { left: 14%; top: 82%; animation-delay: -5.6s; }
.particle-field span:nth-child(7) { left: 62%; top: 46%; animation-delay: -0.8s; }
.particle-field span:nth-child(8) { left: 92%; top: 28%; animation-delay: -6.2s; }
.particle-field span:nth-child(9) { left: 36%; top: 48%; background: var(--cyan); animation-delay: -3.1s; }
.particle-field span:nth-child(10) { left: 78%; top: 80%; animation-delay: -1.9s; }
.particle-field span:nth-child(11) { left: 5%; top: 58%; background: var(--cyan); animation-delay: -4.8s; }
.particle-field span:nth-child(12) { left: 54%; top: 14%; animation-delay: -2.7s; }

.hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-click-target {
  display: block;
  width: min(790px, 100%);
  border-radius: var(--radius);
  cursor: pointer;
  outline: none;
  transition: filter 0.24s ease, transform 0.24s ease, text-shadow 0.24s ease;
}

.hero-click-target:hover,
.hero-click-target:focus-visible {
  filter: drop-shadow(0 0 18px rgba(124, 255, 99, 0.18));
  transform: translateY(-2px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--neon);
  font-size: clamp(0.76rem, 1.3vw, 0.88rem);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: var(--glow);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.25rem, 3.9vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 0 30px rgba(124, 255, 99, 0.18), 0 18px 70px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
  font-weight: 780;
  line-height: 1.38;
  text-wrap: balance;
}

.hero-practical {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(228, 244, 255, 0.82);
  font-size: clamp(0.96rem, 1.35vw, 1.08rem);
  font-weight: 650;
  line-height: 1.58;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.center-actions {
  justify-content: center;
}

.btn {
  --magnet-x: 0px;
  --magnet-y: 0px;
  position: relative;
  isolation: isolate;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 920;
  line-height: 1.1;
  overflow: hidden;
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -140% -48%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.66), transparent 62%);
  opacity: 0;
  transform: translateX(-34%);
  transition: opacity 0.24s ease, transform 0.65s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 2px), 0);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 0.52;
  transform: translateX(34%);
}

.btn-primary,
.btn-package {
  color: #03110b;
  background: linear-gradient(135deg, var(--neon), var(--neon-2));
  box-shadow: 0 0 28px rgba(124, 255, 99, 0.54), 0 16px 56px rgba(124, 255, 99, 0.18);
  animation: cta-breath 3.8s ease-in-out infinite;
}

.btn-primary:hover,
.btn-package:hover,
.btn-primary:focus-visible,
.btn-package:focus-visible {
  box-shadow: 0 0 44px rgba(124, 255, 99, 0.84), 0 24px 72px rgba(124, 255, 99, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(124, 255, 99, 0.62);
  box-shadow: var(--glow-soft);
}

.hero-primary-cta {
  min-height: 62px;
  padding: 17px 92px 17px 26px;
  font-size: 1.04rem;
  box-shadow: 0 0 38px rgba(124, 255, 99, 0.72), 0 20px 64px rgba(124, 255, 99, 0.24);
}

.hero-primary-cta:hover,
.hero-primary-cta:focus-visible {
  box-shadow: 0 0 58px rgba(124, 255, 99, 0.92), 0 28px 82px rgba(124, 255, 99, 0.32);
}

.hero-secondary-cta {
  border-color: rgba(124, 255, 99, 0.34);
  background: rgba(4, 18, 32, 0.68);
  box-shadow: 0 0 0 1px rgba(124, 255, 99, 0.08);
}

.btn.is-burst::after {
  content: "";
  position: absolute;
  inset: 50%;
  z-index: -1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96), rgba(124, 255, 99, 0.7) 36%, transparent 72%);
  transform: translate(-50%, -50%) scale(0);
  animation: neon-burst 0.52s ease-out forwards;
}

.whatsapp-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background-color: #25d366;
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%20448%20512%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20fill%3D%27white%27%20d%3D%27M380.9%2097.1C339%2055.1%20283.2%2032%20223.9%2032c-122.4%200-222%2099.6-222%20222%200%2039.1%2010.2%2077.3%2029.6%20111L0%20480l117.7-30.9c32.4%2017.7%2068.9%2027%20106.1%2027h.1c122.3%200%20224.1-99.6%20224.1-222%200-59.3-25.2-115-67.1-157zM223.9%20438.7c-33.2%200-65.7-8.9-94-25.7l-6.7-4-69.8%2018.3L72%20359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2%200-101.7%2082.8-184.5%20184.6-184.5%2049.3%200%2095.6%2019.2%20130.4%2054.1%2034.8%2034.9%2056.2%2081.2%2056.1%20130.5%200%20101.8-84.9%20184.6-186.6%20184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5%202.8-3.7%205.6-14.3%2018-17.6%2021.8-3.2%203.7-6.5%204.2-12%201.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8%205.7-9.1%2016.3-30.3%201.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7%200-9.7%201.4-14.8%206.9-5.1%205.6-19.4%2019-19.4%2046.3%200%2027.3%2019.9%2053.7%2022.6%2057.4%202.8%203.7%2039.1%2059.7%2094.8%2083.8%2035.2%2015.2%2049%2016.5%2066.6%2013.9%2010.7-1.6%2032.8-13.4%2037.4-26.4%204.6-13%204.6-24.1%203.2-26.4-1.3-2.5-5-3.9-10.5-6.6z%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 72%;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.42);
}

.whatsapp-icon::before {
  content: none;
}

.whatsapp-icon::after {
  content: none;
}

.whatsapp-button {
  padding-right: 84px;
}

.cta-mascot {
  position: absolute;
  right: 8px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(3, 17, 11, 0.22);
  border-radius: 50%;
  background: rgba(3, 17, 11, 0.08);
  box-shadow: 0 0 22px rgba(124, 255, 99, 0.34);
  animation: mini-idle 4.3s ease-in-out infinite;
}

.cta-mascot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.whatsapp-button:hover .cta-mascot {
  transform: rotate(5deg) scale(1.06);
  box-shadow: 0 0 32px rgba(124, 255, 99, 0.78);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-metrics span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(124, 255, 99, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(6, 24, 44, 0.58);
  backdrop-filter: blur(14px);
  font-size: 0.9rem;
}

.hero-metrics strong {
  color: var(--neon);
  text-shadow: var(--glow);
}

.hero-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: rgba(224, 255, 220, 0.78);
  font-size: 0.82rem;
  font-weight: 860;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.22s ease, transform 0.22s ease;
}

.hero-scroll-cue i {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--neon);
  border-bottom: 2px solid var(--neon);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 10px rgba(124, 255, 99, 0.68));
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.hero-scroll-cue:hover,
.hero-scroll-cue:focus-visible {
  color: var(--neon);
  transform: translateY(2px);
}

.hero-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  cursor: pointer;
  outline: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(560px, 100%);
  aspect-ratio: 1;
  border: 1px solid rgba(124, 255, 99, 0.18);
  border-radius: 50%;
  background: conic-gradient(from 120deg, transparent, rgba(124, 255, 99, 0.18), transparent, rgba(56, 223, 255, 0.14), transparent);
  box-shadow: inset var(--glow-soft), var(--glow-soft);
  animation: spin 26s linear infinite;
}

.holo-card {
  position: relative;
  width: min(480px, 94%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(124, 255, 99, 0.42);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 76% 24%, rgba(124, 255, 99, 0.12), transparent 15rem),
    rgba(6, 24, 44, 0.78);
  box-shadow: var(--shadow), var(--glow-soft);
  animation: float-idle 5.6s ease-in-out infinite;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.hero-visual:hover .holo-card,
.hero-visual:focus-visible .holo-card {
  transform: translateY(-4px) scale(1.012);
  border-color: rgba(124, 255, 99, 0.72);
  box-shadow: var(--shadow), 0 0 58px rgba(124, 255, 99, 0.34);
  filter: saturate(1.05);
}

.holo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.06);
}

.scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(124, 255, 99, 0.18), transparent);
  transform: translateY(-100%);
  animation: scan 4s ease-in-out infinite;
}

.floating-tag {
  position: absolute;
  z-index: 2;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(124, 255, 99, 0.36);
  border-radius: 999px;
  background: rgba(4, 18, 32, 0.72);
  color: var(--neon);
  font-size: 0.78rem;
  font-weight: 920;
  text-transform: uppercase;
  box-shadow: var(--glow-soft);
  backdrop-filter: blur(14px);
}

.tag-one {
  top: 84px;
  left: 0;
}

.tag-two {
  right: 0;
  bottom: 104px;
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 138px) clamp(18px, 5vw, 48px);
  overflow: hidden;
}

.section-head {
  width: min(820px, 100%);
  margin: 0 auto clamp(36px, 6vw, 62px);
  text-align: center;
}

.section-head h2,
.final-inner h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.8vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 0 28px rgba(124, 255, 99, 0.14);
}

.section-head p:not(.eyebrow),
.final-inner p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.transform-section,
.before-after-section,
.packages-section,
.portfolio-section,
.process-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(56, 223, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 82% 54%, rgba(124, 255, 99, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(2, 5, 11, 0.94), rgba(6, 20, 37, 0.82), rgba(2, 5, 11, 0.96));
}

.transform-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
}

.transform-text h3 {
  margin: 22px 0 0;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
}

.transform-text p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.transform-text .btn {
  margin-top: 24px;
}

.premium-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(124, 255, 99, 0.38);
  border-radius: 999px;
  color: var(--neon);
  background: rgba(4, 18, 32, 0.68);
  box-shadow: var(--glow-soft);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-card {
  --reveal: 50%;
  --card-x: 50%;
  position: relative;
  border: 1px solid rgba(124, 255, 99, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--card-x) 34%, rgba(124, 255, 99, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(124, 255, 99, 0.08),
    0 0 44px rgba(124, 255, 99, 0.18),
    0 26px 80px rgba(0, 0, 0, 0.44);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.compare-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.8;
  background: radial-gradient(circle at var(--card-x) 42%, rgba(124, 255, 99, 0.18), transparent 36%);
}

.compare-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 5;
  pointer-events: none;
  border: 1px solid rgba(124, 255, 99, 0.16);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: inset 0 0 22px rgba(124, 255, 99, 0.1);
}

.compare-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  background: #06182c;
}

.compare-card-large .compare-stage {
  min-height: min(620px, 80vw);
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  image-rendering: auto;
}

.compare-before {
  z-index: 1;
  filter: saturate(1.02) contrast(1.08) brightness(1.02);
}

.compare-after {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
  filter: saturate(1.13) contrast(1.1) brightness(1.03) drop-shadow(0 0 16px rgba(124, 255, 99, 0.32));
}

.compare-stage::before,
.compare-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.compare-stage::before {
  background:
    linear-gradient(90deg, transparent, rgba(124, 255, 99, 0.2), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 28%, rgba(2, 5, 11, 0.24));
  mix-blend-mode: screen;
  opacity: 0.44;
  transform: translateX(calc(var(--reveal) - 50%));
}

.compare-stage::after {
  background:
    linear-gradient(rgba(124, 255, 99, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 223, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, #000, transparent 80%);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  z-index: 6;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--neon), #efffc5, var(--neon), transparent);
  box-shadow: 0 0 20px rgba(124, 255, 99, 0.96), 0 0 44px rgba(124, 255, 99, 0.42);
  transform: translateX(-50%);
}

.compare-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(124, 255, 99, 0.76);
  border-radius: 50%;
  background: rgba(3, 12, 24, 0.78);
  box-shadow: var(--glow);
  transform: translate(-50%, -50%);
}

.compare-divider span::before,
.compare-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 3px solid var(--neon);
  border-right: 3px solid var(--neon);
}

.compare-divider span::before {
  left: 10px;
  transform: translateY(-50%) rotate(-135deg);
}

.compare-divider span::after {
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

.compare-label,
.drag-hint {
  position: absolute;
  z-index: 7;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(124, 255, 99, 0.3);
  border-radius: 999px;
  color: var(--white);
  background: rgba(2, 8, 19, 0.68);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.before-label {
  left: 14px;
  bottom: 14px;
}

.after-label {
  right: 14px;
  bottom: 14px;
  color: var(--neon);
  box-shadow: var(--glow-soft);
}

.drag-hint {
  left: 50%;
  top: 14px;
  color: #03110b;
  background: linear-gradient(135deg, var(--neon), var(--neon-2));
  transform: translateX(-50%);
  box-shadow: var(--glow);
  animation: hint-pulse 2.8s ease-in-out infinite;
}

.compare-particles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.compare-particles i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: var(--glow);
  animation: particle 5.2s ease-in-out infinite;
}

.compare-particles i:nth-child(1) { left: 12%; top: 22%; animation-delay: -0.4s; }
.compare-particles i:nth-child(2) { left: 82%; top: 18%; background: var(--cyan); animation-delay: -1.2s; }
.compare-particles i:nth-child(3) { left: 18%; top: 78%; animation-delay: -2s; }
.compare-particles i:nth-child(4) { left: 72%; top: 84%; background: var(--cyan); animation-delay: -2.8s; }
.compare-particles i:nth-child(5) { left: 44%; top: 9%; animation-delay: -3.1s; }
.compare-particles i:nth-child(6) { left: 91%; top: 54%; background: var(--cyan); animation-delay: -1.7s; }

.before-after-grid,
.service-grid,
.process-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

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

.before-after-grid .compare-card h3 {
  position: relative;
  margin: 0;
  padding: 18px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  text-transform: uppercase;
}

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

.service-card,
.process-card,
.package-card,
.feedback-card {
  position: relative;
  border: 1px solid rgba(124, 255, 99, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.service-card::before,
.process-card::before,
.package-card::before,
.feedback-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  background: linear-gradient(135deg, rgba(124, 255, 99, 0.16), transparent 35%, rgba(56, 223, 255, 0.12));
}

.service-card {
  min-height: 310px;
  padding: 30px;
}

.service-card span,
.process-card span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  color: #03110b;
  border-radius: var(--radius);
  background: var(--neon);
  box-shadow: var(--glow);
  font-weight: 950;
}

.service-card h3,
.process-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.12rem, 1.55vw, 1.5rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.service-card p,
.process-card p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.service-card-image {
  padding: 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.packages-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(124, 255, 99, 0.24), transparent 36%);
  transition: opacity 0.22s ease;
}

.package-card:hover {
  transform: translateY(-9px);
  border-color: rgba(124, 255, 99, 0.58);
  box-shadow: 0 28px 96px rgba(0, 0, 0, 0.44), var(--glow-soft);
}

.package-card:hover::after {
  opacity: 1;
}

.package-featured,
.package-premium {
  border-color: rgba(124, 255, 99, 0.52);
}

.package-card > img {
  order: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 1px solid rgba(124, 255, 99, 0.18);
}

.card-badge {
  position: relative;
  order: 2;
  align-self: flex-start;
  z-index: 4;
  margin: 16px 22px 0;
  padding: 8px 11px;
  border-radius: 999px;
  color: #03110b;
  background: linear-gradient(135deg, var(--neon), var(--neon-2));
  box-shadow: 0 0 20px rgba(124, 255, 99, 0.34);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-content {
  position: relative;
  order: 3;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.card-badge + img + .package-content {
  padding-top: 14px;
}

.package-content p {
  margin: 0 0 8px;
  color: var(--neon);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-content h3 {
  min-height: 58px;
  margin: 0;
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(124, 255, 99, 0.18);
}

.price span,
.package-content small {
  color: var(--muted);
}

.price strong {
  color: var(--white);
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  line-height: 1;
  text-shadow: var(--glow-soft);
}

.package-content small {
  margin-top: 10px;
  font-size: 0.88rem;
}

.package-content ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.package-content li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  font-size: 0.95rem;
}

.package-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: var(--glow);
}

.btn-package {
  width: 100%;
  margin-top: auto;
}

.instagram-feed {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.instagram-feed-fallback {
  display: flex;
  justify-content: center;
}

.instagram-card {
  position: relative;
  height: clamp(420px, 46vw, 560px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 255, 99, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 10%, rgba(124, 255, 99, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(6, 24, 44, 0.74);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.instagram-card:hover,
.instagram-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(124, 255, 99, 0.58);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.42), var(--glow-soft);
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.instagram-card:hover img,
.instagram-card:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.12) contrast(1.08);
}

.instagram-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 5, 11, 0.06), transparent 34%, rgba(2, 5, 11, 0.92)),
    linear-gradient(135deg, rgba(124, 255, 99, 0.12), transparent 35%, rgba(56, 223, 255, 0.1));
  pointer-events: none;
}

.reel-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(124, 255, 99, 0.34);
  border-radius: 999px;
  color: var(--neon);
  background: rgba(2, 8, 19, 0.7);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.instagram-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(124, 255, 99, 0.4);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(2, 8, 19, 0.72);
  box-shadow: 0 0 24px rgba(124, 255, 99, 0.18);
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.instagram-loading,
.instagram-feed-error {
  width: min(760px, 100%);
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(124, 255, 99, 0.22);
  border-radius: var(--radius);
  color: var(--muted);
  background:
    radial-gradient(circle at 50% 16%, rgba(124, 255, 99, 0.18), transparent 18rem),
    rgba(6, 24, 44, 0.68);
  box-shadow: var(--shadow);
  text-align: center;
  grid-column: 1 / -1;
  margin-inline: auto;
}

.instagram-loading .instagram-icon,
.instagram-feed-error > .instagram-icon {
  color: var(--neon);
  filter: drop-shadow(var(--glow));
}

.instagram-feed-error h3 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.instagram-feed-error p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 700;
  line-height: 1.48;
}

.instagram-feed-error .btn-instagram {
  margin-top: 8px;
}

.portfolio-gallery {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-card {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: 430px;
  display: grid;
  place-items: stretch;
  border: 1px solid rgba(124, 255, 99, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 8%, rgba(124, 255, 99, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(6, 24, 44, 0.74);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(124, 255, 99, 0.58);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.42), var(--glow-soft);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.portfolio-card:hover img,
.portfolio-card:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.12) contrast(1.08);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 5, 11, 0.02), transparent 48%, rgba(2, 5, 11, 0.86)),
    linear-gradient(135deg, rgba(124, 255, 99, 0.1), transparent 40%, rgba(56, 223, 255, 0.1));
}

.portfolio-card-badge {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(124, 255, 99, 0.42);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(2, 8, 19, 0.76);
  box-shadow: 0 0 24px rgba(124, 255, 99, 0.18);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.portfolio-card-badge .instagram-icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

.portfolio-main-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.btn-instagram {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 214, 0, 0.34), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(193, 53, 132, 0.5), transparent 36%),
    linear-gradient(135deg, rgba(124, 255, 99, 0.92), rgba(56, 223, 255, 0.46) 48%, rgba(193, 53, 132, 0.9));
  box-shadow: 0 0 34px rgba(124, 255, 99, 0.34), 0 16px 56px rgba(193, 53, 132, 0.18);
}

.btn-instagram:hover,
.btn-instagram:focus-visible {
  border-color: rgba(124, 255, 99, 0.62);
  box-shadow: 0 0 44px rgba(124, 255, 99, 0.5), 0 22px 70px rgba(56, 223, 255, 0.2);
}

.instagram-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.instagram-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.instagram-icon::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.feedback-section {
  background:
    radial-gradient(circle at 48% 20%, rgba(124, 255, 99, 0.14), transparent 28rem),
    linear-gradient(180deg, #02050b, #051629, #02050b);
}

.proof-strip {
  width: min(var(--max), 100%);
  margin: 0 auto 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(124, 255, 99, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(6, 24, 44, 0.58);
  font-size: 0.9rem;
  font-weight: 780;
}

.feedback-carousel {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.feedback-slider {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 360px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 10px 4px 30px;
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 255, 99, 0.66) rgba(255, 255, 255, 0.08);
}

.feedback-card {
  min-height: 340px;
  display: flex;
  padding: 14px;
  scroll-snap-align: start;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.feedback-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 255, 99, 0.56);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.42), var(--glow-soft);
}

.chat-window {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background:
    linear-gradient(rgba(124, 255, 99, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 223, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 22% 14%, rgba(124, 255, 99, 0.14), transparent 14rem),
    rgba(2, 8, 19, 0.78);
  background-size: 38px 38px, 38px 38px, auto, auto;
  box-shadow: inset 0 0 34px rgba(124, 255, 99, 0.08);
}

.chat-header {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(124, 255, 99, 0.18);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(2, 8, 19, 0.78);
  backdrop-filter: blur(12px);
}

.chat-header .whatsapp-icon {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
}

.chat-header strong {
  font-size: 0.84rem;
  font-weight: 920;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chat-body {
  position: relative;
  flex: 1;
  display: grid;
  align-content: center;
  padding: 22px 18px 24px;
}

.chat-body::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(124, 255, 99, 0.18);
  border-radius: 50%;
  box-shadow: inset var(--glow-soft);
  opacity: 0.42;
}

.chat-bubble {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 18px 18px 20px;
  border: 1px solid rgba(124, 255, 99, 0.26);
  border-radius: 18px 18px 18px 6px;
  color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(5, 29, 28, 0.88);
  box-shadow: 0 0 26px rgba(124, 255, 99, 0.14), 0 18px 46px rgba(0, 0, 0, 0.26);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 720;
  line-height: 1.48;
}

.chat-bubble::after {
  content: "Mensagem real";
  display: block;
  margin-top: 16px;
  color: var(--neon);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: var(--glow);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 255, 99, 0.48);
  border-radius: 50%;
  color: var(--neon);
  background: rgba(2, 8, 19, 0.78);
  box-shadow: var(--glow-soft);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  color: #03110b;
  background: var(--neon);
  transform: translateY(-50%) scale(1.06);
}

.carousel-arrow-prev {
  left: -18px;
}

.carousel-arrow-next {
  right: -18px;
}

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

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

.process-card {
  min-height: 315px;
  padding: 24px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.process-card span {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
}

.process-card:hover,
.process-card:focus-within,
.process-card:active {
  transform: translateY(-7px);
  border-color: rgba(124, 255, 99, 0.56);
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.42), 0 0 34px rgba(124, 255, 99, 0.18);
}

.process-icon {
  --icon-mask: none;
  position: absolute;
  top: 24px;
  right: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 255, 99, 0.28);
  border-radius: 50%;
  color: var(--neon);
  background:
    radial-gradient(circle, rgba(124, 255, 99, 0.18), transparent 68%),
    rgba(2, 8, 19, 0.66);
  box-shadow: inset 0 0 18px rgba(124, 255, 99, 0.08), 0 0 20px rgba(124, 255, 99, 0.14);
}

.process-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
  mask: var(--icon-mask) center / contain no-repeat;
  -webkit-mask: var(--icon-mask) center / contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(124, 255, 99, 0.58));
}

.process-icon-plan {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M4 7h16l-2 13H6L4 7Zm4-4h8l2 4H6l2-4Zm2.6 11.7 5.2-5.2 1.7 1.7-6.9 6.9-3.7-3.7 1.7-1.7 2 2Z'/%3E%3C/svg%3E");
}

.process-icon-briefing {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M4 5h16v11H9l-5 4V5Zm4 4v2h8V9H8Zm0 4v2h6v-2H8Z'/%3E%3C/svg%3E");
}

.process-icon-character {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='m12 2.8 2.7 5.5 6.1.9-4.4 4.3 1 6.1L12 16.7l-5.4 2.9 1-6.1-4.4-4.3 6.1-.9L12 2.8Z'/%3E%3C/svg%3E");
}

.process-icon-script {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M9 3h6v9a3 3 0 1 1-6 0V3Zm-3 8h2a4 4 0 0 0 8 0h2a6 6 0 0 1-5 5.9V20h4v2H7v-2h4v-3.1A6 6 0 0 1 6 11Z'/%3E%3C/svg%3E");
}

.process-icon-voice {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M4 9h4l5-5v16l-5-5H4V9Zm12.5-.8 1.4-1.4A7.3 7.3 0 0 1 20 12c0 2-.8 3.8-2.1 5.2l-1.4-1.4A5.2 5.2 0 0 0 18 12c0-1.5-.6-2.8-1.5-3.8Zm-2.1 2.1 1.4-1.4A4.3 4.3 0 0 1 17 12c0 1.2-.5 2.3-1.2 3.1l-1.4-1.4c.4-.5.6-1.1.6-1.7s-.2-1.2-.6-1.7Z'/%3E%3C/svg%3E");
}

.process-icon-approval {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm-1 12.2L7.8 11l-1.6 1.6 4.8 4.8 7-7L16.4 8.8 11 14.2Z'/%3E%3C/svg%3E");
}

.process-icon-payment {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='m12 2 10 10-10 10L2 12 12 2Zm0 4.1L6.1 12 12 17.9 17.9 12 12 6.1Zm0 3.1 2.8 2.8-2.8 2.8L9.2 12 12 9.2Z'/%3E%3C/svg%3E");
}

.process-icon-delivery {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M3 6h13v12H3V6Zm15 4 4-3v10l-4-3v-4Zm-9 0v4l4-2-4-2Z'/%3E%3C/svg%3E");
}

.final-cta {
  position: relative;
  padding: clamp(86px, 11vw, 144px) clamp(18px, 5vw, 48px);
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(2, 5, 11, 0.98), rgba(2, 5, 11, 0.82) 54%, rgba(2, 5, 11, 0.96)),
    radial-gradient(circle at 78% 32%, rgba(124, 255, 99, 0.2), transparent 28rem),
    url("assets/images/hero-mscard.webp") right center / min(760px, 88vw) no-repeat,
    linear-gradient(180deg, #02050b, #06182c 54%, #02050b);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(124, 255, 99, 0.16);
  border-radius: 50%;
  box-shadow: inset var(--glow-soft), var(--glow-soft);
  pointer-events: none;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(124, 255, 99, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 223, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.final-inner {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  margin: 0 auto;
}

.final-inner img {
  width: 84px;
  padding: 8px;
  margin: 0 auto 18px;
  border: 1px solid rgba(124, 255, 99, 0.46);
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24),
    0 0 26px rgba(124, 255, 99, 0.42),
    0 18px 44px rgba(0, 0, 0, 0.36);
  filter: contrast(1.08) saturate(1.12) drop-shadow(0 0 12px rgba(124, 255, 99, 0.48));
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  min-width: 190px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(124, 255, 99, 0.58);
  border-radius: 999px;
  color: #03110b;
  background: linear-gradient(135deg, var(--neon), var(--neon-2));
  box-shadow: 0 0 30px rgba(124, 255, 99, 0.64), 0 20px 70px rgba(0, 0, 0, 0.34);
  font-weight: 950;
  text-transform: uppercase;
  transition: bottom 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  animation: floating-breath 3.3s ease-in-out infinite;
}

body.has-cookie-banner .floating-whatsapp {
  bottom: calc(112px + env(safe-area-inset-bottom));
}

.floating-whatsapp img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(3, 17, 11, 0.22);
  box-shadow: 0 0 18px rgba(3, 17, 11, 0.24);
  transition: transform 0.25s ease;
  animation: mini-idle 4.4s ease-in-out infinite;
}

.floating-whatsapp .whatsapp-icon {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  border-color: rgba(3, 17, 11, 0.18);
  box-shadow: 0 0 18px rgba(3, 17, 11, 0.18);
}

.floating-whatsapp strong {
  font-size: 0.78rem;
}

.floating-whatsapp-flag {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(124, 255, 99, 0.34);
  border-radius: 999px;
  color: var(--neon);
  background: rgba(2, 8, 19, 0.82);
  box-shadow: 0 0 22px rgba(124, 255, 99, 0.22), 0 12px 36px rgba(0, 0, 0, 0.32);
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.floating-whatsapp-flag::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(124, 255, 99, 0.34);
  border-right: 1px solid rgba(124, 255, 99, 0.34);
  background: rgba(2, 8, 19, 0.82);
  transform: translateY(-50%) rotate(45deg);
}

.floating-whatsapp.is-flag-visible .floating-whatsapp-flag,
.floating-whatsapp:hover .floating-whatsapp-flag,
.floating-whatsapp:focus-visible .floating-whatsapp-flag {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.045);
  box-shadow: 0 0 48px rgba(124, 255, 99, 0.9), 0 24px 82px rgba(0, 0, 0, 0.45);
}

.floating-whatsapp:hover img {
  transform: translateX(6px) rotate(5deg) scale(1.05);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 48px);
  border-top: 1px solid rgba(124, 255, 99, 0.18);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(2, 5, 11, 0.96);
}

.footer div,
.footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer strong {
  color: var(--white);
  text-shadow: var(--glow-soft);
}

.footer a {
  color: var(--neon);
  font-weight: 850;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer .instagram-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  border-radius: 6px;
}

.footer .instagram-icon::before {
  width: 6px;
  height: 6px;
}

.footer-disclaimer {
  flex-basis: 100%;
  max-width: min(960px, 100%);
  margin: -4px 0 0;
  color: rgba(168, 186, 203, 0.6);
  font-size: 0.72rem;
  line-height: 1.5;
}

.footer-policy-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-policy-links a {
  color: rgba(224, 255, 220, 0.68);
  font-size: 0.78rem;
  font-weight: 750;
}

.footer-policy-links a:hover,
.footer-policy-links a:focus-visible {
  color: var(--neon);
}

.cookie-banner {
  position: fixed;
  left: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 85;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(920px, calc(100vw - 28px));
  margin-inline: auto;
  padding: 14px 16px;
  border: 1px solid rgba(124, 255, 99, 0.28);
  border-radius: 18px;
  background: rgba(4, 10, 18, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42), 0 0 28px rgba(124, 255, 99, 0.16);
  color: rgba(236, 247, 255, 0.82);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.cookie-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-actions a,
.cookie-accept {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.cookie-accept {
  border: 1px solid rgba(124, 255, 99, 0.55);
  background: linear-gradient(135deg, rgba(124, 255, 99, 0.96), rgba(28, 214, 98, 0.9));
  color: #04100b;
  box-shadow: 0 0 18px rgba(124, 255, 99, 0.22);
  cursor: pointer;
}

.cookie-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(124, 255, 99, 0.24);
  color: rgba(236, 247, 255, 0.86);
  background: rgba(255, 255, 255, 0.04);
}

.cookie-actions a:hover,
.cookie-actions a:focus-visible,
.cookie-accept:hover,
.cookie-accept:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(124, 255, 99, 0.28);
}

.about-page {
  background:
    radial-gradient(circle at 16% 2%, rgba(124, 255, 99, 0.13), transparent 30rem),
    radial-gradient(circle at 82% 20%, rgba(56, 223, 255, 0.11), transparent 32rem),
    linear-gradient(180deg, #02050b 0%, #061425 48%, #02050b 100%);
}

.about-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 132px clamp(18px, 5vw, 48px) 84px;
  overflow: hidden;
  isolation: isolate;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 5, 11, 0.96), rgba(2, 5, 11, 0.72) 48%, rgba(2, 5, 11, 0.9)),
    radial-gradient(circle at 34% 38%, rgba(124, 255, 99, 0.18), transparent 28rem),
    radial-gradient(circle at 76% 28%, rgba(56, 223, 255, 0.12), transparent 30rem);
}

.about-shell {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.about-portrait {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(124, 255, 99, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 18%, rgba(124, 255, 99, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(6, 24, 44, 0.7);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(124, 255, 99, 0.08),
    0 0 54px rgba(124, 255, 99, 0.2);
  overflow: hidden;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: -1;
  background: conic-gradient(from 120deg, transparent, rgba(124, 255, 99, 0.22), transparent, rgba(56, 223, 255, 0.16), transparent);
  filter: blur(22px);
  opacity: 0.7;
  animation: spin 28s linear infinite;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(2, 8, 19, 0.56);
  filter: saturate(1.06) contrast(1.06) brightness(1.02);
}

.about-copy h1 {
  max-width: 680px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
}

.about-subtitle {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 760;
  line-height: 1.5;
  text-wrap: balance;
}

.about-story {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.about-story p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-actions .whatsapp-button {
  padding-right: 22px;
}

.about-authority-section {
  background:
    radial-gradient(circle at 50% 10%, rgba(124, 255, 99, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(2, 5, 11, 0.96), rgba(6, 20, 37, 0.82), rgba(2, 5, 11, 0.96));
}

.about-authority-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.about-authority-card {
  position: relative;
  min-height: 116px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(124, 255, 99, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(6, 24, 44, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  font-weight: 930;
  line-height: 1.16;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.about-authority-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background: linear-gradient(135deg, rgba(124, 255, 99, 0.15), transparent 42%, rgba(56, 223, 255, 0.1));
  pointer-events: none;
}

.about-authority-card:hover,
.about-authority-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(124, 255, 99, 0.58);
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.42), var(--glow-soft);
}

.about-final {
  position: relative;
  padding: clamp(78px, 10vw, 130px) clamp(18px, 5vw, 48px);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(124, 255, 99, 0.16), transparent 28rem),
    linear-gradient(180deg, #02050b, #06182c 54%, #02050b);
}

.about-final::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(124, 255, 99, 0.15);
  border-radius: 50%;
  box-shadow: inset var(--glow-soft), var(--glow-soft);
  pointer-events: none;
}

.about-final-inner {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  margin: 0 auto;
}

.about-final h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.8vw, 3.35rem);
  line-height: 1.04;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 0 28px rgba(124, 255, 99, 0.14);
}

.about-final p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.policy-page {
  background:
    radial-gradient(circle at 18% 4%, rgba(124, 255, 99, 0.12), transparent 30rem),
    radial-gradient(circle at 82% 18%, rgba(56, 223, 255, 0.1), transparent 32rem),
    linear-gradient(180deg, #02050b 0%, #061425 46%, #02050b 100%);
}

.policy-hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(124px, 14vw, 170px) clamp(18px, 5vw, 48px) clamp(74px, 9vw, 116px);
  overflow: hidden;
}

.policy-shell {
  position: relative;
  z-index: 2;
  width: min(940px, 100%);
  margin: 0 auto;
}

.policy-card {
  position: relative;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(124, 255, 99, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 15, 28, 0.78);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(124, 255, 99, 0.06),
    0 0 58px rgba(124, 255, 99, 0.16);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.policy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(124, 255, 99, 0.12), transparent 34%, rgba(56, 223, 255, 0.08)),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 76%);
  pointer-events: none;
}

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

.policy-card h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
}

.policy-content {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.policy-content p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.78;
}

.policy-content h2 {
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(124, 255, 99, 0.14);
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

[data-reveal] {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.78s ease, transform 0.78s ease, filter 0.78s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@keyframes loader-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes digital-lines {
  to { background-position: 840px 0, 0 220px; }
}

@keyframes particle {
  0%, 100% { transform: translate3d(0, 0, 0) scale(0.85); opacity: 0.22; }
  44% { transform: translate3d(28px, -36px, 0) scale(1.28); opacity: 0.92; }
}

@keyframes cta-breath {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.09); }
}

@keyframes neon-burst {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes mini-idle {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-4px) rotate(2deg); }
}

@keyframes float-idle {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes scan {
  0%, 100% { transform: translateY(-100%); opacity: 0; }
  34%, 66% { opacity: 0.9; }
  70% { transform: translateY(100%); opacity: 0; }
}

@keyframes hint-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.04); }
}

@keyframes scroll-cue {
  0%, 100% { transform: translateY(-2px) rotate(45deg); opacity: 0.72; }
  50% { transform: translateY(4px) rotate(45deg); opacity: 1; }
}

@keyframes floating-breath {
  0%, 100% { box-shadow: 0 0 30px rgba(124, 255, 99, 0.62), 0 20px 70px rgba(0, 0, 0, 0.34); }
  50% { box-shadow: 0 0 48px rgba(124, 255, 99, 0.9), 0 24px 82px rgba(0, 0, 0, 0.42); }
}

@media (max-width: 1120px) {
  .hero-inner,
  .transform-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
    order: -1;
    opacity: 0.96;
  }

  .holo-card {
    width: min(430px, 88vw);
  }

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

  .service-grid,
  .portfolio-gallery,
  .instagram-feed,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(124, 255, 99, 0.28);
    border-radius: var(--radius);
    background: rgba(2, 8, 19, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    align-items: end;
    min-height: 96vh;
    padding-top: 108px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 5, 11, 0.38), rgba(2, 5, 11, 0.78) 36%, rgba(2, 5, 11, 0.98) 82%),
      linear-gradient(90deg, rgba(2, 5, 11, 0.88), rgba(2, 5, 11, 0.54), rgba(2, 5, 11, 0.9));
  }

  .hero-copy {
    order: -2;
    text-align: center;
  }

  .hero-click-target,
  .hero-subtitle,
  .hero-practical {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 280px;
    order: 0;
  }

  h1 {
    font-size: clamp(1.72rem, 7.7vw, 2.55rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4.2vw, 1.24rem);
  }

  .before-after-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .instagram-feed {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 82vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding-bottom: 18px;
    scrollbar-width: thin;
    scrollbar-color: rgba(124, 255, 99, 0.66) rgba(255, 255, 255, 0.08);
  }

  .portfolio-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 82vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding-bottom: 18px;
    scrollbar-width: thin;
    scrollbar-color: rgba(124, 255, 99, 0.66) rgba(255, 255, 255, 0.08);
  }

  .instagram-feed-fallback {
    display: flex;
    width: min(var(--max), calc(100vw - 32px));
    overflow: visible;
    padding-bottom: 0;
  }

  .instagram-feed-error {
    width: 100%;
    max-width: 560px;
    padding: 26px 18px;
  }

  .instagram-card {
    height: 460px;
    scroll-snap-align: start;
  }

  .portfolio-card {
    min-height: auto;
    scroll-snap-align: start;
  }

  .carousel-arrow {
    display: none;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 640px) {
  .brand span {
    display: none;
  }

  .hero {
    padding-inline: 16px;
    padding-bottom: 68px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
    min-height: 58px;
  }

  .hero-primary-cta {
    min-height: 64px;
    padding-block: 16px;
    font-size: 1rem;
  }

  .hero-secondary-cta {
    min-height: 52px;
  }

  .whatsapp-button {
    padding-right: 78px;
  }

  .cta-mascot {
    width: 54px;
    height: 54px;
  }

  .hero-metrics {
    display: grid;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-metrics span {
    min-height: 36px;
    justify-content: center;
    padding: 8px 10px;
    font-size: 0.78rem;
    line-height: 1.25;
    text-align: center;
  }

  .hero-scroll-cue {
    justify-content: center;
    width: 100%;
    margin-top: 16px;
    font-size: 0.74rem;
  }

  .hero-visual {
    min-height: 190px;
  }

  .holo-card {
    width: min(360px, 86vw);
  }

  .floating-tag {
    display: none;
  }

  .section {
    padding-inline: 16px;
  }

  .section-head h2,
  .final-inner h2 {
    font-size: clamp(1.7rem, 8.4vw, 2.35rem);
    line-height: 1.08;
  }

  .instagram-feed {
    grid-auto-columns: minmax(250px, 84vw);
  }

  .portfolio-gallery {
    width: min(var(--max), calc(100vw - 32px));
    grid-auto-columns: minmax(250px, 84vw);
  }

  .instagram-card {
    height: 420px;
  }

  .compare-card-large .compare-stage {
    min-height: auto;
  }

  .drag-hint {
    top: 10px;
    font-size: 0.66rem;
    white-space: nowrap;
  }

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

  .package-content h3 {
    min-height: auto;
  }

  .feedback-slider {
    grid-auto-columns: minmax(286px, 84vw);
  }

  .feedback-card {
    min-height: 318px;
    padding: 10px;
  }

  .chat-body {
    padding: 18px 14px 20px;
  }

  .chat-bubble {
    font-size: 0.98rem;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    min-width: 58px;
    width: 58px;
    height: 58px;
    padding: 6px;
    justify-content: center;
    border-radius: 50%;
    z-index: 90;
  }

  body.has-cookie-banner .floating-whatsapp {
    bottom: calc(118px + env(safe-area-inset-bottom));
  }

  .floating-whatsapp img {
    width: 46px;
    height: 46px;
  }

  .floating-whatsapp .whatsapp-icon {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    border-width: 2px;
    border-color: #03110b;
    background-color: #25d366;
    background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%20448%20512%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20fill%3D%27white%27%20d%3D%27M380.9%2097.1C339%2055.1%20283.2%2032%20223.9%2032c-122.4%200-222%2099.6-222%20222%200%2039.1%2010.2%2077.3%2029.6%20111L0%20480l117.7-30.9c32.4%2017.7%2068.9%2027%20106.1%2027h.1c122.3%200%20224.1-99.6%20224.1-222%200-59.3-25.2-115-67.1-157zM223.9%20438.7c-33.2%200-65.7-8.9-94-25.7l-6.7-4-69.8%2018.3L72%20359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2%200-101.7%2082.8-184.5%20184.6-184.5%2049.3%200%2095.6%2019.2%20130.4%2054.1%2034.8%2034.9%2056.2%2081.2%2056.1%20130.5%200%20101.8-84.9%20184.6-186.6%20184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5%202.8-3.7%205.6-14.3%2018-17.6%2021.8-3.2%203.7-6.5%204.2-12%201.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8%205.7-9.1%2016.3-30.3%201.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7%200-9.7%201.4-14.8%206.9-5.1%205.6-19.4%2019-19.4%2046.3%200%2027.3%2019.9%2053.7%2022.6%2057.4%202.8%203.7%2039.1%2059.7%2094.8%2083.8%2035.2%2015.2%2049%2016.5%2066.6%2013.9%2010.7-1.6%2032.8-13.4%2037.4-26.4%204.6-13%204.6-24.1%203.2-26.4-1.3-2.5-5-3.9-10.5-6.6z%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 72%;
    box-shadow: 0 0 16px rgba(124, 255, 99, 0.86);
    transform: scale(0.82);
  }

  .floating-whatsapp .whatsapp-icon::before {
    left: 1px;
    bottom: -5px;
    width: 8px;
    height: 8px;
    border-left-width: 2px;
    border-bottom-width: 2px;
  }

  .floating-whatsapp .whatsapp-icon::after {
    left: 5px;
    top: 5px;
    width: 8px;
    height: 8px;
    border-width: 2px;
  }

  .floating-whatsapp strong {
    display: none;
  }

  .floating-whatsapp-flag {
    right: calc(100% + 8px);
    min-height: 34px;
    max-width: 150px;
    padding: 8px 10px;
    font-size: 0.68rem;
  }

  .floating-whatsapp.is-flag-visible .floating-whatsapp-flag,
  .floating-whatsapp:hover .floating-whatsapp-flag,
  .floating-whatsapp:focus-visible .floating-whatsapp-flag {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
  }

  .footer {
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }

}

@media (max-width: 1120px) {
  .about-shell {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .about-authority-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .about-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .about-copy {
    text-align: center;
  }

  .about-copy h1,
  .about-subtitle {
    margin-inline: auto;
  }

  .about-actions {
    justify-content: center;
  }

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

@media (max-width: 640px) {
  .about-hero {
    padding-inline: 16px;
    padding-bottom: 64px;
  }

  .about-shell {
    gap: 28px;
  }

  .about-portrait {
    padding: 7px;
  }

  .about-portrait img {
    aspect-ratio: 16 / 10;
  }

  .about-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .about-subtitle,
  .about-story p {
    font-size: 0.98rem;
  }

  .about-actions {
    display: grid;
  }

  .about-actions .whatsapp-button {
    padding-right: 22px;
  }

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

  .about-authority-card {
    min-height: 92px;
  }

  .about-final {
    padding-inline: 16px;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
    width: auto;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 14px;
  }

  .cookie-banner p {
    font-size: 0.68rem;
    line-height: 1.32;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 6px;
  }

  .cookie-actions a,
  .cookie-accept {
    width: 100%;
    min-height: 32px;
    padding-inline: 8px;
    font-size: 0.68rem;
  }

  .policy-hero {
    padding: 112px 16px 76px;
  }

  .policy-card {
    padding: 24px 18px;
    text-align: center;
  }

  .policy-card h1,
  .policy-content h2 {
    margin-inline: auto;
  }

  .policy-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
