:root {
  --bg: #090f14;
  --surface: #101821;
  --surface-soft: #121d27;
  --line: #1f2f40;
  --text: #edf4ff;
  --muted: #95a8be;
  --green: #0ac56b;
  --green-soft: #8ff2bf;
  --blue: #1f7aff;
  --radius: 0.875rem;
  --container: 72rem;
  --header-height: 4.5rem;
  --header-offset: calc(var(--header-height) + env(safe-area-inset-top));
}

* {
  box-sizing: border-box;
}

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

::selection {
  background: rgba(10, 197, 107, 0.35);
  color: #08110d;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 0.6rem);
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(10, 197, 107, 0.16), transparent 35%),
    radial-gradient(circle at 90% 14%, rgba(31, 122, 255, 0.15), transparent 34%),
    var(--bg);
  background-size: 150% 150%, 150% 150%, auto;
  animation: bg-shift 14s ease-in-out infinite alternate;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

body.contact-open {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: calc(var(--header-offset) + 0.6rem);
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 14rem;
  height: 14rem;
  border-radius: 999rem;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background:
    radial-gradient(circle at 30% 30%, rgba(10, 197, 107, 0.12), rgba(31, 122, 255, 0.1) 45%, transparent 72%);
  filter: blur(1rem);
  transition: opacity 0.25s ease;
}

.cursor-glow.active {
  opacity: 0.6;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: env(safe-area-inset-top);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.05);
  background: rgba(9, 15, 20, 0.86);
  backdrop-filter: blur(0.5rem);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(5, 10, 15, 0.62);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.58rem;
  font-weight: 700;
  letter-spacing: 0.015rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
  min-width: 0;
}

.brand-logo {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  flex: 0 0 1.75rem;
}

.brand-text {
  color: var(--text);
  white-space: nowrap;
}

.brand-accent {
  color: var(--green);
}

.menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  min-width: 0;
}

.menu a.is-current {
  color: #d8e8ff;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--text);
}

.menu a.menu-product {
  padding: 0.3rem 0.65rem;
  border: 0.0625rem solid rgba(10, 197, 107, 0.42);
  border-radius: 999rem;
  color: var(--green-soft);
  background: rgba(10, 197, 107, 0.1);
}

.menu-btn {
  display: none;
  width: 2.625rem;
  height: 2.625rem;
  padding: 0.5rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.03);
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 0.125rem;
  margin: 0.3125rem 0;
  background: var(--text);
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.menu-btn:hover,
.menu-btn:focus-visible {
  border-color: rgba(31, 122, 255, 0.55);
}

.hero {
  padding: 4rem 0 3.2rem;
}

.quick-path-wrap {
  padding: 0 0 1.2rem;
}

.quick-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.quick-path a {
  display: block;
  padding: 0.62rem 0.74rem;
  border: 0.0625rem solid rgba(31, 122, 255, 0.3);
  border-radius: 0.62rem;
  color: #b5c9df;
  text-decoration: none;
  font-size: 0.9rem;
  text-align: center;
  background: rgba(13, 23, 33, 0.58);
}

.quick-path a.is-current {
  border-color: rgba(10, 197, 107, 0.55);
  color: #dfffee;
  background:
    linear-gradient(120deg, rgba(10, 197, 107, 0.16), rgba(31, 122, 255, 0.12)),
    rgba(13, 23, 33, 0.68);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 0.8rem;
  padding: 0.3rem 0.65rem;
  border: 0.0625rem solid rgba(31, 122, 255, 0.35);
  border-radius: 999rem;
  color: #b4d6ff;
  background: rgba(31, 122, 255, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
}

.eyebrow strong {
  color: var(--green-soft);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.3rem);
  line-height: 1.06;
}

.lead {
  margin: 1rem 0 1.3rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.15rem;
  border: 0.0625rem solid transparent;
  border-radius: 0.625rem;
  text-decoration: none;
  font-weight: 600;
}

