/* Estilos específicos para la página de información */

.info-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 68, 68, 0.3);
}

.info-header i {
  font-size: 3rem;
  color: #e50914;
  margin-bottom: 15px;
  display: block;
}

.info-header h2 {
  font-size: 2rem;
  color: #ffffff;
  margin: 0;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.steps-container h3 {
  color: #ff4444;
  font-size: 1.3rem;
  margin: 30px 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 68, 68, 0.1);
  border-radius: 10px;
  border-left: 4px solid #ff4444;
}

.mobile-steps h3 {
  color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
  border-left: 4px solid #4caf50;
}

.step-list {
  margin: 20px 0;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin: 15px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(135deg, #ff4444, #cc3333);
  transition: width 0.3s ease;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-item:hover::before {
  width: 8px;
}

.step-number {
  background: linear-gradient(135deg, #ff4444, #cc3333);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 68, 68, 0.3);
}

.mobile-steps .step-number {
  background: linear-gradient(135deg, #4caf50, #45a049);
  box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.step-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}

.step-content i {
  color: #ff4444;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.mobile-steps .step-content i {
  color: #4caf50;
}

.step-content strong {
  color: #ffeb3b;
  font-weight: bold;
}

.link-destacado {
  color: #00d4ff;
  text-decoration: none;
  font-weight: bold;
  padding: 2px 8px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.link-destacado:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

/* Video Section */
.video-section {
  margin: 40px 0;
  padding: 30px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-section h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-section h3 i {
  color: #ff4444;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.video-description {
  margin-top: 15px;
  color: #cccccc;
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.video-description i {
  color: #4caf50;
}

/* Help Section */
.help-section {
  margin: 40px 0;
  padding: 30px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(76, 175, 80, 0.3);
  text-align: center;
}

.help-section h3 {
  color: #4caf50;
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.help-section p {
  color: #cccccc;
  margin-bottom: 20px;
  font-size: 1rem;
}

.btn-help {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-help:hover {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Back Button */
.back-button {
  text-align: center;
  margin: 30px 0;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .info-card {
    padding: 25px;
    margin: 10px;
  }

  .info-header h2 {
    font-size: 1.5rem;
  }

  .info-header i {
    font-size: 2.5rem;
  }

  .steps-container h3 {
    font-size: 1.1rem;
    padding: 12px;
  }

  .step-item {
    padding: 15px;
    gap: 15px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .step-content {
    font-size: 0.9rem;
  }

  .video-section {
    padding: 20px;
  }

  .help-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .info-card {
    padding: 20px;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .step-content {
    flex-direction: column;
    gap: 8px;
  }

  .btn-help {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .info-header h2 {
    font-size: 1.3rem;
  }
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-item {
  animation: fadeInUp 0.6s ease forwards;
}

.step-item:nth-child(1) {
  animation-delay: 0.1s;
}
.step-item:nth-child(2) {
  animation-delay: 0.2s;
}
.step-item:nth-child(3) {
  animation-delay: 0.3s;
}
.step-item:nth-child(4) {
  animation-delay: 0.4s;
}
.step-item:nth-child(5) {
  animation-delay: 0.5s;
}
.step-item:nth-child(6) {
  animation-delay: 0.6s;
}
.step-item:nth-child(7) {
  animation-delay: 0.7s;
}
.step-item:nth-child(8) {
  animation-delay: 0.8s;
}
.step-item:nth-child(9) {
  animation-delay: 0.9s;
}
.step-item:nth-child(10) {
  animation-delay: 1s;
}
