/* ============================================
   DESCARGAR VISOR PAGE
   ============================================ */

/* Hero decoratives */
.sun--dv   { width: 280px; height: 280px; top: -80px; left: -60px; opacity: 0.7; }
.cloud--dv { width: 300px; bottom: 0; right: -30px; }

/* After-plan steps */
.after-plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.after-plan-item { display: flex; flex-direction: column; gap: 0.5rem; }
.after-plan-desc { font-size: 0.875rem; color: var(--gray-600); }

/* Contact section */
.contact-section--full { max-width: 100%; padding: 0; }
.contact-card-title { font-size: 1.8rem; margin-bottom: 0.75rem; }
.contact-card-sub   { color: var(--gray-600); margin-bottom: 1.5rem; }
.contact-footer-note { margin-top: 1.5rem; font-size: 0.875rem; color: var(--gray-600); }

/* Plan note featured */
.plan-note-featured { color: var(--gold-dark); font-weight: 600; }

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

.download-hero .sun {
  width: 280px;
  height: 280px;
  top: -80px;
  left: -60px;
  opacity: 0.7;
}

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

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

/* ===== DOWNLOAD SECTION ===== */
.download-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* PLANS */
.plans-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2.5rem;
}

.plan-row.plan-featured {
  border: 2px solid var(--gold);
  background: rgba(255,255,255,0.9);
  position: relative;
}

.plan-row.plan-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245,158,11,0.05), rgba(37,99,235,0.05));
  pointer-events: none;
}

.plan-info {}

.plan-badge {
  margin-bottom: 0.5rem;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.plan-price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.plan-price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
}

.plan-price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--navy);
}

.plan-price-period {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0.3rem;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plan-features li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.plan-features li .check {
  color: var(--success);
  font-weight: 700;
}

.plan-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  min-width: 160px;
}

.plan-cta .btn {
  width: 100%;
  justify-content: center;
}

.plan-cta-note {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-align: center;
}

@media (max-width: 640px) {
  .plan-row {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .plan-cta {
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ===== CONTACT CTA ===== */
.contact-section {
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.contact-section p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.contact-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 160px;
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  font-size: 1.75rem;
}

.contact-card-label {
  font-weight: 600;
  font-size: 0.875rem;
}

.contact-card-value {
  font-size: 0.8rem;
  color: var(--gray-600);
}