.wa-icon {
  width: 1.85rem;
  height: 1.85rem;
  flex: 0 0 1.85rem;
  transform: translateY(0.015rem);
}

.btn-primary {
  color: #08110d;
  background: linear-gradient(90deg, var(--green), #16e588);
}

.btn-featured {
  position: relative;
  border-color: rgba(10, 197, 107, 0.7);
  box-shadow:
    0 0 0 0.0625rem rgba(10, 197, 107, 0.35),
    0 0.75rem 1.4rem rgba(10, 197, 107, 0.3);
  animation: featured-pulse 1.9s ease-in-out infinite;
}

.btn-featured:hover,
.btn-featured:focus-visible {
  transform: translateY(-0.05rem);
  box-shadow:
    0 0 0 0.0625rem rgba(31, 122, 255, 0.45),
    0 0.9rem 1.8rem rgba(31, 122, 255, 0.25);
}

.btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.01);
  color: var(--text);
}

.btn-outline-highlight {
  border-color: rgba(31, 122, 255, 0.5);
  background:
    linear-gradient(120deg, rgba(31, 122, 255, 0.14), rgba(10, 197, 107, 0.08)),
    rgba(255, 255, 255, 0.01);
  box-shadow:
    inset 0 0 0 0.0625rem rgba(255, 255, 255, 0.04),
    0 0.55rem 1.25rem rgba(31, 122, 255, 0.16);
}

.btn-outline-highlight:hover,
.btn-outline-highlight:focus-visible {
  border-color: rgba(10, 197, 107, 0.55);
  box-shadow:
    inset 0 0 0 0.0625rem rgba(255, 255, 255, 0.06),
    0 0.8rem 1.55rem rgba(10, 197, 107, 0.18);
}

.btn-whatsapp {
  border-color: rgba(10, 197, 107, 0.52);
  background: linear-gradient(120deg, rgba(10, 197, 107, 0.18), rgba(31, 122, 255, 0.16));
  color: #b9ffe0;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  border-color: rgba(31, 122, 255, 0.58);
  color: #d8f0ff;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.trust-list li {
  color: #b6c7db;
  font-size: 0.93rem;
}

.trust-list li::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.5rem;
  border-radius: 999rem;
  background: var(--green);
}

.hero-panel {
  padding: 1.1rem;
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(31, 122, 255, 0.11), rgba(10, 197, 107, 0.06)),
    var(--surface-soft);
}

.panel-tag {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  color: #9bc8ff;
  font-weight: 700;
}

.hero-panel h2 {
  margin: 0;
  font-size: 1.45rem;
}

.hero-panel p {
  margin: 0.65rem 0 0.9rem;
  color: #bfd0e4;
}

.offer-box {
  display: inline-grid;
  gap: 0.05rem;
  margin: 0 0 0.9rem;
  padding: 0.55rem 0.75rem;
  border: 0.0625rem solid rgba(10, 197, 107, 0.72);
  border-radius: 0.625rem;
  color: #dfffee;
  background:
    linear-gradient(120deg, rgba(10, 197, 107, 0.2), rgba(31, 122, 255, 0.16)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    0 0 0 0.0625rem rgba(10, 197, 107, 0.26),
    0 0.7rem 1.4rem rgba(10, 197, 107, 0.25);
  width: fit-content;
  animation: offer-soft-pulse 2.8s ease-in-out infinite;
}

.offer-box strong {
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.02rem;
}

.offer-box span {
  font-size: 0.78rem;
  color: #c8d8ea;
}

.section {
  padding: 3.8rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 44rem;
}

.section-alt {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.05);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
}

.section-product {
  border-top: 0.0625rem solid rgba(31, 122, 255, 0.28);
  border-bottom: 0.0625rem solid rgba(10, 197, 107, 0.28);
  background:
    radial-gradient(circle at 90% 10%, rgba(31, 122, 255, 0.1), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(10, 197, 107, 0.08), transparent 35%),
    rgba(255, 255, 255, 0.01);
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  color: #9bc8ff;
  font-weight: 700;
}

