.secciones-tipo-viaje {
  display: flex;
  gap: 3rem;
  padding: 1rem 1rem;
  justify-content: center;
  margin: .5rem 0;
}

.seccion-viaje {
  flex: 1;
  border-radius: 18px;
  padding: 1rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px #0001;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
  color: var(--color-primary);
  font-weight: 400;
  font-size: .9rem;
}
.seccion-viaje:nth-child(1) {
  background: var(--color-secondary-1);
}
.seccion-viaje:nth-child(2) {
  background: var(--color-secondary-2);
}
.seccion-viaje:nth-child(3) {
  background: var(--color-secondary-3);
  color: #fff;
}
.seccion-viaje:hover {
  box-shadow: 0 4px 16px #0002;
  transform: translateY(-4px) scale(1.03);
}

@media (max-width: 768px) {
  .secciones-tipo-viaje {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.2rem 0.6rem 1.2rem 0.6rem;
  }
  .tipo-viaje-header h2 {
    font-size: 1.25rem !important;
    margin-bottom: 0.7rem !important;
  }
  .tipo-viaje-header p {
    font-size: 0.92rem !important;
  }
  .tipo-viaje-botones {
    margin-top: 2.2rem !important;
  }
  .seccion-viaje {
    font-size: .68rem;
    margin-bottom: 0;
    border-radius: 14px;
    padding: 1.1rem 0.7rem;
  }
  .seccion-viaje:not(:last-child) {
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 768px) {
  #nosotros-typewriter {
    font-size: 0.80rem !important;
  }
}

@media (max-width: 768px) {
  .parrafos-destacados{
    text-shadow: 0 .5px 1px rgba(112, 112, 112, 0.133);
  }
  .parrafos-destacados h2 {
    font-size: 1.02rem !important;
  }
  .parrafos-destacados h3 {
    font-size: 0.89rem !important;
  }
  .parrafos-destacados h4 {
    font-size: 0.83rem !important;
  }
}
