.trayecto-info {
  max-width: 1200px;
  margin: 2rem auto !important;
  padding: 0 1rem !important;
}

.trayecto-info h1 {
  text-align: center;
  margin-bottom: 2rem !important;
  color: var(--foreground);
}

.trayecto-info h2 {
  color: var(--foreground);
  margin: 1.5rem 0 1rem !important;
}

.contact-info, .general-info, .inscription-info {
  margin-bottom: 2rem !important;
}

.genially-embed {
  margin: 1rem 0 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.inscription-button {
  display: inline-block;
  background: var(--primary) !important;
  color: white !important;
  padding: 0.8rem 1.5rem !important;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 1rem !important;
  transition: background 0.3s ease;
}

.inscription-button:hover {
  background: var(--secondary) !important;
}

.loader-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--background);
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.loader-container.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid var(--primary);
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .trayecto-info {
    padding: 0 0.5rem !important;
  }
  .img-sied{
    display: none;
  }
}

.faq-container-title {
  max-width: var(--container-w);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
  margin: 0 0 auto auto !important;
  background: #216196;
  border-radius: 10px;
  box-shadow: var(--neo-shadow-card, 0 4px 8px rgba(0,0,0,0.13));
  padding: 2rem !important;
  gap: 1rem !important;
}

.faq-title {
  flex: 1;
  min-width: 300px !important;
  padding: 1rem !important;
}

.faq-title h2{
  font-size: clamp(13px, 1vw, 21px) !important;
}
.faq-title h4,h2 {
  color: #ccc;
  margin-bottom: 1em !important;
}

.sied {
  flex: 1;
  min-width: 300px !important;
  padding: 1rem !important;
}

.img-sied {
  max-width: 100%;
  height: auto;
  align-items: center;
}

.img-sied img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .faq-container-title {
    flex-direction: column !important;
  }

  .faq-title,
  .sied {
    width: 100% !important;
    padding: 0.5rem !important;
  }
}
