/* ===== style.css ===== */
/* WM EXPRESS ESTÉTICA AUTOMOTIVA - Design Premium Neon (Mobile-first) */

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

:root {
  --azul: #00aaff;
  --azul-neon: #00ddff;
  --dourado: #ffd700;
  --dourado-neon: #ffee00;
  --bg-dark: #0a0a0a;
  --bg-card: rgba(20, 20, 20, 0.9);
  --texto: #e0e0e0;
  --texto-claro: #ffffff;
  --texto-cinza: #aaaaaa;
  --sombra: 0 4px 20px rgba(0, 0, 0, 0.5);
  --neon-glow: 0 0 10px rgba(0, 170, 255, 0.7), 0 0 20px rgba(0, 170, 255, 0.4), 0 0 40px rgba(0, 170, 255, 0.2);
  --header-h: 64px;
  --radius: 12px;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--texto);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  /* ===== IMAGEM DE FUNDO DO CLIENTE ===== */
  background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.92)), url('img/WMEXPRESS.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 769px) {
  body {
    background-attachment: fixed;
  }
}

/* Efeito de partículas brilhantes no fundo (sobre a imagem) */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(0, 170, 255, 0.15), transparent),
    radial-gradient(1px 1px at 30% 70%, rgba(0, 170, 255, 0.1), transparent),
    radial-gradient(2px 2px at 60% 40%, rgba(0, 170, 255, 0.08), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(0, 170, 255, 0.12), transparent),
    radial-gradient(1px 1px at 90% 80%, rgba(0, 170, 255, 0.1), transparent);
  pointer-events: none;
  z-index: -1;
  animation: particles-float 20s infinite linear;
}

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

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* ---------- UTILITÁRIOS ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 8px;
  padding: 0.85rem 1.6rem;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.97);
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(380%);
}

.btn--azul {
  background: linear-gradient(135deg, var(--azul), var(--azul-neon));
  color: #000;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.6);
  animation: btn-pulse 2s infinite;
}

.btn--azul:hover {
  box-shadow: var(--neon-glow);
  transform: translateY(-3px);
  animation: none;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 170, 255, 0.6); }
  50% { box-shadow: 0 0 30px rgba(0, 170, 255, 0.9); }
}

.btn--outline {
  background: transparent;
  color: var(--azul-neon);
  border: 1px solid rgba(0, 221, 255, 0.5);
  box-shadow: 0 0 8px rgba(0, 170, 255, 0.3);
}

.btn--outline:hover {
  background: rgba(0, 170, 255, 0.12);
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
  transform: translateY(-3px);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

@media (max-width: 400px) {
  .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
  }
  .btn--lg {
    padding: 0.9rem 1.4rem;
    font-size: 0.82rem;
  }
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 170, 255, 0.25);
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.header.scrolled {
  background: rgba(3, 3, 3, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(0, 221, 255, 0.5);
}

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

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* No mobile, o botão do carrinho mostra apenas o ícone para não estourar o header */
@media (max-width: 480px) {
  .header__cart-btn span:not(.header__cart-count) {
    display: none;
  }

  .header__cart-btn {
    padding: 0.5rem 0.7rem;
  }
}

@media (min-width: 901px) {
  .header__actions {
    gap: 0.75rem;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.3s ease;
}

.logo__img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 46vw;
  object-fit: contain;
}

.logo:hover {
  opacity: 0.85;
}

@media (min-width: 768px) {
  .logo__img {
    height: 42px;
    max-width: none;
  }
}

/* Navegação desktop */
.header__nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 901px) {
  .header__nav {
    margin-left: auto;
  }
}

.header__link {
  font-size: 0.82rem;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
  padding: 0.35rem 0;
}

.header__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--azul), var(--azul-neon));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.header__link:hover,
.header__link.active {
  color: var(--azul-neon);
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.8);
}

