/* ============================================
   ZONA DE DESCARGAS PAGE
   ============================================ */

/* Hero decoratives */
.sun--zd   { width: 260px; height: 260px; top: -70px; right: -40px; opacity: 0.7; }
.cloud--zd { width: 300px; bottom: 0; left: -30px; }

/* Notice icon */
.notice-icon { font-size: 1.25rem; flex-shrink: 0; }

/* APK card */
.card-apk-desc { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 1rem; }

/* Contact box */
.card-contact-title { font-size: 1.3rem; margin-bottom: 0.75rem; }
.card-contact-sub   { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 1.5rem; }

.zona-hero {
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.zona-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.zona-hero-sub {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== MAIN ===== */
.zona-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ===== DOWNLOAD CARD ===== */
.download-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2.5rem;
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--navy);
}

.download-card-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.5);
  padding: 0.5rem;
}

.download-card-img-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: rgba(245,158,11,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.download-card-info {}

.download-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.download-card-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.download-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.download-card-tag {
  background: rgba(37,99,235,0.08);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
}

.download-card-action {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .download-card {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    padding: 1.5rem;
  }
  .download-card-action {
    grid-column: 1 / -1;
  }
}

/* ===== SECTION HEADER ===== */
.zona-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

.zona-section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
}

/* ===== PRIMARY DOWNLOAD GRID ===== */
.download-primary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.download-card-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  gap: 1rem;
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
}

.download-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  color: var(--navy);
}

.download-featured-icon {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  flex-shrink: 0;
}

.play-store-icon {
  background: rgba(52, 168, 83, 0.12);
  color: #34A853;
}

.windows-icon {
  background: rgba(0, 120, 212, 0.12);
  color: #0078D4;
}

.download-card-featured .download-card-tags {
  justify-content: center;
}

/* ===== ALTERNATIVE DOWNLOAD ===== */
.download-alt-section {
  margin-top: 0.5rem;
}

.download-alt-label {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.25rem;
}

.download-card--alt {
  opacity: 0.82;
}

.download-card--alt:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .download-primary-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== NOTICE ===== */
.zona-notice {
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.6;
}
