:root {
  --bg: #020403;
  --bg-strong: #050807;
  --surface: #07110e;
  --surface-2: #0a0a0f;
  --ink: #f4f4f5;
  --muted: #9ca3af;
  --line: rgba(255, 255, 255, 0.12);
  --teal: #10b981;
  --teal-dark: #0ea371;
  --teal-glow: rgba(16, 185, 129, 0.32);
  --amber: #c8956c;
  --rose: #d4a574;
  --graphite: #050807;
  --focus: #14b8a6;
  --shadow: 0 22px 70px rgba(16, 185, 129, 0.16);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  background: #020403;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  background: transparent;
  color: var(--ink);
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(16, 185, 129, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.045) 1px, transparent 1px),
    repeating-linear-gradient(180deg, transparent 0 13px, rgba(255, 255, 255, 0.018) 14px);
  background-size: 82px 82px, 82px 82px, 100% 14px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.64) 68%, rgba(0, 0, 0, 0.28));
  opacity: 0.7;
  animation: grid-drift 28s linear infinite;
}

#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100svh;
  display: block;
  pointer-events: none;
  background: #020403;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.site-top,
main,
.site-footer,
.whatsapp-float {
  position: relative;
  z-index: 2;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-top {
  position: sticky;
  top: 0;
  z-index: 50;
}

.offer-strip {
  min-height: 44px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 8px max(20px, calc((100vw - 1120px) / 2));
  background: #020403;
  color: white;
  border-bottom: 1px solid rgba(16, 185, 129, 0.18);
  box-shadow: 0 1px 0 rgba(16, 185, 129, 0.08) inset;
}

.offer-strip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.9);
  animation: coupon-pulse 1.4s ease-in-out infinite;
}

.offer-kicker {
  min-width: max-content;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.45);
  background: rgba(16, 185, 129, 0.12);
  color: var(--teal);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.offer-strip strong {
  font-size: clamp(0.82rem, 2vw, 0.98rem);
  line-height: 1.25;
}

.offer-clock {
  min-width: max-content;
  font-weight: 800;
  color: var(--teal);
}

.coupon-pop {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 70;
  width: min(390px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(16, 185, 129, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(200, 149, 108, 0.08)),
    rgba(2, 4, 3, 0.94);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(16, 185, 129, 0.08) inset;
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.coupon-pop[hidden] {
  display: none;
}

.coupon-pop.open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.coupon-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-weight: 900;
}

.coupon-status {
  width: max-content;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(16, 185, 129, 0.34);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.coupon-pop strong {
  display: block;
  margin: 12px 36px 8px 0;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  line-height: 1.08;
}

.coupon-pop p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
}

.coupon-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 14px;
}

.coupon-meta span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border: 1px dashed rgba(16, 185, 129, 0.48);
  border-radius: var(--radius);
  background: rgba(2, 4, 3, 0.62);
  color: var(--teal);
  font-weight: 900;
}

.site-header {
  position: relative;
  background: rgba(2, 4, 3, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(16, 185, 129, 0.14);
  color: white;
  border: 1px solid rgba(16, 185, 129, 0.28);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #999;
  font-weight: 700;
  font-size: 0.93rem;
}

.nav-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--teal);
  transform: translateY(-1px);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #020403 !important;
  box-shadow: 0 16px 36px rgba(16, 185, 129, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--rose));
}

.section-band {
  position: relative;
  padding: 96px 0;
}

.hero-section {
  min-height: min(780px, calc(100svh - 150px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(2, 4, 3, 0.98), rgba(2, 4, 3, 0.72) 54%, rgba(2, 4, 3, 0.92)),
    rgba(2, 4, 3, 0.88);
  color: white;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-section::before {
  inset: 10% 7% 9%;
  border: 1px solid rgba(16, 185, 129, 0.16);
  background:
    linear-gradient(90deg, transparent 0 49.6%, rgba(16, 185, 129, 0.28) 49.8% 50.2%, transparent 50.4%),
    linear-gradient(180deg, transparent 0 49.6%, rgba(200, 149, 108, 0.2) 49.8% 50.2%, transparent 50.4%);
  opacity: 0.46;
  transform: skewY(-2deg);
}

.hero-section::after {
  top: -18%;
  bottom: -18%;
  width: 36%;
  left: -44%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.16), transparent);
  filter: blur(14px);
  animation: signal-sweep 7s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.08;
  filter: grayscale(0.72) saturate(0.7) contrast(1.28);
  mix-blend-mode: screen;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 4, 3, 0.98), rgba(2, 4, 3, 0.8) 46%, rgba(2, 4, 3, 0.58) 78%),
    linear-gradient(180deg, rgba(2, 4, 3, 0.2), rgba(2, 4, 3, 0.82));
}

#depth-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.96;
  pointer-events: none;
  mix-blend-mode: screen;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 5.4vw, 4.75rem);
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
}