.header__link:hover::after,
.header__link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__cart-btn {
  background: transparent;
  border: 1px solid rgba(0, 170, 255, 0.6);
  color: var(--azul-neon);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.header__cart-btn:hover {
  background: rgba(0, 170, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
  transform: translateY(-2px);
}

.header__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  background: var(--azul-neon);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  line-height: 1;
  transition: transform 0.25s var(--ease-spring);
}

.header__cart-count.pop {
  animation: count-pop 0.4s var(--ease-spring);
}

@keyframes count-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

/* Botão hambúrguer */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  z-index: 1102;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--azul-neon);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease, background-color 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 170, 255, 0.6);
}

.menu-toggle.active .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-12px);
}

.menu-toggle.active .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background: transparent;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 170, 255, 0.1) 100%);
  pointer-events: none;
  animation: hero-glow 4s infinite;
}

@keyframes hero-glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero__content {
  max-width: 700px;
  position: relative;
  z-index: 2;
  animation: hero-in 1s var(--ease-out) both;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__badge {
  display: inline-block;
  background: rgba(0, 170, 255, 0.15);
  color: var(--azul-neon);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(0, 170, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 170, 255, 0.3); }
  50% { box-shadow: 0 0 25px rgba(0, 170, 255, 0.6); }
}

.hero__title {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(1.6rem, 7.5vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(0, 170, 255, 0.3);
}

.hero__title span {
  color: var(--azul-neon);
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.8), 0 0 40px rgba(0, 170, 255, 0.4);
  background: linear-gradient(90deg, var(--azul), var(--azul-neon), var(--azul));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shine 4s linear infinite;
}

@keyframes text-shine {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  color: #ddd;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (min-width: 769px) {
  .hero__actions {
    gap: 1rem;
  }
}

/* ---------- SEÇÕES ---------- */
.section {
  padding: 4.5rem 0;
  position: relative;
  z-index: 1;
}

.section--page {
  padding-top: calc(var(--header-h) + 3.5rem);
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__overline {
  display: inline-block;
  color: var(--azul-neon);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.6);
}

.section__title {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(1.4rem, 5vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.section__description {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ---------- ANIMAÇÕES DE REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}

.reveal--left {
  transform: translateX(-50px);
}

.reveal--right {
  transform: translateX(50px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Atraso em sequência para cards estáticos */
.pacotes-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.pacotes-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.pacotes-grid .reveal:nth-child(3) { transition-delay: 0.25s; }

/* ---------- PACOTES (CARDS) ---------- */
.pacotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .pacotes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pacotes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 170, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--azul-neon), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 170, 255, 0.3);
  border-color: rgba(0, 221, 255, 0.5);
}

.card--premium {
  border-color: var(--dourado);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  animation: premium-glow 3s infinite;
}

@keyframes premium-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.card-media {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 170, 255, 0.2);
  transition: transform 0.6s var(--ease-out);
}

.card:hover .card-img {
  transform: scale(1.07);
}

.card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--azul-neon);
  margin-bottom: 0.8rem;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
}

.card--premium .card-price {
  color: var(--dourado);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.card-desc {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
  flex: 1;
}

.card-btn {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--azul), var(--azul-neon));
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.card-btn:hover {
  background: linear-gradient(135deg, var(--azul-neon), var(--azul));
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

.card-btn:active {
  transform: translateY(0) scale(0.98);
}

.card--premium .card-btn {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-neon));
}

.card--premium .card-btn:hover {
  background: linear-gradient(135deg, var(--dourado-neon), var(--dourado));
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
}

/* ---------- SERVIÇOS (CATÁLOGO) ---------- */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .servicos-grid {
    gap: 1.5rem;
  }
}

.servico-card {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 170, 255, 0.15);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 170, 255, 0.3);
  border-color: rgba(0, 221, 255, 0.5);
}

.servico-card .card-media {
  aspect-ratio: 16 / 9;
}

.servico-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.servico-card:hover .servico-img {
  transform: scale(1.08);
}

