@charset "utf-8";
/* CSS Document */

.china-desde {
  padding: 3rem 1rem;
  background: #F3FAFF;
  border-top: 1px solid #ebebeb;
}

.china-desde__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.china-desde h2 {
  color: #f2912e;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Arial Black', Gadget, sans-serif;
}

.china-desde p {
  color: #545454;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}

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

.china-desde__card {
  display: block;
  padding: 1.5rem;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: #272b50;
  transition: all 0.3s ease;
}

.china-desde__card h3 {
	font-size: 1.5rem;
  color: #f2912e;
  margin-bottom: 0.8rem;
}

.china-desde__card p {
  color: #545454;
  font-size: 1.5rem;
  line-height: 1.4;
}

.china-desde__card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}