.place-section {
  display: flex;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 5rem 4rem;
  text-align: center;
}

.place-section-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Texto */
.place-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.place-text .title {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--color1);
  margin-bottom: 0.5rem;
}

.place-text .subtitle {
  font-size: 2.4rem;
  color: var(--color1);
  margin-bottom: 1.5rem;
}

.place-text .description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color1);
  width: 90%;
  font-weight: 500;
}

.place-text .accent {
  font-weight: bold;
  color: var(--color2);
}

/* Video */
.place-video {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.place-video video {
  width: 100%;
  max-width: 900px;
  height: 500px;          /* altura fija */
  object-fit: cover;      /* mantiene proporción y recorta si es necesario */
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}


/* Responsivo */
@media (max-width: 600px) {
  .place-section {
    padding: 3rem 1rem;
  }

  .place-text .title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .place-text .subtitle {
    font-size: 1.6rem;
    color: var(--color1);
    margin-bottom: 1.5rem;
  }

  .place-text .description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color1);
    width: 95%;
  }

  .place-video video {
    max-width: 100%;
  }
}
