body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #ffffff;
  color: #333;
}

header {
  background: #1C1C1C;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-family: 'Playfair Display', serif;
}

header ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

header a {
  color: white;
  text-decoration: none;
}

header a:hover {
  color: #C9A227;
}

.hero {
  background: url('images/hero-corporativo.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  background: rgba(0,0,0,0.6);
  color: white;
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
}

.cta {
  background: #C9A227;
  color: black;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
}

.cta:hover {
  background: #7B2D26;
  color: white;
}

.servicios, .testimonios, .contacto {
  padding: 2rem;

  text-align: center;
}

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

.card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

blockquote {
  background: #f4f4f4;
  padding: 1rem;
  border-left: 4px solid #C9A227;
  border-radius: 4px;
}

footer {
  background: #1C1C1C;
  color: white;
  text-align: center;
  padding: 1rem;
}