/* Demonstração comercial — jornada de agendamento WhatsApp + Hub */
.aw-page {
  background-color: #0a0a0a;
  overflow-x: clip;
}

.aw-page::before {
  background-color: #0a0a0a;
  background-image:
    radial-gradient(780px 380px at 50% -12%, rgba(232, 204, 114, 0.16), transparent 58%),
    radial-gradient(480px 280px at 0% 40%, rgba(232, 204, 114, 0.05), transparent 55%),
    linear-gradient(180deg, #0c0b09 0%, #0a0a0a 55%, #0b0b0b 100%);
  filter: none;
}

.aw-page::after {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.12) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.aw-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 36px 20px 8px;
  text-align: center;
}

.aw-eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.aw-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 5.2vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: var(--text-shadow);
}

.aw-lead {
  margin: 0 auto;
  max-width: 36em;
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.55;
}

.aw-journey {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 28px 16px 12px;
}

.aw-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aw-step {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.aw-step-label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  line-height: 1.35;
  min-height: 2.7em;
}

.aw-step-num {
  color: var(--gold);
  font-weight: 800;
  margin-right: 0.25em;
}

.aw-phone-btn {
  appearance: none;
  border: 1px solid rgba(232, 204, 114, 0.18);
  background: rgba(12, 12, 12, 0.45);
  border-radius: 18px;
  padding: 6px;
  cursor: zoom-in;
  width: 100%;
  max-width: 168px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.aw-phone-btn:hover,
.aw-phone-btn:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(232, 204, 114, 0.55);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(232, 204, 114, 0.2);
  outline: none;
}

.aw-phone-btn img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  aspect-ratio: 531 / 1024;
  object-fit: cover;
  background: #111;
}

.aw-step.is-highlight .aw-phone-btn {
  border-color: rgba(232, 204, 114, 0.72);
  box-shadow:
    0 0 0 1px rgba(232, 204, 114, 0.35),
    0 0 22px rgba(232, 204, 114, 0.18);
}

.aw-step.is-highlight .aw-step-label {
  color: var(--gold);
}

.aw-shortcut {
  width: min(100%, 720px);
  margin: 36px auto 8px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(232, 204, 114, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(232, 204, 114, 0.08), transparent 55%),
    rgba(14, 12, 10, 0.72);
}

.aw-shortcut h2 {
  margin: 0 0 10px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.aw-shortcut p {
  margin: 0 auto 18px;
  max-width: 34em;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.aw-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aw-flow li {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
}

.aw-flow li[aria-hidden="true"] {
  border: 0;
  background: transparent;
  padding: 0 2px;
  color: var(--gold);
  font-weight: 800;
}

.aw-cta {
  width: min(100%, var(--max));
  margin: 40px auto 64px;
  padding: 0 20px;
  text-align: center;
}

.aw-cta p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
}

/* Lightbox */
body.aw-lightbox-open {
  overflow: hidden;
}

.aw-lightbox[hidden] {
  display: none !important;
}

.aw-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 16px;
}

.aw-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
}

.aw-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: min(94vh, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.aw-lightbox-title {
  margin: 0;
  padding: 0 40px;
  text-align: center;
  color: #fff;
  font-size: clamp(15px, 3.5vw, 18px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aw-lightbox-stage {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(232, 204, 114, 0.28);
  background: #0a0a0a;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  touch-action: pan-y;
}

.aw-lightbox-stage img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 780px);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.aw-lightbox-close,
.aw-lightbox-nav {
  appearance: none;
  border: 1px solid rgba(232, 204, 114, 0.35);
  background: rgba(20, 18, 14, 0.92);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.aw-lightbox-close:hover,
.aw-lightbox-nav:hover,
.aw-lightbox-close:focus-visible,
.aw-lightbox-nav:focus-visible {
  background: rgba(232, 204, 114, 0.14);
  border-color: rgba(232, 204, 114, 0.7);
  outline: none;
}

.aw-lightbox-close {
  position: absolute;
  top: -4px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
  z-index: 2;
}

.aw-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  z-index: 2;
}

.aw-lightbox-prev {
  left: -8px;
}

.aw-lightbox-next {
  right: -8px;
}

.aw-lightbox-counter {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.08em;
}

@media (min-width: 900px) {
  .aw-lightbox-prev {
    left: -56px;
  }
  .aw-lightbox-next {
    right: -56px;
  }
  .aw-lightbox-panel {
    width: min(100%, 460px);
  }
}

/* Mobile: scroll horizontal em vez de grade 5×2 */
@media (max-width: 920px) {
  .aw-journey {
    padding-left: 0;
    padding-right: 0;
  }

  .aw-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 16px 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .aw-step {
    flex: 0 0 auto;
    width: min(42vw, 168px);
    scroll-snap-align: start;
  }

  .aw-phone-btn {
    max-width: none;
  }

  .aw-step-label {
    min-height: 0;
    font-size: 10px;
  }
}

@media (max-width: 520px) {
  .aw-lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .aw-lightbox-prev {
    left: 4px;
  }

  .aw-lightbox-next {
    right: 4px;
  }

  .aw-lightbox-panel {
    width: min(100%, 360px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aw-phone-btn {
    transition: none;
  }
}

/* Teaser na home comercial */
.aw-home-teaser {
  width: min(100%, var(--max));
  margin: 28px auto 8px;
  padding: 28px 20px;
  border: 1px solid rgba(232, 204, 114, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(232, 204, 114, 0.07), transparent 50%),
    rgba(12, 12, 12, 0.55);
}

.aw-home-teaser-inner {
  display: grid;
  gap: 22px;
  align-items: center;
}

.aw-home-teaser .section-label {
  margin-bottom: 8px;
}

.aw-home-teaser h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 800;
  color: #fff;
}

.aw-home-teaser-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 34em;
}

.aw-feature-more {
  margin: 10px 0 0;
  font-size: 14px;
}

.aw-home-teaser-phones {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aw-home-teaser-phones li {
  flex: 0 0 auto;
  width: min(28%, 112px);
}

.aw-home-teaser-phones img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(232, 204, 114, 0.22);
  aspect-ratio: 531 / 1024;
  object-fit: cover;
  background: #111;
}

@media (min-width: 820px) {
  .aw-home-teaser-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
  }

  .aw-home-teaser-phones {
    justify-content: flex-end;
  }

  .aw-home-teaser-phones li {
    width: 118px;
  }
}
