/* Reset y Variables CSS - Munay Wasi Soft Palette */
:root {
  /* Paleta Munay Wasi */
  --primary-color: #B68132; /* Dorado Tierra */
  --primary-dark: #8C5A2C; /* Café Sagrado */
  --primary-light: #E6B898; /* Melón Claro */
  --secondary-color: #6B8754; /* Verde Andino */
  --success-color: #6B8754;
  --danger-color: #C13515;
  --warning-color: #B68132;
  --dark-color: #7A6B5A; /* Gris Inspiración */
  --light-color: #F5EFE6; /* Fondo Crema */
  --gray-50: #F5EFE6;
  --gray-100: #F0E8D8;
  --gray-200: #E8DCC8;
  --gray-300: #D4C4A8;
  --gray-400: #B8A688;
  --gray-500: #7A6B5A;
  --gray-600: #6B5D4F;
  --gray-700: #5A4D42;
  --gray-800: #4A3F36;
  --gray-900: #3A312A;
  --white: #FFFFFF;
  --cream-bg: #F5EFE6;
  --shadow-sm: 0 2px 8px rgba(122, 107, 90, 0.08);
  --shadow: 0 4px 12px rgba(122, 107, 90, 0.12);
  --shadow-md: 0 6px 16px rgba(122, 107, 90, 0.15);
  --shadow-lg: 0 12px 24px rgba(122, 107, 90, 0.18);
  --shadow-xl: 0 20px 40px rgba(122, 107, 90, 0.25);
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --crema-suave: #F5EFE6;
  --dorado-tierra: #B68132;
  --verde-andino: #6B8754;
  --cafe-sagrado: #8C5A2C;
  --melon-claro: #E6B898;
  --gris-inspiracion: #7A6B5A;

  --font-titulos: 'Cormorant Garamond', serif;
  --font-textos: 'Lora', serif;
  --font-botones: 'Quicksand', sans-serif;

  --sombra-suave: 0 4px 12px rgba(122, 107, 90, 0.1);
  --sombra-media: 0 6px 16px rgba(122, 107, 90, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lora", "Cormorant Garamond", Georgia, serif;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--cream-bg);
  font-size: 16px;
  font-weight: 400;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-700);
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-botones);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sombra-suave);
  background-color: var(--crema-suave);
  color: var(--gris-inspiracion);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn:hover::before {
  left: 100%;
}

/* Botón primario: dorado con hover verde */
.btn-primary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

/* Botón secundario: fondo crema y borde dorado */
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}


.btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 18px;
  border-radius: 20px;
}

.btn-sm {
  padding: 12px 20px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  background: rgba(245, 239, 230, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  
  top: 0;
  position: relative;
  display: flex;
  transition: var(--transition);
  border-bottom: 1px solid rgba(182, 129, 50, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  min-height: 85px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary-color);
}

.logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  font-family: "Quicksand", sans-serif;
}

.nav-header {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-600);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  transition: var(--transition);
  padding: 10px 0;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
}
:root {
  --warm-bg: #f5f1eb;
  --warm-text-dark: #2d2d2d;
  --warm-text-medium: #4a4a4a;
  --warm-gold: #c8a882;
  --warm-green: #6b7c5a;
  --warm-green-hover: #5a6b49;
  --warm-white: #ffffff;
  --warm-overlay: rgba(255, 255, 255, 0.9);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--warm-bg);
}

/* Hero Section Warm */
.hero-warm {
  position: relative;
  align-items: center;
  background-color: var(--warm-bg);
  
  padding: 60px 0;
  
}

.container-warm {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-content-warm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text-warm {
  display: flex;
  flex-direction: column;
  gap: 32px;
  
}

.hero-title-warm {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--warm-text-dark);
  margin-bottom: 8px;
  margin-top: 60px; /* 👈 Este espacio se verá arriba del título */
}

.text-gradient-warm {
  color: var(--warm-gold);
  font-weight: 400;
}

.text-dark-warm {
  color: var(--warm-text-dark);
  font-style: italic;
  font-weight: 400;
}

