:root {
  --bg-base: #06020a;
  --bg-surface: #0a0410;
  --bg-card: rgba(9, 6, 15, 0.72);
  --text: #f3f3f6;
  --muted: #cbc5d5;
  --accent: #f4c046;
  --accent-strong: #ffc637;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1400px 620px at 80% -10%, rgba(255, 175, 64, 0.16), transparent 62%),
    radial-gradient(900px 500px at 0% 90%, rgba(79, 102, 255, 0.14), transparent 64%),
    linear-gradient(180deg, #090411 0%, var(--bg-base) 32%, #040108 100%);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.topbar-scrolled {
  background: rgba(4, 1, 8, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.topbar-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  border: 4px solid #f4f4f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ef3f2f;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.brand-text {
  display: grid;
  line-height: 1;
  gap: 0.12rem;
}

.brand-text strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.95rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-text small {
  font-size: 1.12rem;
  color: #bfc2cf;
  line-height: 1;
  letter-spacing: 0.01em;
}

.menu {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}

.menu a {
  color: #f6f6f8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 160ms ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.menu a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 2, 12, 0.42);
  color: #f6f6f8;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 1.16rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-mobile {
  display: none;
}

.topbar.menu-open .menu-toggle span {
  opacity: 0;
}

.topbar.menu-open .menu-toggle::before {
  transform: rotate(45deg);
}

.topbar.menu-open .menu-toggle::after {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-topo {
  color: #110d17;
  background: linear-gradient(135deg, #ffe7a1, var(--accent));
  padding: 0.67rem 1rem;
  font-size: 0.9rem;
}

.story {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto 2.8rem;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: var(--shadow);
}

.panel {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.panel-content,
.narrow,
.studio-grid,
.panel-contact .container,
.panel-context .container {
  position: relative;
  z-index: 1;
}

.panel-hero,
.panel-audience,
.panel-studio {
  min-height: min(820px, 88vh);
  display: grid;
  align-items: center;
}

.panel-hero {
  padding-top: clamp(7.4rem, 12.5vw, 10.4rem);
}

.panel-hero::before {
  background: url("image/01.png") center / cover no-repeat;
}

.panel-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 2, 10, 0.6), rgba(6, 2, 10, 0.24) 55%, rgba(6, 2, 10, 0.06));
}

.panel-audience::before {
  background: url("image/02.png") center / cover no-repeat;
}

.panel-audience::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 2, 10, 0.14), rgba(6, 2, 10, 0.36) 52%, rgba(6, 2, 10, 0.62));
}

.panel-studio::before {
  background: url("image/04.png") center / cover no-repeat;
}

.panel-studio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 2, 10, 0.54), rgba(6, 2, 10, 0.32) 50%, rgba(6, 2, 10, 0.58));
}

.panel-dark {
  background:
    radial-gradient(900px 360px at 85% -20%, rgba(244, 192, 70, 0.08), transparent 70%),
    linear-gradient(180deg, #06020b, #040108);
}

.panel-compact {
  padding: clamp(2.6rem, 7vw, 4.6rem) 0;
}

.panel-video-trigger {
  padding: clamp(4.2rem, 9vw, 6.4rem) 0;
  background:
    radial-gradient(700px 300px at 50% 18%, rgba(244, 192, 70, 0.08), transparent 72%),
    linear-gradient(180deg, #06020b 0%, #030107 100%);
}

.panel-content {
  width: min(730px, 100%);
}

.align-right {
  margin-left: auto;
  margin-right: 0;
  width: min(640px, 100%);
  text-align: right;
}

h1,
h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 5.4vw, 4.2rem);
}

h2 {
  font-size: clamp(1.65rem, 3.5vw, 3rem);
}

p {
  margin: 1.05rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #f6d796;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.74rem;
  font-weight: 700;
}

.lead {
  font-size: clamp(1.06rem, 1.38vw, 1.3rem);
}

.accent {
  color: var(--accent);
}

.big {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 6vw, 4.1rem);
  font-weight: 700;
  line-height: 1.05;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-proof {
  display: inline-flex;
  padding: 0.58rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  color: #efe8f7;
  font-size: 0.88rem;
  background: rgba(8, 4, 13, 0.45);
}

