/* =========================================================
   LARA FISH STORE — Premium Landing Page
   Identity: black, silver, lime, purple, aquatic blue
   Mobile-first · CSS Custom Properties · Perf friendly
   ========================================================= */

:root {
  /* Palette */
  --bg: #050608;
  --bg-soft: #0a0c11;
  --bg-elev: #0e1118;
  --silver: #c8cdd5;
  --silver-bright: #eef1f6;
  --muted: #8a919f;
  --lime: #b9f43a;
  --lime-deep: #8ad60f;
  --purple: #9b6bff;
  --purple-deep: #6c3bff;
  --aqua: #2fd6e8;
  --aqua-deep: #0e9ec9;

  /* Gradients */
  --grad-lime: linear-gradient(120deg, #d8ff5e 0%, #9be815 55%, #5fc400 100%);
  --grad-purple: linear-gradient(120deg, #b69bff 0%, #8b5cf6 55%, #6c3bff 100%);
  --grad-aqua: linear-gradient(120deg, #7deffb 0%, #22c7dd 50%, #0e9ec9 100%);
  --grad-text: linear-gradient(120deg, #eef1f6, #c8cdd5);

  /* Type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Geometry */
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1200px;
  --nav-h: 72px;
  --shadow-1: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow-aqua: 0 0 40px rgba(47, 214, 232, 0.35);
  --shadow-glow-lime: 0 0 40px rgba(185, 244, 58, 0.35);
  --shadow-glow-purple: 0 0 40px rgba(155, 107, 255, 0.4);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

::selection {
  background: var(--lime);
  color: #08120a;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--aqua-deep), var(--purple-deep));
  border-radius: 8px;
}

/* ---------- Utility: container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2rem);
}

/* ---------- Typography helpers ---------- */
.grad-aqua {
  background: var(--grad-aqua);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-lime {
  background: var(--grad-lime);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-purple {
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.link-inline {
  color: var(--aqua);
  border-bottom: 1px solid rgba(47, 214, 232, 0.4);
  transition: color 0.3s var(--ease-out), border-color 0.3s;
}
.link-inline:hover {
  color: var(--lime);
  border-color: var(--lime);
}

/* ---------- Ambient orbs ---------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  will-change: transform;
}
.ambient__orb--aqua {
  width: 520px;
  height: 520px;
  background: var(--aqua-deep);
  top: -120px;
  left: -160px;
}
.ambient__orb--purple {
  width: 480px;
  height: 480px;
  background: var(--purple-deep);
  top: 30%;
  right: -180px;
}
.ambient__orb--lime {
  width: 420px;
  height: 420px;
  background: var(--lime-deep);
  bottom: -160px;
  left: 25%;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}
.preloader__logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  animation: prePulse 1.4s ease-in-out infinite;
}
.preloader__bar {
  width: 150px;
  height: 3px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--grad-aqua);
  border-radius: 4px;
  animation: preSlide 1.1s var(--ease-out) infinite;
}
@keyframes prePulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}
@keyframes preSlide {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(320%); }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background-color 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
  will-change: transform;
}
.btn svg {
  flex: 0 0 auto;
}
.btn--lime {
  background: var(--grad-lime);
  color: #0b1400;
  box-shadow: 0 10px 30px rgba(138, 214, 15, 0.35);
}
.btn--lime:hover {
  box-shadow: 0 14px 42px rgba(185, 244, 58, 0.55);
  transform: translateY(-3px);
}
.btn--ghost {
  background: transparent;
  color: var(--silver-bright);
  border: 1px solid rgba(200, 205, 213, 0.35);
}
.btn--ghost:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  transform: translateY(-3px);
}
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--xl { padding: 1.15rem 2.2rem; font-size: 1.12rem; }
.btn--sm { padding: 0.62rem 1.15rem; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(5, 6, 8, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.nav.is-scrolled {
  background: rgba(5, 6, 8, 0.85);
  border-bottom-color: rgba(200, 205, 213, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 24px rgba(47, 214, 232, 0.25);
}
.nav__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--silver-bright);
  letter-spacing: 0.01em;
}
.nav__name em {
  font-style: normal;
  background: var(--grad-aqua);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav__menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8, 9, 13, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.4rem clamp(1.15rem, 4vw, 2rem) 2rem;
  transform: translateY(-16px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s var(--ease-out), opacity 0.4s, visibility 0.4s;
  border-bottom: 1px solid rgba(200, 205, 213, 0.12);
}
.nav__menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.nav__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0.7rem 0.2rem;
  color: var(--silver);
  border-bottom: 1px solid transparent;
  transition: color 0.25s, padding-left 0.25s var(--ease-out);
}
.nav__link:hover {
  color: var(--lime);
  padding-left: 8px;
}
.nav__cta {
  margin-top: 0.6rem;
}
.nav__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 205, 213, 0.14);
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--silver-bright);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2.5rem) 0 4rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  will-change: transform;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(5, 6, 8, 0.92) 0%, rgba(5, 6, 8, 0.55) 45%, rgba(5, 6, 8, 0.88) 100%);
}
.hero__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 7vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--silver-bright);
  text-wrap: balance;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}
.hero__subtitle {
  margin-top: 1.3rem;
  max-width: 540px;
  font-size: clamp(1rem, 2.4vw, 1.16rem);
  color: var(--muted);
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero__stats {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  max-width: 460px;
}
.hero__stats li {
  display: grid;
  gap: 0.15rem;
  padding-left: 1rem;
  border-left: 2px solid;
  border-image: var(--grad-aqua) 1;
}
.hero__stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  font-weight: 700;
  color: var(--silver-bright);
}
.hero__stats strong::after {
  content: "+";
  color: var(--lime);
}
.hero__stats span {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__media {
  display: none;
}
.hero__scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll span {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(200, 205, 213, 0.4);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--aqua);
  transform: translateX(-50%);
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; transform: translate(-50%, 0); }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  position: relative;
}
.section--alt {
  background: var(--bg-soft);
}
.section__head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
}
.section__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 5vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--silver-bright);
  text-wrap: balance;
}
.section__lead {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

/* ---------- Cards: Services ---------- */
.services {
  display: grid;
  gap: 1.5rem;
}
.card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid rgba(200, 205, 213, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s, border-color 0.4s;
  will-change: transform;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 214, 232, 0.45);
  box-shadow: var(--shadow-1), var(--shadow-glow-aqua);
}
.card__media {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.card:hover .card__media img {
  transform: scale(1.08);
}
.card__num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--silver-bright);
  background: rgba(5, 6, 8, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}
.card__body {
  padding: 1.6rem 1.5rem 1.8rem;
}
.card__icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #fff;
  margin-bottom: 1.1rem;
}
.grad-bg-aqua { background: linear-gradient(135deg, #22c7dd, #0e6b96); box-shadow: 0 8px 24px rgba(14, 158, 201, 0.35); }
.grad-bg-purple { background: linear-gradient(135deg, #9b6bff, #5b21b6); box-shadow: 0 8px 24px rgba(91, 33, 182, 0.4); }
.grad-bg-lime { background: linear-gradient(135deg, #c6fa52, #7ac70d); box-shadow: 0 8px 24px rgba(122, 199, 13, 0.35); color: #0b1400; }
.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--silver-bright);
  margin-bottom: 0.6rem;
}
.card__text {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 1.1rem;
}
.card__list {
  display: grid;
  gap: 0.5rem;
}
.card__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--silver);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--grad-aqua);
}

/* ---------- Features / Projects ---------- */
.feature {
  display: grid;
  gap: 4.5rem;
}
.feature__item {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}
.feature__media {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(200, 205, 213, 0.1);
}
.feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 6, 8, 0.45));
  pointer-events: none;
}
.feature__media img {
  width: 100%;
  height: clamp(320px, 55vw, 520px);
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}
.feature__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}
.feature__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: var(--silver-bright);
  line-height: 1.15;
  margin: 0.7rem 0 0.9rem;
}
.feature__text {
  color: var(--muted);
  max-width: 460px;
}
.feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.feature__tags li {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--silver);
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 205, 213, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

/* ---------- Diferenciais ---------- */
.diff {
  display: grid;
  gap: 1.2rem;
}
.diff__item {
  background: var(--bg-elev);
  border: 1px solid rgba(200, 205, 213, 0.09);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.diff__item:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 107, 255, 0.45);
  box-shadow: var(--shadow-glow-purple);
}
.diff__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  margin-bottom: 1rem;
}
.diff__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--silver-bright);
  margin-bottom: 0.45rem;
}
.diff__text {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(200, 205, 213, 0.1);
  aspect-ratio: 3 / 4;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.5s;
}
.gallery__item:hover img {
  transform: scale(1.07);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 6, 8, 0.7));
  opacity: 0.7;
  transition: opacity 0.4s;
}
.gallery__item:hover::after {
  opacity: 0.9;
}
.gallery__item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  gap: 2px;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease-out);
}
.gallery__item:hover figcaption {
  transform: translateY(0);
}
.gallery__item figcaption span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--silver-bright);
}
.gallery__item figcaption small {
  color: var(--muted);
  font-size: 0.78rem;
}

