/**
 * Página /baixar — réplica visual PL2W (https://www.pl2w.com/pt-br/download)
 * Amarelo #ffd100 · fundo #0e0e0e · placeholders cinzas com tamanhos.
 */

.baixar-page {
  --pl2w-yellow: #ffd100;
  --pl2w-yellow-hover: #ffe033;
  --pl2w-blue: #0066ff;
  --pl2w-green: #0a3d36;
  --pl2w-lime: #c6ff00;
  --pl2w-bg: #0e0e0e;
  --pl2w-card: #1c1c1c;
  --pl2w-text: #ffffff;
  --pl2w-muted: #888888;
  background: var(--pl2w-bg);
  color: var(--pl2w-text);
  overflow-x: hidden;
}

/* ─── Placeholders ─── */
.baixar-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: rgb(75 75 80);
  border: 2px dashed rgb(255 255 255 / 0.28);
  border-radius: 0.5rem;
  text-align: center;
  padding: 0.5rem;
  box-sizing: border-box;
}

.baixar-ph__size {
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
}

.baixar-ph__name {
  font-size: 0.625rem;
  font-weight: 500;
  color: rgb(220 220 225 / 0.9);
  line-height: 1.25;
  max-width: 92%;
}

.baixar-ph--bg-char {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  border-radius: 0;
  background: rgb(90 80 50 / 0.45);
}

.baixar-ph--hero-mockup {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 800 / 450;
  border: 3px solid var(--pl2w-yellow);
  box-shadow: 0 0 40px rgb(255 209 0 / 0.35), 0 8px 32px rgb(0 0 0 / 0.5);
  background: rgb(55 55 60);
}

.baixar-ph--virustotal {
  width: 140px;
  height: 36px;
  padding: 0.2rem;
  border-radius: 0.25rem;
  background: rgb(55 55 60);
}

.baixar-ph--win-icon {
  width: 20px;
  height: 20px;
  min-height: 20px;
  padding: 0;
  border-radius: 0.2rem;
  flex-shrink: 0;
  display: inline-flex;
}

.baixar-ph--win-icon .baixar-ph__size {
  font-size: 0.5rem;
}

.baixar-ph--badge {
  width: 48px;
  height: 48px;
  padding: 0.25rem;
}

.baixar-ph--badge .baixar-ph__size {
  font-size: 0.5625rem;
}

.baixar-ph--feature-wide {
  width: 100%;
  aspect-ratio: 720 / 450;
  background: rgb(90 85 70 / 0.55);
  border-color: rgb(0 0 0 / 0.2);
}

.baixar-ph--feature-sm {
  width: 100%;
  aspect-ratio: 450 / 300;
  margin-top: auto;
  background: rgb(55 55 60 / 0.85);
}

.baixar-ph--step {
  width: 100%;
  aspect-ratio: 220 / 170;
  margin-top: 0.85rem;
  background: rgb(55 55 60);
}

.baixar-ph--windows {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  padding: 0.25rem;
}

.baixar-ph--pay {
  width: 40px;
  height: 24px;
  padding: 0.15rem;
  border-radius: 0.25rem;
}

.baixar-ph--pay .baixar-ph__size {
  font-size: 0.5rem;
}

/* ─── Botões amarelos PL2W ─── */
.baixar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
  font-family: inherit;
}

.baixar-btn--yellow {
  background: var(--pl2w-yellow);
  color: #111;
  font-weight: 800;
  border-radius: 0.5rem;
}

.baixar-btn--yellow:hover {
  background: var(--pl2w-yellow-hover);
  filter: brightness(1.03);
}

.baixar-btn--hero {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.75rem 1.5rem 0.65rem;
  border-radius: 0.65rem;
  min-width: 11rem;
}

.baixar-btn__main {
  font-size: 1.125rem;
  line-height: 1.2;
}

.baixar-btn__sub {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgb(0 0 0 / 0.65);
}

.baixar-btn--step {
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-size: 0.8125rem;
  border-radius: 0.45rem;
  margin: 0.5rem 0 0;
  text-align: center;
}

.baixar-btn--cta {
  padding: 0.9rem 2.5rem;
  font-size: 1.0625rem;
  border-radius: 0.55rem;
}

/* ═══ HERO ═══ */
.baixar-hero {
  position: relative;
  min-height: clamp(480px, 72vh, 620px);
  background: var(--pl2w-bg);
  overflow: hidden;
}

.baixar-hero__slant {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  background: var(--pl2w-yellow);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.baixar-hero__bg-char {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  opacity: 0.85;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.baixar-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  min-height: clamp(480px, 72vh, 620px);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .baixar-hero__inner {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.5rem;
  }
}

.baixar-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--pl2w-text);
}

.baixar-hero__brand {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.35rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--pl2w-yellow);
}

.baixar-hero__bolt {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--pl2w-yellow);
}

