/* download.css — estilos da página /download (v0.2.14) */

.dl-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 5vw 80px;
  position: relative;
  z-index: 5;
}

/* ============================================================
   HERO
   ============================================================ */
.dl-hero {
  text-align: center;
  padding: 40px 0 50px;
}
.dl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(76, 217, 100, .1);
  border: 1px solid rgba(76, 217, 100, .3);
  font-size: 12px;
  color: #4cd964;
  margin-bottom: 22px;
}
.dl-hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4cd964;
  box-shadow: 0 0 8px #4cd964;
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.dl-hero-title {
  font: 800 44px/1.1 Orbitron, sans-serif;
  margin: 0 0 18px;
  letter-spacing: -.5px;
}
.dl-hero-sub {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 17px;
  opacity: .8;
  line-height: 1.5;
}
.dl-hero-actions {
  display: inline-flex;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Botões grandes */
.btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink-1), var(--purple));
  color: white;
  border: none;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(255, 61, 154, .25);
}
.btn-dl:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 61, 154, .4);
}
.btn-dl:disabled {
  opacity: .55;
  cursor: not-allowed;
  background: linear-gradient(135deg, #555, #777);
  box-shadow: none;
}
.btn-dl-ghost {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: none;
}
.btn-dl-ghost:hover {
  background: rgba(255, 196, 64, .1);
  border-color: rgba(255, 196, 64, .35);
}
.btn-dl span {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}
.btn-dl strong { font-size: 15px; }
.btn-dl small { font-size: 12px; opacity: .8; }
.dl-icon { font-size: 28px; line-height: 1; }

.dl-hero-meta {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 13px;
  opacity: .55;
  flex-wrap: wrap;
}

/* ============================================================
   MOCKUP — recriação visual da tela do app
   ============================================================ */
.dl-mockup-wrap {
  margin: 30px auto 70px;
  text-align: center;
}
.dl-mockup {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: #0c0814;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 60px rgba(255, 61, 154, .12);
  border: 1px solid rgba(255, 255, 255, .08);
  transform: perspective(1800px) rotateX(2deg);
  transition: transform .4s ease;
}
.dl-mockup:hover {
  transform: perspective(1800px) rotateX(0deg) scale(1.01);
}

.dl-mock-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .03);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.dl-mock-traffic {
  display: flex;
  gap: 6px;
}
.dl-mock-traffic span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dl-mock-traffic span:nth-child(1) { background: #ff5f56; }
.dl-mock-traffic span:nth-child(2) { background: #ffbd2e; }
.dl-mock-traffic span:nth-child(3) { background: #27c93f; }
.dl-mock-title {
  font-size: 12px;
  opacity: .6;
  font-weight: 500;
}

.dl-mock-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 540px;
}

/* SIDEBAR */
.dl-mock-sidebar {
  background: linear-gradient(180deg, rgba(160, 75, 255, .08), rgba(255, 61, 154, .03));
  border-right: 1px solid rgba(255, 255, 255, .04);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.dl-mock-side-brand {
  font: 800 14px/1 Orbitron, sans-serif;
  margin: 0 4px 14px;
  background: linear-gradient(90deg, var(--pink-1), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dl-mock-side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: transparent;
  border: none;
  color: var(--text);
  border-radius: 8px;
  font-size: 12.5px;
  text-align: left;
  font-family: Inter, sans-serif;
  cursor: default;
  pointer-events: none;
}
.dl-mock-side-link span:first-child {
  font-size: 14px;
  width: 18px;
  text-align: center;
}
.dl-mock-side-link.is-active {
  background: rgba(255, 61, 154, .15);
  color: var(--pink-2);
  font-weight: 600;
}
.dl-mock-side-link.is-premium {
  background: linear-gradient(135deg, rgba(255, 196, 64, .18), rgba(255, 109, 193, .1));
  color: #ffc440;
  font-weight: 600;
}
.dl-mock-side-spacer { flex: 1; }
.dl-mock-side-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, .03);
  border-radius: 10px;
  border: 1px solid rgba(255, 196, 64, .25);
}
.dl-mock-side-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffc440, var(--pink-1));
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
  border: 1.5px solid rgba(255, 196, 64, .5);
}
.dl-mock-side-user strong {
  display: block;
  font-size: 11.5px;
}
.dl-mock-side-user small {
  display: block;
  font-size: 10px;
  color: #4cd964;
}

