/* public/styles/global.css */

img, video {
  -webkit-user-drag: none; /* evita que la imagen se arrastre */
  -webkit-user-select: none; /* Para Safari 3+, iOS 3+ */
  user-select: none; /* Para navegadores modernos */
  pointer-events: none; /* Evita interacción, puedes quitarlo si quieres controles en el video */
}


body {
  margin: 0;
  padding: 2rem;
  font-family: 'Rubik', sans-serif;
  font-size: 16px; /* un tamaño estándar legible */
  line-height: 1.5; /* para mejorar lectura */
  background: #000;
  color: #fff;
  text-align: center;
}

p,
.desc-list p {
  text-align: justify;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1300px;
  margin: 2rem auto;
  align-items: flex-start;
  justify-content: center;
}

.media-list {
  flex: 1 1 500px;
  min-width: 400px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.media-list video,
.media-list img {
  width: 100%;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.7);
}

.desc-list img,
.media-list img {
  border-radius: 0 !important;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
  outline: none !important;
}

.desc-list {
  flex: 1 1 100%;
  min-width: 250px;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  color: #ccc;
  text-align: center;
  margin: 0 auto;
}

.desc-list h3 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  color: #ffd166;
  font-weight: 700;
  line-height: 1.3;
}

.desc-list p {
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  color: #eee;
  font-size: 1.2rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .main-content {
    flex-direction: column;
    align-items: center;
  }

  .desc-list {
    align-items: center;
    text-align: center;
  }
}

.volver-btn {
  display: inline-block;
  margin: 2.5rem auto 0 auto;
  padding: 0.75rem 2rem;
  background: linear-gradient(90deg, #ffd166 0%, #ff7e5f 100%);
  color: #222;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.volver-btn:hover,
.volver-btn:focus {
  background: linear-gradient(90deg, #ff7e5f 0%, #ffd166 100%);
  color: #000;
  box-shadow: 0 4px 24px 0 rgba(255, 126, 95, 0.15);
  outline: none;
}

.lang-btn {
  display: inline-block;
  background: #ffd166;
  color: #181818;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 18px;
  padding: 0.45rem 1.2rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.13);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.lang-btn:hover,
.lang-btn:focus {
  background: #ff7e5f;
  color: #fff;
  outline: none;
}

.parrafo-destacado {
  max-width: 1000px;
  margin: 0 auto 2.5rem auto;
  color: #ffd166;
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: justify;
}

.contenedor-video {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 2.5rem auto;
  display: flex;
  justify-content: center;
  background: #111;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.video-estilo {
  width: 100%;
  max-width: 1000px;
  border-radius: 0;
  background: #111;
  box-shadow: none;
  border: none;
  outline: none;
  display: block;
}

.imagen-centro {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 2.5rem auto;
  display: flex;
  justify-content: center;
}

.imagen-estilo {
  width: 100%;
  max-width: 1000px;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
  outline: none !important;
  display: block;
}

.span-destacado {
  color: #ffd166;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  display: block;
}
