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

:root {
  --gold: #c9a84c;
  --gold-light: #e4c97a;
  --gold-dark: #9a7a2e;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --text: #d4c9b8;
  --text-light: #8a8070;
  --white: #f5f0e8;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Raleway', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--dark)
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4%;
  background: rgba(10, 10, 10, .93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, .12);
  transition: padding .3s
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
  transition: all .3s ease
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: height .3s ease, filter .3s
}

.nav-logo:hover img {
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(201, 168, 76, 0.3))
}

#navbar.scrolled .nav-logo img {
  height: 34px
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s
}

.nav-menu a:hover {
  color: var(--gold)
}

.nav-wsp {
  background: var(--gold);
  color: var(--black) !important;
  padding: 9px 22px;
  font-weight: 600 !important
}

.nav-wsp:hover {
  background: var(--gold-light) !important
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: .3s
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, .97);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2.5rem 0;
  gap: 1.4rem;
  overflow-y: auto
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: .1em
}

.mobile-sub {
  font-size: .82rem !important;
  font-family: 'Raleway', sans-serif !important;
  color: var(--text-light) !important;
  letter-spacing: .14em !important;
  margin-top: -.6rem
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 997;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.mobile-menu.open ~ .menu-overlay {
  display: block;
}

/* NAV DROPDOWNS */
.nav-dropdown { position: relative }
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: .5rem;
  opacity: .55;
  vertical-align: 2px;
  display: inline-block;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: rgba(10, 10, 10, .97);
  border: 1px solid rgba(201, 168, 76, .18);
  backdrop-filter: blur(16px);
  min-width: 210px;
  z-index: 1000;
  padding: .4rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .2s;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block !important;
  padding: .65rem 1.3rem !important;
  font-size: .65rem !important;
  letter-spacing: .14em !important;
  color: var(--text) !important;
  font-weight: 400 !important;
  white-space: nowrap;
  transition: color .2s, background .2s;
  background: none !important;
}
.dropdown-menu a:hover {
  color: var(--gold) !important;
  background: rgba(201, 168, 76, .05) !important;
}

/* HERO */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a0a00 0%, #0a0a0a 50%, #000d08 100%)
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 40%, rgba(201, 168, 76, .07) 0%, transparent 70%)
}

.hero-model-area {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  display: flex;
  align-items: stretch
}

.hero-model-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.72) contrast(1.05)
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 28%, transparent 62%, var(--black) 100%)
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(0deg, var(--black) 0%, transparent 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4% 100px;
  max-width: 660px;
  animation: fadeUp .9s ease both
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.8rem
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold)
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.4rem
}

h1 em {
  color: var(--gold);
  font-style: italic
}

.hero-desc {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 300
}

.hero-logo {
  margin-bottom: 2.2rem;
  animation: fadeInDown 1s ease-out .2s both
}

.hero-logo img {
  max-width: 210px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 25px rgba(201, 168, 76, 0.15))
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  padding: 15px 32px;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  transition: all .3s;
  border: none;
  cursor: pointer
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, .3)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201, 168, 76, .35);
  color: var(--gold);
  text-decoration: none;
  padding: 15px 32px;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
  transition: all .3s
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .08)
}

/* PRECIOS BAND */
#precios-band {
  background: var(--dark2);
  padding: 28px 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201, 168, 76, .1);
  border-bottom: 1px solid rgba(201, 168, 76, .1)
}

.price-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: .85rem
}

.price-pill strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700
}

.price-pill span {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light)
}

/* SECTIONS */
.sec {
  padding: 90px 4%;
  position: relative
}

.sec-alt {
  background: var(--dark)
}

.sec-dark {
  background: var(--dark2)
}

.sec-black {
  background: var(--black)
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .9rem
}

.sec-label::before {
  content: '✦';
  font-size: .55rem
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem
}

h2 em {
  color: var(--gold);
  font-style: italic
}

.sec-sub {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px
}

.gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0
}

.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  opacity: .2
}

.ornament {
  text-align: center;
  padding: 18px 0;
  font-size: .8rem;
  color: rgba(201, 168, 76, .25);
  letter-spacing: .4em
}

/* MASAJISTAS */
.masajistas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem
}