.servico-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.servico-nome {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.servico-preco {
  color: var(--azul-neon);
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 0 8px rgba(0, 170, 255, 0.5);
}

.servico-add {
  margin-top: 0.8rem;
  width: 100%;
  padding: 0.55rem;
  background: transparent;
  border: 1px solid var(--azul);
  color: var(--azul-neon);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.servico-add:hover {
  background: rgba(0, 170, 255, 0.15);
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
  transform: translateY(-2px);
}

.servico-add:active {
  transform: translateY(0) scale(0.98);
}

/* ---------- MAPA ---------- */
.mapa-section {
  padding: 3.5rem 0 4.5rem;
  background: transparent;
  position: relative;
  z-index: 1;
}

.mapa-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 170, 255, 0.05), transparent 70%);
  pointer-events: none;
}

.mapa-container {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(0, 170, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 170, 255, 0.3);
  animation: mapa-glow 3s infinite;
}

@keyframes mapa-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(0, 170, 255, 0.3); }
  50% { box-shadow: 0 0 50px rgba(0, 170, 255, 0.5); }
}

@media (min-width: 768px) {
  .mapa-container {
    height: 450px;
  }
}

.mapa-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

/* ---------- FOOTER ---------- */
.footer {
  background: rgba(2, 2, 2, 0.95);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(0, 170, 255, 0.2);
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__heading {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px rgba(0, 170, 255, 0.3);
}

.footer__text {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer__link {
  display: inline-block;
  margin-top: 0.25rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer__link:hover {
  color: var(--azul-neon);
  text-shadow: 0 0 8px rgba(0, 170, 255, 0.6);
}

.footer__social {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
}

.footer__social a {
  color: #aaa;
  transition: all 0.3s var(--ease-spring);
  -webkit-tap-highlight-color: transparent;
}

.footer__social a:hover {
  color: var(--azul-neon);
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.8);
  transform: translateY(-4px) scale(1.1);
}

.footer__bottom {
  text-align: center;
  color: #666;
  font-size: 0.8rem;
  border-top: 1px solid #1a1a1a;
  padding-top: 1.5rem;
}

/* ---------- CARRINHO LATERAL ---------- */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100dvh;
  background: #111;
  border-left: 2px solid rgba(0, 170, 255, 0.5);
  z-index: 2000;
  transition: right 0.45s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
}

@media (min-width: 500px) {
  .cart-sidebar {
    width: 420px;
    right: -420px;
  }
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  padding-top: max(1.25rem, env(safe-area-inset-top));
  border-bottom: 1px solid rgba(0, 170, 255, 0.3);
  background: rgba(0, 170, 255, 0.05);
}

.cart-header h3 {
  color: #fff;
  font-family: 'Syncopate', sans-serif;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
}

.cart-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.25rem;
  -webkit-tap-highlight-color: transparent;
}

.cart-close:hover {
  color: #ff4444;
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #222;
  animation: item-in 0.3s ease;
}

@keyframes item-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.cart-item-info h4 {
  color: #fff;
  font-size: 0.95rem;
}

.cart-item-info p {
  color: #aaa;
  font-size: 0.8rem;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ff4444;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  padding: 0.25rem;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.cart-item-remove:hover {
  color: #ff0000;
  transform: scale(1.2);
}

.cart-upsell {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #222;
  background: rgba(0, 0, 0, 0.3);
}

.cart-upsell h4 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.cart-upsell label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.cart-upsell label:hover {
  color: var(--azul-neon);
}

.cart-upsell input[type="checkbox"] {
  accent-color: var(--azul);
  flex-shrink: 0;
}

.cart-total {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #222;
  text-align: right;
}

.cart-total p {
  color: #aaa;
  font-size: 0.9rem;
}

.cart-total h3 {
  color: #fff;
  margin-top: 0.4rem;
}

.cart-total p:last-of-type {
  color: var(--azul-neon);
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(0, 170, 255, 0.6);
}

.cart-checkout {
  padding: 0 1.5rem;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
}

.cart-checkout input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cart-checkout input:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
}

