/* =============================
   DESCRIPCIONES DE SECCIONES
   ============================= */
.section-descriptions {
  max-width: 1100px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 1rem;
}

.section-description {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(90deg, #1a0033 60%, #0f0f0f 100%);
  border-radius: 1.5rem;
  box-shadow: 0 0 24px #00fff7aa, 0 0 48px #ff00c8aa;
  padding: 1.5rem 2rem;
  border: 2px solid #00fff7;
  transition: box-shadow 0.3s, border-color 0.3s;
  min-height: 180px;
}

.section-description__img {
  width: 120px;
  height: 120px;
  border-radius: 1rem;
  background: #222 linear-gradient(135deg, #00fff7 0%, #ff00c8 100%);
  box-shadow: 0 0 24px #00fff7, 0 0 32px #ff00c8;
  margin-right: 1rem;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.section-description__text {
  flex: 1;
}

.section-description__title {
  font-size: 1.3rem;
  color: var(--color-green);
  text-shadow: var(--glow-green);
  margin: 0 0 0.5rem 0;
  font-family: 'Orbitron', 'Audiowide', Arial, sans-serif;
}

.section-description p {
  color: var(--color-white);
  font-size: 1.05rem;
  text-shadow: 0 0 8px #00fff7, 0 0 16px #ff00c8;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .section-description {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }

  .section-description__img {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}