.masajistas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201, 168, 76, .07);
  margin-bottom: 2px
}

.masajista-card {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4
}

.masajista-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease, filter .4s;
  filter: brightness(.78)
}

.masajista-card:hover img {
  transform: scale(1.05);
  filter: brightness(.95)
}

.masajista-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, .95) 0%, transparent 100%);
  padding: 50px 22px 22px;
  transform: translateY(38px);
  transition: transform .4s ease
}

.masajista-card:hover .masajista-info {
  transform: translateY(0)
}

.btn-masajista {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transition: all .4s ease;
  transform: translateY(10px);
}

.masajista-card:hover .btn-masajista {
  opacity: 1;
  transform: translateY(0);
}

.btn-masajista:hover {
  background: var(--gold-light);
}

.masajista-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px
}

.masajista-role {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold)
}

.masajista-border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color .4s;
  pointer-events: none
}

.masajista-card:hover .masajista-border {
  border-color: rgba(201, 168, 76, .28)
}

.ver-todas {
  display: block;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, .2);
  padding: 18px;
  color: var(--gold);
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s;
  margin-top: 2px
}

.ver-todas:hover {
  background: rgba(201, 168, 76, .06);
  border-color: var(--gold)
}

/* SERVICIOS */
.servicios-layout {
  max-width: 800px;
  margin: 4rem auto 0;
}

.servicios-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-item {
  background: var(--dark);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-item.active {
  border-color: var(--gold);
  background: var(--dark2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.svc-header {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.svc-header:hover .svc-name {
  color: var(--gold);
}

.svc-info-mini {
  display: flex;
  flex-direction: column;
}

.svc-num {
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: .2em;
  font-weight: 700;
  margin-bottom: 4px;
}

.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  transition: color .3s;
}

.svc-price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.svc-details {
  display: none;
  padding: 0 30px 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.05);
  animation: fadeIn .5s ease;
}

.svc-item.active .svc-details {
  display: block;
}

.svc-desc {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-size: .95rem;
}

.svc-feats {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.svc-feats li {
  font-size: .9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-feats li::before {
  content: '✦';
  color: var(--gold);
  font-size: .6rem;
}

.svc-price-options {
  display: flex;
  gap: 15px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.sprice {
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 12px 20px;
  text-align: center;
  border-radius: 3px;
  background: rgba(201, 168, 76, 0.03);
  flex: 1;
  min-width: 120px;
}

.sprice-val {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.sprice-dur {
  font-size: .6rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-top: 2px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .svc-header {
    padding: 20px;
  }

  .svc-name {
    font-size: 1.1rem;
  }

  .svc-price-tag {
    font-size: 1.3rem;
  }

  .svc-feats {
    grid-template-columns: 1fr;
  }

  .svc-details {
    padding: 0 20px 30px;
  }
}

/* AMBIENTES */
.ambientes-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
  margin-top: 2.5rem
}

.amb-cell {
  overflow: hidden;
  position: relative;
  background: var(--dark2);
  cursor: pointer
}

.amb-cell:first-child {
  grid-row: span 2
}

.amb-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .4s;
  filter: brightness(.72)
}

.amb-cell:hover img {
  transform: scale(1.06);
  filter: brightness(.9)
}

.amb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .88) 0%, transparent 100%);
  padding: 32px 18px 16px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  transform: translateY(6px);
  transition: transform .3s
}

.amb-cell:hover .amb-label {
  transform: translateY(0)
}

/* MASCULINOS */
.mas-masc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px;
  background: rgba(201, 168, 76, .06);
  margin-top: 2.5rem
}

/* STATS */
#stats {
  background: var(--gold);
  padding: 50px 4%;
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap
}

.stat-item {
  text-align: center
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--black);
  font-weight: 700;
  line-height: 1
}

.stat-label {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .55);
  margin-top: 6px
}

/* PAGOS */
#pagos {
  background: var(--dark3);
  padding: 60px 4%;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, .1)
}

.pagos-sub {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 2rem
}

.pagos-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap
}

.pago-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, .07);
  border: 1px solid rgba(201, 168, 76, .18);
  padding: 14px 26px;
  font-size: .82rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: .06em;
  transition: all .2s
}