h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.section-lead {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
}

.product-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.2rem 0 1.3rem;
}

.product-points article {
  padding: 0.95rem;
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 24, 33, 0.9);
}

.product-points h3,
.service-card h3,
.process-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.product-points p,
.service-card p,
.process-list p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.gallery-card.large {
  grid-column: span 2;
}

.gallery-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-card.large .gallery-image {
  aspect-ratio: 16 / 9;
}

.gallery-card figcaption {
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  color: #bdd0e5;
}

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

.service-card {
  padding: 1rem;
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  position: relative;
}

.process-item {
  padding: 1rem;
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(31, 122, 255, 0.08), rgba(10, 197, 107, 0.03)),
    var(--surface);
  position: relative;
}

.process-item::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -0.5rem;
  height: 0.0625rem;
  background: linear-gradient(90deg, rgba(31, 122, 255, 0.35), rgba(10, 197, 107, 0.35));
}

.process-item:nth-child(3)::after,
.process-item:nth-child(4)::after {
  display: none;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.65rem;
  border-radius: 999rem;
  color: #9fcdff;
  font-weight: 700;
  background: rgba(31, 122, 255, 0.2);
  border: 0.0625rem solid rgba(31, 122, 255, 0.4);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1.1rem;
  align-items: start;
}

.process-intro {
  padding: 1.1rem;
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(31, 122, 255, 0.12), rgba(10, 197, 107, 0.04)),
    var(--surface);
}

.process-intro h2 {
  margin-bottom: 0.55rem;
}

.process-intro p {
  margin: 0;
  color: var(--muted);
}

#processo {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 122, 255, 0.08), transparent 35%),
    radial-gradient(circle at 88% 82%, rgba(10, 197, 107, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.002));
}

#processo .process-intro {
  border-color: rgba(31, 122, 255, 0.35);
  border-left: 0.22rem solid rgba(10, 197, 107, 0.7);
}

#processo .process-list {
  padding: 0.7rem;
  border: 0.0625rem solid rgba(31, 122, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(12, 20, 29, 0.55);
}

#processo .process-item {
  border-color: rgba(31, 122, 255, 0.28);
  background:
    linear-gradient(160deg, rgba(31, 122, 255, 0.12), rgba(10, 197, 107, 0.05)),
    #0f1a24;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

#processo .process-item:hover {
  border-color: rgba(10, 197, 107, 0.4);
  transform: translateY(-0.08rem);
}

#processo .process-list span {
  background: linear-gradient(160deg, rgba(31, 122, 255, 0.3), rgba(31, 122, 255, 0.12));
  color: #d4e8ff;
}

.contact-box {
  text-align: center;
  padding: 2rem;
  border: 0.0625rem solid var(--line);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(10, 197, 107, 0.08), rgba(10, 197, 107, 0.03)),
    #0f1820;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: calc(1rem + env(safe-area-inset-top)) 1rem calc(1rem + env(safe-area-inset-bottom));
  background: rgba(5, 10, 15, 0.75);
  backdrop-filter: blur(0.3rem);
}

.contact-modal.open {
  display: flex;
}

.contact-modal-card {
  position: relative;
  width: min(94vw, 49rem);
}

.contact-modal .contact-box {
  margin: 0;
}

.contact-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  width: 2.1rem;
  height: 2.1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.22);
  border-radius: 999rem;
  background: rgba(8, 13, 19, 0.86);
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.contact-box p {
  margin: 0 auto 1rem;
  max-width: 58ch;
  color: var(--muted);
}

