/* seminarios.css - estilos para página de seminarios y eventos */

/* Header de página */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--blanco);
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Sección de "Próximamente" */
.coming-soon {
  text-align: center;
  padding: 3rem;
  margin-bottom: 3rem;
}

.coming-soon-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Hero de seminarios */
.seminar-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  height: 250px;
}

.seminar-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.seminar-hero:hover img {
  transform: scale(1.05);
}

.seminar-overlay {
  position: absolute;
  inset: 0;
  /* background removed as requested */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: #ffffff;
  /* FORCE WHITE TEXT */
}

.seminar-overlay h2 {
  color: #ffffff;
}

.seminar-overlay .icon-container {
  margin-bottom: 1rem;
}

.icon-container .icon {
  font-size: 4rem;
  display: inline-block;
  animation: pulse 2s infinite;
  color: #ffffff;
  /* FORCE WHITE ICON */
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.coming-soon h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  /* Adapt to theme */
}

.coming-soon p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  /* Adapt to theme */
  margin-bottom: 2rem;
}

/* Destacados */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  text-align: left;
}

.highlight-item {
  background: var(--glass-bg);
  /* Use theme variable */
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--glass-bg);
  /* Use theme variable */
}

.highlight-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
  color: var(--azul);
}

.highlight-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
  /* Adapt to theme */
}

.highlight-item p {
  margin: 0;
  color: var(--text-secondary);
  /* Adapt to theme */
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Información de timeline */
.timeline-info {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(52, 152, 219, 0.3);
  margin: 3rem 0;
  text-align: center;
}

.timeline-info h3 {
  color: var(--azul);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.timeline-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Contenedor de CTA */
.cta-container {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-container h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--blanco);
}

.cta-container p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Formulario de interés */
.interest-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem;
}

.interest-form h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--blanco);
}

.interest-form>p {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 900px) {
  .coming-soon {
    padding: 2rem;
  }

  .highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .interest-form {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .page-header {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
  }

  .coming-soon {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .icon-container .icon {
    font-size: 3rem;
  }

  .coming-soon h2 {
    font-size: 1.7rem;
  }

  .highlight-item {
    padding: 1.2rem;
  }

  .timeline-info {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .interest-form {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}