.pago-chip:hover {
  background: rgba(201, 168, 76, .14);
  border-color: var(--gold)
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  background: rgba(201, 168, 76, .06);
  margin-top: 2.5rem
}

.blog-card {
  background: var(--dark);
  transition: background .3s;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  overflow: hidden
}

.blog-card:hover {
  background: var(--dark3);
  border-bottom-color: var(--gold)
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: brightness(.78);
  transition: filter .4s, transform .5s
}

.blog-card:hover img {
  filter: brightness(.9);
  transform: scale(1.03)
}

.blog-body {
  padding: 28px 26px
}

.blog-cat {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: .8rem
}

.blog-excerpt {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.2rem
}

.blog-date {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: .45
}

/* CONTACTO */
#contacto, #contact {
  background: var(--black);
  padding: 120px 4%;
  text-align: center;
  position: relative;
  overflow: hidden
}

#contacto::before, #contact::before {
  content: 'Peace Spa';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 20vw;
  color: rgba(201, 168, 76, .025);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-style: italic
}

.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem
}

.contact-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--white);
  font-weight: 700;
  display: block;
  text-decoration: none;
  transition: color .2s;
  margin-bottom: .5rem
}

.contact-num:hover {
  color: var(--gold)
}

.contact-note {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 3rem
}

.contact-map-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 220px;
  margin: 2.5rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, .25)
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block
}

.wsp-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 18px 44px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  transition: all .3s
}

.wsp-cta:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, .35)
}

.wsp-cta svg {
  width: 20px;
  height: 20px;
  fill: white;
  flex-shrink: 0
}

/* FOOTER */
footer {
  background: #050505;
  padding: 60px 4% 30px
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(201, 168, 76, .1)
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem
}

.footer-logo span {
  color: var(--gold);
  font-style: italic
}

.footer-desc {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem
}

.footer-phone {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  text-decoration: none
}

.footer-col h4 {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem
}

.footer-col a {
  text-decoration: none;
  color: var(--text-light);
  font-size: .8rem;
  transition: color .2s;
  font-weight: 300
}

.footer-col a:hover {
  color: var(--gold)
}

.footer-location {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(201, 168, 76, .1)
}

.footer-location-info h4 {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem
}

.footer-address {
  font-size: .95rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: .6rem
}

.footer-map-link {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .05em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, .35);
  padding-bottom: 2px;
  transition: opacity .2s
}

.footer-map-link:hover {
  opacity: .75
}

.footer-map-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, .18)
}

.footer-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block
}

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

.footer-copy {
  font-size: .7rem;
  color: rgba(255, 255, 255, .18)
}

.social-row {
  display: flex;
  gap: 12px
}

.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 168, 76, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-light);
  font-size: .72rem;
  transition: all .2s
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* FLOATING WSP */
.float-wsp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  animation: pulseG 2.5s ease infinite;
  transition: transform .2s
}

.float-wsp:hover {
  transform: scale(1.12)
}

.float-wsp svg {
  width: 26px;
  height: 26px;
  fill: white
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes pulseG {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, .7)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease
}

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