.offer-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0 auto 1rem;
  padding: 0.45rem 0.75rem;
  border: 0.0625rem solid rgba(10, 197, 107, 0.62);
  border-radius: 999rem;
  color: #dfffee;
  background: rgba(10, 197, 107, 0.14);
  font-weight: 600;
  animation: offer-soft-pulse 2.8s ease-in-out infinite;
}

.offer-note strong {
  color: #9bffd1;
  font-size: 1.03rem;
}

.contact-actions {
  justify-content: center;
  margin-bottom: 0;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 0.95rem;
  border-radius: 999rem;
  text-decoration: none;
  font-weight: 700;
  color: #08110d;
  background: linear-gradient(90deg, var(--green), #16e588);
  box-shadow: 0 0.75rem 1.4rem rgba(0, 0, 0, 0.32);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: calc(1.2rem + env(safe-area-inset-top)) 1.2rem calc(1.2rem + env(safe-area-inset-bottom));
  background: rgba(6, 10, 14, 0.85);
  backdrop-filter: blur(0.25rem);
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: min(94vw, 72rem);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 0.75rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 1.1rem 3rem rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: calc(0.8rem + env(safe-area-inset-top));
  right: 0.8rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.22);
  border-radius: 999rem;
  background: rgba(8, 13, 19, 0.8);
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.wa-icon-float {
  width: 1.58rem;
  height: 1.58rem;
}

.footer {
  padding: 1.2rem 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.06);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.brand-logo-footer {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.3rem;
}

.footer a {
  color: var(--text);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 0.125rem solid rgba(31, 122, 255, 0.75);
  outline-offset: 0.125rem;
}

@keyframes bg-shift {
  0% {
    background-position: 0% 0%, 100% 0%, center;
  }

  100% {
    background-position: 14% 18%, 80% 25%, center;
  }
}

@keyframes featured-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0.0625rem rgba(10, 197, 107, 0.32),
      0 0.75rem 1.4rem rgba(10, 197, 107, 0.26);
  }

  50% {
    box-shadow:
      0 0 0 0.125rem rgba(10, 197, 107, 0.5),
      0 1rem 2rem rgba(10, 197, 107, 0.34);
  }
}

@keyframes offer-soft-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.018);
    filter: brightness(1.08);
  }
}

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

  .cursor-glow {
    display: none;
  }

  .btn-featured {
    animation: none;
  }

  .offer-box,
  .offer-note {
    animation: none;
  }
}

@media (max-width: 62rem) {
  .section {
    padding: 3.2rem 0;
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

  .hero-grid,
  .product-points,
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .process-layout,
  .process-list {
    grid-template-columns: 1fr;
  }

  .process-item::after {
    display: none;
  }

  #processo .process-list {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .gallery-card.large {
    grid-column: auto;
  }

  .header-wa {
    display: none;
  }

  .hero {
    padding: 3.2rem 0 2.6rem;
  }

  .hero-grid {
    gap: 1.1rem;
  }

  .hero-panel {
    padding: 1rem;
  }

  .hero-panel .btn-whatsapp {
    width: 100%;
  }

  .service-card,
  .product-points article,
  .process-item {
    padding: 0.92rem;
  }

  .menu-btn {
    display: inline-block;
  }

  .menu {
    position: fixed;
    inset: var(--header-offset) 0 0 0;
    display: flex;
    z-index: 45;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 1rem 5% 1.6rem;
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(12, 20, 28, 0.98), rgba(8, 14, 20, 0.98));
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.04);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  }

  .menu a {
    width: 100%;
    min-height: 2.9rem;
    padding: 0.78rem 0.88rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.08);
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.02);
  }

  .menu.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .menu a.menu-product {
    width: 100%;
  }

  .quick-path {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .quick-path a {
    text-align: left;
    font-size: 0.92rem;
    padding: 0.64rem 0.72rem;
  }

  .menu a.is-current {
    color: #dfffee;
    border-color: rgba(10, 197, 107, 0.48);
    background:
      linear-gradient(120deg, rgba(10, 197, 107, 0.16), rgba(10, 197, 107, 0.08)),
      rgba(255, 255, 255, 0.02);
  }

  .quick-path a.is-current {
    border-color: rgba(10, 197, 107, 0.5);
    color: #dfffee;
    background: rgba(10, 197, 107, 0.12);
  }
}

