body {
  margin: 0;
  font-family: 'Space Grotesk', 'Arial', sans-serif;
  background: #f8f9fa;
  color: #111;
}

.map-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.map-section h2 {
  margin: 0 0 5px;
  font-size: 20px;
}

.map-section p {
  margin: 0 0 20px;
  color: #555;
  font-size: 14px;
}

#map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  margin-bottom: 50px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  background: #fafafa;
  border-radius: 10px;
  padding: 2px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(2, 4, 105, 0.247);
}

/* Cores títulos cards */
.card.chile h3 {
  color: red;
  text-align: center; 
  }
.card.mexico h3 {
  color: green;
   text-align: center;
}
.card.usa h3 {
  color: blue;
   text-align: center;
}
.card.pr h3 {
  color: rgb(219, 126, 4);
   text-align: center;
}
