/*
Theme Name: Soluciones de Salud
Theme URI: https://tudominio.com/
Author: Tu Nombre
Description: Tema personalizado basado en tu diseño HTML.
Version: 1.0
*/

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: #fff;
  color: #111;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ddd;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
}

.btn {
  background-color: #e5f1ff;
  color: #111;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../assets/img/pexels-photo-7088521.jpeg') no-repeat center center;
  background-size: cover;
  height: 400px;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
}

.section {
  padding: 2rem;
}

.services, .cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #f9f9f9;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #f0f0f0;
  font-size: 0.9rem;
}

footer a {
  margin: 0 1rem;
  text-decoration: none;
  color: #444;
}
