:root {
  --azul-principal: #051020;
  --dorado: #D4AF37;
  --dorado-claro: #F5E8C8;
  --gris-claro: #f8fafc;
  --texto-oscuro: #1e293b;
  --blanco: #ffffff;
  --gris-bordes: #e2e8f0;
  --verde-reservado: #28a745;
  --rojo-vendido: #dc3545;
}

.contacto-hidden {
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}

body {
  background-color: var(--gris-claro);
  color: var(--texto-oscuro);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: var(--azul-principal);
  color: var(--blanco);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--blanco);
  text-decoration: none;
  flex-shrink: 0;
  margin: 0 20px;
}

.logo span {
  color: var(--dorado);
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-left, .nav-right {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
  flex: 1;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  color: var(--blanco);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
  font-size: 15px;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--dorado);
}

.menu-toggle {
  display: none;
  color: var(--blanco);
  font-size: 24px;
  cursor: pointer;
}

.btn {
  display: inline-block;
  background-color: var(--dorado);
  color: var(--azul-principal);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--dorado-claro);
  transform: translateY(-2px);
}

/* Hero Section */
.properties-hero {
  background: linear-gradient(rgba(5, 16, 32, 0.8), rgba(5, 16, 32, 0.6)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanco);
}

.hero-overlay {
  width: 100%;
  padding: 20px;
}

.properties-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.properties-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Filtros Mejorados */
.filter-section {
  background-color: var(--blanco);
  padding: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--texto-oscuro);
}

.filter-group select,
.filter-group input {
  padding: 12px 15px;
  border: 1px solid var(--gris-bordes);
  border-radius: 4px;
  font-size: 1rem;
  background-color: var(--blanco);
}

