* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --radius-servicios: 14px;
  --gold: #d4af37;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #f5f5f5;
  line-height: 1.6;
}

section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

h1, h2 {
  color: var(--gold);
  text-align: center;
  margin-bottom: 25px;
}

p { text-align: center; }

#main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #000;
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

nav a, nav a:visited {
  position: relative;
  color: var(--gold);
  margin: 0 18px;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 0;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

nav a:hover::after, nav a.activo::after { transform: scaleX(1); }

.logo-header {
  max-width: 110px;
  margin-bottom: 12px;
  transition: all 0.35s ease;
}

.logo-link { display: inline-block; }
body.home .logo-link { display: none; }

body.interior .header-inner {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

body.interior .logo-header {
  margin-bottom: 0;
}

body.interior .logo-link:hover .logo-header {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.6));
}

.hero-centered {
  min-height: calc(100vh - 260px);
  padding: 20px 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo-centered {
  max-width: 600px;
  margin-bottom: 20px;
}

.hero-centered .frase {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 20px;
}

body.home .logo-centered {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  animation: logoEntrada 0.8s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes logoEntrada {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

body.home .hero-centered .frase {
  opacity: 0;
  transform: translateY(10px);
  animation: fraseEntrada 0.7s ease-out forwards;
  animation-delay: 0.7s;
}

@keyframes fraseEntrada {
  to { opacity: 1; transform: translateY(0); }
}

body.home nav {
  opacity: 0;
  transform: translateY(-15px);
  animation: menuEntrada 0.6s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes menuEntrada {
  to { opacity: 1; transform: translateY(0); }
}

body.home nav a {
  opacity: 0;
  transform: translateY(-10px);
  animation: linkEntrada 0.5s ease-out forwards;
}

body.home nav a:nth-child(1) { animation-delay: 0.45s; }
body.home nav a:nth-child(2) { animation-delay: 0.55s; }
body.home nav a:nth-child(3) { animation-delay: 0.65s; }

@keyframes linkEntrada {
  to { opacity: 1; transform: translateY(0); }
}

.servicio {
  margin-bottom: 30px;
  padding: 20px;
  text-align: center;
}

.servicio img, .img-servicio-pequena {
  width: 100%;
  max-width: 620px;
  max-height: 420px;
  object-fit: contain;
  background: #000;
  border-radius: var(--radius-servicios);
  background-clip: padding-box;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.img-servicio-pequena {
  max-width: 450px;
  max-height: 260px;
}

.servicio img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  filter: brightness(1.05);
}

.banner-servicios {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 20px auto 30px auto;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: var(--gold);
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover { background-color: #fff; color: #000; }

.catalogo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.producto {
  background-color: #0f0f0f;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}

.producto:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,.6);
}

.producto img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: transparent;
}

.producto-info {
  padding: 20px;
  text-align: center;
}

.producto-info h3 { color: var(--gold); font-size: 1.3rem; }
.producto-info p { color: #ccc; margin: 10px 0; }
.producto-info .precio { font-size: 1.1rem; font-weight: 600; color: #fff; }

.producto-info h3::before, .producto-info h3::after,
.producto-info p::before, .producto-info p::after { content: none !important; }

.swatches {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 6px;
  line-height: normal;
}

.swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #444;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.swatch.white { background: #fff; }
.swatch.black { background: #000; }
.swatch.gold  { background: var(--gold); }

.producto-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.producto-link:active { transform: scale(0.94); opacity: 0.55; }
.producto-link:hover { transform: translateY(-4px); }

@media (min-width: 901px) {
  .precio-grande { font-size: 1.3rem; }
  .descripcion { font-size: 0.95rem; }
  .producto-img img { max-width: 460px; }
}

.page-producto { animation: fadeIn 0.5s ease forwards; }

.producto-detalle {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 40px 20px 60px;
}

.producto-detalle-grid {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.producto-img img {
  width: 100%;
  max-width: 370px;
  display: block;
  margin: auto;
  border-radius: 18px;
  animation: slideUp 0.7s ease forwards;
}

.producto-info-detalle { animation: slideRight 0.7s ease forwards; }
.producto-info-detalle h1 { font-size: 1.5rem; color: var(--gold); margin-bottom: 10px; }
.precio-grande { font-size: 1.3rem; font-weight: 600; margin-bottom: 15px; }

.descripcion {
  color: #ccc;
  margin-bottom: 16px;
  max-width: 420px;
  line-height: 1.55;
  font-size: 0.9rem;
}

.beneficios { font-size: 0.9rem; list-style: none; padding: 0; margin-bottom: 20px; }
.beneficios li { margin-bottom: 8px; }

.linea-dorada {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 18px 0 22px;
}

.producto-img.camiseta img { transform: translateY(-40px); }

.selector-talla { text-align: center; margin-top: 25px; }
.titulo-talla { font-weight: 600; margin-bottom: 12px; }

.tallas-grid {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.talla-btn {
  background: transparent;
  border: 1.5px solid #444;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.talla-btn:hover { border-color: var(--gold); }
.talla-btn.activa { border-color: var(--gold); background: rgba(212,175,55,0.15); }

.btn-grande {
  display: block;
  margin: 30px auto 0;
  padding: 12px 28px;
  font-size: 1rem;
  max-width: 260px;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  background: var(--gold);
  color: #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-grande:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.45);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

footer {
  background-color: #000;
  color: #aaa;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 35px;
  background: #25d366;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  z-index: 1000;
}

.whatsapp svg { width: 28px; height: 28px; flex-shrink: 0; }

.players-showcase { padding: 40px 20px; text-align: center; }
.players-showcase h2 { margin-bottom: 40px; }

.players-wrapper {
  max-width: 750px;
  margin: 20px auto;
  border-radius: 18px;
  overflow: hidden;
}

.players { display: flex; gap: 0; height: 380px; }

.players img {
  width: 0;
  flex-grow: 1;
  object-fit: cover;
  opacity: 0.6;
  transition: all 0.45s ease;
  cursor: pointer;
}

.players img:hover { flex: 2.5; opacity: 1; filter: contrast(115%); }

@media (max-width: 900px) {
  .producto-detalle-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .producto-detalle { min-height: auto; padding: 20px 16px 40px; align-items: flex-start; }
  .producto-img.camiseta img { transform: translateY(-20px); }
}

@media (max-width: 600px) {
  .servicio p { font-size: 0.80rem; line-height: 1.35; }
  .servicio h3 { font-size: 1.05rem; }
  section { padding-top: 40px; padding-bottom: 40px; }
  nav a, nav a:visited { margin: 0 10px; font-size: 0.9rem; }
  .hero-centered { min-height: 55vh; padding: 60px 20px 20px; justify-content: flex-start; }
  body.home .logo-centered { max-width: 240px; margin-bottom: 14px; }
  body.home .hero-centered .frase { margin-top: 8px; font-size: 0.85rem; }
  .hero-centered p { font-size: 0.80rem; margin-top: 6px; }
  .servicio img:hover { transform: none; box-shadow: none; filter: none; }
  .producto img { height: 250px; }
  .producto-detalle { min-height: auto; padding: 20px 16px 40px; align-items: flex-start; }
  .producto-info-detalle h1 { font-size: 1.5rem; }
  .precio-grande { font-size: 1.2rem; }
  .producto-img img { max-width: 250px; }
  .players-showcase { padding-top: 60px !important; margin-top: -30px !important; }
  .players-wrapper { max-width: 320px; height: 178px; margin: 10px auto 0; border-radius: 14px; overflow: hidden; }
  .players { height: 100%; }
  .players img { opacity: 0.55; transition: all 0.35s ease; }
  .players img.zoomed { transform: scale(1.18); opacity: 1; z-index: 3; position: relative; }
}

.video-intro { text-align: center; padding: 80px 20px; }
.video-intro h2 { margin-bottom: 12px; }
.video-texto { max-width: 600px; margin: 0 auto 30px; color: #f5f5f5; font-size: 0.95rem; }
.video-wrapper { max-width: 900px; margin: 0 auto; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.7); }
.video-wrapper video { width: 100%; height: auto; display: block; }

@media (max-width: 600px) {
  .video-intro { padding: 50px 16px; }
  .video-texto { font-size: 0.85rem; margin-bottom: 20px; }
  .video-wrapper { border-radius: 14px; }
}

.page-contacto .contacto-section { max-width: 1100px; margin: auto; padding: 60px 20px; padding-top: 60px; }
.contacto-sub { color: #ccc; margin-top: -10px; }
.contacto-grid { margin-top: 30px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; align-items: start; }
.contacto-card { background: #0f0f0f; border: 1px solid rgba(212,175,55,0.18); border-radius: 14px; padding: 22px; }
.contacto-card h2 { color: var(--gold); text-align: left; margin-bottom: 12px; font-size: 1.2rem; }
.contacto-card p { text-align: left; color: #ccc; }
.contacto-mini { margin-top: 14px; color: #aaa; line-height: 1.6; }
.contacto-cta { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.btn-whatsapp { background: #25d366; color: #000; font-weight: 800; border-radius: 10px; padding: 12px 16px; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; border-radius: 10px; padding: 12px 16px; text-decoration: none; font-weight: 800; }
.page-contacto > h1, .page-contacto > h2 { font-size: 1.9rem; margin-bottom: 30px; }
.contacto-form label { display: block; text-align: left; font-size: 0.85rem; font-weight: 600; color: var(--gold); margin: 12px 0 6px; font-family: 'Poppins', sans-serif; }
.contacto-form input, .contacto-form textarea { width: 100%; background: #1a1a1a; border: 1px solid #333; border-radius: 8px; color: #f5f5f5; padding: 12px 16px; font-family: 'Poppins', sans-serif; font-size: 0.9rem; transition: border-color 0.3s; outline: none; }
.contacto-form textarea { min-height: 150px; resize: vertical; }
.contacto-form input:focus, .contacto-form textarea:focus { border-color: var(--gold); }
.form-actions { margin-top: 16px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn-enviar { background: var(--gold); color: #000; border: none; padding: 12px 18px; border-radius: 10px; font-weight: 900; cursor: pointer; }
.btn-enviar:hover { filter: brightness(1.06); }
.mini-hint { color: #888; font-size: 0.9rem; }
.nota { margin-top: 12px; color: #888; font-size: 0.85rem; text-align: left; }

@media (max-width: 900px) {
  .contacto-grid { grid-template-columns: 1fr; }
  .contacto-card h2 { text-align: center; }
  .contacto-card p { text-align: center; }
  .contacto-cta { justify-content: center; }
  .nota { text-align: left; }
}

.hamburger { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 22px; position: relative; z-index: 1100; }
.hamburger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--gold); transition: transform 0.2s ease, opacity 0.2s ease; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 10px; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); bottom: 10px; }

@media (max-width: 768px) {
  .hamburger { display: block; margin-left: auto; }
  .main-nav { position: absolute; top: 70px; right: 20px; background: #000; border: 1px solid rgba(212,175,55,0.3); border-radius: 10px; padding: 20px; display: none; flex-direction: column; gap: 18px; }
  .main-nav.open { display: flex; }
  .main-nav a { color: var(--gold); text-decoration: none; font-size: 1rem; text-align: right; }
}

.header-inner { position: relative; }
.hamburger { position: absolute; top: 35px; right: 25px; }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

.hero-video { position: relative; width: 100%; height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #000; min-height: 100vh; max-width: none; padding: 0; }
.hero-video-bg { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; object-fit: cover; transform: translate(-50%, -50%); z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; padding: 20px; }
.hero-content .logo-centered { max-width: 480px; }
.hero-content .frase { margin-top: 20px; color: var(--gold); font-size: 1rem; letter-spacing: 1px; }

.map-wrapper { max-width: 900px; margin: 0 auto; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.7); }
.map-img { width: 100%; max-height: 670px; object-fit: contain; display: block; filter: brightness(0.9); }

@media (max-width: 600px) { .map-wrapper { border-radius: 14px; } }

.page-reservas .reservas-section { padding: 60px 20px; max-width: 800px; margin: auto; }
.reservas-card { background: #111; border: 1px solid #222; border-radius: 16px; padding: 40px; margin-top: 30px; }
.reserva-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; margin-top: 10px; }
.form-group label { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { background: #1a1a1a; border: 1px solid #333; border-radius: 8px; padding: 12px 16px; color: #f5f5f5; font-family: 'Poppins', sans-serif; font-size: 0.9rem; transition: border-color 0.3s; width: 100%; box-sizing: border-box; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group select option { background: #1a1a1a; }
.btn-reservar { background: var(--gold); color: #000; border: none; border-radius: 8px; padding: 14px 32px; font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; cursor: pointer; transition: opacity 0.3s; margin-top: 20px; }
.btn-reservar:hover { opacity: 0.85; }
.btn-reservar:disabled { opacity: 0.5; cursor: not-allowed; }
.form-actions { text-align: center; }
.nota-reserva { text-align: center; font-size: 0.8rem; color: #666; margin-top: 16px; }
.mensaje-exito { text-align: center; padding: 40px; }
.exito-icon { font-size: 3rem; margin-bottom: 20px; }
.mensaje-exito h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 10px; }

.page-login .login-section { display: flex; justify-content: center; align-items: center; min-height: 80vh; padding: 40px 20px; }
.login-card { background: #111; border: 1px solid #222; border-radius: 16px; padding: 50px 40px; width: 100%; max-width: 420px; text-align: center; }
.login-logo { width: 80px; margin-bottom: 20px; }
.login-card h1 { font-size: 1.5rem; margin-bottom: 8px; }
.login-sub { color: #666; font-size: 0.9rem; margin-bottom: 30px; }
.login-form { text-align: left; display: flex; flex-direction: column; gap: 16px; }
.error-msg { background: #2a0000; border: 1px solid #ff4444; border-radius: 8px; padding: 10px 16px; color: #ff6666; font-size: 0.85rem; margin-bottom: 10px; text-align: left; }
.login-back { margin-top: 20px; font-size: 0.85rem; }
.login-back a { color: var(--gold); text-decoration: none; }

.page-panel .header-inner { flex-direction: row !important; justify-content: space-between !important; }
.panel-header-info { display: flex; align-items: center; gap: 16px; }
.user-email { color: #666; font-size: 0.85rem; display: none; }
.btn-logout { background: transparent; border: 1px solid #333; border-radius: 8px; color: #f5f5f5; padding: 8px 16px; font-family: 'Poppins', sans-serif; cursor: pointer; font-size: 0.85rem; transition: border-color 0.3s; }
.btn-logout:hover { border-color: var(--gold); color: var(--gold); }
.panel-section { max-width: 1100px; margin: auto; padding: 40px 20px; }
.panel-top { text-align: center; margin-bottom: 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 30px; }
.stat-card { background: #111; border: 1px solid #222; border-radius: 12px; padding: 24px; text-align: center; display: flex; flex-direction: column; gap: 8px; }
.stat-num { font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.85rem; color: #666; }
.stat-pendiente .stat-num { color: #f0a500; }
.stat-confirmada .stat-num { color: #4caf50; }
.stat-cancelada .stat-num { color: #f44336; }
.filtros-y-accion { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.panel-filtros { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 0; }
.filtro-btn { background: #111; border: 1px solid #333; border-radius: 8px; color: #f5f5f5; padding: 8px 20px; font-family: 'Poppins', sans-serif; cursor: pointer; font-size: 0.85rem; transition: all 0.3s; }
.filtro-btn:hover, .filtro-btn.activo { background: var(--gold); border-color: var(--gold); color: #000; }
.loading-panel { text-align: center; padding: 60px; }
.spinner { width: 40px; height: 40px; border: 3px solid #222; border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }
.sin-reservas { text-align: center; padding: 60px; color: #444; }
.reservas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.reserva-card { background: #111; border: 1px solid #222; border-radius: 12px; padding: 24px; border-left: 4px solid #333; }
.reserva-card.estado-pendiente { border-left-color: #f0a500; }
.reserva-card.estado-confirmada { border-left-color: #4caf50; }
.reserva-card.estado-cancelada { border-left-color: #f44336; }
.reserva-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.reserva-nombre { font-weight: 600; font-size: 1.05rem; color: var(--gold); }
.badge-estado { font-size: 0.75rem; padding: 4px 10px; border-radius: 20px; font-weight: 600; text-transform: uppercase; }
.badge-estado.pendiente { background: #2a1f00; color: #f0a500; }
.badge-estado.confirmada { background: #0a2a0a; color: #4caf50; }
.badge-estado.cancelada { background: #2a0a0a; color: #f44336; }
.reserva-info { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.reserva-info p { font-size: 0.85rem; color: #aaa; text-align: left; }
.reserva-acciones { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-confirmar, .btn-cancelar, .btn-pendiente { border: none; border-radius: 6px; padding: 8px 14px; font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: opacity 0.3s; }
.btn-confirmar { background: #4caf50; color: #fff; }
.btn-cancelar { background: #f44336; color: #fff; }
.btn-pendiente { background: #f0a500; color: #000; }
.btn-confirmar:hover, .btn-cancelar:hover, .btn-pendiente:hover { opacity: 0.8; }

@media (max-width: 900px) {
  .reserva-form .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reservas-grid { grid-template-columns: 1fr; }
  .reservas-card { padding: 24px; }
  .login-card { padding: 30px 24px; }
  .panel-sidebar { display: none !important; }
  .panel-tabs { display: flex !important; }
  .panel-layout { display: block; }
  .panel-top { display: block; }
}

@media (min-width: 901px) {
  .panel-tabs { display: none; }
  .panel-top { display: none; }
  .panel-sidebar { display: block; }
}

.panel-tabs { display: none; gap: 10px; margin-bottom: 24px; }
.tab-btn { background: #111; border: 1px solid #333; border-radius: 8px; color: #f5f5f5; padding: 10px 24px; font-family: 'Poppins', sans-serif; font-size: 0.95rem; cursor: pointer; transition: all 0.3s; }
.tab-btn:hover, .tab-btn.activo { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 600; }

.panel-layout { display: flex; gap: 0; align-items: flex-start; }

.panel-sidebar {
  width: 220px;
  min-width: 220px;
  background: #0d0d0d;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  position: sticky;
  top: 90px;
  margin-right: 28px;
  border: 1px solid #1a1a1a;
}

.sidebar-titulo {
  color: #555;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 20px 20px 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Poppins', sans-serif;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 10px 16px;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: #666;
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
  border-left: 3px solid transparent;
}

.sidebar-btn svg { flex-shrink: 0; opacity: 0.5; transition: opacity 0.2s; }
.sidebar-btn:hover { background: #1a1a1a; color: #f5f5f5; }
.sidebar-btn:hover svg { opacity: 1; }

.sidebar-btn.activo {
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  font-weight: 600;
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
}

.sidebar-btn.activo svg { opacity: 1; }

.panel-content { flex: 1; min-width: 0; }

.clientes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.cliente-card { background: #111; border: 1px solid #222; border-radius: 12px; padding: 24px; border-left: 4px solid var(--gold); }
.cliente-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cliente-nombre { font-weight: 600; font-size: 1.05rem; color: var(--gold); }
.cliente-estrellas { font-size: 1rem; }
.cliente-info { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cliente-info p { font-size: 0.85rem; color: #aaa; text-align: left; }
.nivel-selector { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nivel-selector label { color: #666; font-size: 0.8rem; }
.btn-nivel { background: #1a1a1a; border: 1px solid #333; border-radius: 6px; padding: 4px 8px; cursor: pointer; font-size: 0.75rem; transition: all 0.3s; }
.btn-nivel.activo { background: var(--gold); border-color: var(--gold); }
.btn-nivel:hover { border-color: var(--gold); }
.btn-eliminar { background: transparent; border: 1px solid #f44336; color: #f44336; border-radius: 8px; padding: 8px 14px; font-size: 1.1rem; cursor: pointer; transition: all 0.3s; }
.btn-eliminar:hover { background: #f44336; color: #fff; }
.btn-whatsapp-panel { background: #25d366; color: #fff; border: none; border-radius: 8px; padding: 8px 14px; font-size: 1.1rem; cursor: pointer; text-decoration: none; transition: opacity 0.3s; display: inline-block; }
.btn-whatsapp-panel:hover { opacity: 0.8; }

.footer-main { background: #0a0a0a; border-top: 1px solid #222; padding: 50px 40px 20px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto 40px; }
.footer-brand .footer-logo { width: 80px; margin-bottom: 12px; }
.footer-brand p { color: #666; font-size: 0.85rem; }
.footer-links h4, .footer-social h4 { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; font-weight: 600; }
.footer-links a, .footer-social a { display: block; color: #888; text-decoration: none; font-size: 0.85rem; margin-bottom: 8px; transition: color 0.3s; }
.footer-links a:hover, .footer-social a:hover { color: var(--gold); }
.footer-bottom { text-align: center; border-top: 1px solid #1a1a1a; padding-top: 20px; color: #444; font-size: 0.8rem; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-social a, .footer-links a { justify-content: center; }
}

.footer-social a, .footer-links a { display: flex; align-items: center; gap: 8px; }

.privacidad-section { max-width: 800px; margin: 60px auto; padding: 0 20px; }
.privacidad-container h1 { font-size: 2rem; color: var(--gold); margin-bottom: 8px; }
.privacidad-fecha { color: #555; font-size: 0.85rem; margin-bottom: 40px; }
.privacidad-bloque { margin-bottom: 36px; }
.privacidad-bloque h2 { font-size: 1.1rem; color: var(--gold); margin-bottom: 12px; font-weight: 600; }
.privacidad-bloque p, .privacidad-bloque li { color: #aaa; font-size: 0.9rem; line-height: 1.8; }
.privacidad-bloque ul { padding-left: 20px; margin-top: 8px; }
.privacidad-bloque li { margin-bottom: 6px; }
.privacidad-bloque a { color: var(--gold); text-decoration: none; }
.privacidad-volver { margin-top: 50px; text-align: center; }

#cookieBanner { position: fixed; bottom: 0; left: 0; right: 0; background: #111; border-top: 1px solid #222; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; z-index: 9999; flex-wrap: wrap; }
.cookie-texto { font-size: 0.85rem; color: #aaa; flex: 1; }
.cookie-texto a { color: var(--gold); text-decoration: none; }
.cookie-botones { display: flex; gap: 10px; }
.cookie-botones button { padding: 8px 20px; border-radius: 8px; border: none; font-family: 'Poppins', sans-serif; font-size: 0.85rem; cursor: pointer; transition: opacity 0.3s; }
#cookieAceptar { background: var(--gold); color: #000; font-weight: 600; }
#cookieRechazar { background: #222; color: #aaa; border: 1px solid #333; }
#cookieAceptar:hover, #cookieRechazar:hover { opacity: 0.8; }

@media (max-width: 768px) {
  #cookieBanner { flex-direction: column; text-align: center; }
  .cookie-botones { width: 100%; justify-content: center; }
}

.servicios-home { padding: 60px 20px; max-width: 1100px; margin: 0 auto; text-align: center; }
.servicios-home-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 40px 0; }
.servicio-home-card { background: #111; border: 1px solid #222; border-radius: 16px; padding: 30px 20px; transition: border-color 0.3s, transform 0.3s; }
.servicio-home-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.servicio-home-icon { font-size: 2.5rem; margin-bottom: 16px; }
.servicio-home-card h3 { font-size: 1rem; color: var(--gold); margin-bottom: 10px; }
.servicio-home-card p { font-size: 0.85rem; color: #888; line-height: 1.6; }

.btn-ver-servicios { display: inline-block; background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 12px 30px; border-radius: 8px; text-decoration: none; font-size: 0.9rem; transition: all 0.3s; }
.btn-ver-servicios:hover { background: var(--gold); color: #000; }

.resenas-section { padding: 60px 20px; max-width: 1100px; margin: 0 auto; text-align: center; }
.resenas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin: 40px 0; }
.resena-card { background: #111; border: 1px solid #222; border-radius: 16px; padding: 24px; text-align: left; }
.resena-estrellas { font-size: 1.1rem; margin-bottom: 12px; }
.resena-texto { color: #aaa; font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.resena-autor { color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.resena-form-container { background: #111; border: 1px solid #222; border-radius: 16px; padding: 40px; max-width: 600px; margin: 40px auto 0; text-align: left; }
.resena-form-container h3 { color: var(--gold); margin-bottom: 24px; font-size: 1.1rem; text-align: center; }
.resena-form { display: flex; flex-direction: column; gap: 16px; }
.estrellas-selector { display: flex; gap: 8px; font-size: 1.8rem; cursor: pointer; }
.estrella { opacity: 0.3; transition: opacity 0.2s; cursor: pointer; }
.estrella.activa { opacity: 1; }

@media (max-width: 768px) {
  .servicios-home-grid { grid-template-columns: repeat(2, 1fr); }
  .resena-form-container { padding: 24px; }
}

.reserva-whatsapp-banner { display: flex; align-items: center; justify-content: center; gap: 20px; background: #111; border: 1px solid #222; border-radius: 12px; padding: 20px 30px; max-width: 600px; margin: 20px auto; flex-wrap: wrap; }
.reserva-whatsapp-banner p { color: #aaa; font-size: 0.95rem; margin: 0; }
.btn-whatsapp-reserva { display: flex; align-items: center; gap: 8px; background: #25d366; color: #fff; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: opacity 0.3s; }
.btn-whatsapp-reserva:hover { opacity: 0.85; }
.reserva-separador { text-align: center; margin: 10px auto; color: #444; font-size: 0.85rem; position: relative; max-width: 600px; }
.reserva-separador::before, .reserva-separador::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: #222; }
.reserva-separador::before { left: 0; }
.reserva-separador::after { right: 0; }

.franjas-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.franja-btn { background: #1a1a1a; border: 1px solid #333; color: #888; padding: 8px 16px; border-radius: 20px; font-family: 'Poppins', sans-serif; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; }
.franja-btn:hover { border-color: var(--gold); color: var(--gold); }
.franja-btn.activo { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 600; }

.cobertura-mapa { text-align: center; padding: 0; }
.ubicacion-section { padding: 80px 20px; text-align: center; background: transparent; }
.ubicacion-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px; margin: 40px auto 0; text-align: left; }
.ubicacion-map { border: 1px solid var(--gold); border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6); line-height: 0; }
.ubicacion-info { display: flex; flex-direction: column; gap: 28px; justify-content: center; }
.ubicacion-item { display: flex; align-items: flex-start; gap: 16px; }
.ubicacion-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.ubicacion-item h4 { text-align: left; color: var(--gold); font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.ubicacion-item p { text-align: left; color: #aaa; font-size: 0.9rem; line-height: 1.6; margin: 0; }

@media (max-width: 768px) {
  .ubicacion-inner { grid-template-columns: 1fr; }
  .ubicacion-section { padding: 60px 16px; }
}

.galeria-extra { max-height: 0; overflow: hidden; transition: max-height 0.7s ease, opacity 0.5s ease; opacity: 0; }
.galeria-extra.abierta { max-height: 2000px; opacity: 1; }
.galeria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 30px 20px 10px; max-width: 1200px; margin: 0 auto; }
.galeria-item { overflow: hidden; border-radius: 10px; aspect-ratio: 3/4; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.galeria-item:hover img { transform: scale(1.05); }

.btn-galeria { display: flex; align-items: center; gap: 8px; margin: 28px auto 10px; background: transparent; border: 1.5px solid var(--gold); color: var(--gold); padding: 12px 28px; border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 0.9rem; cursor: pointer; transition: background 0.25s, color 0.25s; }
.btn-galeria:hover { background: var(--gold); color: #000; }
.btn-galeria svg { transition: transform 0.4s ease; }

@media (max-width: 768px) { .galeria-grid { grid-template-columns: repeat(2, 1fr); } }

.contacto-nuevo-grid { display: grid; grid-template-columns: 1fr auto 1.4fr; gap: 0; align-items: start; }
.contacto-info-col { padding: 10px 40px 10px 10px; }
.contacto-info-col h3, .contacto-form-col h3 { color: var(--gold); font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.contacto-info-sub { color: #666; font-size: 0.82rem; margin-bottom: 28px; }
.contacto-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contacto-info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contacto-info-label { display: block; color: #555; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contacto-info-val { color: #f5f5f5; font-size: 0.9rem; text-decoration: none; }
.contacto-info-val:hover { color: var(--gold); }
.contacto-redes { display: flex; gap: 10px; margin-top: 30px; flex-wrap: wrap; }
.contacto-red-btn { display: inline-flex; align-items: center; gap: 6px; border: 1px solid #333; color: #aaa; padding: 8px 14px; border-radius: 20px; font-size: 0.82rem; text-decoration: none; transition: border-color 0.25s, color 0.25s; }
.contacto-red-btn:hover { border-color: var(--gold); color: var(--gold); }
.contacto-divisor { width: 1px; background: #222; align-self: stretch; margin: 0 10px; }
.contacto-form-col { padding: 10px 10px 10px 40px; }
.contacto-form-col .reserva-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 768px) {
  .contacto-nuevo-grid { grid-template-columns: 1fr; }
  .contacto-divisor { width: 100%; height: 1px; margin: 20px 0; }
  .contacto-info-col, .contacto-form-col { padding: 10px; }
  .contacto-form-col .reserva-form .form-grid { grid-template-columns: 1fr; }
}

.scroll-top { position: fixed; bottom: 90px; right: 44px; width: 36px; height: 36px; background: transparent; color: var(--gold); border: 1.5px solid rgba(212,175,55,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s, border-color 0.3s, color 0.3s; z-index: 998; }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); }

@media (max-width: 768px) {
  .whatsapp { bottom: 20px; right: 10px; }
  .scroll-top { bottom: 90px; right: 19px; }
}

@media (min-width: 769px) {
  .whatsapp { bottom: 60px; right: 35px; width: 62px; height: 62px; }
  .scroll-top { bottom: 130px; right: 45px; width: 40px; height: 40px; }
}

/* ── PANEL APP LAYOUT ── */
body.page-panel {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
}

.panel-app {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.panel-sidebar-app {
  width: 240px;
  min-width: 240px;
  background: #0a0a0a;
  border-right: 1px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}

.panel-sidebar-logo {
  padding: 24px 20px 20px;
  border-bottom: 1px solid #1a1a1a;
}

.panel-sidebar-app .sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.panel-sidebar-app .sidebar-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: #555;
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
}

.panel-sidebar-app .sidebar-btn svg { opacity: 0.4; transition: opacity 0.2s; flex-shrink: 0; }
.panel-sidebar-app .sidebar-btn:hover { background: #161616; color: #f5f5f5; }
.panel-sidebar-app .sidebar-btn:hover svg { opacity: 1; }

.panel-sidebar-app .sidebar-btn.activo {
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  font-weight: 600;
}

.panel-sidebar-app .sidebar-btn.activo svg { opacity: 1; }

.sidebar-bottom {
  padding: 16px 20px 24px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-email {
  color: #444;
  font-size: 0.75rem;
  word-break: break-all;
}

.sidebar-logout {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #222;
  border-radius: 8px;
  color: #666;
  padding: 10px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.sidebar-logout:hover { border-color: #f44336; color: #f44336; }

.panel-main {
  margin-left: 240px;
  flex: 1;
  height: 100vh;
  overflow-y: auto;
  padding: 32px 36px;
  background: #000;
}

.panel-page-header {
  margin-bottom: 24px;
}

.panel-page-header h1 {
  color: var(--gold);
  font-size: 1.6rem;
  text-align: left;
  margin: 0;
}

@media (max-width: 900px) {
  body.page-panel { overflow: auto; height: auto; }
  .panel-app { flex-direction: column; height: auto; }
  .panel-sidebar-app { display: none; }
  .panel-main { margin-left: 0; height: auto; padding: 20px 16px; overflow: visible; }
  .panel-tabs { display: flex !important; }
}

/* ── PANEL HEADER MÓVIL ── */
.panel-mobile-header {
  display: none;
}

@media (max-width: 900px) {
  .panel-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 20px;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 20px;
  }
}

/* ── BUSCADOR PANEL ── */
.buscador-panel {
  margin-bottom: 16px;
}

.buscador-panel input {
  width: 100%;
  max-width: 480px;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 11px 16px;
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}

.buscador-panel input:focus {
  border-color: var(--gold);
}

.buscador-panel input::placeholder {
  color: #444;
}

/* ── SERVICIOS REDISEÑO ── */
.servicios-hero {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 280px;
}

.servicios-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: brightness(0.7);
}

.servicios-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.75) 100%);
}

.servicios-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.servicios-hero-content h1 {
  color: var(--gold);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin: 0;
}

.servicios-hero-content p {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.servicios-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.servicio-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  min-height: 300px;
}

.servicio-card.invertido .servicio-img-col { order: 2; }
.servicio-card.invertido .servicio-text-col { order: 1; }

.servicio-img-col {
  position: relative;
  overflow: hidden;
}

.servicio-img-col img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}

.servicio-card:hover .servicio-img-col img {
  transform: scale(1.04);
}

/* Números quitados */
.servicio-num { display: none; }

.servicio-text-col {
  background: #0d0d0d;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.servicio-tag {
  display: inline-block;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
}

.servicio-text-col h3 {
  color: #f5f5f5;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.servicio-text-col p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.75;
  text-align: left;
}

/* Botón amarillo con flecha */
.servicio-btn {
  display: inline-block;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #000;
  padding: 11px 28px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.25s;
}

.servicio-btn:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .servicios-hero { height: 300px; padding-top: 210px; padding-bottom: 0; }
  .servicios-hero-content h1 { font-size: 2rem; }
  .servicio-card { grid-template-columns: 1fr; min-height: auto; }
  .servicios-hero-img { object-position: 17% 50%; }
  .servicio-card.invertido .servicio-img-col { order: 0; }
  .servicio-card.invertido .servicio-text-col { order: 0; }
  .servicio-img-col { height: 220px; }
  .servicio-text-col { padding: 28px 24px; }
}