@media (min-width: 640px) {
  .baixar-hero__bolt {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.baixar-hero__tagline {
  margin: 0 0 1.75rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--pl2w-text);
  max-width: 22rem;
}

.baixar-hero__tagline-accent {
  color: var(--pl2w-yellow);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.baixar-hero__actions {
  margin-bottom: 1.25rem;
}

.baixar-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.baixar-hero__trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.baixar-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  .baixar-hero__visual {
    justify-content: flex-end;
  }
}

/* ═══ SOBRE ═══ */
.baixar-section--about {
  padding: 3rem 0 3.5rem;
  background: var(--pl2w-bg);
}

.baixar-about-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 0 2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  color: var(--pl2w-text);
}

.baixar-about-title__bolt {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--pl2w-yellow);
}

.baixar-card {
  border-radius: 1.25rem;
  overflow: hidden;
}

.baixar-card--yellow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.5rem 1.35rem;
  background: var(--pl2w-yellow);
  color: #111;
  margin-bottom: 1rem;
}

@media (min-width: 900px) {
  .baixar-card--yellow {
    grid-template-columns: 0.42fr 0.58fr;
    padding: 1.75rem 1.5rem 1.75rem 1.75rem;
    align-items: center;
    gap: 1.5rem;
  }
}

.baixar-card__icon-ph {
  margin-bottom: 0.5rem;
}

.baixar-card--yellow .baixar-card__title {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #111;
}

.baixar-card--yellow .baixar-card__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgb(0 0 0 / 0.82);
}

.baixar-card-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .baixar-card-duo {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.baixar-card--blue,
.baixar-card--green {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.25rem;
  min-height: 100%;
}

.baixar-card--blue {
  background: var(--pl2w-blue);
}

.baixar-card--green {
  background: var(--pl2w-green);
}

.baixar-card--blue .baixar-card__title,
.baixar-card--green .baixar-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}

.baixar-card__title--lime {
  color: var(--pl2w-lime) !important;
}

.baixar-card__text--light {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.92);
  flex: 1;
}

/* ═══ COMO USAR ═══ */
.baixar-section--steps {
  position: relative;
  padding: 3rem 0 3.5rem;
  background: var(--pl2w-bg);
  overflow: hidden;
}

.baixar-steps-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 100%, rgb(255 255 255 / 0.03), transparent 55%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 80px,
      rgb(255 255 255 / 0.015) 80px,
      rgb(255 255 255 / 0.015) 81px
    );
  pointer-events: none;
}

.baixar-steps-wrap {
  position: relative;
  z-index: 1;
}

.baixar-steps-title {
  margin: 0 0 2rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  color: var(--pl2w-text);
  font-style: italic;
}

.baixar-steps-title span {
  font-style: normal;
  color: var(--pl2w-yellow);
}

.baixar-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .baixar-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .baixar-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }
}

.baixar-step {
  padding: 1rem 0.9rem 0.85rem;
  background: var(--pl2w-card);
  border-radius: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.06);
  display: flex;
  flex-direction: column;
}

.baixar-step__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--pl2w-muted);
}

.baixar-step__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--pl2w-text);
  font-weight: 500;
  flex: 1;
}

/* ═══ FAQ ═══ */
.baixar-section--faq {
  padding: 2.5rem 0 3rem;
  background: var(--pl2w-bg);
}

.baixar-faq-title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  color: var(--pl2w-text);
}

.baixar-faq {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.baixar-faq__item {
  background: var(--pl2w-card);
  border-radius: 0.5rem;
  border: 1px solid rgb(255 255 255 / 0.05);
  overflow: hidden;
}

.baixar-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pl2w-muted);
  cursor: pointer;
  list-style: none;
}

.baixar-faq__question::-webkit-details-marker {
  display: none;
}

.baixar-faq__question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--pl2w-yellow);
  line-height: 1;
}

.baixar-faq__item[open] .baixar-faq__question::after {
  content: '−';
}

.baixar-faq__item[open] .baixar-faq__question {
  color: var(--pl2w-text);
}

.baixar-faq__answer {
  padding: 0 1.15rem 1rem;
}

.baixar-faq__answer p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--pl2w-muted);
}

/* ═══ CTA FINAL ═══ */
.baixar-section--cta {
  position: relative;
  padding: 4rem 0 4.5rem;
  background: var(--pl2w-bg);
  overflow: hidden;
}

.baixar-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgb(255 255 255 / 0.04) 50%, transparent 60%),
    linear-gradient(-135deg, transparent 40%, rgb(255 255 255 / 0.03) 50%, transparent 60%);
  pointer-events: none;
}

.baixar-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.baixar-cta__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--pl2w-text);
  line-height: 1.15;
}

.baixar-cta__title span {
  color: var(--pl2w-yellow);
}

.baixar-cta__desc {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--pl2w-muted);
  line-height: 1.5;
}

.baixar-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.06);
}

/* Escopo: não afeta footer global */
body.is-baixar-page main {
  flex: 1;
}