/* --- FOOTER DOWNLOAD SECTION (Specifico per Survival Guide) --- */
.footer-download-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 6rem; /* Spazio prima del footer standard */
  padding-top: 2rem;
}

.download-title {
  font-family: var(--font-title);
  font-size: 2.5rem; /* text-4xl */
  line-height: 1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: #e6ded1;
  letter-spacing: -0.05em;
  font-weight: 400;
}

@media (min-width: 768px) {
  .download-title {
    font-size: 4.5rem; /* md:text-7xl */
  }
}

.download-desc {
  font-family: var(--font-body);
  font-size: 1.125rem; /* text-lg */
  opacity: 0.6;
  max-width: 42rem;
  margin: 0 auto 3rem;
  color: #e6ded1;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 3rem;
  background-color: var(--color-brand-green);
  color: #e6ded1;
  border-radius: 9999px; /* rounded-full */
  border: none;
  cursor: pointer;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.2s,
    background-color 0.2s;
  text-decoration: none; /* In caso sia un link <a> */
}

.download-btn:hover {
  transform: scale(1.05);
  background-color: #6a8532; /* Un verde leggermente più scuro */
}

.download-btn:active {
  transform: scale(0.95);
}

.btn-text {
  font-family: var(--font-title);
  font-size: 1.5rem; /* text-2xl */
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-top: 0.25rem; /* allineamento ottico */
  text-decoration: none;
  color: #e6ded1;
}

.btn-icon {
  width: 2rem;
  height: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
}

.footer-separator-line {
  width: 100%;
  height: 1px;
  background-color: rgba(230, 222, 209, 0.1);
  margin-bottom: 4rem;
}