@media(max-width:980px) {
  .masajistas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-menu {
    display: none
  }

  .masajista-info {
    transform: translateY(0)
  }

  .btn-masajista {
    opacity: 1;
    transform: translateY(0)
  }

  .hamburger {
    display: flex
  }

  .hero-model-area {
    width: 100%;
  }
  .hero-model-area img {
    object-position: center 15%;
  }
  .hero-gradient {
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.3) 25%, rgba(10,10,10,0.9) 60%, var(--black) 100%);
  }
  .hero-bottom-fade {
    height: 75vh;
    background: linear-gradient(0deg, var(--black) 15%, transparent 100%);
  }

  .servicios-layout {
    grid-template-columns: 1fr
  }

  .ambientes-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto
  }

  .ambientes-grid .amb-cell:first-child {
    grid-row: auto
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .footer-location {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {
  .sec {
    padding: 65px 4%
  }

  .masajistas-grid,
  .mas-masc-grid {
    grid-template-columns: 1fr 1fr
  }

  .ambientes-grid {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .footer-map-wrap {
    height: 180px
  }

  #stats {
    gap: 2.5rem
  }

  .stat-num {
    font-size: 2.2rem
  }

  #precios-band {
    gap: 1.5rem
  }

  .hero-logo {
    margin-top: 5rem
  }

  .hero-logo img {
    max-width: 130px
  }

  .nav-logo img {
    height: 36px
  }
}

/* =============================================
   PÁGINAS INTERNAS — ESTILOS COMPARTIDOS
   ============================================= */

/* Telegram Float */
.float-tg {
  position: fixed;
  bottom: 92px;
  right: 26px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #229ED9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(34,158,217,.4);
  transition: transform .2s
}
.float-tg:hover { transform: scale(1.12) }
.float-tg svg { width: 26px; height: 26px; fill: white }

.float-fb {
  position: fixed;
  bottom: 158px;
  right: 26px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #1877F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(24, 119, 242, .4);
  transition: transform .2s
}
.float-fb:hover { transform: scale(1.12) }
.float-fb svg { width: 24px; height: 24px }

.float-tiktok {
  position: fixed;
  bottom: 224px;
  right: 26px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .4);
  transition: transform .2s
}
.float-tiktok:hover { transform: scale(1.12) }
.float-tiktok svg { width: 24px; height: 24px }

.float-ig {
  position: fixed;
  bottom: 290px;
  right: 26px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(214, 36, 159, .4);
  transition: transform .2s
}
.float-ig:hover { transform: scale(1.12) }
.float-ig svg { width: 24px; height: 24px }

/* Page Hero */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 4% 90px;
  position: relative;
  overflow: hidden;
  background: var(--black)
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.2) saturate(.7)
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 70%);
  z-index: 1
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: fadeUp .9s ease both
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 1.8rem;
  font-size: .63rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  flex-wrap: wrap
}
.breadcrumb a { color: var(--text-light); text-decoration: none; transition: color .2s }
.breadcrumb a:hover { color: var(--gold) }
.breadcrumb .sep { opacity: .35 }
.breadcrumb .cur { color: var(--gold) }

/* CTA Band */
.cta-band {
  background: var(--dark2);
  padding: 90px 4%;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,.1)
}
.cta-band h2 { margin-bottom: 1.2rem }
.cta-band p { color: var(--text-light); margin-bottom: 2.5rem; line-height: 1.8; font-weight: 300 }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap }

/* Masajista Detail Hero */
.masajista-detail-hero {
  min-height: 82vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden
}
.masajista-detail-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.62)
}
.masajista-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.1) 0%, rgba(10,10,10,.4) 50%, var(--black) 100%)
}
.masajista-detail-content {
  position: relative;
  z-index: 2;
  padding: 0 6% 80px;
  width: 100%;
  animation: fadeUp .9s ease both
}

/* Service Page */
.svc-page-img {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  margin: 0 auto 3rem;
  border: 1px solid rgba(201,168,76,.2);
  filter: brightness(.85)
}
.svc-feats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0 2.5rem
}
.svc-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.4rem;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,.1);
  transition: border-color .3s
}
.svc-feat-item:hover { border-color: rgba(201,168,76,.3) }
.svc-feat-icon { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px }
.svc-feat-body strong { display: block; color: var(--white); font-size: .9rem; margin-bottom: 4px }
.svc-feat-body span { font-size: .83rem; color: var(--text-light); line-height: 1.6 }

/* Related Services */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
  background: rgba(201,168,76,.06);
  margin-top: 2.5rem
}
.related-card {
  background: var(--dark);
  padding: 2rem;
  text-decoration: none;
  transition: background .3s;
  border-bottom: 2px solid transparent;
  display: block
}
.related-card:hover { background: var(--dark2); border-bottom-color: var(--gold) }
.related-card-label { font-size: .62rem; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; margin-bottom: .6rem }
.related-card-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: .5rem }
.related-card-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); font-weight: 700 }

/* Reglas */
.reglas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 0
}
.regla-card {
  background: var(--dark);
  border: 1px solid rgba(201,168,76,.12);
  padding: 2.2rem 2rem;
  transition: border-color .3s, transform .3s
}
.regla-card:hover { border-color: rgba(201,168,76,.35); transform: translateY(-4px) }
.regla-icon { font-size: 2rem; margin-bottom: 1rem }
.regla-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: .7rem }
.regla-text { font-size: .87rem; color: var(--text-light); line-height: 1.75; font-weight: 300 }

