:root {
  --color-primario: #4f46e5;
  --color-secundario: #7c3aed;

  --color-oscuro: #111827;
  --color-texto: #1f2937;
  --color-texto-secundario: #6b7280;

  --color-fondo: #f7f8fc;
  --color-blanco: #ffffff;

  --color-borde: #e5e7eb;

  --color-card: #f9fafb;

  --color-hover: #eef2ff;

  --sombra-suave: 0 12px 30px rgba(79, 70, 229, 0.08);
  --sombra-hover: 0 18px 40px rgba(79, 70, 229, 0.12);

  --gradiente-principal: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-secundario)
  );
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--color-fondo);
  color: var(--color-texto);
  line-height: 1.5;
  padding: 28px 16px 40px;
}

.contenedor {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.header-pagina {
  text-align: center;
  margin-bottom: 24px;
}

.header-pagina h1 {
  font-size: 32px;
  margin-bottom: 8px;
  color: #111827;
}

.header-pagina p {
  color: var(--color-texto-secundario);
  font-size: 15px;
}

.bloque {
  background: var(--color-blanco);
  border: 1px solid var(--color-borde);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  margin-bottom: 18px;
}

.bloque-titulo {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.paso {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: var(--color-oscuro);
  color: var(--color-blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.bloque-titulo h2 {
  font-size: 22px;
  color: #111827;
  margin-bottom: 4px;
}

.bloque-titulo p {
  color: var(--color-texto-secundario);
  font-size: 14px;
}

.grid-opciones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.profesionales-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.opcion-card {
  background: #f9fafb;
  border: 1px solid var(--color-borde);
  border-radius: 18px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.opcion-card:hover {
  transform: translateY(-2px);
  border-color: #c7d2fe;
  background: var(--color-blanco);
}

.opcion-card.activa {
  border-color: var(--color-primario);
  background: #eef2ff;
}

.opcion-card h3 {
  font-size: 18px;
  color: #111827;
}

.opcion-card p {
  font-size: 14px;
  color: var(--color-texto-secundario);
  line-height: 1.5;
}

.opcion-simple {
  justify-content: center;
  min-height: 110px;
}

.meta-opcion {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

.meta-opcion span:first-child {
  color: var(--color-primario);
  font-weight: 700;
  font-size: 18px;
}

.meta-opcion span:last-child {
  color: var(--color-texto-secundario);
  background: #eef2f7;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.grid-dias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
  gap: 12px;
}

.dia-card {
  background: #f9fafb;
  border: 1px solid var(--color-borde);
  border-radius: 18px;
  padding: 14px 10px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dia-card:hover {
  transform: translateY(-2px);
  border-color: #c7d2fe;
  background: var(--color-blanco);
}

.dia-card.activa {
  border-color: var(--color-primario);
  background: #eef2ff;
}

.dia-nombre {
  font-size: 13px;
  color: var(--color-texto-secundario);
}

.dia-numero {
  font-size: 26px;
  color: #111827;
  line-height: 1;
}

.dia-mes {
  font-size: 13px;
  color: var(--color-texto-secundario);
}

.grid-horarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
  gap: 10px;
}

.horario-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 10px;
  background: var(--color-oscuro);
  color: var(--color-blanco);
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.2s ease;
  min-height: 48px;
}

.horario-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.sin-resultados {
  background: #f9fafb;
  border: 1px solid var(--color-borde);
  border-radius: 16px;
  padding: 16px;
  color: var(--color-texto-secundario);
  text-align: center;
}

.acciones-finales {
  margin-top: 22px;
  text-align: center;
}

.btn-volver {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  color: #3730a3;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-volver:hover {
  background: #e0e7ff;
}

@media (max-width: 640px) {
  .header-pagina h1 {
    font-size: 28px;
  }

  .bloque {
    padding: 16px;
    border-radius: 18px;
  }

  .bloque-titulo h2 {
    font-size: 19px;
  }

  .grid-opciones {
    grid-template-columns: 1fr;
  }

  .grid-dias {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-horarios {
    grid-template-columns: repeat(3, 1fr);
  }

  .dia-numero {
    font-size: 22px;
  }

  .horario-btn {
    font-size: 14px;
    padding: 12px 8px;
  }
}
html {
  scroll-behavior: smooth;
}

.calendar-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-fecha {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.label-fecha {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.input-fecha {
  width: 100%;
  max-width: 260px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 15px;
  color: #111827;
  outline: none;
  transition: 0.2s ease;
  background: #fff;
}

.input-fecha:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.ayuda-fecha {
  font-size: 13px;
  color: var(--color-texto-secundario);
}

.btn-elegir-fecha {
  width: fit-content;
  border: none;
  background: var(--color-oscuro);
  color: var(--color-blanco);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-elegir-fecha:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.fechas-disponibles-resumen {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fecha-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 13px;
}

.fecha-chip.activa {
  background: #eef2ff;
  color: #3730a3;
  border: 1px solid #c7d2fe;
}

.mensaje-error {
  padding: 12px 14px;
  border-radius: 12px;
  background: #fee2e2;
  color: #b91c1c;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 640px) {
  .input-fecha {
    max-width: 100%;
  }

  .btn-elegir-fecha {
    width: 100%;
  }
}

.calendar-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-fecha {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.label-fecha {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.input-fecha {
  width: 100%;
  max-width: 280px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 15px;
  color: #111827;
  background: #fff;
  cursor: pointer;
}

.fechas-disponibles-resumen {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fecha-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 13px;
}

.fecha-chip.activa {
  background: #eef2ff;
  color: #3730a3;
  border: 1px solid #c7d2fe;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--color-oscuro);
  border-color: #111827;
}

.flatpickr-day.today {
  border-color: #6366f1;
}

/* ===== MEJORAS GENERALES ===== */

body {
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

/* ===== BLOQUES MÁS VIVOS ===== */

.bloque {
  background: var(--color-blanco);
  border: 1px solid var(--color-borde);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.08);
  transition: 0.3s ease;
}

.bloque:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.12);
}

/* ===== PASOS MÁS LINDOS ===== */

.paso {
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-secundario)
  );
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.4);
}

/* ===== TARJETAS (SERVICIOS / PROFESIONALES) ===== */

.opcion-card {
  background: var(--color-blanco);
  border: 1px solid var(--color-borde);
  border-radius: 18px;
  padding: 18px;
  transition: all 0.25s ease;
}

.opcion-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: #6366f1;
  box-shadow: 0 12px 25px rgba(99, 102, 241, 0.15);
}

/* ACTIVA */
.opcion-card.activa {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border: 2px solid var(--color-primario);
}

/* PRECIO MÁS PRO */
.meta-opcion span:first-child {
  font-size: 20px;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-secundario)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== HORARIOS ===== */

.horario-btn {
  background: linear-gradient(135deg, #111827, var(--color-texto));
  border-radius: 14px;
  transition: 0.25s ease;
}

.horario-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, var(--color-primario), #6366f1);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

/* ===== CALENDARIO ===== */

.input-fecha {
  border: 2px solid transparent;
  background: #fff;
  transition: 0.25s ease;
}

.input-fecha:hover {
  border-color: #c7d2fe;
}

.input-fecha:focus {
  border-color: var(--color-primario);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
}

/* ===== CHIPS FECHAS ===== */

.fecha-chip {
  background: #f1f5f9;
  transition: 0.25s ease;
}

.fecha-chip:hover {
  background: #e0e7ff;
  color: #3730a3;
}

.fecha-chip.activa {
  background: linear-gradient(135deg, var(--color-primario), #6366f1);
  color: #fff;
  border: none;
}

/* ===== BOTÓN VOLVER ===== */

.btn-volver {
  background: linear-gradient(135deg, var(--color-primario), #6366f1);
  color: white;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
}

.btn-volver:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.5);
}

/* ===== HEADER MÁS VIVO ===== */

.header-pagina h1 {
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-secundario)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.progress-wrap {
  background: var(--color-blanco);
  border: 1px solid var(--color-borde);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.08);
}

.progress-info {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--color-texto-secundario);
}

.progress-info strong {
  color: var(--color-primario);
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: var(--color-borde);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-secundario)
  );
  border-radius: 999px;
  transition: width 0.3s ease;
}

.progress-fill.paso-1 {
  width: 25%;
}

.progress-fill.paso-2 {
  width: 50%;
}

.progress-fill.paso-3 {
  width: 75%;
}

.progress-fill.paso-4 {
  width: 100%;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.progress-steps span {
  font-size: 12px;
  text-align: center;
  color: #9ca3af;
  font-weight: 600;
}

.progress-steps span.activo {
  color: var(--color-primario);
}

@media (max-width: 640px) {
  .progress-wrap {
    padding: 15px;
    border-radius: 18px;
  }

  .progress-steps span {
    font-size: 11px;
  }
}

/* CONTENEDOR CALENDARIO */
.calendar-box {
  display: flex;
  justify-content: center;
}

/* CALENDARIO COMPLETO */
.flatpickr-calendar {
  border: none !important;
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.25);
  border-radius: 20px;
  padding: 12px;
  width: 100% !important;
  max-width: 340px;
}

/* HEADER (mes/año) */
.flatpickr-months {
  margin-bottom: 10px;
}

.flatpickr-current-month {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primario);
}

/* DÍAS */
.flatpickr-day {
  border-radius: 10px;
  font-weight: 600;
  transition: 0.2s;
}

/* HOVER */
.flatpickr-day:hover {
  background: #e0e7ff;
  color: #3730a3;
}

/* DÍA SELECCIONADO */
.flatpickr-day.selected {
  background: linear-gradient(135deg, var(--color-primario), #6366f1);
  border: none;
  color: white;
}

/* HOY */
.flatpickr-day.today {
  border: 2px solid #6366f1;
}

/* DÍAS DESHABILITADOS */
.flatpickr-day.flatpickr-disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .flatpickr-calendar {
    max-width: 100%;
  }
}
/* ===== ANIMACIÓN ENTRE PASOS ===== */

.bloque-animado {
  animation: aparecerPaso 0.35s ease both;
}

@keyframes aparecerPaso {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== INPUT OCULTO DEL CALENDARIO ===== */

.input-fecha {
  display: none;
}

/* ===== CALENDARIO INLINE PRO ===== */

.calendar-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-fecha {
  width: 100%;
  display: flex;
  justify-content: center;
}

.flatpickr-calendar.inline {
  width: 100% !important;
  max-width: 390px;
  border: none !important;
  border-radius: 26px;
  padding: 18px;
  background: var(--color-blanco);
  box-shadow: 0 24px 60px rgba(79, 70, 229, 0.22);
  animation: calendarioEntrada 0.35s ease both;
}

@keyframes calendarioEntrada {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.flatpickr-months {
  margin-bottom: 12px;
}

.flatpickr-current-month {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primario);
}

.flatpickr-current-month input.cur-year {
  font-weight: 800;
}

.flatpickr-weekdays {
  margin-bottom: 8px;
}

span.flatpickr-weekday {
  color: var(--color-texto-secundario);
  font-weight: 700;
  font-size: 13px;
}

.flatpickr-days {
  width: 100% !important;
}

.dayContainer {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

.flatpickr-day {
  max-width: none;
  height: 44px;
  line-height: 44px;
  border-radius: 14px;
  font-weight: 700;
  color: #111827;
  transition: 0.22s ease;
}

.flatpickr-day:hover {
  background: #eef2ff;
  color: #3730a3;
  border-color: transparent;
  transform: scale(1.06);
}

.flatpickr-day.today {
  border: 2px solid #6366f1;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-secundario)
  );
  border-color: transparent;
  color: var(--color-blanco);
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.35);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  opacity: 0.25;
  cursor: not-allowed;
}

.calendar-selected {
  animation: calendarioSeleccionado 0.28s ease both;
}

@keyframes calendarioSeleccionado {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.97);
  }

  100% {
    transform: scale(1);
  }
}

