/* Header exacto según la imagen de referencia */

.test-website {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

/* Barra Superior - Gris oscuro con iconos y contacto */
.top-bar {
  background-color: #343a40;
  color: white;
  padding: 12px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 50px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.contact-icon {
  color: #17a2b8;
  font-size: 24px;
  width: 24px;
  height: 24px;
  display: inline-block;
  text-align: center;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
}

.whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
  color: #ffffff;
  text-decoration: none;
}

.contact-label {
  color: white;
  font-weight: 400;
  margin-right: 4px;
}

.contact-phone {
  color: white;
  font-weight: bold;
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 30px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.social-icon {
  color: #17a2b8;
  font-size: 24px;
  width: 24px;
  height: 24px;
  display: inline-block;
  text-align: center;
}

.social-text {
  color: white;
  font-weight: 400;
}

.social-item:hover .social-text {
  color: #17a2b8;
}

/* Barra de Navegación Principal - Negro con menús */
.main-nav {
  background-color: #000000;
  color: white;
  padding: 15px 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
}

.home-icon {
  color: white;
  font-size: 30px;
  margin-right: 40px;
}

.nav-logo {
  height: 80px;
  width: auto;
  margin-right: 40px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 60px;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: white;
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #17a2b8;
  border-radius: 2px;
}

/* Banner Principal */
/* Estilos para la sección hero */
.hero-section {
  position: relative;
  width: 100vw;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
}

.hero-text {
  margin-bottom: 32px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.04rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.8px;
}

/* Botones de categoría */
.category-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.category-btn {
  background: #32CD32;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 3px 12px rgba(50, 205, 50, 0.3);
}

.category-btn:hover {
  background: #28B828;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

.category-btn.active {
  background: #228B22;
  box-shadow: 0 6px 20px rgba(34, 139, 34, 0.5);
}

/* Contenedor de búsqueda principal */
.main-search-container {
  background: white;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid #e0e0e0;
}

.search-dropdown {
  position: relative;
  min-width: 96px;
}

.search-type-select {
  width: 100%;
  padding: 12px 32px 12px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  background: white;
  color: #333;
  cursor: pointer;
  appearance: none;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-type-select:focus {
  border-color: #32CD32;
}

.dropdown-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  font-size: 0.72rem;
}

.search-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: #32CD32;
}

.search-input::placeholder {
  color: #999;
  font-weight: 500;
}

.search-btn {
  background: #32CD32;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  min-width: 96px;
}

.search-btn:hover {
  background: #28B828;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
}

/* Responsive para hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.88rem;
  }
  
  .main-search-container {
    flex-direction: column;
    gap: 12px;
  }
  
  .search-dropdown {
    min-width: 100%;
  }
  
  .search-btn {
    width: 100%;
  }
  
  .category-buttons {
    gap: 8px;
  }
  
  .category-btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

/* Sección de Búsqueda de Propiedades */
.search-section {
  background-color: #2c2c2c;
  padding: 30px 0;
  width: 100%;
}


.advanced-search-toggle {
  background: #6c757d;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.advanced-search-toggle:hover {
  background: #5a6268;
  transform: translateY(-1px);
}

.advanced-search-toggle.active {
  background: #dc3545;
}

.advanced-search-toggle.active:hover {
  background: #c82333;
}

/* Estilos para búsqueda avanzada */
.search-form.advanced-search {
  background: #343a40 !important;
  border-radius: 8px;
  padding: 25px !important;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #495057;
  display: none !important;
}

/* Clase específica para mostrar búsqueda avanzada */
.search-form.advanced-search.show {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
}

.search-form.advanced-search .search-row {
  display: flex !important;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: flex-start;
  justify-content: flex-start;
}

.search-form.advanced-search .search-field {
  flex: 1;
  min-width: 200px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Campo de precio con ancho controlado */
.search-form.advanced-search .price-field {
  flex: 1.2;
  min-width: 200px;
  max-width: 250px;
}

/* Campo de área más pequeño */
.search-form.advanced-search .area-field {
  flex: 0.8;
  min-width: 140px;
  max-width: 180px;
  width: 180px;
}

/* Campos de dormitorios y baños más pequeños */
.search-form.advanced-search .bedroom-field,
.search-form.advanced-search .bathroom-field {
  flex: 0.8;
  min-width: 140px;
  max-width: 160px;
}

/* Campo de ordenar por */
.search-form.advanced-search .sort-field {
  flex: 0.8;
  min-width: 140px;
  max-width: 180px;
}

.search-form.advanced-search .area-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #495057;
  border: 1px solid #6c757d;
  border-radius: 4px;
  padding: 6px 10px;
  width: 100%;
  max-width: 200px;
  height: 40px;
}

.search-form.advanced-search .area-inputs .price-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 14px;
  padding: 6px 8px;
  outline: none;
  min-width: 80px;
  max-width: 90px;
  height: 28px;
}

.search-form.advanced-search .area-inputs .price-input::placeholder {
  color: #adb5bd;
  font-size: 12px;
}

.advanced-search .field-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ffffff;
  font-size: 14px;
}