.btn-primary {
  background: linear-gradient(135deg, #f8cf6b, var(--accent));
  color: #150f1a;
  padding: 0.84rem 1.14rem;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.narrow {
  width: min(780px, 100%);
}

.center {
  text-align: center;
  margin-inline: auto;
}

.play-badge {
  margin: 1.7rem auto 0;
  width: clamp(94px, 14vw, 130px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 5px solid #f2f2f5;
  background: #d61b22;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.play-badge:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.06);
}

.play-badge:focus-visible {
  outline: 3px solid #ffe39a;
  outline-offset: 4px;
}

.play-badge span {
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 26px solid #f2f2f5;
  margin-left: 6px;
}

.feature-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.5;
  color: #ece7f2;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--accent);
}

.pill-grid {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.56rem 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #f4eef8;
  font-size: 0.96rem;
}

.panel-context {
  padding-bottom: clamp(3rem, 8vw, 5.3rem);
}

.context-frame {
  width: min(1020px, 100%);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #020003;
}

.context-title {
  margin: 0;
  padding: clamp(1.1rem, 2.3vw, 1.85rem) clamp(1rem, 2.2vw, 1.7rem)
    clamp(0.85rem, 1.8vw, 1.25rem);
  text-align: center;
}

.context-media {
  margin: 0;
  width: 100%;
  background: #020003;
}

.context-media img {
  display: block;
  width: 100%;
  height: auto;
}

.context-foot {
  margin: 0;
  width: min(860px, 100%);
  padding: clamp(0.9rem, 1.9vw, 1.3rem) clamp(1rem, 2.2vw, 1.7rem)
    clamp(1.2rem, 2.5vw, 1.8rem);
  text-align: center;
  color: #ebe4f2;
  margin-inline: auto;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
  align-items: end;
}

.studio-copy {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: clamp(1rem, 2.2vw, 1.7rem);
}

.video-card {
  margin: 0;
  background: rgba(5, 2, 9, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 0.7rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.video-card video {
  width: 100%;
  display: block;
  border-radius: 12px;
  background: #000;
}

.video-card figcaption {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: #d9d3e3;
}

.panel-contact {
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.brand-contact {
  margin-bottom: 1rem;
  justify-content: center;
}

.btn-whatsapp {
  margin-top: 1.25rem;
  width: min(720px, 100%);
  min-height: 78px;
  border-radius: 18px;
  color: #eaf9e7;
  font-size: clamp(1.25rem, 2.9vw, 2.05rem);
  background: linear-gradient(180deg, #1ebf39 0%, #0b7e1d 100%);
  border: 2px solid rgba(188, 255, 160, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.mail {
  margin-top: 1.1rem;
  display: inline-block;
  color: #dcd6e6;
  text-decoration: none;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.mail:hover {
  text-decoration: underline;
}

body.no-scroll {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 220ms ease;
}

.video-modal[hidden] {
  display: none;
}

.video-modal.is-open {
  opacity: 1;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(3, 1, 8, 0.82);
  cursor: pointer;
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 96vw);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #05010a;
  padding: 0.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.video-modal-dialog video {
  width: 100%;
  border-radius: 12px;
  display: block;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(4, 1, 8, 0.78);
  color: #f8f8fa;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .menu {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu-mobile {
    position: absolute;
    top: 100%;
    left: 0.8rem;
    right: 0.8rem;
    background: rgba(5, 1, 9, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 0.45rem;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.35);
  }

  .topbar.menu-open .menu-mobile {
    display: grid;
    gap: 0.2rem;
  }

  .menu-mobile a {
    display: block;
    color: #f1edf8;
    text-decoration: none;
    padding: 0.72rem 0.78rem;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  .menu-mobile a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

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

  .panel-hero,
  .panel-audience,
  .panel-studio {
    min-height: 72vh;
  }

  .align-right {
    margin-left: auto;
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 1.82rem;
    height: 1.82rem;
    font-size: 1rem;
    border-width: 2px;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text small {
    font-size: 0.68rem;
  }

  .btn-topo {
    display: none;
  }

  .story {
    width: calc(100% - 0.8rem);
    margin-top: 0;
    border-radius: 14px;
  }

  .container {
    width: calc(100% - 1.2rem);
  }

  .panel {
    padding: 2.5rem 0;
  }

  .panel-hero {
    padding-top: 7.2rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn-primary,
  .hero-proof {
    width: 100%;
    justify-content: center;
  }

  .btn-whatsapp {
    min-height: 64px;
    border-radius: 14px;
  }
}
