@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Poppins:wght@400;600&display=swap');

/* Fondo general de la página o sección padre */
body, .page-section {
  background: linear-gradient(135deg, #000018, #000018);
  /* azul marino oscuro a negro, para buen contraste */
}

/* Sección tour resumen */
.tour-resumen {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* para posicionar pseudo-elemento y iconos */
  max-width: 60vw;
  margin: 2rem auto 0 auto;
  background-color: #000000; /* Fondo bit black sólido */
  border-radius: 1.8rem;
  padding: 2rem 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3); /* sombra más marcada sobre oscuro */
  font-family: 'Georgia', serif;
  font-size: 1.6rem;
  color: transparent; /* para mostrar degradado de texto */
  text-align: center;
  line-height: 1.6;
  overflow: hidden;
}

/* Iconos verdes glitch */
.tour-resumen i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #24d46d; /* glitch green */
  text-shadow: 0 2px 8px rgba(36, 212, 109, 0.8);
  z-index: 1;
}

.tour-icon-left {
  left: -100px;
  transition: left 0.6s ease-out;
}

.tour-icon-right {
  right: -100px;
  transition: right 0.6s ease-out;
}

/* Texto con degradado pink a green */
.tour-resumen span {
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  word-break: break-word;
  max-width: 80%;
  background: linear-gradient(90deg, #ffffff 0%, #6b777a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .tour-resumen {
    max-width: 90vw;
    font-size: 1.3rem;
    padding: 1.5rem 2rem;
  }

  .tour-resumen i {
    font-size: 1.6rem;
  }

  .tour-resumen span {
    max-width: 85%;
  }
}

@media (max-width: 480px) {
  .tour-resumen {
    max-width: 100vw;
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem 1rem;
    border-radius: 1rem;
  }

  .tour-resumen i {
    font-size: 1.3rem;
  }

  .tour-resumen span {
    max-width: 90%;
  }
}

.tour-resumen,
.tour-resumen i,
.tour-resumen span {
  transition: all 0.2s ease-out;
}