@media (max-width: 37.5rem) {
  :root {
    --header-height: 4.1rem;
  }

  .container {
    width: 94%;
  }

  .nav-wrap {
    gap: 0.55rem;
  }

  .brand {
    font-size: 1.3rem;
  }

  .brand-text {
    font-size: 1.16rem;
  }

  .brand-logo {
    width: 1.38rem;
    height: 1.38rem;
    flex-basis: 1.38rem;
  }

  .hero {
    padding: 2.6rem 0 2rem;
  }

  h1 {
    font-size: clamp(1.72rem, 9vw, 2.2rem);
    line-height: 1.12;
  }

  .eyebrow {
    font-size: 0.76rem;
    padding: 0.28rem 0.56rem;
  }

  .lead {
    font-size: 0.98rem;
    margin: 0.85rem 0 1.05rem;
  }

  .hero-cta {
    gap: 0.6rem;
    margin-bottom: 1rem;
  }

  .btn {
    width: 100%;
    min-height: 2.95rem;
    padding: 0.72rem 0.95rem;
  }

  .wa-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-basis: 1.5rem;
  }

  .offer-box {
    width: 100%;
    justify-items: start;
  }

  .offer-box span {
    line-height: 1.25;
  }

  .offer-note {
    width: 100%;
    border-radius: 0.75rem;
    justify-content: flex-start;
  }

  .trust-list li {
    font-size: 0.9rem;
  }

  .section {
    padding: 2.7rem 0;
    contain-intrinsic-size: 1px 36rem;
  }

  .section-head {
    margin-bottom: 1rem;
  }

  .gallery-grid,
  .product-points,
  .service-grid,
  .process-list {
    gap: 0.72rem;
  }

  .gallery-card figcaption {
    font-size: 0.85rem;
    padding: 0.5rem 0.6rem;
  }

  .process-intro {
    padding: 0.95rem;
  }

  .menu {
    inset: var(--header-offset) 0 0 0;
    padding: 0.9rem 4.5% 1.2rem;
  }

  .quick-path-wrap {
    padding: 0 0 0.95rem;
  }

  .contact-box {
    padding: 1.2rem 0.9rem;
  }

  .contact-modal {
    align-items: flex-end;
    padding: calc(0.6rem + env(safe-area-inset-top)) 0.6rem calc(0.6rem + env(safe-area-inset-bottom));
  }

  .contact-modal-card {
    width: 100%;
  }

  .contact-modal .contact-box {
    border-radius: 0.8rem;
  }

  .contact-box p {
    font-size: 0.95rem;
  }

  .contact-actions .btn {
    word-break: break-word;
    white-space: normal;
  }

  .whatsapp-float {
    right: 0.7rem;
    bottom: calc(0.7rem + env(safe-area-inset-bottom));
    padding: 0.62rem 0.8rem;
    font-size: 0.88rem;
  }

  .wa-icon-float {
    width: 1.34rem;
    height: 1.34rem;
  }

  main {
    padding-bottom: 4.2rem;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    flex-wrap: wrap;
    row-gap: 0.2rem;
  }

  .footer p {
    font-size: 0.92rem;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 26rem) {
  .brand {
    font-size: 1.18rem;
  }

  .brand-logo {
    width: 1.2rem;
    height: 1.2rem;
    flex-basis: 1.2rem;
  }

  h1 {
    font-size: 1.62rem;
  }

  .btn {
    font-size: 0.94rem;
  }

  .menu a {
    font-size: 0.96rem;
  }

  .offer-note {
    font-size: 0.9rem;
  }
}