.text-accent {
  color: var(--teal);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.hero-lead,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.12rem);
}

.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--teal);
  color: #020403;
  box-shadow: 0 18px 38px rgba(16, 185, 129, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.proof-row span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  backdrop-filter: blur(12px);
}

.hero-badges {
  position: relative;
  min-height: 430px;
}

.float-panel {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius);
  background: rgba(5, 8, 7, 0.74);
  color: var(--ink);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.14);
}

.panel-a {
  left: 8%;
  bottom: 18%;
  min-width: 140px;
  padding: 14px;
}

.panel-a strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--rose);
}

.panel-a small,
.panel-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.panel-b {
  right: 3%;
  top: 24%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.16);
}

.business-strip {
  padding: 18px 0;
  background: #03110d;
  color: white;
  border-top: 1px solid rgba(16, 185, 129, 0.18);
  border-bottom: 1px solid rgba(16, 185, 129, 0.18);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: center;
  text-align: center;
  font-weight: 800;
  font-size: 0.88rem;
}

.strip-grid span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: var(--radius);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.services-section,
.process-section,
.faq-section {
  background: var(--bg-strong);
}

.service-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.chip:hover,
.chip.active {
  background: var(--teal);
  color: #020403;
  transform: translateY(-1px);
}

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

.service-card,
.process-step,
.showcase-card,
.price-card,
.portfolio-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.service-card,
.process-step,
.showcase-card {
  padding: 22px;
}

.service-card {
  min-height: 220px;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.service-card.is-hidden {
  display: none;
}

.service-card:hover,
.showcase-card:hover,
.process-step:hover,
.portfolio-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: 0 18px 48px rgba(16, 185, 129, 0.12);
}

.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.process-step p,
.showcase-card p,
.faq-panel,
.estimate-note,
.form-note,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.estimator-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.1), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(200, 149, 108, 0.08), transparent 28%),
    var(--bg);
}

.estimator-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.countdown-box {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: var(--radius);
  background: rgba(16, 185, 129, 0.08);
  color: var(--teal);
  font-weight: 900;
}

.service-menu-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform-style: preserve-3d;
}

.price-card.featured {
  border-color: rgba(16, 185, 129, 0.45);
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.price-card.custom {
  border-color: rgba(200, 149, 108, 0.35);
}

.price-label {
  width: max-content;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 999px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 18px;
}

.price-card strong {
  display: block;
  margin: 4px 0 12px;
  color: var(--teal);
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
}

.price-card p {
  flex: 1;
  margin: 0 0 18px;
  color: var(--muted);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--amber);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
}

.work-section {
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.9), rgba(2, 4, 3, 0.94)),
    transparent;
  border-top: 1px solid rgba(16, 185, 129, 0.08);
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
}

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

.portfolio-card {
  display: block;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(2, 4, 3, 0.72);
}

.portfolio-preview {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(16, 185, 129, 0.08), transparent 38%),
    #020403;
  isolation: isolate;
}

.portfolio-preview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 28px;
  background:
    radial-gradient(circle at 18px 14px, rgba(16, 185, 129, 0.9) 0 4px, transparent 4.5px),
    radial-gradient(circle at 34px 14px, rgba(200, 149, 108, 0.9) 0 4px, transparent 4.5px),
    radial-gradient(circle at 50px 14px, rgba(255, 255, 255, 0.45) 0 4px, transparent 4.5px),
    linear-gradient(180deg, rgba(2, 4, 3, 0.92), rgba(2, 4, 3, 0.66));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-preview::after {
  content: "Abrir sitio";
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(16, 185, 129, 0.34);
  border-radius: var(--radius);
  background: rgba(2, 4, 3, 0.78);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.portfolio-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.01);
  transition: transform 240ms ease, filter 240ms ease;
}

.portfolio-card:hover .portfolio-preview img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.portfolio-card:hover .portfolio-preview::after {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-copy {
  padding: 18px;
}

.portfolio-copy span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.showcase-card {
  transform-style: preserve-3d;
}

.showcase-preview {
  height: 190px;
  margin: -6px -6px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 185, 129, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.15)),
    linear-gradient(135deg, var(--teal), var(--amber));
  position: relative;
  overflow: hidden;
}

.showcase-preview::before,
.showcase-preview::after {
  content: "";
  position: absolute;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.showcase-preview::before {
  width: 58%;
  height: 52%;
  left: 20px;
  top: 24px;
}

.showcase-preview::after {
  width: 36%;
  height: 28%;
  right: 20px;
  bottom: 24px;
}

.showcase-preview.restaurant {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, #14532d, #d97706);
}

.showcase-preview.service {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, #0f766e, #334155);
}

.showcase-preview.store {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, #be123c, #0f766e);
}

.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.faq-item {
  width: 100%;
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-weight: 900;
}

.faq-item strong {
  font-size: 1.35rem;
  color: var(--teal);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 220ms ease, padding 220ms ease;
}

.faq-panel.open {
  max-height: 160px;
  padding: 16px 18px 20px;
  border-bottom: 1px solid var(--line);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(2, 4, 3, 0.98), rgba(5, 8, 7, 0.86)),
    transparent;
  color: white;
}