/* Ambientes Detail */
.ambiente-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin: 3rem 0 3px
}
.amb-showcase-cell {
  position: relative;
  overflow: hidden;
  background: var(--dark2);
  cursor: pointer
}
.amb-showcase-cell img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(.72);
  transition: transform .5s, filter .4s
}
.amb-showcase-cell:hover img { transform: scale(1.05); filter: brightness(.95) }
.amb-showcase-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.88) 0%, transparent 100%);
  padding: 40px 20px 18px;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem
}
.amb-showcase-desc {
  padding: 1.2rem 1.5rem;
  background: var(--dark);
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.7
}

@media(max-width:768px) {
  .svc-feats-grid { grid-template-columns: 1fr }
  .ambiente-showcase { grid-template-columns: 1fr }
}
@media(max-width:600px) {
  .reglas-grid { grid-template-columns: 1fr }
  .masajista-detail-hero { min-height: 70vh }
  .page-hero { padding: 120px 4% 60px }
  .float-tg { right: 26px; bottom: 84px; width: 48px; height: 48px }
  .float-wsp { width: 48px; height: 48px }
  .float-fb { right: 26px; bottom: 142px; width: 48px; height: 48px }
  .float-tiktok { right: 26px; bottom: 200px; width: 48px; height: 48px }
  .float-ig { right: 26px; bottom: 258px; width: 48px; height: 48px }
}

/* ═══════════════════════════════════════════════════════════════════
   MASAJISTA DETAIL — carrusel de galería
   ═══════════════════════════════════════════════════════════════════ */
.msj-carousel-wrap {
  display: flex;
  align-items: center;
  gap: .9rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 .5rem;
}
.msj-carousel-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.msj-carousel-track {
  display: flex;
  gap: 6px;
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
}
.msj-carr-slide {
  flex: 0 0 auto;
  height: 250px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--dark2);
}
.msj-carr-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.72);
  transition: filter .4s, transform .5s;
}
.msj-carr-slide:hover img,
.msj-carr-slide:focus img {
  filter: brightness(.45);
  transform: scale(1.05);
}
.msj-carr-slide .carr-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .45rem .75rem;
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(0deg,rgba(0,0,0,.75) 0%,transparent 100%);
  transform: translateY(4px);
  transition: transform .3s;
}
.msj-carr-slide:hover .carr-label { transform: translateY(0); }
.msj-carr-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.45);
  background: rgba(201,168,76,.1);
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
}
.msj-carr-btn:hover { background: rgba(201,168,76,.3); }
.msj-carr-btn:disabled { opacity: .22; cursor: default; }
@media (max-width: 980px) {
  .msj-carr-slide { height: 210px; }
}
@media (max-width: 600px) {
  .msj-carousel-wrap { gap: .45rem; }
  .msj-carr-btn { width: 36px; height: 36px; font-size: 1.25rem; }
  .msj-carr-slide { height: 230px; }
}