/* ---------- About ---------- */
.about {
  display: grid;
  gap: 2.8rem;
  align-items: center;
}
.about__media {
  display: grid;
  place-items: center;
}
.about__logo-wrap {
  position: relative;
  width: min(340px, 80vw);
}
.about__logo {
  width: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), var(--shadow-1);
}
.about__glow {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--aqua-deep), var(--purple-deep), var(--lime-deep), var(--aqua-deep));
  filter: blur(44px);
  opacity: 0.5;
  z-index: 1;
  animation: glowSpin 10s linear infinite;
}
@keyframes glowSpin {
  to { transform: rotate(360deg); }
}
.about__body .section__title {
  margin-bottom: 1.2rem;
}
.about__text {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 560px;
}
.about__text strong {
  color: var(--silver-bright);
}
.about__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

/* ---------- Instagram ---------- */
.insta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.insta__tile {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 205, 213, 0.1);
}
.insta__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.insta__tile:hover img {
  transform: scale(1.08);
}
.insta__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(5, 6, 8, 0.55);
  color: var(--silver-bright);
  opacity: 0;
  transition: opacity 0.35s;
}
.insta__tile:hover .insta__overlay {
  opacity: 1;
}
.insta__follow {
  margin-top: 2rem;
  text-align: center;
}

