/* =====================================================
   BAIXE O APP — PRÊMIO MANIA
   Estilo premium alinhado à seção de doação
===================================================== */

/* =====================================================
   BACKGROUND DA SEÇÃO
===================================================== */

.app-download {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 25% 25%, rgba(169, 229, 3, 0.22), transparent 45%),
    radial-gradient(circle at 80% 40%, rgba(0, 255, 170, 0.12), transparent 50%),
    linear-gradient(
      180deg,
      #050807 0%,
      #0b160f 45%,
      #070d09 100%
    );
}

/* =====================================================
   CONTAINER (CARD PREMIUM)
===================================================== */

.app-download-container {
  max-width: 1200px;
  margin: 0 auto;

  position: relative;
  background: rgba(225, 255, 55, 0.055);
  backdrop-filter: blur(14px);
  border-radius: 28px;

  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  padding: 48px 46px;
}

/* Moldura luminosa premium */
.app-download-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 2.5px;

  background: linear-gradient(
    135deg,
    rgba(202, 255, 42, 0.65),
    rgba(0, 255, 170, 0.55),
    rgba(202, 255, 42, 0.65)
  );

  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;

  pointer-events: none;
  z-index: 1;
}

/* =====================================================
   GRID PRINCIPAL
===================================================== */

.app-download-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  align-items: center;
}

/* =====================================================
   TEXTO
===================================================== */

.app-download-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #e5f968;
  line-height: 1.05;
}

.app-download-text h2 span {
  color: #ffffff;
}

.app-download-text p {
  margin-top: 14px;
  font-size: 1.05rem;
  color: #cfd8a8;
  opacity: 0.95;
  max-width: 560px;
  line-height: 1.4;
}

/* =====================================================
   LISTA DE BENEFÍCIOS
===================================================== */

.app-download-bullets {
  margin-top: 22px;
  list-style: none;
  padding: 0;

  display: grid;
  gap: 14px;
}

.app-download-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  font-size: 0.95rem;
  color: #e9f1c9;
  line-height: 1.4;
}

.app-download-bullets .dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;

  background: linear-gradient(
    135deg,
    #caff2a,
    #00ffab
  );

  box-shadow: 0 0 14px rgba(202, 255, 42, 0.6);
  flex-shrink: 0;
}

/* =====================================================
   CTA GOOGLE PLAY
===================================================== */

.app-download-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.playstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 14px 18px;
  border-radius: 18px;
  text-decoration: none;

  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(202, 255, 42, 0.55);

  box-shadow: 0 16px 38px rgba(0, 255, 170, 0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.playstore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 255, 170, 0.55);
}

.playstore-icon {
  width: 38px;
  height: 38px;
}

.playstore-text {
  display: flex;
  flex-direction: column;
}

.playstore-text small {
  font-size: 0.7rem;
  color: #cfd8a8;
  opacity: 0.9;
}

.playstore-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

/* Nota auxiliar */
.app-download-note {
  font-size: 0.8rem;
  color: #cfd8a8;
  opacity: 0.85;
}

/* =====================================================
   COELHO / ARTE
===================================================== */

.app-download-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.app-download-art img {
  width: 100%;
  max-width: 120px;
  height: auto;
  padding-top: 17px;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.55));
  animation: characterFloat 2s ease-in-out infinite alternate;
}

@media (min-width: 901px) {
  .app-download-art img {
    max-width: 280px; /* tamanho só no desktop */
  }
}


/* sombra no chão */
.app-download-art::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 70%;
  height: 22px;

  background: radial-gradient(circle, rgba(0,0,0,0.6), transparent 70%);
  filter: blur(2px);
  opacity: 0.6;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

  .app-download-container {
    padding: 38px 22px;
  }

  .app-download-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-download-text p {
    max-width: none;
  }

  /* ✅ bullets corrigidos */
  .app-download-bullets {
    text-align: left;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
  }

  .app-download-bullets li {
    justify-content: flex-start;
  }

  .app-download-cta {
    justify-content: center;
  }
}