.cart-checkout .btn--azul {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
  animation: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1500;
  display: none;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.overlay.show {
  display: block;
  animation: fade-in 0.3s ease;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- MENU MOBILE (ATÉ 900px) ---------- */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 1px solid rgba(0, 170, 255, 0.3);
    padding: calc(var(--header-h) + 1.5rem) 2rem 2rem;
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out), visibility 0.45s;
    visibility: hidden;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
  }

  .header__nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .header__nav.open .header__link {
    animation: menu-item-in 0.5s var(--ease-out) both;
  }

  .header__nav.open .header__link:nth-child(1) { animation-delay: 0.08s; }
  .header__nav.open .header__link:nth-child(2) { animation-delay: 0.14s; }
  .header__nav.open .header__link:nth-child(3) { animation-delay: 0.2s; }
  .header__nav.open .header__link:nth-child(4) { animation-delay: 0.26s; }

  @keyframes menu-item-in {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .header__link {
    font-size: 1.05rem;
    padding: 0.7rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header__link::after {
    display: none;
  }

  .header__link:hover {
    padding-left: 0.6rem;
  }
}

/* Bloqueia o scroll do fundo quando menu ou carrinho estão abertos */
body.menu-open {
  overflow: hidden;
}

/* ---------- RESPONSIVO GERAL ---------- */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .header__container {
    gap: 0.5rem;
  }

  .hero {
    padding-top: calc(var(--header-h) + 2rem);
    text-align: center;
  }

  .hero__content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section__title {
    line-height: 1.3;
  }
}

/* ---------- ACESSIBILIDADE: REDUZIR MOVIMENTO ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   CATÁLOGO PROFISSIONAL - BARRA DE CATEGORIAS
   ============================================================ */
.categorias {
  position: sticky;
  top: calc(var(--header-h) + 0.5rem);
  z-index: 800;
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.5rem;
  margin: 0 0 2.75rem;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 170, 255, 0.22);
  border-radius: 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.categorias::-webkit-scrollbar {
  display: none;
}

.categorias__item {
  flex-shrink: 0;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(0, 170, 255, 0.25);
  color: #ccc;
  padding: 0.6rem 1.15rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.categorias__item:hover {
  color: var(--azul-neon);
  border-color: rgba(0, 221, 255, 0.6);
}

.categorias__item.active {
  background: linear-gradient(135deg, var(--azul), var(--azul-neon));
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 18px rgba(0, 170, 255, 0.5);
}

/* ============================================================
   SEÇÕES DE CATEGORIA
   ============================================================ */
section.categoria {
  margin-bottom: 4.5rem;
  scroll-margin-top: calc(var(--header-h) + 4.75rem);
}

.categoria:last-child {
  margin-bottom: 0;
}

.categoria__header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.categoria__overline {
  display: inline-block;
  color: var(--azul-neon);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(0, 170, 255, 0.6);
}

.categoria__titulo {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(1.15rem, 4vw, 1.8rem);
  color: #fff;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.categoria__desc {
  color: #9a9a9a;
  font-size: 0.92rem;
  max-width: 620px;
  margin: 0 auto;
}

.categoria__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: 1.2rem;
  margin-top: 1.75rem;
}

@media (min-width: 768px) {
  .categoria__grid {
    gap: 1.5rem;
  }
}

/* ============================================================
   CARDS DE SERVIÇO
   ============================================================ */
.servico-resumo {
  color: #9a9a9a;
  font-size: 0.85rem;
  line-height: 1.55;
  margin-top: 0.4rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.servico-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-neon));
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.5);
}