/* ---------- Location ---------- */
.location {
  display: grid;
  gap: 1.8rem;
}
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200, 205, 213, 0.12);
  box-shadow: var(--shadow-1);
  min-height: 300px;
  background: var(--bg-elev);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.5s;
}
.location__map:hover iframe {
  filter: grayscale(0);
}
.location__card {
  background: var(--bg-elev);
  border: 1px solid rgba(200, 205, 213, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
}
.location__icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #fff;
  margin-bottom: 1rem;
}
.location__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--silver-bright);
  margin-bottom: 1rem;
}
.location__list {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.location__list li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.location__list strong {
  color: var(--silver);
  font-weight: 600;
}
.location__list a {
  color: var(--aqua);
  transition: color 0.25s;
}
.location__list a:hover {
  color: var(--lime);
}

/* ---------- Final CTA ---------- */
.cta {
  position: relative;
  padding: clamp(5rem, 11vw, 8.5rem) 0;
  overflow: hidden;
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(5, 6, 8, 0.82) 30%, rgba(5, 6, 8, 0.88) 70%, var(--bg) 100%);
}
.cta__inner {
  position: relative;
  display: grid;
  justify-items: center;
}
.cta__tag {
  color: var(--lime);
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--silver-bright);
  max-width: 720px;
  text-wrap: balance;
}
.cta__text {
  color: var(--muted);
  max-width: 520px;
  margin-top: 1.2rem;
}
.cta__actions {
  margin-top: 2.2rem;
}
.cta__phone {
  display: inline-block;
  margin-top: 1.3rem;
  color: var(--silver);
  border-bottom: 1px dashed rgba(200, 205, 213, 0.4);
  transition: color 0.3s, border-color 0.3s;
}
.cta__phone:hover {
  color: var(--aqua);
  border-color: var(--aqua);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid rgba(200, 205, 213, 0.08);
  padding: 3.2rem 0 1.8rem;
}
.footer__grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: 1fr;
}
.footer__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 0.9rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.footer__about {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 300px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--silver-bright);
  margin-bottom: 0.9rem;
}
.footer__col a,
.footer__col span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.28rem 0;
  transition: color 0.25s, transform 0.25s var(--ease-out);
}
.footer__col a:hover {
  color: var(--lime);
  transform: translateX(4px);
}
.footer__mini {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}
.footer__bottom {
  margin-top: 2.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 205, 213, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: var(--grad-lime);
  color: #0b1400;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 12px 34px rgba(138, 214, 15, 0.45);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}
.wa-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(185, 244, 58, 0.6);
}
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(185, 244, 58, 0.5);
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(185, 244, 58, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(185, 244, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(185, 244, 58, 0); }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  background: rgba(2, 3, 5, 0.92);
  backdrop-filter: blur(12px);
  padding: 2rem 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox[hidden] {
  display: none;
}
.lightbox.is-open {
  display: grid;
}
.lightbox__img {
  max-width: min(880px, 100%);
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  object-fit: contain;
}
.lightbox__cap {
  margin-top: 1rem;
  color: var(--silver);
  font-size: 0.95rem;
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--silver-bright);
  font-size: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s, transform 0.3s;
}
.lightbox__close:hover {
  background: var(--lime);
  color: #0b1400;
  transform: rotate(90deg);
}

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1100;
  pointer-events: none;
  background: transparent;
}
.progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--aqua), var(--purple), var(--lime));
  box-shadow: 0 0 12px rgba(47, 214, 232, 0.6);
}