.hero-description-warm {
  font-size: 18px;
  line-height: 1.7;
  color: var(--warm-text-medium);
  margin-bottom: 20px;
}

.italic-warm {
  font-style: italic;
  color: var(--warm-text-dark);
}

.hero-stats-warm {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item-warm {
  background-color: var(--warm-overlay);
  padding: 24px;
  border-radius: 50px;
  text-align: center;
  min-width: 140px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 168, 130, 0.2);
}

.stat-number-warm {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--warm-text-dark);
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
}

.stat-label-warm {
  font-size: 14px;
  color: var(--warm-text-medium);
  font-weight: 500;
  line-height: 1.3;
}

.hero-buttons-warm {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-warm {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary-warm {
  background-color: var(--warm-green);
  color: var(--warm-white);
}

.btn-primary-warm:hover {
  background-color: var(--warm-green-hover);
  transform: translateY(-2px);
}

.btn-secondary-warm {
  background-color: var(--warm-green);
  color: var(--warm-white);
}

.btn-secondary-warm:hover {
  background-color: var(--warm-green-hover);
  transform: translateY(-2px);
}

.hero-image-warm {
  position: relative;
}

.hero-card-warm {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background-color: var(--warm-white);
}

.hero-card-warm img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-card-overlay-warm {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 40px 32px 32px;
}

.hero-card-content-warm {
  color: var(--warm-white);
}

.card-title-warm {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--warm-white);
}

.card-description-warm {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content-warm {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title-warm {
    font-size: 48px;
  }

  .hero-stats-warm {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item-warm {
    min-width: 120px;
  }

  .hero-buttons-warm {
    justify-content: center;
  }

  .container-warm {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero-title-warm {
    font-size: 36px;
  }

  .hero-description-warm {
    font-size: 16px;
  }

  .btn-warm {
    padding: 14px 24px;
    font-size: 14px;
  }
}

.stat-item {
  text-align: center;
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  display: block;
  font-family: "Cormorant Garamond", serif;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin-top: 8px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 550px;
  border: 3px solid rgba(255,255,255,0.2);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 40px;
  color: var(--white);
}

.hero-card-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
}

/* Search Section */
.search-section {
  padding: 100px 0;
  background: var(--cream-bg);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.property-search-container {
  max-width: 1000px;
  margin: 0 auto;
}

.search-card-wrapper {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  border: 1px solid rgba(182, 129, 50, 0.1);
}

.search-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  margin-bottom: 32px;
  color: var(--gray-700);
}

.property-search-form {
  max-width: 900px;
  margin: 0 auto;
}

.search-fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: end;
  background: var(--gray-50);
  padding: 32px;
  border-radius: var(--border-radius-lg);
  border: 2px solid rgba(182, 129, 50, 0.1);
}

.input-field-container {
  text-align: left;
}

.field-label {
  display: block;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 10px;
  font-size: 15px;
  font-family: "Cormorant Garamond", serif;
}

.location-search-field,
.property-type-select,
.budget-range-select {
  width: 100%;
  padding: 18px;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray-700);
}

.location-search-field:focus,
.property-type-select:focus,
.budget-range-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(182, 129, 50, 0.1);
}

.search-submit-button {
  height: 60px;
  min-height: 60px;
  border-radius: var(--border-radius);
  font-family: "Quicksand", sans-serif;
}

/* Propiedades Section */
.propiedades-section {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.section-header.centered {
  justify-content: center;
  text-align: center;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  margin-bottom: 12px;
  color: var(--gray-700);
}

.section-subtitle {
  font-size: 20px;
  color: var(--gray-500);
  font-weight: 400;
  font-style: italic;
}

.propiedades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}

.propiedad-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid var(--gray-100);
  cursor: pointer;
}

.propiedad-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.propiedad-image {
  height: 300px;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.propiedad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.propiedad-card:hover .propiedad-image img {
  transform: scale(1.08);
}

.propiedad-content {
  padding: 32px;
}

.propiedad-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gray-700);
}

.propiedad-location {
  color: var(--gray-500);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.propiedad-location i {
  color: var(--primary-color);
}

.propiedad-details {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--gray-500);
  flex-wrap: wrap;
}