.servico-badge--novo {
  background: linear-gradient(135deg, #22d3ee, var(--azul-neon));
  box-shadow: 0 0 14px rgba(0, 221, 255, 0.5);
}

.servico-card--destaque {
  border-color: rgba(255, 215, 0, 0.55);
  box-shadow: 0 0 22px rgba(255, 215, 0, 0.22);
}

.servico-card--destaque:hover {
  border-color: rgba(255, 215, 0, 0.85);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 34px rgba(255, 215, 0, 0.4);
}

.servico-card--destaque .servico-preco {
  color: var(--dourado);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.servico-card--pacote {
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(22, 20, 10, 0.9);
}

.servico-card--pacote:hover {
  border-color: rgba(255, 215, 0, 0.75);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 24px rgba(255, 215, 0, 0.35);
}

.servico-card--pacote .servico-preco {
  color: var(--dourado);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.servico-card--residencial {
  border-color: rgba(34, 211, 238, 0.35);
}

.servico-card--residencial:hover {
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 24px rgba(34, 211, 238, 0.3);
}

.servico-inclui {
  list-style: none;
  margin-top: 0.55rem;
  flex: 1;
}

.servico-inclui li {
  color: #b8b8b8;
  font-size: 0.82rem;
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.servico-inclui li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--dourado);
  font-size: 0.6rem;
}

.servico-obs {
  margin-top: 0.55rem;
  font-size: 0.76rem;
  font-style: italic;
  color: var(--dourado);
  line-height: 1.5;
}

.card-obs {
  margin: -0.6rem 0 1.2rem;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--dourado);
}

.servico-btn {
  margin-top: 0.9rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(135deg, var(--azul), var(--azul-neon));
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.servico-btn:hover {
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

.servico-btn:active {
  transform: translateY(0) scale(0.98);
}

.servico-card--destaque .servico-btn,
.servico-card--pacote .servico-btn {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-neon));
  color: #000;
}

.servico-card--destaque .servico-btn:hover,
.servico-card--pacote .servico-btn:hover {
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.6);
}

/* ============================================================
   MODAL DE SERVIÇO
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 94dvh;
  background: #0f0f0f;
  border: 1px solid rgba(0, 221, 255, 0.35);
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 170, 255, 0.15);
  transform: translateY(40px);
  transition: transform 0.4s var(--ease-out);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.modal__close:hover {
  color: var(--azul-neon);
  border-color: var(--azul-neon);
  transform: rotate(90deg);
}

.modal__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal__content {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.modal__content.switching {
  opacity: 0;
  transform: translateY(10px);
}

.modal__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  flex-shrink: 0;
}

.modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal__corpo {
  padding: 1.5rem;
}

.modal__categoria {
  display: inline-block;
  color: var(--azul-neon);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.modal__titulo {
  font-size: 1.35rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 0.4rem;
}

.modal__titulo:focus {
  outline: none;
}

.modal__preco {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--azul-neon);
  text-shadow: 0 0 14px rgba(0, 170, 255, 0.5);
  margin-bottom: 1rem;
}

.modal__corpo--pacote .modal__preco {
  color: var(--dourado);
  text-shadow: 0 0 14px rgba(255, 215, 0, 0.5);
}

.modal__descricao p,
.modal__corpo p {
  color: #cfcfcf;
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.modal__destaques {
  list-style: none;
  margin: 0 0 1rem;
}

.modal__destaques li {
  padding-left: 1.6rem;
  position: relative;
  color: #cfcfcf;
  font-size: 0.93rem;
  margin-bottom: 0.4rem;
}

.modal__destaques li::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 0.5rem;
  width: 0.55rem;
  height: 0.55rem;
  background: linear-gradient(135deg, var(--azul), var(--azul-neon));
  transform: rotate(45deg);
  border-radius: 2px;
}

.modal__obs {
  background: rgba(0, 170, 255, 0.07);
  border-left: 3px solid var(--azul);
  padding: 0.9rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.2rem;
}

.modal__obs strong {
  display: block;
  color: var(--azul-neon);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.modal__obs p {
  color: #c9c9c9;
  font-size: 0.87rem;
  line-height: 1.55;
  margin-bottom: 0.3rem;
}

.modal__obs p:last-child {
  margin-bottom: 0;
}

.modal__whats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 10px;
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  margin-bottom: 0.7rem;
}

.modal__whats:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 34px rgba(37, 211, 102, 0.55);
}

.modal__carrinho {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid rgba(0, 170, 255, 0.5);
  color: var(--azul-neon);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.modal__carrinho:hover {
  background: rgba(0, 170, 255, 0.12);
}

@media (min-width: 641px) {
  .modal-overlay {
    align-items: center;
    padding: 1.5rem;
  }

  .modal {
    max-height: 92dvh;
    border-radius: 18px;
  }

  .modal__corpo {
    padding: 1.75rem;
  }
}

/* ============================================================
   "VOCÊ PODE GOSTAR"
   ============================================================ */
