@media (min-width: 760px) {
  .InicioBannerTransacciones {
    width: max-content !important;
  }
}

@media (max-width: 1200px) {
  .MenuPrincipalEscondeEnMovil {
    display: none;
  }
}


/* SELECTOR */
/* Estilo base del selector */
select#ptype {
  width: 100%;

  padding: 0.55rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  background-color: #fff;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;

  /* Quitar apariencia nativa para personalizar el icono */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Espacio para la flecha */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 0.75rem 0.75rem;
}

/* Cambios al pasar el mouse */
select#ptype:hover {
  border-color: #bbb;
}

/* Cambios al recibir foco */
select#ptype:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Opciones del dropdown */
select#ptype option {
  color: #333;
  background-color: #fff;
}

/* END SELECTOR */

/* VISUALES DE CARDS Y GRID DE CARDS */
/*body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  padding: 24px;
  background: #fafafa;
  color: #222;
}*/

h1 {
  margin: 0 0 16px;
}

form.filter {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  margin-bottom: 16px;
}

select,
input[type="text"] {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
}

button {
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: #111;
  color: #fff;
  cursor: pointer;
}

button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.card {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #f2f2f2;
}

.card .body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.muted {
  color: #666;
  font-size: 14px;
}

.price {
  font-weight: 700;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
}

.tag {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f0f0f0;
}

nav.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 20px 0 0;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: bold;
}

nav.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-align: center;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: #111;
}

nav.pagination a.active {
  background: #111;
  color: #fff;
}

.status {
  margin: 12px 0;
}

/* END VISUALES DE CARDS Y GRID DE CARDS */


/* VISUALES DE PROPERTY.HTML */
.property-hero {
  background: var(--bg-secondary, #f8f8f8);
  padding: 40px 0;
}

.property-hero .property-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.property-hero .property-meta {
  color: var(--text-secondary, #666);
  margin-bottom: 24px;
}

.property-hero .badges span {
  display: inline-block;
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 999px;
  padding: 6px 12px;
  margin-right: 8px;
  font-size: 14px;
  color: var(--text-primary, #333);
}

.property-content {
  padding-top: 40px;
  padding-bottom: 60px;
}

.property-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.property-content .details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-content .details-list li {
  margin-bottom: 8px;
}
/* END VISUALES DE PROPERTY.HTML */