/* General */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
}

/* Hero Section */
.travel-hero {
  display: grid;
  grid-template-columns: 1fr 1fr 0.5fr;
  gap: 40px;
  padding: 60px 8%;
  align-items: center;
}

/* Columna Izquierda */
.hero-left .tag {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.hero-left h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-left p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
  line-height: 1.6;
}

.hero-left button {
  background: #222;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 0 #111;
  transition: all 0.3s;
}

.hero-left button:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Columna Central */
.arch-frame {
  position: relative;
  border: 2px solid #ddd;
  border-radius: 50% / 15%;
  overflow: hidden;
}

.arch-frame img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

/* Cards flotantes */
.info-card {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 10px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  max-width: 220px;
}

.info-card img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.info-card.left {
  bottom: 20%;
  left: -40px;
}

.info-card.right {
  top: 20%;
  right: -40px;
}

/* Columna Derecha */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-right img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* Métricas */
.travel-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 8%;
}

.travel-stats .stat {
  flex: 1;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 0 rgba(0,0,0,0.2);
}

.travel-stats .stat h3 {
  margin: 0;
  font-size: 1.5rem;
}

.travel-stats .blue { background: #d8ebf4; }
.travel-stats .yellow { background: #ffe4a3; }
.travel-stats .pink { background: #f2d1d1; }

/* Responsive */
@media (max-width: 1000px) {
  .travel-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-right {
    flex-direction: row;
    justify-content: center;
  }
  .travel-stats {
    flex-direction: column;
  }
}
