﻿:root {
  --bg-main: #111111;
  --bg-panel: rgba(20, 20, 20, 0.86);
  --bg-panel-strong: rgba(10, 10, 10, 0.92);
  --bg-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.09);
  --text-main: #f7f3ec;
  --text-soft: #d6ccbf;
  --text-muted: #aa9f91;
  --accent: #c89b5a;
  --accent-strong: #9b6b30;
  --accent-red: #a61b1b;
  --accent-red-strong: #7b1010;
  --success: #9fe3b2;
  --error: #f4a7a0;
  --danger: #61564f;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200, 155, 90, 0.2), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(166, 27, 27, 0.1), transparent 18%),
    radial-gradient(circle at bottom right, rgba(120, 56, 26, 0.18), transparent 20%),
    linear-gradient(160deg, #17120f 0%, #0c0c0d 45%, #090909 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
}

.page {
  width: min(1180px, calc(100% - 28px));
  margin: 26px auto 56px;
  display: grid;
  gap: 22px;
}

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text-main);
  text-decoration: none;
}

.brand-lockup img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(200, 155, 90, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.brand-lockup strong,
.hero-brand-copy strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.brand-lockup span,
.brand-link {
  color: var(--text-soft);
}

.brand-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand-link {
  text-decoration: none;
  font-weight: 700;
  transition: color 0.18s ease;
}

.brand-link:hover {
  color: #f2c8c8;
}

.hero-panel,
.panel,
.info-card {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  border-radius: var(--radius-xl);
  padding: 28px;
}

.hero-copy,
.hero-visual,
.panel,
.info-card {
  border-radius: var(--radius-xl);
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  padding: 12px 14px;
  border: 1px solid rgba(166, 27, 27, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(166, 27, 27, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.hero-brand img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.hero-brand-copy {
  display: grid;
  gap: 4px;
}

.eyebrow,
.mini-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.hero-text,
.section-copy,
.info-card p,
.service-group li,
.policy-list li,
.meta-card span,
.service-summary,
#horarioHint,
.promo-card p,
.inline-link,
.lista-citas li p,
.hero-badge,
.visual-card span {
  color: var(--text-soft);
}

.hero-text {
  max-width: 60ch;
  line-height: 1.7;
}

.hero-meta,
.hero-actions,
.promo-items,
.actions-row,
.info-grid,
.content-grid,
.booking-layout,
.shop-layout,
.location-layout {
  display: grid;
  gap: 16px;
}

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

.meta-card,
.visual-card,
.promo-card,
.service-group,
.gallery-card,
.service-summary {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.meta-card {
  padding: 18px;
}

.meta-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.hero-actions {
  grid-template-columns: repeat(3, max-content);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #21160b;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(166, 27, 27, 0.28);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(166, 27, 27, 0.08);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at bottom left, rgba(166, 27, 27, 0.16), transparent 35%),
    radial-gradient(circle at top, rgba(200, 155, 90, 0.22), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.hero-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(166, 27, 27, 0.24), rgba(255, 255, 255, 0.06));
  margin-bottom: 18px;
}

.hero-logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  margin-bottom: 18px;
  border-radius: 28px;
  border: 1px solid rgba(200, 155, 90, 0.18);
  background:
    radial-gradient(circle at 30% 50%, rgba(166, 27, 27, 0.15), transparent 38%),
    radial-gradient(circle at center, rgba(200, 155, 90, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.hero-logo-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-logo-stage img {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  aspect-ratio: 1;
  object-fit: cover;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.5));
}

.visual-stack {
  display: grid;
  gap: 14px;
}

.visual-card {
  padding: 18px;
}

.visual-card strong,
.promo-card strong {
  display: block;
  margin-top: 8px;
}

.info-grid,
.content-grid,
.booking-layout,
.shop-layout,
.location-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.panel {
  padding: 24px;
}

.accent-card {
  background: linear-gradient(160deg, rgba(166, 27, 27, 0.16), rgba(200, 155, 90, 0.16), rgba(20, 20, 20, 0.86));
}

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

.service-group {
  padding: 18px;
}

.service-group ul,
.policy-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.service-group li,
.policy-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}

.service-group li::before,
.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.inline-link {
  display: inline-flex;
  margin-top: 14px;
  text-decoration: none;
  color: #dfaaaa;
  font-weight: 700;
}

.inline-link:hover {
  color: #f0c6c6;
}

.gallery-grid {
  margin-top: 16px;
}

.gallery-card {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.gallery-card > span,
.gallery-placeholder span {
  font-weight: 700;
  color: var(--text-main);
}

.gallery-card > span {
  position: relative;
  z-index: 2;
  padding: 18px;
}

.gallery-card img,
.gallery-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gallery-card img {
  object-fit: cover;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.08), rgba(12, 12, 12, 0.78));
  z-index: 1;
}

.gallery-placeholder {
  display: grid;
  place-items: end start;
  padding: 18px;
}

.gallery-card-empty {
  min-height: 140px;
}

.tone-1 {
  background: linear-gradient(145deg, rgba(200, 155, 90, 0.45), rgba(20, 20, 20, 0.7));
}

.tone-2 {
  background: linear-gradient(145deg, rgba(135, 82, 42, 0.55), rgba(18, 18, 18, 0.76));
}

.tone-3 {
  background: linear-gradient(145deg, rgba(87, 112, 118, 0.45), rgba(20, 20, 20, 0.72));
}

.tone-4 {
  background: linear-gradient(145deg, rgba(161, 112, 126, 0.45), rgba(20, 20, 20, 0.72));
}

.promo-strip {
  display: grid;
  gap: 18px;
}

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

.promo-card {
  padding: 18px;
}

.shop-panel,
.cart-panel {
  background: var(--bg-panel-strong);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.product-card,
.cart-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.product-card {
  overflow: hidden;
}

.product-thumb {
  min-height: 160px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(145deg, rgba(200, 155, 90, 0.3), rgba(20, 20, 20, 0.72));
  overflow: hidden;
  position: relative;
}

.product-thumb span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
}

.product-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-body p {
  color: var(--text-soft);
  line-height: 1.6;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 800;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.cart-item {
  padding: 16px;
}

.cart-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.cart-item p,
.cart-empty {
  color: var(--text-soft);
}

.cart-item-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.qty-btn {
  min-width: 34px;
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
}

.remove-btn {
  margin-left: auto;
  color: var(--error);
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
}

.cart-footer {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.cart-empty {
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}

.booking-panel,
.side-panel {
  background: var(--bg-panel-strong);
}

.location-panel,
.map-panel {
  background: var(--bg-panel-strong);
}

.location-card {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(166, 27, 27, 0.08), rgba(255, 255, 255, 0.02)),
    var(--bg-soft);
}

.location-card strong {
  font-size: 1.1rem;
}

.location-card p {
  color: var(--text-soft);
  font-size: 1.02rem;
}

.map-panel {
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  border-radius: calc(var(--radius-xl) - 6px);
  filter: saturate(0.9) contrast(1.02);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 600;
}

input,
select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  outline: none;
}

select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--text-main) 50%) calc(100% - 24px) calc(50% - 2px) / 8px 8px no-repeat,
    linear-gradient(135deg, var(--text-main) 50%, transparent 50%) calc(100% - 18px) calc(50% - 2px) / 8px 8px no-repeat,
    rgba(255, 255, 255, 0.04);
  padding-right: 46px;
}

