@charset "utf-8";
/* CSS Document */

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
}

.special-font {
  font-family: 'DynaPuff', cursive;
  font-size: 3rem;
  color: #fff;
}

.special-fonte {
  font-family: 'DynaPuff', cursive;
  font-size: 3rem;
  color: black;
}

.hero-colaboraciones {
  position: relative;
  height: 100vh;
  background: linear-gradient(to bottom, rgba(128, 0, 255, 0.6), rgba(0, 0, 0, 0.9)),
              url('ruta-de-tu-imagen.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero-content p {
  font-size: 1.25rem;
  margin-top: 1rem;
  line-height: 1.6;
  color: #ccc;
}

.btn-volver {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background-color: #a259ff;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.btn-volver:hover {
  background-color: #a259ff;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .special-font {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.historia-extendida {
  background-color: #000;
  color: #fff;
  padding: 5rem 2rem;
}

.historia-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.historia-container h2.special-font {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #fff;
  font-family: 'DynaPuff', cursive;
}

/* Estilo tipo máquina de escribir */
.tipo-maquina {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
  color: #ddd;
  animation: fadeInText 2s ease;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Galería de imágenes */
.galeria-historia {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.galeria-historia img {
  width: 300px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-historia img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(128, 0, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .galeria-historia {
    flex-direction: column;
    align-items: center;
  }

  .galeria-historia img {
    width: 90%;
  }

  .historia-container h2.special-font {
    font-size: 2rem;
  }

  .tipo-maquina {
    font-size: 1rem;
  }
}

/* Colaboraciones */
.colaboraciones {
  background-color: #fff;
  padding: 5rem 2rem;
  color: #111;
}

.colaboraciones-container {
  max-width: 1100px;
  margin: 0 auto;
}

.colaboraciones-container h2.special-font {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-family: 'DynaPuff', cursive;
}

.descripcion {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 3rem;
}

.colaboracion-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.colaboracion-item img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.colab-info {
  flex: 1;
}

.colab-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.colab-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.btn-colab {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #6200ea;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.btn-colab:hover {
  background-color: #a259ff;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .colaboracion-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .colaboracion-item img {
    width: 100%;
  }
}

/* === Testimonios === */
.testimonios {
  background-color: #f9f9f9;
  padding: 5rem 2rem;
}

.testimonios-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testimonios-container h2.special-font {
  font-size: 2.4rem;
  font-family: 'DynaPuff', cursive;
  color: #333;
  margin-bottom: 3rem;
}

.comentario-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.comentario-item:hover {
  transform: translateY(-5px);
}

.comentario-item img {
  width: 40px;
  margin-bottom: 1rem;
}

.comentario-texto {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 0.5rem;
}

.usuario {
  font-size: 0.9rem;
  color: #888;
}

/* Colores según plataforma */
.plataforma-twitch {
  border-left: 6px solid #a259ff;
}
.plataforma-youtube {
  border-left: 6px solid #FF0000;
}
.plataforma-discord {
  border-left: 6px solid #5865F2;
}

/* Responsive */
@media (max-width: 768px) {
  .comentario-item {
    padding: 1.2rem;
  }

  .comentario-texto {
    font-size: 1rem;
  }
}

/* === Sección Llamado a la Acción Final === */
.cta-final {
  background: linear-gradient(to bottom right, #1a1a1a, #000);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-titulo {
  font-family: 'DynaPuff', cursive;
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

.cta-texto {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-botones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-cta {
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 600;
}

/* Estilos individuales por tipo de acción */
.btn-cta.contacto {
  background-color: #a259ff; /* Morado */
  color: #fff;
}

.btn-cta.seguir {
  background-color: #444;
  color: #fff;
}

.btn-cta.volver {
  background-color: transparent;
  border: 2px solid #a259ff;
  color: #7e57c2;
}

/* Hover states */
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(126, 87, 194, 0.2);
}

.btn-cta.volver:hover {
  background-color: #a259ff;
  color: #fff;
  border-color: transparent;
}

/* Responsive */
@media (max-width: 600px) {
  .cta-titulo {
    font-size: 2rem;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }
}