.advanced-search .bedroom-buttons {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.advanced-search .bedroom-btn {
  background: #495057;
  border: 1px solid #6c757d;
  color: #ffffff;
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  transition: all 0.2s ease;
  min-width: 30px;
  text-align: center;
  flex: 1;
}

.advanced-search .bedroom-btn:hover {
  background: #6c757d;
  border-color: #adb5bd;
}

.advanced-search .bedroom-btn.active {
  background: #17a2b8;
  color: white;
  border-color: #17a2b8;
}

.advanced-search .price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #495057;
  border: 1px solid #6c757d;
  border-radius: 4px;
  padding: 6px 10px;
  height: 40px;
}

.advanced-search .currency-display {
  background: #343a40;
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid #6c757d;
  height: 28px;
  display: flex;
  align-items: center;
}

.advanced-search .price-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 6px 8px;
  font-size: 14px;
  background: transparent;
  color: #ffffff;
  min-width: 60px;
  max-width: 80px;
  height: 28px;
}

.advanced-search .price-input::placeholder {
  color: #adb5bd;
}

.advanced-search .checkbox-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.advanced-search .map-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #17a2b8;
}

.advanced-search .checkbox-label {
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
}

/* Estilos para dropdowns en búsqueda avanzada */
.advanced-search .dropdown-field {
  position: relative;
}

.advanced-search .dropdown-select {
  width: 100%;
  padding: 10px 35px 10px 12px;
  background: #495057;
  border: 1px solid #6c757d;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  appearance: none;
  cursor: pointer;
}

.advanced-search .dropdown-select:focus {
  outline: none;
  border-color: #17a2b8;
  box-shadow: 0 0 0 2px rgba(23, 162, 184, 0.25);
}

.advanced-search .dropdown-select option {
  background: #495057;
  color: #ffffff;
  padding: 8px;
}

.advanced-search .dropdown-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #adb5bd;
  pointer-events: none;
}

.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 25px;
  width: 100%;
  padding: 0 20px;
}

.tab-button {
  background-color: #404040;
  color: #b0b0b0;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  flex: 1;
  text-align: center;
}

.tab-button.active {
  background-color: #17a2b8;
  color: white;
}

.tab-button:hover:not(.active) {
  background-color: #505050;
  color: white;
}

.search-form {
  background-color: #2c2c2c;
  padding: 0 20px;
}

.search-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.dropdown-field {
  position: relative;
}

.dropdown-select {
  width: 100%;
  background-color: #404040;
  color: white;
  border: 1px solid #606060;
  padding: 12px 40px 12px 12px;
  font-size: 14px;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
}

.dropdown-select:focus {
  outline: none;
  border-color: #17a2b8;
}

.dropdown-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 12px;
  pointer-events: none;
}

.bedroom-buttons {
  display: flex;
  gap: 8px;
}

.bedroom-btn {
  background-color: #404040;
  color: white;
  border: 1px solid #606060;
  padding: 12px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  flex: 1;
}

.bedroom-btn:hover {
  background-color: #505050;
  border-color: #17a2b8;
}

.bedroom-btn.active {
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.price-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
}

.currency-display {
  background-color: #404040;
  color: white;
  border: 1px solid #606060;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 4px;
  min-width: 50px;
  text-align: center;
}

.price-input {
  flex: 1;
  background-color: #404040;
  color: white;
  border: 1px solid #606060;
  padding: 12px;
  font-size: 14px;
  border-radius: 4px;
}

.price-input::placeholder {
  color: #b0b0b0;
}

.price-input:focus {
  outline: none;
  border-color: #17a2b8;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.map-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #17a2b8;
}

.checkbox-label {
  color: white;
  font-size: 14px;
  cursor: pointer;
  margin: 0;
}

.search-button {
  background-color: #17a2b8;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
  margin-top: 8px;
}

.search-button:hover {
  background-color: #138496;
}

.search-icon {
  font-size: 14px;
}

/* Sección de Propiedades */
.properties-section {
  background-color: #2c2c2c;
  padding: 60px 0;
}

.properties-header {
  text-align: center;
  margin-bottom: 50px;
}

.properties-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin: 0 0 10px 0;
}

.properties-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin: 0;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  color: white;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #404040;
  border-top: 4px solid #17a2b8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.property-card {
  background: #404040;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.property-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-card:hover .property-image {
  transform: scale(1.05);
}

