.alinear_justificar {
text-align: justify;
}

.centrar_contenido_div {
    display: flex;
    align-items: center;
    
}

.circulo {
	width: 70px;
	height: 70px;
	border-radius: 40%;
	background: #ffca56;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    margin:0px auto;
    padding:3%;
    border: 2px solid #02246a;

    position: relative;
    top: 50px; right: 50%;
    z-index:2;
}

/* Estilos para el botón de descarga */
.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3) !important;
  background-color: #f8f9fa !important;
  color: #764ba2 !important;
}

.download-section {
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: slide 20s linear infinite;
}

@keyframes slide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

@media (max-width: 768px) {
  .download-section h2 {
    font-size: 1.8em !important;
  }

  .download-section p {
    font-size: 1em !important;
  }

  .btn-download {
    padding: 15px 35px !important;
    font-size: 1em !important;
  }
}
