/* ===== RESET ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== BODY ===== */
body {
  min-height: 100vh;
  overflow-x: hidden;
  color: white;
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 25%, rgba(212,175,55,0.15), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(130,10,10,0.15), transparent 30%),
    radial-gradient(circle at 70% 85%, rgba(212,175,55,0.10), transparent 32%),
    linear-gradient(135deg, #060606 0%, #0e0e0e 50%, #030303 100%);
  -webkit-tap-highlight-color: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    120deg,
    rgba(212,175,55,0.025) 0,
    rgba(212,175,55,0.025) 1px,
    transparent 1px,
    transparent 32px
  );
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 48px;
  border-bottom: 1px solid rgba(212,175,55,0.12);
  background: rgba(20,18,18,0.94);
  backdrop-filter: blur(14px);
}

.logo {
  color: #d4af37;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.btn-volver {
  padding: 10px 20px;
  border: 1px solid rgba(212,175,55,0.7);
  border-radius: 999px;
  background: rgba(212,175,55,0.07);
  color: #f2d36b;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-volver:hover {
  background: rgba(212,175,55,0.16);
}

/* ===== CONTENEDOR ===== */
.contenedor {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

/* ===== ESTADOS ===== */
.cargando,
.sin-resultados {
  padding: 40px 24px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 22px;
  background: rgba(0,0,0,0.3);
  color: #ccc;
  text-align: center;
}

.sin-resultados h3 {
  margin-bottom: 16px;
  color: white;
  font-size: 20px;
}

.spinner {
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  border: 3px solid rgba(212,175,55,0.18);
  border-top-color: #d4af37;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== CARD PERFIL ===== */
.card-perfil {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 26px;
  background: linear-gradient(148deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 50px rgba(212,175,55,0.08);
  backdrop-filter: blur(18px);
}

/* ===== CABECERA PERFIL ===== */
.perfil-cabecera {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 34px 28px 28px;
  border-bottom: 1px solid rgba(212,175,55,0.12);
}

.foto-perfil {
  flex-shrink: 0;
  width: 108px;
  height: 108px;
  overflow: hidden;
  border: 2px solid rgba(212,175,55,0.55);
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
}

.foto-perfil-inicial {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2d36b;
  font-size: 36px;
  font-weight: 700;
}

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

.perfil-info {
  width: 100%;
  min-width: 0;
}

.perfil-info h1 {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1.25;
  word-break: break-word;
}

.perfil-tagline {
  margin: 0 0 14px;
  color: #b9ae97;
  font-size: 14px;
}

/* ===== BADGES ===== */
.estado {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.estado::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.estado.disponible {
  border: 1px solid rgba(80,200,120,0.4);
  background: rgba(80,200,120,0.12);
  color: #6ddfa0;
}

/* El sello de quien tiene la confirmacion automatica: aqui la cita queda
   confirmada al momento, sin esperar a que la profesional conteste. */
.sello-instante {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px 8px 6px 0;
  padding: 3px 11px;
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 999px;
  background: rgba(212,175,55,0.10);
  color: #f2d36b;
  font-size: 11.5px;
  letter-spacing: 0.3px;
}

.estado.vacaciones {
  border: 1px solid rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.10);
  color: #f2d36b;
}

.estado.pronto {
  border: 1px solid rgba(240,190,60,0.35);
  background: rgba(240,190,60,0.10);
  color: #f0d060;
}

.estado.no-disponible {
  border: 1px solid rgba(220,80,80,0.35);
  background: rgba(220,80,80,0.10);
  color: #e08888;
}

.insignia-verificada {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 9px;
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 999px;
  background: rgba(212,175,55,0.14);
  color: #f2d36b;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}

/* ===== SECCIONES ===== */
.seccion {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.seccion:last-child {
  border-bottom: none;
}

.seccion-titulo {
  margin-bottom: 10px;
  color: #f2d36b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.seccion-subtitulo {
  margin-top: -4px;
  margin-bottom: 14px;
  color: #888;
  font-size: 12px;
  line-height: 1.5;
}

.seccion-texto {
  color: #bbb;
  font-size: 14px;
  line-height: 1.65;
}

/* ===== PORTFOLIO ===== */
.grid-fotos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.foto-portfolio {
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 14px;
  background: rgba(212,175,55,0.05);
  aspect-ratio: 1;
}

.foto-portfolio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.foto-portfolio img:hover {
  transform: scale(1.05);
}

.grid-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.video-portfolio {
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 14px;
  background: #000;
}

.video-portfolio video {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

/* ===== BOTONES ===== */
.btn-como-llegar {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 13px 18px;
  border: 1px solid rgba(212,175,55,0.6);
  border-radius: 999px;
  background: rgba(212,175,55,0.07);
  color: #f2d36b;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-como-llegar:hover {
  background: rgba(212,175,55,0.14);
}

.btn-whatsapp {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(80,200,130,0.4);
  border-radius: 999px;
  background: rgba(80,200,130,0.08);
  color: #7de8a8;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background: rgba(80,200,130,0.14);
}

.btn-whatsapp:last-child {
  margin-bottom: 0;
}

.btn-agenda-contacto {
  margin-top: 16px;
  margin-bottom: 0;
}

.btn-perfil {
  margin-top: 16px;
  padding: 12px 20px;
  border: 1px solid rgba(212,175,55,0.6);
  border-radius: 999px;
  background: rgba(212,175,55,0.07);
  color: #f2d36b;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-perfil:hover {
  background: rgba(212,175,55,0.14);
}

/* ===== AGENDA PUBLICA ===== */
.agenda-calendario {
  margin-top: 8px;
}

.agenda-calendario-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.agenda-calendario-header strong {
  color: #f2d36b;
  font-size: 15px;
  text-transform: capitalize;
}

.agenda-calendario-header button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 9px;
  background: rgba(212,175,55,0.07);
  color: #f2d36b;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.2s;
}

.agenda-calendario-header button:hover {
  background: rgba(212,175,55,0.15);
}

.agenda-semana,
.agenda-dias {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.agenda-semana {
  margin-bottom: 5px;
}

.agenda-semana span {
  color: #777;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.agenda-dia {
  height: 38px;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 9px;
  background: rgba(0,0,0,0.2);
  color: #d8d8d8;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}

.agenda-dia:hover {
  border-color: rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.10);
  color: #f2d36b;
}
.agenda-dia.seleccionada {
  border-color: rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.10);
  color: #f2d36b;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.4);
}

.agenda-dia.vacio {
  visibility: hidden;
  pointer-events: none;
}

/* Dia sin horas libres: cerrado por vacaciones, dia que no trabaja, o ya
   lo tiene todo cogido. Se apaga para que no haya que pulsarlo y descubrirlo. */
.agenda-dia.cerrado {
  position: relative;
  opacity: 0.32;
  border-color: rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.32);
  color: #7c7c7c;
  cursor: not-allowed;
}

.agenda-dia.cerrado::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 50%;
  height: 1px;
  background: #6a6a6a;
}

.agenda-leyenda {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.agenda-leyenda span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8b8b8b;
  font-size: 11.5px;
}

.agenda-leyenda i {
  width: 15px;
  height: 15px;
  border-radius: 5px;
  border: 1px solid rgba(212,175,55,0.12);
  background: rgba(0,0,0,0.2);
}

.agenda-leyenda i.muestra-libre {
  border-color: rgba(212,175,55,0.35);
  background: rgba(212,175,55,0.07);
}

.agenda-leyenda i.muestra-cerrado {
  position: relative;
  opacity: 0.4;
  border-color: rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.32);
}

.agenda-leyenda i.muestra-cerrado::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 50%;
  height: 1px;
  background: #6a6a6a;
}

.agenda-dia.pasado {
  opacity: 0.32;
  cursor: default;
  pointer-events: none;
}

.horas-publicas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.hora-publica-btn {
  min-width: 60px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(100,180,140,0.3);
  border-radius: 9px;
  background: rgba(100,180,140,0.07);
  color: #d8d8d8;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
}

.hora-publica-btn:hover,
.hora-publica-btn.seleccionada {
  border-color: rgba(100,180,140,0.6);
  background: rgba(100,180,140,0.18);
  color: #8de8b8;
}

/* ===== SERVICIOS ===== */
.servicios-lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.servicio-grupo {
  padding: 14px 16px;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
}

.servicio-grupo-titulo {
  margin-bottom: 10px;
  color: #d4af37;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.servicio-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.servicio-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.servicio-fila {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.servicio-nombre {
  flex: 1;
  min-width: 0;
  color: #e0e0e0;
  font-size: 13px;
  font-weight: 600;
  word-break: break-word;
  line-height: 1.35;
}

/* El "que incluye" del servicio, en letra pequena debajo del nombre. */
.servicio-incluye {
  color: #9a9186;
  font-size: 11.5px;
  line-height: 1.5;
  margin-top: 2px;
  word-break: break-word;
}

.servicio-acciones {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.servicio-extras {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.servicio-precio {
  color: #f2d36b;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.servicio-duracion {
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #888;
  font-size: 11px;
  white-space: nowrap;
}

/* ===== OPCIONES DURACION MASAJES ===== */
.servicio-opciones-duracion {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 2px;
}

.servicio-opcion-duracion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(212,175,55,0.10);
  border-radius: 9px;
  background: rgba(0,0,0,0.12);
  transition: background 0.18s;
}

.servicio-opcion-duracion:hover {
  background: rgba(212,175,55,0.04);
}

.servicio-opcion-duracion.seleccionado {
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.07);
}

.servicio-opcion-duracion .servicio-extras {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

/* ===== BOTONES SERVICIOS ===== */
.btn-mas-info {
  padding: 4px 11px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: transparent;
  color: #888;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s;
}

.btn-mas-info:hover {
  border-color: rgba(255,255,255,0.3);
  color: #bbb;
}

.btn-anadir {
  padding: 5px 13px;
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 999px;
  background: rgba(212,175,55,0.08);
  color: #f2d36b;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.18s;
}

.btn-anadir:hover {
  background: rgba(212,175,55,0.16);
}

.btn-anadir.anadido {
  border-color: #d4af37;
  background: rgba(212,175,55,0.2);
  color: #f2d36b;
}

/* ===== DESCRIPCION ===== */
.servicio-descripcion {
  margin-top: 2px;
  padding: 8px 10px;
  border-left: 2px solid rgba(212,175,55,0.25);
  border-radius: 8px;
  background: rgba(255,255,255,0.025);
  color: #999;
  font-size: 12px;
  font-style: italic;
  line-height: 1.55;
  word-break: break-word;
}

/* ===== RESUMEN ===== */
.resumen-box {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  background: rgba(212,175,55,0.04);
}

.resumen-titulo {
  margin-bottom: 8px;
  color: #f2d36b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.resumen-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
}

.resumen-item:last-child {
  border-bottom: none;
}

.resumen-nombre {
  flex: 1;
  min-width: 0;
  color: #bbb;
  word-break: break-word;
}

.resumen-info {
  flex-shrink: 0;
  color: #f2d36b;
  font-size: 11px;
  white-space: nowrap;
}

.resumen-totales {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(212,175,55,0.15);
}

.resumen-total {
  color: #bbb;
  font-size: 12px;
}

.resumen-total strong {
  color: #f2d36b;
}

/* ===== MAPBOX ===== */
.mapboxgl-popup-content {
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 12px;
  background: rgba(18,18,18,0.97);
  color: white;
}

/* ===== TABLET ===== */
@media (max-width: 850px) {
  .header {
    height: 64px;
    padding: 0 20px;
  }

  .logo {
    font-size: 24px;
  }

  .contenedor {
    padding: 20px 14px 50px;
  }

  .grid-fotos {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ===== MOVIL ===== */
@media (max-width: 600px) {
  .header {
    height: 60px;
    padding: 0 16px;
  }

  .logo {
    font-size: 22px;
  }

  .btn-volver {
    padding: 8px 14px;
    font-size: 13px;
  }

  .contenedor {
    padding: 16px 12px 50px;
  }

  .card-perfil {
    border-radius: 20px;
  }

  .perfil-cabecera {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 16px 18px;
    text-align: center;
  }

 .foto-perfil {
    width: 96px;
    height: 96px;
    border-radius: 50%;
  }

  .perfil-info h1 {
    font-size: 20px;
  }

  .seccion {
    padding: 16px 14px;
  }

  .servicio-grupo {
    padding: 10px 12px;
  }

  .servicio-nombre {
    font-size: 13px;
  }

  .servicio-opcion-duracion {
    padding: 6px 9px;
  }

  .agenda-dia {
    height: 34px;
    border-radius: 7px;
    font-size: 12px;
  }

  .agenda-semana,
  .agenda-dias {
    gap: 3px;
  }

  .hora-publica-btn {
    min-width: 54px;
    height: 36px;
    font-size: 12px;
  }

  .grid-fotos {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .btn-como-llegar,
  .btn-whatsapp {
    padding: 13px;
    font-size: 14px;
  }
}

/* ===== MOVIL PEQUEÑO ===== */
@media (max-width: 380px) {
  .perfil-info h1 {
    font-size: 18px;
  }

  .foto-perfil {
    width: 82px;
    height: 82px;
  }

  .servicio-nombre {
    font-size: 12px;
  }

  .servicio-precio {
    font-size: 11px;
  }

  .servicio-duracion {
    padding: 2px 6px;
    font-size: 10px;
  }

  .btn-anadir {
    padding: 4px 9px;
    font-size: 10px;
  }

  .agenda-dia {
    height: 30px;
    font-size: 10px;
  }

  .hora-publica-btn {
    min-width: 48px;
    height: 34px;
    font-size: 11px;
  }
}

.modalidades-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.tag-modalidad {
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  color: #d4af37;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
}

.modalidad-aviso {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}
.seccion-reportar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.btn-reportar {
  background: transparent;
  border: none;
  color: #666;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 8px;
}

.btn-reportar:hover {
  color: #999;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.modal-reporte {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-reporte-card {
  background: #1a1a1a;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  padding: 24px;
  width: 90%;
  max-width: 420px;
}

.modal-reporte-titulo {
  color: #d4af37;
  margin-bottom: 16px;
}

.modal-reporte-subtitulo {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 16px;
}

.modal-reporte-input {
  width: 100%;
  padding: 12px;
  background: #111;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  color: #fff;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.modal-reporte-telefono {
  display: flex;
  align-items: center;
  background: #111;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.modal-reporte-prefijo {
  padding: 12px;
  color: #d4af37;
  border-right: 1px solid rgba(212,175,55,0.3);
  font-size: 14px;
}

.modal-reporte-telefono input {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
}

.modal-reporte-select {
  width: 100%;
  padding: 12px;
  background: #111;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  color: #fff;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.modal-reporte-textarea {
  width: 100%;
  padding: 12px;
  background: #111;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  color: #fff;
  margin-bottom: 10px;
  box-sizing: border-box;
  height: 80px;
}

/* Texto legal pequeno de las ventanas de reserva y de bono */
.modal-reporte-legal {
  font-size: 11.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.65);
  margin: 6px 0 10px;
}
.modal-reporte-legal a { color: inherit; text-decoration: underline; }

.modal-reporte-msg {
  font-size: 13px;
  margin-bottom: 10px;
}

.modal-reporte-botones {
  display: flex;
  gap: 10px;
}

.modal-reporte-btn-cancelar {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  color: #aaa;
  cursor: pointer;
}

.modal-reporte-btn-enviar {
  flex: 1;
  padding: 12px;
  background: #d4af37;
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}
/* ===== VALORACIONES ===== */
/* Titulo de valoraciones con el boton "Dejar valoracion" a la derecha */
.valoraciones-cabecera {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.valoraciones-cabecera .seccion-titulo { margin-bottom: 0; }

.btn-dejar-valoracion {
  background: transparent;
  border: 1px solid rgba(242,211,107,0.55);
  color: #f2d36b;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.btn-dejar-valoracion:hover { background: #f2d36b; color: #111; }

/* Los tres pasos de la ventana "como dejo mi valoracion" */
.como-valorar-paso {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
  margin: 8px 0;
}
.como-valorar-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f2d36b;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* La marca de Agendaxic al final de todas las mini-webs */
.pie-agendaxic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 28px auto 20px;
  padding: 14px 18px 12px;
  border-top: 1px solid rgba(212,175,55,0.15);
  text-decoration: none;
  text-align: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.pie-agendaxic:hover { opacity: 1; }
.pie-agendaxic-creado {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.pie-agendaxic-marca {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f2d36b;
}
.pie-agendaxic-frase {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
}

.valoraciones-resumen {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.valoraciones-media {
  color: #f2d36b;
  font-size: 18px;
  font-weight: 800;
}

.valoraciones-total {
  color: #999;
  font-size: 13px;
}

.valoraciones-lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.valoracion-item {
  padding: 12px 14px;
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: 12px;
  background: rgba(0,0,0,0.18);
}

.valoracion-cabecera {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.valoracion-estrellas {
  color: #f2d36b;
  font-size: 13px;
  letter-spacing: 1px;
}

.valoracion-fecha {
  color: #777;
  font-size: 11px;
}

.valoracion-comentario {
  color: #ccc;
  font-size: 13px;
  line-height: 1.55;
}
.redes-sociales {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.red-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 50%;
  background: rgba(212,175,55,0.10);
  color: #f2d36b;
  text-decoration: none;
}

.red-social:hover {
  background: rgba(212,175,55,0.18);
}

.btn-favorito {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 22px;
  border: 1px solid rgba(212,175,55,0.6);
  background: rgba(15,10,5,0.6);
  color: #e6c765;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
}

.btn-favorito .icono-corazon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #e6c765;
  stroke-width: 2;
  pointer-events: none;
}

.btn-favorito .txt-favorito {
  pointer-events: none;
}

.btn-favorito[data-favorito="si"] {
  background: linear-gradient(145deg, #e6c765, #d4af37);
  border-color: #e6c765;
  color: #3a2a05;
}

.btn-favorito[data-favorito="si"] .icono-corazon {
  fill: #3a2a05;
  stroke: #3a2a05;
}

.btn-favorito:hover {
  filter: brightness(1.08);
}
.campo-oculto {
  display: none;
}

.seccion-aviso {
  padding: 4px 20px 18px;
  text-align: center;
}

.btn-avisar {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 24px;
  border: 1px solid rgba(212,175,55,0.6);
  background: linear-gradient(145deg, #e6c765, #d4af37);
  color: #3a2a05;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.btn-avisar:hover {
  filter: brightness(1.05);
}

.aviso-mensaje {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
}

/* ===== ELEGIR CON QUIEN (solo si en el local atiende mas de una) ===== */
.elegir-trab {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212,175,55,0.10);
}

.trab-opciones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.trab-opcion {
  flex: 0 1 auto;
  max-width: 100%;
  min-height: 44px;
  padding: 11px 16px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 999px;
  background: rgba(212,175,55,0.05);
  color: #ddd;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.trab-opcion:hover {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.12);
}

.trab-opcion.elegida {
  border-color: rgba(212,175,55,0.85);
  background: linear-gradient(145deg, #e6c765, #d4af37);
  color: #3a2a05;
}

.trab-opcion:focus-visible {
  outline: 2px solid #f2d36b;
  outline-offset: 2px;
}

#trabAviso {
  font-size: 13px;
}

@media (max-width: 360px) {
  .trab-opcion {
    padding: 11px 13px;
    font-size: 13px;
  }
}

/* ===== VENIR VARIAS (reserva de grupo) ===== */
.grupo-amigas {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.grupo-amiga {
  padding: 14px;
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 14px;
  background: rgba(212,175,55,0.04);
}

.grupo-etiqueta {
  display: block;
  margin-bottom: 6px;
  color: #f2d36b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.grupo-nombre {
  width: 100%;
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 12px;
  background: rgba(0,0,0,0.35);
  color: #f0f0f0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 15px;
}

.grupo-nombre:focus {
  border-color: rgba(212,175,55,0.7);
  outline: none;
}

.grupo-que-quiere {
  margin: 12px 0 7px;
  color: #bbb;
  font-size: 13px;
}

.grupo-servs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.grupo-serv {
  flex: 0 1 auto;
  max-width: 100%;
  min-height: 40px;
  padding: 9px 13px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 999px;
  background: rgba(212,175,55,0.05);
  color: #ddd;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.grupo-serv:hover {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.12);
}

.grupo-serv.elegida {
  border-color: rgba(212,175,55,0.85);
  background: linear-gradient(145deg, #e6c765, #d4af37);
  color: #3a2a05;
}

.grupo-serv:focus-visible,
.grupo-nombre:focus-visible {
  outline: 2px solid #f2d36b;
  outline-offset: 2px;
}

.grupo-suyo {
  margin-top: 9px;
  color: #f2d36b;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 360px) {
  .grupo-amiga { padding: 12px; }
  .grupo-serv { padding: 9px 11px; font-size: 12.5px; }
}