/* MASAJISTA BIO PAGE */
.mia-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.mia-bio-img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.mia-bio-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.mia-bio-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,10,10,.6));
  pointer-events: none;
}
.mia-bio-img-border {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,168,76,.35);
  pointer-events: none;
  z-index: 1;
}
.mia-bio-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.mia-bio-text p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-weight: 300;
  font-size: .95rem;
}
.mia-traits {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.mia-traits li {
  color: var(--text);
  font-size: .9rem;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}
.mia-traits li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.mia-faq {
  max-width: 760px;
  margin: 0 auto;
}
.mia-faq details {
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: .1rem 0;
}
.mia-faq details:first-of-type {
  border-top: 1px solid rgba(201,168,76,.15);
}
.mia-faq summary {
  cursor: pointer;
  padding: 1.1rem 0;
  color: var(--white);
  font-weight: 500;
  font-size: .95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.mia-faq summary::-webkit-details-marker { display: none; }
.mia-faq summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .25s;
}
.mia-faq details[open] summary::after {
  transform: rotate(45deg);
}
.mia-faq details p {
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.8;
  padding-bottom: 1.1rem;
  font-weight: 300;
}
@media (max-width: 780px) {
  .mia-bio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mia-bio-img-wrap img { height: 320px; }
}

/* =============================================
   PÁGINAS DE SERVICIO — SECCIONES NUEVAS
   ============================================= */

/* Intro: imagen + texto en 2 columnas */
.svc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.svc-intro-img {
  position: relative;
  overflow: hidden;
}
.svc-intro-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(.8);
  transition: transform .6s ease;
}
.svc-intro-img:hover img { transform: scale(1.04); }
.svc-intro-img::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,168,76,.32);
  pointer-events: none;
  z-index: 1;
}
.svc-intro-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.svc-intro-text h3 em { color: var(--gold); font-style: italic; }
.svc-intro-text p {
  color: var(--text-light);
  line-height: 1.85;
  font-weight: 300;
  font-size: .95rem;
  margin-bottom: 1.2rem;
}
@media (max-width: 768px) {
  .svc-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Pilares: 3 columnas "¿Por qué Peace Spa?" */
.svc-pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 920px;
  margin: 3rem auto 0;
}
.svc-pilar {
  background: var(--dark);
  border: 1px solid rgba(201,168,76,.12);
  padding: 2.4rem 2rem;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.svc-pilar:hover { border-color: rgba(201,168,76,.38); transform: translateY(-5px); }
.svc-pilar-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.svc-pilar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: .7rem;
}
.svc-pilar-text { font-size: .87rem; color: var(--text-light); line-height: 1.75; font-weight: 300; }
@media (max-width: 640px) {
  .svc-pilares-grid { grid-template-columns: 1fr; }
}

/* FAQ limpio para páginas de servicio */
.faq-svc {
  max-width: 800px;
  margin: 0 auto;
}
.faq-svc details {
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: .1rem 0;
}
.faq-svc details:first-of-type {
  border-top: 1px solid rgba(201,168,76,.15);
}
.faq-svc summary {
  cursor: pointer;
  padding: 1.3rem 0;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-svc summary::-webkit-details-marker { display: none; }
.faq-svc summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-svc details[open] summary::after { transform: rotate(45deg); }
.faq-svc details p {
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.85;
  padding-bottom: 1.3rem;
  font-weight: 300;
}
.faq-svc details p a { color: var(--gold); }
.faq-svc details p strong { color: var(--white); }

/* =============================================
   PÁGINA AMBIENTES — GALERÍA CON LIGHTBOX
   ============================================= */

/* Intro */
.amb-intro { max-width: 720px; margin: 0 auto; text-align: center; padding: 4rem 5% 0 }
.amb-intro p { color: var(--text); font-size: 1rem; line-height: 1.85; font-weight: 300; margin-top: 1.2rem }
.amb-feat-strip {
  display: flex; gap: 2.5rem; justify-content: center;
  flex-wrap: wrap; max-width: 900px; margin: 3.5rem auto 0; padding: 0 5%
}
.amb-feat { display: flex; align-items: flex-start; gap: 1rem; min-width: 200px; max-width: 260px }
.amb-feat-icon { font-size: 1.5rem; margin-top: .1rem; flex-shrink: 0 }
.amb-feat-body strong { display: block; color: var(--white); font-size: .92rem; margin-bottom: .25rem }
.amb-feat-body span { color: var(--text-light); font-size: .82rem; line-height: 1.6 }

.gallery-section { background: var(--dark); padding: 5rem 4% 6rem }
.gallery-header { text-align: center; margin-bottom: 3rem }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #0a0a0a;
  border: 1px solid rgba(201,168,76,0.08);
  transition: border-color 0.35s;
  outline: none;
}
.gallery-item:hover,
.gallery-item:focus { border-color: rgba(201,168,76,0.4) }
.gallery-item:first-child { grid-column: span 2 }
.gallery-item img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.4s ease;
}
.gallery-item:first-child img { height: 420px }
.gallery-item:hover img,
.gallery-item:focus img { transform: scale(1.06); filter: brightness(0.4) }
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay { opacity: 1 }
.gallery-overlay-icon {
  width: 52px; height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.gallery-overlay-icon svg { width: 22px; height: 22px }
.gallery-overlay-name { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.05rem; letter-spacing: 0.08em }
.gallery-overlay-hint { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase }
.gallery-item-label {
  padding: 0.6rem 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  border-top: 1px solid rgba(201,168,76,0.1);
  transition: color 0.3s;
}
.gallery-item:hover .gallery-item-label,
.gallery-item:focus .gallery-item-label { color: var(--gold) }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.lb-active { opacity: 1; visibility: visible }
.lb-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 70px;
}
.lb-img-wrap {
  position: relative;
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 0 100px rgba(0,0,0,0.9);
}
.lb-img-wrap::before,
.lb-img-wrap::after,
.lb-corner-bl,
.lb-corner-br {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
  pointer-events: none;
}
.lb-img-wrap::before { top: -1px; left: -1px; border-width: 2px 0 0 2px }
.lb-img-wrap::after  { top: -1px; right: -1px; border-width: 2px 2px 0 0 }
.lb-corner-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px }
.lb-corner-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0 }
#lb-img { display: block; max-width: 80vw; max-height: 70vh; object-fit: contain }
.lb-caption { margin-top: 1.2rem; font-family: 'Playfair Display', serif; color: var(--white); font-size: 1rem; letter-spacing: 0.1em; text-align: center }
.lb-counter { margin-top: 0.4rem; color: var(--text-light); font-size: 0.72rem; letter-spacing: 0.18em }
.lb-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold); font-size: 1.2rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 50%;
  transition: background 0.2s, border-color 0.2s;
}
.lb-close:hover { background: rgba(201,168,76,0.2); border-color: var(--gold) }
.lb-nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold); font-size: 1.8rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lb-nav:hover { background: rgba(201,168,76,0.22); border-color: var(--gold) }
#lb-prev { left: 1.2rem }
#lb-next { right: 1.2rem }

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr) }
  .gallery-item:first-child { grid-column: span 2 }
  .gallery-item img { height: 210px }
  .gallery-item:first-child img { height: 310px }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 0.5rem }
  .gallery-item:first-child { grid-column: span 1 }
  .gallery-item img,
  .gallery-item:first-child img { height: 240px }
  .lb-inner { padding: 0 50px }
  #lb-img { max-width: 90vw; max-height: 60vh }
}