/* CONTENT */
.dl-mock-content {
  padding: 20px 22px;
  overflow: hidden;
  text-align: left;
}

.dl-mock-welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(255, 61, 154, .12), rgba(160, 75, 255, .08));
  border: 1px solid rgba(255, 61, 154, .2);
  border-radius: 14px;
  margin-bottom: 20px;
}
.dl-mock-welcome-text small {
  display: block;
  font-size: 10px;
  letter-spacing: .8px;
  opacity: .55;
  margin-bottom: 2px;
}
.dl-mock-welcome-text h3 {
  margin: 0;
  font: 700 18px/1 Orbitron, sans-serif;
}
.dl-mock-stats {
  display: flex;
  gap: 22px;
}
.dl-mock-stats div {
  text-align: center;
}
.dl-mock-stats strong {
  display: block;
  font: 800 16px/1 Orbitron, sans-serif;
  color: var(--pink-2);
  margin-bottom: 2px;
}
.dl-mock-stats span {
  font-size: 10px;
  opacity: .55;
}

.dl-mock-row-title {
  margin: 4px 0 10px;
}
.dl-mock-row-title h4 {
  margin: 0;
  font: 600 13px/1 Inter, sans-serif;
  opacity: .85;
}

.dl-mock-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.dl-mock-quick-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  padding: 12px;
  text-align: left;
}
.dl-mock-quick-icon {
  display: inline-block;
  font-size: 18px;
  margin-bottom: 6px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--pink-1), var(--purple));
  border-radius: 8px;
  text-align: center;
  line-height: 30px;
  color: white;
}
.dl-mock-quick-card strong {
  display: block;
  font-size: 11.5px;
  margin: 4px 0 2px;
}
.dl-mock-quick-card small {
  font-size: 10px;
  opacity: .55;
}

.dl-mock-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.dl-mock-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dl-mock-item, .dl-mock-friend {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, .03);
  border-radius: 8px;
}
.dl-mock-item-cover {
  width: 60px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: cover;
  background: rgba(255, 255, 255, .04);
}
.dl-mock-item strong, .dl-mock-friend strong {
  display: block;
  font-size: 11.5px;
  margin-bottom: 2px;
}
.dl-mock-item small, .dl-mock-friend small {
  font-size: 10px;
  opacity: .55;
}
.dl-mock-friend-avatar {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  flex-shrink: 0;
  overflow: visible;
}
.dl-mock-friend-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.dl-mock-friend-online::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4cd964;
  border: 2px solid #0c0814;
}
.dl-mock-friend-crown {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 12px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .5));
}

.dl-mockup-caption {
  margin-top: 14px;
  font-size: 13px;
  opacity: .55;
}

/* ============================================================
   FEATURES
   ============================================================ */
.dl-section-head {
  text-align: center;
  margin-bottom: 30px;
}
.dl-section-head h2 {
  font: 800 30px/1.2 Orbitron, sans-serif;
  margin: 0 0 8px;
}
.dl-section-head p {
  margin: 0;
  opacity: .65;
  font-size: 15px;
}