/* ===== HORARIOS MÁS PRO ===== */

.grid-horarios {
  animation: aparecerPaso 0.35s ease both;
}

.horario-btn {
  position: relative;
  overflow: hidden;
}

.horario-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: 0.45s ease;
}

.horario-btn:hover::after {
  left: 120%;
}

/* ===== MOBILE ===== */

@media (max-width: 640px) {
  .flatpickr-calendar.inline {
    max-width: 100%;
    padding: 14px;
    border-radius: 22px;
  }

  .flatpickr-day {
    height: 42px;
    line-height: 42px;
    border-radius: 12px;
    font-size: 14px;
  }
}

/* ===== ARREGLAR ESPACIO EN PC ===== */

#paso-fecha {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

#paso-fecha .bloque-titulo {
  justify-content: center;
  text-align: left;
}

#paso-fecha .calendar-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

#paso-fecha .form-fecha {
  width: 100%;
  display: flex;
  justify-content: center;
}

#paso-fecha .label-fecha {
  text-align: center;
  margin-bottom: 14px;
  font-size: 15px;
}

/* ===== CALENDARIO MÁS GRANDE Y CENTRADO ===== */

.flatpickr-calendar.inline {
  width: 100% !important;
  max-width: 470px !important;
  padding: 22px !important;
  border-radius: 28px !important;
  box-shadow: 0 24px 70px rgba(79, 70, 229, 0.25) !important;
}

