/* GRID DE SERVICIOS — 2 COLUMNAS */
.rfcs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* TARJETAS */
.rfcs-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

/* EFECTO SUAVE */
.rfcs-card:hover {
  transform: translateY(-5px);
}

/* ICONOS */
.rfcs-card img {
  width: 50px;
  margin-bottom: 10px;
}

/* TITULOS */
.rfcs-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #003b5b;
}

/* DESCRIPCIÓN */
.rfcs-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}