/* MASAJISTA GALLERY — variante del grid de galería para perfiles de terapeutas */
.masajista-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  max-width: 1100px;
  margin: 0 auto;
}
.masajista-gallery-grid .gallery-item:first-child {
  grid-column: span 2;
}
.masajista-gallery-grid .gallery-item img {
  height: 240px;
}
.masajista-gallery-grid .gallery-item:first-child img {
  height: 380px;
}
@media (max-width: 980px) {
  .masajista-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .masajista-gallery-grid .gallery-item:first-child { grid-column: span 2; }
  .masajista-gallery-grid .gallery-item img { height: 200px; }
  .masajista-gallery-grid .gallery-item:first-child img { height: 290px; }
}
@media (max-width: 600px) {
  .masajista-gallery-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .masajista-gallery-grid .gallery-item:first-child { grid-column: span 1; }
  .masajista-gallery-grid .gallery-item img,
  .masajista-gallery-grid .gallery-item:first-child img { height: 220px; }
}

/* PROMO CARDS */
.promo-grid { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.promo-card { background: var(--dark); border: 1px solid rgba(201,168,76,.2); padding: 3rem 2rem; text-align: center; flex: 1; min-width: 280px; position: relative; overflow: hidden; transition: border-color .3s; }
.promo-card:hover { border-color: var(--gold); }
.promo-card h3 { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 1rem; }
.promo-card p { color: var(--white); font-size: 1.1rem; margin-bottom: 2rem; font-weight: 500; }
.promo-cupos { color: var(--gold); font-weight: 700; letter-spacing: .15em; margin-bottom: .5rem; font-size: 1.1rem; text-transform: uppercase; }
.promo-cupos-sub { color: var(--text-light); font-size: .95rem; }

/* TESTIMONIOS */
.testimonios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; padding: 0 4%; }
.testimonio-card { background: var(--dark); padding: 2.5rem; border-left: 2px solid var(--gold); position: relative; }
.testimonio-quote { color: rgba(201,168,76,.15); font-family: serif; font-size: 5rem; position: absolute; top: 0; right: 1.5rem; line-height: 1; pointer-events: none; }
.testimonio-text { color: var(--text-light); font-size: .95rem; line-height: 1.8; font-style: italic; position: relative; z-index: 1; }
.testimonio-stars { margin-top: 1.5rem; color: var(--gold); font-size: .8rem; letter-spacing: .2em; }
.testimonio-author { margin-top: .8rem; color: var(--text-light); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; }