.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-days,
.dayContainer {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

.flatpickr-day {
  height: 52px !important;
  line-height: 52px !important;
  max-width: none !important;
  border-radius: 16px !important;
  font-size: 15px;
}

/* ===== DÍAS DISPONIBLES EN MORADO ===== */

.flatpickr-day.dia-disponible {
  background: #ede9fe !important;
  color: #5b21b6 !important;
  border: 1px solid #c4b5fd !important;
  font-weight: 800;
}

.flatpickr-day.dia-disponible:hover {
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-secundario)
  ) !important;
  color: white !important;
  transform: scale(1.06);
}

.flatpickr-day.selected,
.flatpickr-day.selected.dia-disponible {
  background: linear-gradient(
    135deg,
    var(--color-primario),
    var(--color-secundario)
  ) !important;
  color: var(--color-blanco) !important;
  border-color: transparent !important;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.4);
}

/* ===== BOTÓN PASO ATRÁS MEJOR UBICADO ===== */

#paso-fecha .acciones-finales {
  margin-top: 24px;
  text-align: center;
}

/* ===== MOBILE ===== */

@media (max-width: 640px) {
  #paso-fecha {
    max-width: 100%;
  }

  .flatpickr-calendar.inline {
    max-width: 100% !important;
    padding: 14px !important;
  }

  .flatpickr-day {
    height: 42px !important;
    line-height: 42px !important;
    font-size: 14px;
  }
}