.property-image-placeholder {
  width: 100%;
  height: 100%;
  background: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.placeholder-icon {
  font-size: 3rem;
  opacity: 0.7;
}

.property-status-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #17a2b8;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}

.property-content {
  padding: 20px 20px 8px 20px;
}

.property-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.property-price {
  margin: 12px 0;
  padding: 12px 16px;
  background: linear-gradient(135deg, #17a2b8, #138496);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
  border: 2px solid #17a2b8;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  display: block;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.price-period {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  opacity: 0.9;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.property-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  padding: 12px 0;
  border-top: 1px solid #555555;
  border-bottom: 1px solid #555555;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 0.9rem;
}

.property-seller {
  display: flex;
  align-items: center;
  gap: 15px;
}

.seller-avatar {
  width: 64px;
  height: 64px;
  background: #17a2b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.seller-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.seller-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #17a2b8;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
}

.seller-name {
  color: #b0b0b0;
  font-size: 0.9rem;
}

/* Utilidades */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Responsive Design para móviles */
@media (max-width: 768px) {
  .search-tabs {
    flex-wrap: wrap;
    gap: 2px;
    padding: 0 10px;
  }
  
  .tab-button {
    flex: 1;
    min-width: calc(50% - 1px);
    font-size: 12px;
    padding: 10px 8px;
  }
  
  .search-form {
    padding: 0 10px;
  }
  
  .search-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .bedroom-buttons {
    flex-wrap: wrap;
    gap: 4px;
  }
  
  .bedroom-btn {
    flex: 1;
    min-width: calc(50% - 2px);
  }
  
  .price-inputs {
    flex-direction: column;
    gap: 4px;
  }
  
  .currency-display {
    min-width: auto;
  }
  
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .properties-title {
    font-size: 2rem;
  }
  
  .property-image-container {
    height: 200px;
  }
  
  .property-content {
    padding: 20px;
  }
  
  .property-price {
    margin: 12px 0;
    padding: 10px 14px;
  }
  
  .price-amount {
    font-size: 1.6rem;
  }
  
  .property-specs {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .search-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .tab-button {
    min-width: calc(50% - 1px);
    font-size: 11px;
    padding: 8px 4px;
  }
  
  .search-tabs {
    padding: 0 5px;
  }
  
  .search-form {
    padding: 0 5px;
  }
  
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .properties-title {
    font-size: 1.8rem;
  }
  
  .properties-subtitle {
    font-size: 1rem;
  }
  
  .property-image-container {
    height: 180px;
  }
  
  .property-content {
    padding: 15px;
  }
  
  .property-price {
    margin: 12px 0;
    padding: 10px 12px;
  }
  
  .price-amount {
    font-size: 1.5rem;
  }
  
  .price-period {
    font-size: 0.9rem;
  }
  
  .property-specs {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .spec-item {
    flex: 1;
    min-width: calc(50% - 4px);
  }
}

/* Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #f8f9fa;
}

.test-website {
  width: 100%;
  overflow-x: hidden;
}

/* ==================== FOOTER STYLES ==================== */
.footer {
  background-color: #343a40;
  color: #ffffff;
  padding: 40px 0 20px 0;
  margin-top: 0;
  border-top: 1px solid #32CD32;
}

.footer-main {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
}

.footer-logo-img {
  width: 200px !important;
  height: 200px !important;
  max-width: 200px !important;
  max-height: 200px !important;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: block;
}

.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #32CD32;
  margin: 0 0 5px 0;
  font-family: 'Arial', sans-serif;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #ffffff;
  margin: 0;
  font-style: italic;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  flex: 1;
}

.footer-section h4 {
  font-size: 0.9rem;
  font-weight: bold;
  color: #32CD32;
  margin: 0 0 12px 0;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: #ffffff;
  font-size: 0.85rem;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.footer-section p i {
  color: #32CD32;
  margin-right: 8px;
  width: 14px;
}

.footer-section p a {
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-section p a:hover {
  color: #32CD32;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #32CD32;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
}

.footer-bottom strong {
  color: #32CD32;
  font-weight: bold;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #32CD32;
  border: 1px solid #32CD32;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ffffff;
  color: #32CD32;
  border-color: #ffffff;
}

.social-links i {
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    gap: 30px;
  }
  
  .footer-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
    min-width: auto;
  }
  
  .footer-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* ==================== BOTÓN FLOTANTE WHATSAPP ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  background: #128C7E;
}

.whatsapp-float i {
  color: white;
  font-size: 2rem;
}

/* Animación de pulso */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
  
  .whatsapp-float i {
    font-size: 1.5rem;
  }
}