.dl-features {
  margin: 70px 0;
}
.dl-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dl-feat-card {
  padding: 24px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  transition: transform .2s, border-color .2s, background .2s;
}
.dl-feat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 109, 193, .3);
  background: rgba(255, 61, 154, .04);
}
.dl-feat-card.dl-feat-premium {
  background: linear-gradient(135deg, rgba(255, 196, 64, .08), rgba(255, 109, 193, .04));
  border-color: rgba(255, 196, 64, .25);
}
.dl-feat-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.dl-feat-card h3 {
  margin: 0 0 8px;
  font: 700 16px/1.3 Inter, sans-serif;
}
.dl-feat-card p {
  margin: 0;
  font-size: 13px;
  opacity: .75;
  line-height: 1.55;
}
.pill-premium {
  display: inline-block;
  margin-left: 6px;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffc440, #ff6dc1);
  color: #1a0d22;
  font-weight: 700;
  vertical-align: middle;
}

/* ============================================================
   HOW TO
   ============================================================ */
.dl-howto {
  margin: 70px 0;
}
.dl-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}
.dl-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
}
.dl-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-1), var(--purple));
  color: white;
  font: 800 16px/1 Orbitron, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-steps strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.dl-steps p {
  margin: 0;
  font-size: 13px;
  opacity: .7;
  line-height: 1.5;
}

/* ============================================================
   AVISO SMARTSCREEN
   ============================================================ */
.dl-warning {
  margin: 60px auto 0;
  max-width: 800px;
}
.dl-warning-card {
  display: flex;
  gap: 18px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(255, 188, 56, 0.10), rgba(255, 188, 56, 0.04));
  border: 1px solid rgba(255, 188, 56, 0.35);
  border-radius: 16px;
}
.dl-warning-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}
.dl-warning-content {
  flex: 1;
  min-width: 0;
}
.dl-warning-content h3 {
  font: 800 18px/1.3 Orbitron, sans-serif;
  margin: 0 0 8px;
  color: #ffd680;
}
.dl-warning-content p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 237, 255, 0.85);
}
.dl-warning-content p:last-child {
  margin-bottom: 0;
}
.dl-warning-content a {
  color: #ffd680;
  text-decoration: underline;
}
.dl-warning-content strong {
  color: #fff;
}
.dl-warning-steps {
  margin: 6px 0 10px 22px;
  padding: 0;
}
.dl-warning-steps li {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 237, 255, 0.85);
}
.dl-warning-steps li strong {
  color: #ffd680;
}
.dl-warning-note {
  font-size: 12px !important;
  opacity: 0.7;
  font-style: italic;
  margin-top: 10px !important;
}
@media (max-width: 600px) {
  .dl-warning-card { flex-direction: column; gap: 12px; padding: 18px; }
  .dl-warning-icon { font-size: 28px; }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.dl-cta {
  text-align: center;
  padding: 40px 30px;
  margin: 70px auto 0;
  max-width: 700px;
  background: linear-gradient(135deg, rgba(255, 61, 154, .08), rgba(160, 75, 255, .05));
  border: 1px solid rgba(255, 61, 154, .2);
  border-radius: 18px;
}
.dl-cta h2 {
  font: 800 26px/1.2 Orbitron, sans-serif;
  margin: 0 0 8px;
}
.dl-cta p {
  margin: 0 0 18px;
  opacity: .8;
  font-size: 15px;
}
.dl-cta a {
  color: var(--pink-2);
  text-decoration: underline;
}
.dl-cta-actions {
  margin-top: 14px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .dl-hero-title { font-size: 32px; }
  .dl-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .dl-mock-quick { grid-template-columns: repeat(2, 1fr); }
  .dl-mock-cols { grid-template-columns: 1fr; }
  .dl-mock-stats { gap: 14px; }
  .dl-mock-stats strong { font-size: 14px; }
}
@media (max-width: 600px) {
  .dl-hero-title { font-size: 26px; }
  .dl-hero-sub { font-size: 15px; }
  .dl-feat-grid { grid-template-columns: 1fr; }
  .dl-mock-body { grid-template-columns: 1fr; }
  .dl-mock-sidebar { display: none; }
  .dl-mock-welcome { flex-direction: column; gap: 14px; }
  .dl-mock-stats { width: 100%; justify-content: space-around; }
  .dl-hero-actions { flex-direction: column; }
  .btn-dl { width: 100%; justify-content: center; }
}