/* ===== CENTRADO REAL DEL CALENDARIO ===== */

#paso-fecha {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#paso-fecha .calendar-box,
#paso-fecha .form-fecha {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#paso-fecha .flatpickr-calendar.inline {
  margin: 0 auto !important;
}

#paso-fecha .flatpickr-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

#paso-fecha .flatpickr-calendar {
  left: auto !important;
  right: auto !important;
}

/* =========================================
   HEADER NEGOCIO
========================================= */

.negocio-header {
  text-align: center;
  margin-bottom: 28px;
}

.negocio-logo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.negocio-header h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.negocio-descripcion {
  max-width: 700px;
  margin: 0 auto 14px;
  color: var(--color-texto-secundario);
  font-size: 15px;
  line-height: 1.6;
}

.negocio-direccion {
  margin-bottom: 18px;
  color: var(--color-texto);
  font-weight: 600;
}
/* =========================================
   REDES NEGOCIO
========================================= */

.negocio-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 24px;
}

.negocio-links a {
  width: 52px;
  height: 52px;

  min-width: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  text-decoration: none;

  background: var(--gradiente-principal);

  color: white;

  transition: 0.25s ease;

  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.25);
}

.negocio-links a i {
  font-size: 22px;
}

.negocio-links a:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.4);
}

/* MOBILE */
@media (max-width: 640px) {
  .negocio-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .negocio-links a {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }

  .negocio-links a i {
    font-size: 20px;
  }
}
.negocio-mapa {
  margin-top: 24px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--sombra-suave);
}

.negocio-mapa iframe {
  width: 100%;
  height: 320px;
  border: none;
}

/* MOBILE */

@media (max-width: 640px) {
  .negocio-logo {
    width: 90px;
    height: 90px;
    border-radius: 20px;
  }

  .negocio-header h1 {
    font-size: 30px;
  }

  .negocio-links {
    flex-direction: column;
  }

  .negocio-links a {
    width: 100%;
  }

  .negocio-mapa iframe {
    height: 260px;
  }
}

.negocio-info {
  margin-top: 22px;
}

.negocio-direccion {
  text-align: center;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--color-texto);
}

.negocio-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.negocio-links a {
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--gradiente-principal);
  color: white;
  font-weight: 600;
  transition: 0.25s ease;
}

.negocio-links a:hover {
  transform: translateY(-2px);
}

.negocio-mapa {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--sombra-suave);
}

.negocio-mapa iframe {
  width: 100%;
  height: 320px;
  border: none;
}
