body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #0d1b2a;
}

section.servicios {
  text-align: center;
  padding: 60px 20px;
}

section.servicios h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #0d1b2a;
}

section.servicios p {
  margin-bottom: 40px;
  color: #333;
}

.grid-servicios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.servicio {
  background: #0d1b2a;
  color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.servicio:hover {
  background: #8C1C2A;
  transform: translateY(-5px);
}

.servicio svg {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  fill: #A97C37; /* dorado */
  transition: fill 0.3s ease;
}

.servicio:hover svg {
  fill: #fff;
}

.servicio h3 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}