.vocpodegostar {
  margin-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

.vocpodegostar h4 {
  color: var(--azul-neon);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.vocpodegostar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.recomendacao {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-align: left;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(0, 170, 255, 0.2);
  border-radius: 10px;
  padding: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}

.recomendacao:hover {
  border-color: rgba(0, 221, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.recomendacao img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  background: #111;
}

.recomendacao__nome {
  font-size: 0.78rem;
  font-weight: 600;
  color: #eee;
  line-height: 1.4;
}

.recomendacao__preco {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--azul-neon);
}

/* ============================================================
   HEADER: LINK WHATSAPP
   ============================================================ */
.header__link--wa {
  color: #25d366;
  font-weight: 700;
}

.header__link--wa i {
  margin-right: 0.3rem;
}

/* ============================================================
   PACOTES (HOME): LISTA "INCLUI"
   ============================================================ */
.card-inclui {
  list-style: none;
  margin: 0 0 1.2rem;
  flex: 1;
}

.card-inclui li {
  color: #b8b8b8;
  font-size: 0.88rem;
  padding-left: 1.3rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.card-inclui li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--azul-neon);
  font-size: 0.6rem;
}

.card--premium .card-inclui li::before {
  color: var(--dourado);
}

/* ============================================================
   HERO: GRADIENTE PARA LEGIBILIDADE SOBRE A FOTO
   ============================================================ */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 4, 8, 0.94) 0%, rgba(4, 4, 8, 0.8) 45%, rgba(4, 4, 8, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   GALERIA
   ============================================================ */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .galeria-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.galeria-item {
  position: relative;
  border: 1px solid rgba(0, 170, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  background: #111;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.galeria-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5), 0 0 22px rgba(0, 170, 255, 0.25);
  border-color: rgba(0, 221, 255, 0.6);
}

.galeria-item:hover img {
  transform: scale(1.06);
}

.galeria-item--grande {
  grid-column: span 2;
  grid-row: span 2;
}

.galeria-item--largo {
  grid-column: span 2;
}

@media (max-width: 480px) {
  .galeria-item--grande {
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }

  .galeria-item--largo {
    aspect-ratio: 4 / 3;
  }
}

/* ============================================================
   LIGHTBOX DA GALERIA
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__stage {
  max-width: min(1000px, 92vw);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0 3.5rem;
}

.lightbox__img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 170, 255, 0.12);
}

.lightbox__caption {
  color: #cfcfcf;
  font-size: 0.9rem;
  text-align: center;
}

.lightbox__counter {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #9a9a9a;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.lightbox__close:hover {
  color: var(--azul-neon);
  border-color: var(--azul-neon);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}

.lightbox__nav:hover {
  background: rgba(0, 170, 255, 0.2);
  border-color: var(--azul-neon);
  color: var(--azul-neon);
}

.lightbox__nav--prev {
  left: 0.75rem;
}

.lightbox__nav--next {
  right: 0.75rem;
}

@media (min-width: 768px) {
  .lightbox__nav--prev {
    left: 1.5rem;
  }

  .lightbox__nav--next {
    right: 1.5rem;
  }
}

/* ============================================================
   CTA AVALIAÇÃO NO GOOGLE
   ============================================================ */
.reviews-lista {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .reviews-lista {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-lista {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--bg-card);
  border: 1px solid rgba(0, 170, 255, 0.25);
  border-radius: 14px;
  padding: 1.4rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 22px rgba(0, 170, 255, 0.06);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 221, 255, 0.55);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 18px rgba(0, 170, 255, 0.2);
}

.review-card__topo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul), var(--azul-neon));
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
}

.review-card__ident {
  min-width: 0;
}

.review-card__nome {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.review-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.review-card__estrelas {
  color: var(--dourado);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.45);
}

.review-card__tempo {
  color: #888;
  font-size: 0.75rem;
}

