/* Estilos para el sitio web de Massage Therapists */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Estilos para la sección de ciudades */
.search-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cities-grid {
  margin-top: 1.5rem;
}

.cities-grid h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.cities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.city-link {
  display: block;
  padding: 1rem;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  text-decoration: none;
  color: #495057;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.city-link:hover {
  background: #667eea;
  color: white;
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Estilos para secciones de información */
.info-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.benefit-card {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #667eea;
}

.benefit-card h3 {
  color: #2c3e50;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.benefit-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* Estilos para FAQ */
.faq-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item h3 {
  background: #f8f9fa;
  padding: 1rem;
  margin: 0;
  color: #2c3e50;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-item h3:hover {
  background: #e9ecef;
}

.faq-answer {
  padding: 1rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Estilos para negocios premium */
.business-card.premium {
  border: 2px solid #ffd700;
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  position: relative;
}

.business-card.premium::before {
  content: "PREMIUM";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffd700;
  color: #333;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
}

.business-card.premium .phone,
.business-card.premium .website {
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
}

.business-card.premium .phone:hover,
.business-card.premium .website:hover {
  color: #0056b3;
}

.businesses-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.business-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #e9ecef;
  width: 100%;
}

.business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.business-card h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.business-card p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.business-card .address {
  color: #6c757d;
  font-weight: 500;
}

.business-card .phone {
  color: #007bff;
  font-weight: 500;
}

.business-card .description {
  color: #495057;
  font-style: italic;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e9ecef;
}

.business-card .rating {
  color: #ffc107;
  font-weight: 600;
  font-size: 1rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination a {
  padding: 0.5rem 1rem;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.pagination a:hover {
  background: #0056b3;
}

.pagination .current {
  font-weight: 600;
  color: #6c757d;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #343a40;
  color: white;
  margin-top: 3rem;
}

/* Responsive design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }
  
  header p {
    font-size: 1rem;
  }
  
  main {
    padding: 0 1rem;
  }
  
  .pagination {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 2rem 1rem;
  }
  
  header h1 {
    font-size: 1.8rem;
  }
  
  .business-card {
    padding: 1rem;
  }
} 