.download-page {
  padding: 0 !important;
}

.download-hero {
  background:
    linear-gradient(120deg, #5c0d18 0%, #8e1526 45%, #ba1e34 100%);
  color: #fff;
  padding: 3rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.download-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.download-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.download-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffc9d0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.download-copy .eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: #ffffff;
}

.download-copy h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.download-copy .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #ba1e34;
  border-radius: 8px;
  padding: 12px 18px;
  min-height: 58px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  color: #ba1e34;
}

.btn-download .btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(186, 30, 52, 0.1);
  display: grid;
  place-items: center;
}

.btn-download .btn-icon svg {
  width: 20px;
  height: 20px;
  color: #ba1e34;
}

.btn-download .btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-download .btn-text strong {
  color: #ba1e34;
  font-size: 1.05rem;
}

.btn-download .btn-text small {
  color: rgba(142, 21, 38, 0.7);
  font-size: 0.78rem;
}

.btn-secondary-link {
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  cursor: default;
  user-select: none;
}

.btn-secondary-link:hover {
  background: transparent;
  color: #fff;
}

.download-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0;
  padding: 0;
}

.download-meta li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  position: relative;
  padding-left: 14px;
}

.download-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
}

.download-visual {
  display: flex;
  justify-content: center;
}

.phone {
  width: 220px;
  height: 420px;
  background: #111827;
  border-radius: 28px;
  border: 3px solid #243041;
  padding: 12px;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.12),
    0 24px 50px rgba(0, 0, 0, 0.35);
  position: relative;
}

.phone-notch {
  width: 72px;
  height: 8px;
  background: #243041;
  border-radius: 999px;
  margin: 4px auto 12px;
}

.phone-screen {
  background: linear-gradient(180deg, #fff7f8, #f5eef0);
  border-radius: 18px;
  height: calc(100% - 24px);
  padding: 14px;
}

.app-bar {
  background: #ba1e34;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.app-card {
  background: #fff;
  border: 1px solid #eddde0;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  color: #5c0d18;
  font-size: 0.88rem;
  font-weight: 600;
}

.app-cta {
  margin-top: 16px;
  background: #ba1e34;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px;
}

.download-body {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.feature {
  background: #f5f3f0;
  border: 1px solid #e5e1db;
  border-radius: 10px;
  padding: 1.25rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fdecee;
  color: #ba1e34;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature h2 {
  color: var(--azul-titulo);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.feature p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.45;
}

.howto {
  background: #fff;
  border: 1px solid #dde3ea;
  border-radius: 10px;
  padding: 1.35rem 1.5rem;
  margin-bottom: 1rem;
}

.howto h2 {
  color: var(--azul-titulo);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.howto ol {
  margin: 0 0 0 1.1rem;
  color: #333;
}

.howto li {
  margin-bottom: 0.55rem;
  line-height: 1.45;
}

.howto code {
  background: #fdecee;
  color: #8e1526;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
}

#menu .entrar {
  display: inline-flex;
}

@media (max-width: 900px) {
  .download-hero-inner {
    grid-template-columns: 1fr;
  }

  .download-visual {
    order: -1;
  }

  .phone {
    width: 180px;
    height: 340px;
  }

  .features {
    grid-template-columns: 1fr;
  }
}