.propiedad-details span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
}

.propiedad-details i {
  color: var(--primary-color);
}

.propiedad-tipo {
  background: rgba(182, 129, 50, 0.1) !important;
  color: var(--primary-color) !important;
  font-weight: 600;
  border-color: rgba(182, 129, 50, 0.2) !important;
}

.propiedad-descripcion {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.propiedad-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.precio-periodo {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-500);
}

.propiedad-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
}

.badge-success {
  background: rgba(107, 135, 84, 0.15);
  color: var(--secondary-color);
  border: 1px solid rgba(107, 135, 84, 0.3);
}

.badge-info {
  background: rgba(182, 129, 50, 0.15);
  color: var(--primary-color);
  border: 1px solid rgba(182, 129, 50, 0.3);
}

.propiedad-vendedor {
  display: flex;
  align-items: center;
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
}

.propiedad-vendedor i {
  margin-right: 10px;
  color: var(--primary-color);
}

.propiedad-actions {
  display: flex;
  gap: 12px;
}

.btn {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Quicksand", sans-serif;
}

/* Servicios Section */
.servicios-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.servicio-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  border: 2px solid var(--gray-100);
}

.servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.servicio-card.featured {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--white) 0%, rgba(245, 239, 230, 0.5) 100%);
}

.servicio-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  box-shadow: var(--shadow);
}

.servicio-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 36px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-md);
}

.servicio-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--gray-700);
}

.servicio-card p {
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.6;
  font-size: 16px;
}

.servicio-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.servicio-features span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-600);
  background: var(--gray-50);
  padding: 12px 16px;
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-200);
}

.servicio-features i {
  color: var(--secondary-color);
  font-size: 16px;
}

/* Nosotros Section */
.nosotros-section {
  padding: 100px 0;
  background: var(--white);
}

/* Testimonios Section */
.testimonios-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}

.testimonio-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid var(--gray-100);
}

.testimonio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.testimonio-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 18px;
}

.testimonio-text {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.7;
  font-size: 17px;
}

.testimonio-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: var(--shadow);
}

.author-info h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.author-info span {
  font-size: 14px;
  color: var(--gray-500);
  font-style: italic;
}

/* Contacto Section */
.contacto-section {
  padding: 100px 0;
  background: var(--cream-bg);
}

.contacto-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contacto-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contacto-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid var(--gray-100);
}

.contacto-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.contacto-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.contacto-details h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.contacto-details p {
  color: var(--gray-500);
  margin-bottom: 12px;
  font-size: 15px;
}

.contacto-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  font-family: "Quicksand", sans-serif;
}

.contacto-link:hover {
  text-decoration: underline;
}

.contacto-form-container {
  background: var(--white);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-100);
}

.contacto-form h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--gray-700);
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray-700);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(182, 129, 50, 0.1);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  color: var(--white);
  padding: 100px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Fuerza 4 columnas */
  gap: 50px;
  margin-bottom: 50px;
}


.footer-section h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 16px;
}

.footer-section a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-contact i {
  color: var(--primary-light);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 40px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  margin: 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-title {
    font-size: 52px;
  }

  .contacto-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-header {
    display: none;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-stats {
    justify-content: center;
    gap: 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .search-fields-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 36px;
  }

  .propiedades-grid {
    grid-template-columns: 1fr;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .testimonios-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .container {
    padding: 0 20px;
  }

  .search-card-wrapper {
    padding: 40px 30px;
  }

  .contacto-form-container {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .search-card-wrapper {
    padding: 30px 20px;
  }

  .search-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 32px;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }
.p-5 { padding: 40px; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: var(--border-radius); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-full { border-radius: 50%; }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Loading states */
.btn-loading {
  opacity: 0.8;
  pointer-events: none;
  position: relative;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Animaciones suaves */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Efectos de hover mejorados */
.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Glassmorphism effects */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradientes suaves */
.gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.gradient-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.gradient-soft {
  background: linear-gradient(135deg, var(--cream-bg), var(--white));
}