/* Sequência fotográfica do hero: preparação, exposição e chapa pronta. */
.hero-visual {
  overflow: hidden;
  background: #05090b;
}

.hero-image,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.05);
  animation: hero-sequence 15s infinite;
}

.image-machine { background-image: url("assets/hero-ctp-machine.webp"); animation-delay: 0s; }
.image-exposure { background-image: url("assets/hero-ctp-exposure.webp"); animation-delay: 5s; }
.image-finished { background-image: url("assets/hero-ctp-finished-plate.webp"); animation-delay: 10s; }

.hero-vignette {
  background: linear-gradient(90deg, #10171c88 0%, transparent 55%, #10171c33 100%), linear-gradient(0deg, #10171caa 0%, transparent 45%);
  pointer-events: none;
}

.hero-visual .registration { z-index: 2; top: 16px; }

.hero-status {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eff4ed;
  font: 10px var(--mono);
  letter-spacing: .1em;
}

.status-light {
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--acid);
  animation: blink 1.4s infinite;
}

.status-text {
  position: absolute;
  left: 18px;
  white-space: nowrap;
  opacity: 0;
  animation: status-sequence 15s infinite;
}

.status-one { animation-delay: 0s; }
.status-two { animation-delay: 5s; }
.status-three { animation-delay: 10s; }

.hero-progress {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 15px;
  left: 24px;
  height: 2px;
  background: #ffffff33;
}

.hero-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--acid);
  animation: progress 15s linear infinite;
}

@keyframes hero-sequence {
  0%, 28% { opacity: 1; transform: scale(1); }
  33%, 100% { opacity: 0; transform: scale(1.06); }
}

@keyframes status-sequence {
  0%, 28% { opacity: 1; }
  33%, 100% { opacity: 0; }
}

@keyframes progress {
  0% { width: 0; }
  100% { width: 100%; }
}

@media (max-width: 760px) {
  .hero-status { left: 16px; bottom: 28px; }
  .hero-progress { right: 16px; bottom: 12px; left: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image, .status-text, .hero-progress i { animation: none; }
  .image-machine, .status-one { opacity: 1; }
}

/* Fotografias nas duas saídas de gravação. */
.machine-card .machine-photo {
  position: absolute;
  top: 66px;
  right: 17px;
  bottom: 88px;
  left: 17px;
  background-color: #172125;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px #ffffff2e;
}

.machine-photo-five { background-image: url("assets/hero-ctp-machine.webp"); }
.machine-photo-six { background-image: url("assets/hero-ctp-exposure.webp"); }

.machine-card .machine-photo::after {
  position: absolute;
  right: 12px;
  bottom: 11px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--acid);
}

.map-art .minas-map {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.map-art .bh-dot { left: 62.5%; top: 56.5%; }
.map-art .bh-label { left: 66%; top: 50%; }

.brand-logo {
  display: inline-flex;
  width: 220px;
  height: 70px;
  padding: 0;
  background: transparent;
  flex-shrink: 0;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.phone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid #542d25;
}

.phone-list a {
  display: grid;
  gap: 5px;
  font: 500 14px var(--mono);
}

.phone-list span {
  font-size: 9px;
  letter-spacing: .08em;
  color: #5b3228;
}

@media (max-width: 760px) {
  .brand-logo { width: 174px; height: 56px; }
  .phone-list { grid-template-columns: 1fr; gap: 14px; }
}