.contact-copy p,
.contact-section .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: var(--radius);
  background: rgba(16, 185, 129, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 20px;
  overflow: hidden;
  padding: 0 24px 24px;
  border-color: rgba(16, 185, 129, 0.26);
  background:
    linear-gradient(180deg, rgba(16, 185, 129, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(2, 4, 3, 0.82);
  color: var(--ink);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(16, 185, 129, 0.08) inset;
}

.contact-form::before {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  width: 45%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--amber), transparent);
  animation: form-scan 4.8s linear infinite;
}

.form-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 -24px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(16, 185, 129, 0.16), rgba(200, 149, 108, 0.08)),
    rgba(2, 4, 3, 0.55);
}

.form-topline h3 {
  margin: 5px 0 0;
  font-size: clamp(1.28rem, 2.4vw, 1.7rem);
}

.form-label {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-direct {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(16, 185, 129, 0.36);
  border-radius: var(--radius);
  background: rgba(16, 185, 129, 0.1);
  color: var(--teal);
  font-weight: 900;
  white-space: nowrap;
}

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

.service-choice {
  position: relative;
  min-height: 118px;
  display: grid;
  align-content: space-between;
  gap: 7px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(2, 4, 3, 0.62);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-choice:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.34);
}

.service-choice:has(input:checked) {
  border-color: rgba(16, 185, 129, 0.68);
  background:
    linear-gradient(140deg, rgba(16, 185, 129, 0.18), rgba(200, 149, 108, 0.08)),
    rgba(2, 4, 3, 0.82);
  box-shadow: 0 18px 44px rgba(16, 185, 129, 0.12);
}

.service-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-choice span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-choice strong {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.32rem, 2.6vw, 1.9rem);
  line-height: 1;
}

.service-choice small {
  color: var(--teal);
  font-weight: 800;
}

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

.field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.field span {
  color: rgba(255, 255, 255, 0.84);
}

.contact-form input:not([type="radio"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(2, 4, 3, 0.72);
  color: var(--ink);
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:not([type="radio"]):focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.18);
  background: rgba(2, 4, 3, 0.9);
}

.contact-form textarea {
  min-height: 132px;
}

.form-actions {
  display: grid;
  gap: 10px;
}

.form-note {
  min-height: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.site-footer {
  padding: 26px 0;
  background: #020403;
  color: white;
  border-top: 1px solid rgba(16, 185, 129, 0.16);
}

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

.site-footer .brand {
  color: white;
}

.site-footer a:last-child {
  color: var(--teal);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #020403;
  box-shadow: 0 18px 42px rgba(16, 185, 129, 0.34);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 82px 82px, 82px 82px, 0 56px;
  }
}

@keyframes signal-sweep {
  0% {
    transform: translateX(0) skewX(-10deg);
    opacity: 0;
  }

  16%,
  52% {
    opacity: 1;
  }

  100% {
    transform: translateX(420%) skewX(-10deg);
    opacity: 0;
  }
}

@keyframes form-scan {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(320%);
  }
}

@keyframes coupon-pulse {
  0%,
  100% {
    transform: scale(0.86);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .offer-strip {
    grid-template-columns: auto auto 1fr;
  }

  .offer-clock {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 112px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius);
    background: rgba(2, 4, 3, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero-grid,
  .estimator-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding: 56px 0 48px;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(2, 4, 3, 0.95), rgba(2, 4, 3, 0.82)),
      linear-gradient(180deg, rgba(2, 4, 3, 0.54), rgba(2, 4, 3, 0.78));
  }

  .hero-bg img {
    object-position: 66% center;
  }

  .hero-badges {
    min-height: 86px;
  }

  .panel-a {
    left: 0;
    bottom: 0;
  }

  .panel-b {
    right: 0;
    top: 0;
  }

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

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

  .service-menu-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1120px);
  }

  .offer-strip {
    gap: 8px;
    padding-inline: 14px;
  }

  .offer-strip strong {
    font-size: 0.78rem;
  }

  .nav-shell {
    min-height: 64px;
  }

  .nav-links {
    top: 106px;
  }

  .section-band {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-inline: 14px;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-badges {
    min-height: 112px;
  }

  .strip-grid,
  .service-grid,
  .process-grid,
  .showcase-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .form-topline,
  .service-choice-grid {
    grid-template-columns: 1fr;
  }

  .form-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-choice {
    min-height: 102px;
  }

  .coupon-pop {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

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

  .whatsapp-float {
    display: none;
  }
}

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

  #depth-canvas,
  #ambient-canvas {
    display: none;
  }
}
