/* Reset y Estilos Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  :root {
	--primary-color: #4a6fa5; /* Azul acero - color principal */
	--secondary-color: #e63946; /* Rojo coral - color de acento */
	--tertiary-color: #2a9d8f; /* Verde azulado - color terciario */
	--light-bg: #f8f9fa;
	--dark-text: #333;
	--light-text: #fff;
	--border-color: #ddd;
	--hover-color: #2c4162; /* Versión más oscura del color principal */
  }
  
  body {
	font-family: "Arial", sans-serif;
	line-height: 1;
	color: var(--dark-text);
	background-color: #fff;
  }
  
  .container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
  }
  
  a {
	text-decoration: none;
	color: #000;
  }

  button.a  {
	color: #fff !important;
  }
  
  ul {
	list-style: none;
  }
  
  /* Estilos del Encabezado */
  header {
	background-color: #000;
	color: var(--light-text);
	padding: 20px 0;
  }
  
  header h1 {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1px;
  }
  
  header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  nav ul {
	display: flex;
  }
  
  nav ul li {
	margin-left: 30px;
  }
  
  nav ul li a {
	color: var(--light-text);
	font-weight: 500;
	transition: opacity 0.3s;
  }
  
  nav ul li a:hover {
	opacity: 0.8;
	color: var(--secondary-color);
  }
  
  /* Sección Hero */
  #hero {
	padding: 50px 0;
	text-align: center;
	border-bottom: 1px solid var(--border-color);
	background-color: var(--light-bg);
  }
  
  #hero h2 {
	font-size: 36px;
	margin-bottom: 15px;
	color: var(--primary-color);
  }
  
  #hero p {
	font-size: 18px;
	color: #666;
	margin-bottom: 30px;
  }
  
  .search-form {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
  }
  
  .search-form input {
	flex: 1;
	padding: 12px 15px;
	border: 1px solid var(--border-color);
	border-right: none;
	font-size: 16px;
  }
  
  .search-form button {
	padding: 12px 25px;
	background-color: var(--primary-color);
	color: var(--light-text);
	border: 2px, white;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s;
  }
  
  .search-form button:hover {
	background-color: var(--hover-color);
  }
  
  /* Sección de Descarga de Guía */
  #download-guide {
	padding: 60px 0;
	background-color: var(--light-bg);
  }
  
  .guide-container {
	max-width: 800px;
	margin: 0 auto;
	border: 1px solid var(--border-color);
	padding: 40px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .guide-content {
	text-align: center;
  }
  
  .guide-content h2 {
	margin-bottom: 15px;
	font-size: 28px;
	color: var(--primary-color);
  }
  
  .guide-content p {
	margin-bottom: 20px;
	font-size: 18px;
	color: #666;
  }
  
  .guide-features {
	text-align: left;
	max-width: 500px;
	margin: 0 auto 30px;
  }
  
  .guide-features li {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
  }
  
  .guide-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	font-weight: bold;
	color: var(--tertiary-color);
  }
  
  .guide-form {
	display: flex;
	max-width: 500px;
	margin: 0 auto 15px;
  }
  
  .guide-form input {
	flex: 1;
	padding: 12px 15px;
	border: 1px solid var(--border-color);
	border-right: none;
	font-size: 16px;
  }
  
  .guide-form button {
	padding: 12px 25px;
	background-color: var(--secondary-color);
	color: var(--light-text);
	border: none;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s;
  }
  
  .guide-form button:hover {
	background-color: #c1272d;
  }
  
  .small-text {
	font-size: 14px;
	color: #888;
  }
  
  /* Opciones de Membresía (Anteriormente Propiedades Destacadas) */
  #featured {
	padding: 60px 0;
  }
  
  #featured h2,
  #categories h2,
  #agents h2,
  #testimonials h2 {
	text-align: center;
	margin-bottom: 40px;
	font-size: 28px;
	color: var(--primary-color);
  }
  
  .property-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
  }
  
  .property-item {
	border: 1px solid var(--border-color);
	padding: 20px;
	transition: transform 0.3s, box-shadow 0.3s;
	background-color: #fff;
  }
  
  .property-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-top: 3px solid var(--primary-color);
  }
  
  .property-details h3 {
	margin-bottom: 10px;
	font-size: 18px;
	color: var(--primary-color);
  }
  
  .price {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	color: var(--secondary-color);
  }
  
  .specs {
	color: #666;
	margin-bottom: 15px;
	line-height: 1.8;
  }
  
  .specs span {
	color: #555;
  }
  
  .view-details {
	display: inline-block;
	padding: 8px 15px;
	background-color: var(--primary-color);
	color: var(--light-text);
	font-size: 14px;
	transition: background-color 0.3s;
  }
  
  .view-details:hover {
	background-color: var(--hover-color);
  }
  
  /* Categorías (Ahora Beneficios de la Comunidad) */
  #categories {
	padding: 60px 0;
	background-color: var(--light-bg);
  }
  
  .category-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
  }
  
  .category-list li a {
	display: block;
	padding: 10px 20px;
	background-color: #fff;
	border: 1px solid var(--border-color);
	transition: all 0.3s;
  }
  
  .category-list li a:hover {
	background-color: var(--primary-color);
	color: var(--light-text);
	border-color: var(--primary-color);
  }
  
  /* Agentes (Ahora Líderes Comunitarios) */
  #agents {
	padding: 60px 0;
  }
  
  .agent-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
  }
  
  .agent-item {
	text-align: center;
	padding: 20px;
	border: 1px solid var(--border-color);
	background-color: #fff;
	transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .agent-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .agent-item h3 {
	margin-bottom: 5px;
	color: var(--primary-color);
  }
  
  .agent-item p {
	color: #666;
	margin-bottom: 5px;
  }
  
  .contact-agent {
	display: inline-block;
	margin-top: 10px;
	padding: 8px 15px;
	background-color: var(--tertiary-color);
	color: var(--light-text);
	font-size: 14px;
	transition: background-color 0.3s;
  }
  
  .contact-agent:hover {
	background-color: #1e7d73;
  }
  
  /* Testimonios */
  #testimonials {
	padding: 10px 0 5px 0;
	background-color: var(--light-bg);
  }
  
  .testimonial-list {
	max-width: 800px;
	margin: 0 auto;
  }
  
  .testimonial-item {
	text-align: center;
	margin-bottom: 30px;
	padding: 10px;
	background-color: #fff;
	border: 1px solid var(--border-color);
	border-left: 4px solid var(--tertiary-color);
  }
  
  .testimonial-item p {
	font-style: italic;
	margin-bottom: 10px;
  }
  
  .client-name {
	font-weight: bold;
	color: var(--primary-color);
	padding: 2px;
  }
  
  /* Pie de Página */
  footer {
	background-color: #000;
	color: var(--light-text);
	padding: 60px 0 20px;
  }
  
  .footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
  }
  
  .footer-section h3 {
	margin-bottom: 20px;
	font-size: 18px;
	color: var(--secondary-color);
  }
  
  .footer-section p {
	margin-bottom: 10px;
	color: #ccc;
  }
  
  .footer-section ul li {
	margin-bottom: 10px;
  }
  
  .footer-section ul li a {
	color: #ccc;
	transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
	color: var(--secondary-color);
  }
  
  .copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #333;
	color: #ccc;
  }
  
  /* Estilos Responsivos */
  @media (max-width: 768px) {
	header .container {
	  flex-direction: column;
	}
  
	nav ul {
	  margin-top: 20px;
	}
  
	nav ul li {
	  margin: 0 10px;
	}
  
	.search-form,
	.guide-form {
	  flex-direction: column;
	}
  
	.search-form input,
	.guide-form input {
	  border-right: 1px solid var(--border-color);
	  border-bottom: none;
	  margin-bottom: 10px;
	}
  
	#hero {
	  padding: 60px 0;
	}
  
	#hero h2 {
	  font-size: 28px;
	}
  
	.guide-container {
	  padding: 20px;
	}
  }
  
  @media (max-width: 480px) {
	nav ul {
	  flex-wrap: wrap;
	  justify-content: center;
	}
  
	nav ul li {
	  margin: 5px 10px;
	}
  
	.property-list,
	.agent-list {
	  grid-template-columns: 1fr;
	}
  }
  