.review-card__texto {
  color: #c9c9c9;
  font-size: 0.9rem;
  line-height: 1.65;
  word-break: break-word;
  flex: 1;
}

.review-card__link {
  align-self: flex-start;
  color: var(--azul-neon);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.review-card__link:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 221, 255, 0.7);
}

.avaliacao-cta {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2.6rem 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 34px rgba(255, 215, 0, 0.1);
  overflow: hidden;
}

.avaliacao-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}

.avaliacao-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.45);
  color: var(--dourado);
  font-size: 1.8rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.25);
}

.avaliacao-cta__titulo {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(1.05rem, 4.5vw, 1.5rem);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.2);
}

.avaliacao-cta__texto {
  color: #b9b9b9;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 1.6rem;
}

.btn--dourado {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-neon));
  color: #000;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.45);
  animation: none;
}

.btn--dourado:hover {
  box-shadow: 0 0 34px rgba(255, 215, 0, 0.65);
}

/* ============================================================
   PRODUTOS UTILIZADOS (card próprio, abaixo das avaliações)
   ============================================================ */
.produtos-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 20px;
  padding: 2.4rem 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 34px rgba(255, 215, 0, 0.08);
  overflow: hidden;
}

.produtos-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}

.produtos-card__titulo {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(1.05rem, 4.5vw, 1.5rem);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.2);
}

.produtos-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(0, 170, 255, 0.35);
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.produtos-card__media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--ease-out);
}

.produtos-card__media:hover {
  border-color: rgba(0, 221, 255, 0.6);
  box-shadow: 0 0 26px rgba(0, 170, 255, 0.3);
}

.produtos-card__media:hover img {
  transform: scale(1.03);
}

.produtos-card__texto {
  color: #b9b9b9;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 1.4rem auto 0;
}

/* ============================================================
   ADICIONAIS DE LAVAGEM (modal)
   ============================================================ */
.modal__adicionais {
  margin: 1.3rem 0 0.9rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal__adicionais h4 {
  color: var(--azul-neon);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.85rem;
}

.adicional {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(0, 170, 255, 0.2);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 0.6rem;
  -webkit-tap-highlight-color: transparent;
}

.adicional:last-child {
  margin-bottom: 0;
}

.adicional:hover {
  border-color: rgba(0, 221, 255, 0.5);
}

.adicional input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--azul);
  cursor: pointer;
}

.adicional__nome {
  flex: 1;
  color: #ddd;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.adicional__preco {
  color: var(--azul-neon);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.adicional--ativo {
  border-color: rgba(0, 221, 255, 0.7);
  background: rgba(0, 170, 255, 0.1);
  box-shadow: 0 0 14px rgba(0, 170, 255, 0.15);
}

.adicional--ativo .adicional__nome {
  color: #fff;
}

.modal__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 170, 255, 0.06);
  border: 1px solid rgba(0, 170, 255, 0.25);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.1rem;
}

.modal__total span {
  color: #bbb;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.modal__total strong {
  color: #fff;
  font-size: 1.25rem;
  transition: color 0.25s ease;
}

/* ============================================================
   DESCARTE SUSTENTÁVEL (banner abaixo do mapa)
   ============================================================ */
.section--descarte {
  padding-top: 0;
}

.descarte-banner {
  max-width: 900px;
  margin: 0 auto;
}

.descarte-banner__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid rgba(0, 170, 255, 0.35);
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
  box-shadow: 0 0 30px rgba(0, 170, 255, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.descarte-banner__media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--ease-out);
}

.descarte-banner__media:hover {
  border-color: rgba(0, 221, 255, 0.65);
  box-shadow: 0 0 40px rgba(0, 170, 255, 0.3);
}

.descarte-banner__media:hover img {
  transform: scale(1.02);
}

.produtos-card__zoom,
.descarte-banner__zoom {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.2rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ============================================================
   ACESSIBILIDADE: FOCO VISÍVEL
   ============================================================ */
a:focus-visible,
button:focus-visible,
.categorias__item:focus-visible {
  outline: 2px solid var(--azul-neon);
  outline-offset: 3px;
  border-radius: 4px;
}