/* VIDEO AMBIENTE */
#video-ambiente { background: #050505; padding: 90px 4%; text-align: center; border-top: 1px solid rgba(201,168,76,.1); }
.video-wrap { display: flex; justify-content: center; align-items: center; }
.video-frame { position: relative; width: 100%; max-width: 380px; border: 1px solid rgba(201,168,76,.3); box-shadow: 0 0 60px rgba(201,168,76,.12), 0 30px 80px rgba(0,0,0,.6); overflow: hidden; background: #0a0a0a; margin: 0 auto; }
.video-frame video { display: block; width: 100%; height: auto; max-height: 680px; object-fit: cover; }
.video-corner { position: absolute; width: 28px; height: 28px; z-index: 2; pointer-events: none; }
.video-corner-tl { top: 0; left: 0; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.video-corner-tr { top: 0; right: 0; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.video-corner-bl { bottom: 0; left: 0; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.video-corner-br { bottom: 0; right: 0; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

/* CÓMO FUNCIONA (3 pasos) */
.pasos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 960px; margin: 3rem auto 0; }
.paso-item { text-align: center; padding: 2.5rem 2rem; background: var(--dark); border: 1px solid rgba(201,168,76,.1); transition: border-color .3s, transform .3s; }
.paso-item:hover { border-color: rgba(201,168,76,.35); transform: translateY(-4px); }
.paso-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: rgba(201,168,76,.2); line-height: 1; margin-bottom: 1.2rem; font-style: italic; }
.paso-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: .8rem; }
.paso-text { font-size: .87rem; color: var(--text-light); line-height: 1.8; font-weight: 300; }
@media (max-width: 640px) { .pasos-grid { grid-template-columns: 1fr; } }

/* FAQ VISUAL HOME */
.faq-home { max-width: 800px; margin: 0 auto; }
.faq-home details { border-bottom: 1px solid rgba(201,168,76,.15); padding: .1rem 0; }
.faq-home details:first-of-type { border-top: 1px solid rgba(201,168,76,.15); }
.faq-home summary { cursor: pointer; padding: 1.3rem 0; color: var(--white); font-family: 'Playfair Display', serif; font-size: 1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-home summary::-webkit-details-marker { display: none; }
.faq-home summary::after { content: '+'; color: var(--gold); font-size: 1.4rem; line-height: 1; flex-shrink: 0; transition: transform .25s; }
.faq-home details[open] summary::after { transform: rotate(45deg); }
.faq-home details p { color: var(--text-light); font-size: .9rem; line-height: 1.85; padding-bottom: 1.3rem; font-weight: 300; }
.faq-home details p a { color: var(--gold); }
.faq-home details p strong { color: var(--white); }

/* DISTRITO INFO CARDS */
.dist-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: left; }
.dist-info-card { background: var(--dark2); padding: 2rem; border-left: 2px solid var(--gold); }
.dist-info-icon { color: var(--gold); font-size: 1.6rem; margin-bottom: .8rem; }
.dist-info-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: .5rem; }
.dist-info-text { font-size: .85rem; color: var(--text-light); line-height: 1.7; font-weight: 300; }

/* PAGOS INFO */
.pagos-info { text-align: center; margin-top: 1.8rem; font-size: .75rem; color: var(--text-light); letter-spacing: .1em; }
.pagos-info strong { color: var(--gold); }

/* Galería 3 fotos */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
.svc-gallery-cell {
  overflow: hidden;
  position: relative;
}
.svc-gallery-cell img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(.72);
  transition: transform .5s ease, filter .4s;
}
.svc-gallery-cell:hover img { transform: scale(1.06); filter: brightness(.95); }
@media (max-width: 600px) {
  .svc-gallery { grid-template-columns: 1fr 1fr; }
}