select option {
  color: #f7f3ec;
  background: #171314;
}

input:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 155, 90, 0.16);
}

.service-summary {
  margin-top: 16px;
  padding: 16px;
  line-height: 1.6;
  background:
    linear-gradient(135deg, rgba(166, 27, 27, 0.08), rgba(255, 255, 255, 0.02)),
    var(--bg-soft);
}

.horarios {
  margin-top: 18px;
}

.section-heading {
  display: grid;
  gap: 8px;
}

.section-heading.compact h3 {
  margin: 0;
}

.grid-horas {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.hora {
  min-height: 52px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  cursor: pointer;
  font: inherit;
  transition: transform 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
}

.hora:hover:not(.ocupado):not(.activa):not(.bloqueado) {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.hora.activa {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #21160b;
  font-weight: 700;
}

.hora.ocupado,
.hora.bloqueado {
  background: rgba(97, 86, 79, 0.45);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.72;
}

.actions-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.mensaje {
  min-height: 22px;
  margin-top: 12px;
  font-weight: 700;
  color: var(--success);
}

.mensaje.error {
  color: var(--error);
}

.booking-notice {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 155, 90, 0.2);
  background:
    linear-gradient(135deg, rgba(166, 27, 27, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.booking-notice-copy {
  display: grid;
  gap: 8px;
}

.booking-notice-copy strong {
  font-size: 1.02rem;
}

.booking-notice-copy p {
  color: var(--text-soft);
  line-height: 1.6;
}

.booking-notice-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.policy-list {
  display: grid;
  gap: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 5;
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #06230f;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 34px;
  background:
    radial-gradient(circle at left center, rgba(166, 27, 27, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(18, 18, 18, 0.94);
}

.site-footer p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(166, 27, 27, 0.86), rgba(200, 155, 90, 0.92));
  color: #f8f1e6;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.footer-socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.32);
  filter: brightness(1.04);
}

.hidden {
  display: none;
}

@media (max-width: 980px) {
  .brand-bar,
  .hero-panel,
  .content-grid,
  .booking-layout,
  .info-grid,
  .shop-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .hero-meta,
  .promo-items,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .brand-bar {
    align-items: start;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 16px, 100%);
    margin-top: 12px;
    margin-bottom: 28px;
    gap: 14px;
  }

  .hero-panel,
  .panel,
  .info-card {
    padding: 18px;
    border-radius: 24px;
  }

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

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .brand-bar {
    padding: 14px 16px;
    gap: 14px;
  }

  .brand-lockup,
  .hero-brand {
    align-items: start;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-lockup img {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .brand-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
  }

  .hero-panel {
    gap: 16px;
    padding: 18px;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-brand {
    width: 100%;
    padding: 10px 12px;
    gap: 12px;
  }

  .hero-brand img {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .hero-brand-copy strong {
    font-size: 0.98rem;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .hero-text,
  .section-copy,
  .location-card p,
  .booking-notice-copy p {
    line-height: 1.5;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .meta-card,
  .visual-card,
  .promo-card,
  .service-group,
  .location-card {
    padding: 16px;
  }

  .hero-visual {
    padding: 16px;
  }

  .hero-badge {
    margin-bottom: 12px;
    padding: 8px 12px;
  }

  .hero-logo-stage {
    min-height: 190px;
    margin-bottom: 12px;
    border-radius: 22px;
  }

  .hero-logo-stage::before {
    inset: 12px;
    border-radius: 18px;
  }

  .hero-logo-stage img {
    width: min(100%, 220px);
  }

  .visual-stack,
  .service-groups,
  .gallery-grid,
  .promo-items,
  .products-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .visual-card,
  .service-group,
  .gallery-card,
  .promo-card,
  .product-card {
    scroll-snap-align: start;
  }

  .service-group ul,
  .policy-list {
    margin-top: 12px;
  }

  .service-group li,
  .policy-list li {
    line-height: 1.5;
  }

  .gallery-card {
    min-height: 150px;
  }

  .gallery-card > span {
    padding: 14px;
  }

  .products-grid {
    margin-top: 14px;
  }

  .product-card {
    min-width: 0;
  }

  .cart-panel,
  .booking-panel,
  .side-panel,
  .location-panel,
  .map-panel {
    padding: 18px;
  }

  .booking-form {
    gap: 12px;
  }

  .service-summary,
  .booking-notice {
    padding: 14px;
  }

  .grid-horas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hora {
    min-height: 48px;
    padding: 10px;
  }

  .booking-notice-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .location-layout {
    gap: 14px;
  }

  .map-panel iframe {
    min-height: 240px;
  }

  .site-footer {
    flex-direction: column;
    align-items: start;
    padding: 22px 18px;
    gap: 14px;
  }

  .site-footer p {
    font-size: 0.98rem;
  }

  .footer-socials {
    width: 100%;
  }

  .footer-socials a {
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .page {
    width: calc(100% - 12px);
    margin-top: 8px;
  }

  .hero-panel,
  .panel,
  .info-card,
  .cart-panel,
  .booking-panel,
  .side-panel,
  .location-panel,
  .map-panel {
    padding: 16px;
    border-radius: 20px;
  }

  .brand-bar {
    padding: 12px 14px;
  }

  .brand-actions {
    grid-template-columns: 1fr;
  }

  .visual-stack,
  .service-groups,
  .gallery-grid,
  .promo-items,
  .products-grid {
    grid-auto-columns: 90%;
  }

  .hero-logo-stage {
    min-height: 168px;
  }

  .hero-logo-stage img {
    width: min(100%, 190px);
  }

  .meta-card,
  .visual-card,
  .promo-card,
  .service-group,
  .location-card,
  .service-summary,
  .booking-notice {
    padding: 14px;
  }

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

  .site-footer {
    padding: 18px 16px;
  }
}