/* ---------- Reveal base (JS enhanced) ---------- */
[data-reveal] {
  opacity: 0;
}
.js-ready [data-reveal] {
  opacity: 1;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .hero__img,
  .feature__media img {
    transform: none;
  }
}

/* =========================================================
   Responsive · Tablet ≥ 640px
   ========================================================= */
@media (min-width: 640px) {
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .insta {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .location__map iframe {
    min-height: 380px;
  }
}

/* =========================================================
   Responsive · Desktop ≥ 1024px
   ========================================================= */
@media (min-width: 1024px) {
  :root {
    --nav-h: 80px;
  }

  .nav__burger {
    display: none;
  }
  .nav__menu {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.9rem;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    border-bottom: 0;
  }
  .nav__link {
    font-size: 0.95rem;
    padding: 0.3rem 0;
  }
  .nav__link:hover {
    padding-left: 0;
  }
  .nav__cta {
    margin-top: 0;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 1rem);
  }
  .hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }
  .hero__media {
    display: block;
    justify-self: end;
  }
  .hero__logo-ring {
    position: relative;
    width: min(400px, 32vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
  }
  .hero__logo {
    width: 78%;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 30px 70px rgba(0, 0, 0, 0.55);
  }
  .hero__ring-rotor {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(47, 214, 232, 0.5);
    animation: spin 22s linear infinite;
  }
  .hero__ring-rotor::before {
    content: "";
    position: absolute;
    top: 2%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 16px var(--lime);
  }
  .hero__ring-rotor::after {
    content: "";
    position: absolute;
    bottom: 6%;
    left: 12%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 14px var(--purple);
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .services {
    grid-template-columns: repeat(3, 1fr);
  }
  .card__media {
    height: 300px;
  }

  .feature__item {
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
  }
  .feature__item--reverse .feature__media {
    order: 2;
  }
  .feature__item--reverse .feature__body {
    order: 1;
  }

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

  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(4) {
    grid-row: span 2;
  }
  .gallery__item {
    aspect-ratio: 3 / 4;
  }

  .about {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }

  .location {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }
  .location__map {
    min-height: 100%;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* =========================================================
   Responsive · Large ≥ 1440px
   ========================================================= */
@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }
}
