:root {
  color-scheme: dark;
  --bg: #060606;
  --bg-soft: #111111;
  --text: #ffffff;
  --muted: #b8b8b8;
  --red: #e50914;
  --red-dark: #9f0610;
  --red-soft: rgba(229, 9, 20, 0.18);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  --hero-image: url("imagens/hero-elementor-io-optimized.webp");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 8%, rgba(108, 9, 15, 0.44), rgba(8, 8, 8, 0) 34%),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: clamp(1.4rem, 6vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.brand-main {
  color: var(--text);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  min-height: 0.92em;
  margin-left: 4px;
  border-radius: 7px;
  padding: 0 0.11em 0.04em;
  background: #ff7a00;
  color: #080808;
  letter-spacing: 0;
}

.topbar-cta {
  display: inline-flex;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  padding: 120px clamp(18px, 5vw, 64px) 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 35%, rgba(108, 9, 15, 0.82) 0%, rgba(39, 4, 6, 0.68) 25%, rgba(8, 8, 8, 0.94) 66%),
    var(--bg);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--hero-image) 52% center / cover;
  transform: scaleX(-1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.86) 44%, rgba(0, 0, 0, 0.3) 78%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(0, 0, 0, 0) 28%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0), var(--bg));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 12px;
  border: 1px solid rgba(229, 9, 20, 0.36);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(229, 9, 20, 0.1);
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 10vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 26px;
  color: #eeeeee;
  font-size: clamp(1rem, 3vw, 1.22rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.secondary-button,
.preview-button,
.save-button {
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 26px;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.primary-button,
.save-button {
  display: inline-flex;
  background: var(--red);
  color: var(--text);
  box-shadow: 0 16px 45px rgba(229, 9, 20, 0.27);
}

.secondary-button {
  display: inline-flex;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.preview-button {
  display: inline-flex;
  border: 0;
  background: #11a85a;
  color: var(--text);
  box-shadow: 0 16px 45px rgba(17, 168, 90, 0.24);
}

.pulse-button {
  animation: pulseCta 1.8s ease-in-out infinite;
}

.pulse-button-green {
  animation: pulsePreview 1.8s ease-in-out infinite;
}

.mobile-vip-cta {
  display: none;
}

.primary-button:hover,
.save-button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.secondary-button:hover,
.preview-button:hover {
  background: #0c8748;
  transform: translateY(-1px);
}

@keyframes pulseCta {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.5);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(229, 9, 20, 0);
  }
}

@keyframes pulsePreview {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(17, 168, 90, 0.45);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(17, 168, 90, 0);
  }
}

.cards-section {
  padding: 48px clamp(18px, 5vw, 64px) 54px;
  background:
    linear-gradient(180deg, var(--bg), rgba(12, 12, 12, 0.96)),
    radial-gradient(circle at 85% 18%, rgba(108, 9, 15, 0.35), rgba(8, 8, 8, 0) 30%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  width: min(1080px, 100%);
  margin-bottom: 18px;
  margin-inline: auto;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 5vw, 2.6rem);
  letter-spacing: 0;
}

.section-copy {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1080px, 100%);
  margin-inline: auto;
  gap: clamp(12px, 2vw, 18px);
}

.poster-card {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: #151515;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.poster-card:hover img {
  transform: scale(1.04);
}

.poster-card::after {
  position: absolute;
  inset: 0;
  display: block;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.poster-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.poster-caption span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
}

.poster-caption strong {
  color: var(--text);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.15;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 88px;
  }

  .topbar {
    padding-block: 12px;
  }

  .topbar-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 96px;
  }

  .hero::before {
    background-position: 56% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.96) 76%),
      linear-gradient(0deg, var(--bg) 0%, rgba(0, 0, 0, 0) 30%);
  }

  .hero-actions,
  .primary-button,
  .secondary-button,
  .preview-button {
    width: 100%;
  }

  .section-heading {
    align-items: start;
  }

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

  .poster-card {
    aspect-ratio: 4 / 3;
  }

  .mobile-vip-cta {
    position: fixed;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 16px;
    z-index: 20;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--red);
    color: var(--text);
    font-weight: 850;
    box-shadow: 0 16px 45px rgba(229, 9, 20, 0.36);
    animation: pulseCta 1.8s ease-in-out infinite;
  }

}

@media (min-width: 721px) and (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