.filter-btn {
  background-color: var(--azul-principal);
  color: var(--blanco);
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.filter-btn:hover {
  background-color: var(--dorado);
  color: var(--azul-principal);
}

/* Controles de Ordenación */
.sort-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.sort-btn {
  background: var(--blanco);
  border: 1px solid var(--gris-bordes);
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.sort-btn.active {
  background-color: var(--azul-principal);
  color: var(--blanco);
  border-color: var(--azul-principal);
}

.sort-btn:hover:not(.active) {
  background-color: var(--gris-claro);
}

/* Grid de Propiedades - 2 POR LÍNEA */
.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.property-card-wrapper {
  background: var(--blanco);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.property-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.property-card {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.image-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.property-card:hover .property-image {
  transform: scale(1.05);
}

.property-card img {
  aspect-ratio: 4 / 3;
}

.property-number {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--azul-principal);
  color: var(--blanco);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
}

.owner-ribbon,
.bank-ribbon,
.judicial-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.owner-ribbon {
  background: var(--dorado);
  color: var(--azul-principal);
}

.bank-ribbon {
  background: #dc3545;
  color: var(--blanco);
}

.judicial-badge {
  background: #6f42c1;
  color: var(--blanco);
}

.sold-overlay-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.sold-badge {
  background: var(--rojo-vendido);
  color: var(--blanco);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* INFO COMPACTA - CORREGIDO PARA ICONOS HORIZONTALES */
.property-info-compact {
  padding: 20px;
}

.property-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.property-type-ref {
  flex: 1;
}

.property-type {
  font-size: 0.85rem;
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  display: block;
}

.property-ref-compact {
  font-size: 0.8rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.property-ref-compact i {
  color: var(--dorado);
}

.property-street-price {
  flex: 1;
  text-align: right;
}

.property-street {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul-principal);
  line-height: 1.3;
  margin-bottom: 5px;
  display: block;
}

.property-price-compact {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dorado);
}

/* ICONOS EN FILA HORIZONTAL */
.property-features-compact {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  padding: 15px 0 !important;
  margin: 15px 0 !important;
  border-top: 1px solid var(--gris-bordes) !important;
  border-bottom: 1px solid var(--gris-bordes) !important;
}

.property-features-compact span {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  flex: 1 !important;
  min-width: 0 !important;
  gap: 5px !important;
}

.property-features-compact i {
  color: var(--dorado) !important;
  font-size: 1.2rem !important;
  margin-bottom: 3px !important;
  display: block !important;
}

.property-features-compact span {
  font-size: 0.85rem !important;
  color: var(--texto-oscuro) !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}


/* ICONOS EN FILA HORIZONTAL - CORREGIDO */
.property-features-compact {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  padding: 15px 0 !important;
  margin: 15px 0 !important;
  border-top: 1px solid var(--gris-bordes) !important;
  border-bottom: 1px solid var(--gris-bordes) !important;
}

.property-features-compact span {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  flex: 1 !important;
  min-width: 0 !important;
  gap: 5px !important;
}

.property-features-compact i {
  color: var(--dorado) !important;
  font-size: 1.2rem !important;
  margin-bottom: 3px !important;
  display: block !important;
}

.property-features-compact span {
  font-size: 0.85rem !important;
  color: var(--texto-oscuro) !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}

/* Para la ubicación (texto más largo) */
.property-features-compact span:last-child span {
  font-size: 0.75rem !important;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Anuncios - 2 POR LÍNEA */
.ad-card-wrapper {
  background: linear-gradient(135deg, var(--azul-principal), #1a2a3a);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ad-card {
  display: block;
  text-decoration: none;
  color: var(--blanco);
  padding: 30px;
  height: 100%;
  text-align: center;
}

.ad-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.ad-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dorado);
}

.ad-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.ad-description {
  margin-bottom: 20px;
  opacity: 0.9;
}

.ad-button {
  background: var(--dorado);
  color: var(--azul-principal);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
}

.ad-card:hover .ad-button {
  background: var(--dorado-claro);
  transform: translateY(-2px);
}

.espectacular-asesoria .ad-card {
  background: linear-gradient(135deg, rgba(5, 16, 32, 0.9), rgba(26, 42, 58, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

/* Mapa */
.map-container {
  padding: 50px 0;
  background: var(--blanco);
}

.map-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: var(--azul-principal);
}

/* Botón Volver Arriba */
#btn-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--azul-principal);
  color: var(--blanco);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 99;
}

#btn-top:hover {
  background: var(--dorado);
  color: var(--azul-principal);
  transform: translateY(-3px);
}

/* Footer */
.site-footer {
  background: var(--azul-principal);
  color: var(--blanco);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 50px 0;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--blanco);
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--dorado);
}

.footer-about {
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge i {
  color: var(--dorado);
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--dorado);
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: var(--blanco);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-list a:hover {
  opacity: 1;
  color: var(--dorado-claro);
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-item i {
  color: var(--dorado);
  margin-top: 3px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  margin-bottom: 3px;
}

.contact-item span {
  opacity: 0.8;
}

.newsletter {
  margin-top: 20px;
}

.newsletter h4 {
  margin-bottom: 10px;
}

.newsletter p {
  margin-bottom: 15px;
  opacity: 0.8;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-form button {
  background: var(--dorado);
  color: var(--azul-principal);
  border: none;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 600;
}

.footer-promo {
  background: rgba(212, 175, 55, 0.1);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-text h3 {
  margin-bottom: 5px;
}

.promo-text p {
  opacity: 0.8;
}

.promo-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--dorado);
  color: var(--azul-principal);
}

.btn-primary:hover {
  background: var(--dorado-claro);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--blanco);
  border: 1px solid var(--blanco);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-certifications {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-certifications i {
  color: var(--dorado);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--blanco);
  text-decoration: none;
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  opacity: 1;
}

.footer-copyright {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-developer {
  margin-top: 5px;
}

/* Mensaje sin resultados */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px;
}

.no-results img {
  margin-bottom: 20px;
  opacity: 0.7;
}

.no-results h3 {
  margin-bottom: 10px;
  color: var(--azul-principal);
}

.no-results p {
  color: #6b7280;
}

/* Estilos para el loader */
.loading .spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid var(--gris-medio);
  border-radius: 50%;
  border-top-color: var(--dorado);
  animation: spin 1s ease-in-out infinite;
}

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

/* Estilos para badges de operación */
.alquiler-badge {
  background: #28a745;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.venta-badge {
  background: var(--dorado);
  color: var(--azul-principal);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* PAGINACIÓN PARA 52 PROPIEDADES */
.pagination-container {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding: 25px;
  background: var(--gris-claro);
  border-radius: 12px;
  border: 1px solid var(--gris-bordes);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pagination-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.pagination-info {
  color: var(--texto-oscuro);
  font-weight: 600;
  font-size: 1rem;
  flex: 1;
  min-width: 250px;
}

.pagination-info span {
  color: var(--dorado);
  font-weight: 800;
}

.pagination-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-btn {
  padding: 10px 16px;
  border: 1px solid var(--gris-bordes);
  border-radius: 6px;
  background: white;
  color: var(--texto-oscuro);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 40px;
  justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--azul-principal);
  color: white;
  border-color: var(--azul-principal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 16, 32, 0.2);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.pagination-btn.page-number {
  min-width: 42px;
  height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn.page-number.active {
  background: var(--dorado);
  color: var(--azul-principal);
  border-color: var(--dorado);
  font-weight: 800;
  transform: scale(1.1);
}

.page-numbers {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pagination-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
  min-width: 250px;
}

.pagination-selector span {
  color: var(--texto-oscuro);
  font-weight: 500;
}

.pagination-selector select {
  padding: 8px 16px;
  border: 1px solid var(--gris-bordes);
  border-radius: 6px;
  background: white;
  color: var(--texto-oscuro);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 80px;
}

.pagination-selector select:hover {
  border-color: var(--azul-principal);
}

.pagination-selector select:focus {
  outline: none;
  border-color: var(--dorado);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* REFERENCIA DE PROPIEDAD */
.property-ref {
  font-size: 0.8rem;
  color: #666;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.property-ref i {
  color: var(--dorado);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-left, .nav-right {
    flex-wrap: wrap;
    justify-content: center;
  }
  nav ul li {
    margin: 5px 8px;
  }
  nav ul li a {
    font-size: 14px;
  }
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .pagination-controls {
    flex-direction: column;
    gap: 20px;
  }
  .pagination-info,
  .pagination-selector {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .pagination-buttons {
    order: -1;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  .nav-left, .nav-right {
    flex-direction: column;
    width: 100%;
    margin: 10px 0;
  }
  nav ul li {
    margin: 5px 0;
  }
  .logo {
    margin: 10px 0;
    order: -1;
    font-size: 24px;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  nav {
    flex-direction: column;
    display: none;
  }
  nav.show {
    display: flex;
  }
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .properties-hero {
    height: 300px;
  }
  .properties-hero h1 {
    font-size: 2.2rem;
  }
  .properties-hero p {
    font-size: 1rem;
  }
  .filter-form {
    grid-template-columns: 1fr;
  }
  .property-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pagination-container {
    padding: 20px;
  }
  .pagination-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .pagination-btn.page-number {
    min-width: 36px;
    height: 36px;
  }
  .page-numbers {
    gap: 4px;
  }
  .property-features-compact {
    gap: 5px !important;
    padding: 12px 0 !important;
  }
  .property-features-compact i {
    font-size: 1rem !important;
  }
  .property-features-compact span {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .pagination-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pagination-btn:not(.page-number) span {
    display: none;
  }
  .pagination-btn:not(.page-number) {
    padding: 10px;
  }
  .pagination-btn:not(.page-number) i {
    margin: 0 !important;
  }
  .property-features-compact {
    gap: 3px !important;
  }
  .property-features-compact span {
    font-size: 0.7rem !important;
  }
}

/* Animación para cambio de página */
@keyframes pageTransition {
  from { opacity: 0.5; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.property-grid {
  animation: pageTransition 0.3s ease-out;
}

/* ESTADOS DE PROPIEDADES */
.estado-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  color: white;
}

.estado-badge.reservado {
  background: #FFA500;
}

.estado-badge.vendido {
  background: #dc3545;
}

.estado-badge.oferta {
  background: #28a745;
}

.estado-badge.disponible {
  background: #007bff;
}

.destacado-badge {
  position: absolute;
  top: 50px;
  right: 15px;
  background: #D4AF37;
  color: #051020;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
}

.property-type.venta {
  color: #D4AF37;
}

.property-type.alquiler {
  color: #28a745;
}

/* Asegurar que los iconos estén siempre en horizontal */
.property-features-compact {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}