:root {
  --black: #000000;
  --orange: #f4971e;
  --white: #ffffff;
  --soft-white: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --card: #0a0a0a;
  --card-2: #121212;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.space-top {
  margin-top: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 900;
}

.section-title span {
  color: var(--orange);
}

.section-copy {
  margin: 0;
  max-width: 760px;
  color: var(--soft-white);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.topbar {
  position: static;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 220px;
  max-width: 60%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--orange);
  color: var(--black);
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 44px 0 56px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.72) 38%,
    rgba(0, 0, 0, 0.42) 60%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
}

.hero-title {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-title .accent {
  color: var(--orange);
}

.hero-text {
  margin: 0 0 26px;
  color: var(--soft-white);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
}

.point {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.point strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 900;
}

.point span {
  display: block;
  color: var(--soft-white);
  font-size: 0.94rem;
}

.lead-card {
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
  min-height: 560px;
}

.lead-card h2 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.lead-card p {
  margin: 0 0 18px;
  color: var(--soft-white);
  font-size: 0.96rem;
}

.rd-form-wrapper {
  width: 100%;
  margin-top: 8px;
  min-height: 420px;
}

#academia-do-rock-formulario-lp-captacao-de-leads-v1-3eb7bb17086439574dae {
  width: 100%;
}

#rd-text_field-x0XfTtlTCp3ruK48Usja4Q,
label[for="rd-text_field-x0XfTtlTCp3ruK48Usja4Q"],
#rd-text_field-tBiIRozHuksNDP8xazBntg,
label[for="rd-text_field-tBiIRozHuksNDP8xazBntg"],
#rd-text_field-DiwnCbRKc5np0PMONPVmMA,
label[for="rd-text_field-DiwnCbRKc5np0PMONPVmMA"],
#rd-text_field-YQ6ECszbBcoHlUM6lLJbfQ,
label[for="rd-text_field-YQ6ECszbBcoHlUM6lLJbfQ"],
#rd-text_field-gBcsT3VN5tNLJqCgl6HO_g,
label[for="rd-text_field-gBcsT3VN5tNLJqCgl6HO_g"] {
  display: none !important;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.media-card,
.stat,
.cta-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card {
  padding: 26px;
}

.card h3,
.stat h3,
.media-content h3 {
  margin: 0 0 10px;
  font-size: 1.32rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.card p,
.stat p,
.media-content p {
  margin: 0;
  color: var(--soft-white);
}

.media-card {
  background: var(--card-2);
}

.media-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.media-content {
  padding: 22px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
  align-items: center;
}

.showcase-image {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 620px;
  background: #0f0f0f;
}

.showcase-image > img.main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.65));
}

.showcase-badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 2;
  max-width: 76%;
  padding: 22px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.showcase-badge strong {
  display: block;
  font-size: 1.7rem;
  line-height: 0.98;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 10px;
}

.showcase-badge span {
  display: block;
  color: var(--soft-white);
}

.value-stack {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.value-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.value-index {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.value-item strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.stat {
  padding: 24px;
  background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
}

.stat strong {
  display: block;
  color: var(--orange);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-band {
  background:
    radial-gradient(circle at top center, rgba(244, 151, 30, 0.18), transparent 40%),
    #050505;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.gallery-item {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0c0c;
  position: relative;
  min-height: 260px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.large {
  grid-column: span 2;
  min-height: 360px;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.82));
  color: var(--white);
  font-weight: 700;
}

.community {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.community-photo {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.community-photo img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.mini-card {
  border: 1px solid var(--line);
  background: #0a0a0a;
  border-radius: 24px;
  overflow: hidden;
}

.mini-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.mini-card div {
  padding: 16px;
  font-size: 0.95rem;
  color: var(--soft-white);
  font-weight: 700;
}

.cta-copy::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(244, 151, 30, 0.38), rgba(244, 151, 30, 0) 70%);
  pointer-events: none;
}

.cta-copy p {
  max-width: 700px;
  color: var(--soft-white);
  font-size: 1.06rem;
}

.video-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.video-proof-copy {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.video-proof-secondary {
  opacity: 0.92;
}

.video-proof-copy .eyebrow {
  justify-content: center;
}

.video-proof-media {
  width: 100%;
}

.video-frame {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0b0b;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.cta-final-centered {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  text-align: center;
  padding: 72px 48px;
  border-radius: 36px;
  background: linear-gradient(180deg, #f4971e 0%, #e98c12 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.cta-final-centered::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(0,0,0,0.10), transparent 32%);
  pointer-events: none;
}

.cta-final-centered .eyebrow {
  justify-content: center;
  color: #000000;
  position: relative;
  z-index: 1;
}

.cta-final-centered .eyebrow::before {
  background: #000000;
}

.cta-final-centered .section-title {
  max-width: 900px;
  margin: 0 auto 18px;
  color: #000000;
  position: relative;
  z-index: 1;
}

.cta-final-centered .section-title span {
  color: #ffffff;
}

.cta-final-text {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
  color: rgba(0, 0, 0, 0.82);
  font-size: 1.08rem;
  position: relative;
  z-index: 1;
}

.cta-final-centered .btn {
  min-height: 56px;
  padding: 0 30px;
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  position: relative;
  z-index: 1;
}

.cta-final-centered .btn:hover {
  background: #111111;
}

.section-cta-final {
  padding-top: 110px;
  padding-bottom: 110px;
}

.cta-final-text {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.investment-header {
  max-width: 900px;
  margin: 0 auto 32px;
  text-align: center;
}

.investment-header .eyebrow {
  justify-content: center;
}

.investment-intro {
  margin: 0 auto;
  text-align: center;
}

.investment-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
}

.investment-image {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0b0b0b;
  min-height: 400px;
}

.investment-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.investment-content {
  display: grid;
  gap: 18px;
}

.investment-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.investment-box {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
  box-shadow: var(--shadow);
}

.investment-box span {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 8px;
}

.investment-box strong {
  display: block;
  font-size: 2rem;
  line-height: 1.05;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer {
  padding: 34px 0 50px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.hidden {
  display: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .showcase,
  .community,
  .video-proof,
  .investment-section,
  .grid-4,
  .grid-3,
  .grid-2,
  .gallery-grid,
  .mini-grid,
  .hero-points {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }

  .cta-form-wrap {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .nav {
    display: none;
  }
}

@media (max-width: 760px) {
  
  .lead-card {
    min-height: 0;
  }

  .rd-form-wrapper {
    min-height: 360px;
  }

  .hero-bg-image {
    object-position: center;
  }

  .investment-image {
    height: 320px;
    min-height: 320px;
  }

  .investment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .topbar {
    display: none;
  }

  .cta-final-centered {
    width: min(calc(100% - 24px), 100%);
    padding: 44px 22px;
    border-radius: 28px;
  }

  .cta-final-centered .section-title {
    margin-bottom: 16px;
  }

  .cta-final-text {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .section {
    padding: 64px 0;
  }

  .topbar-inner,
  .cookie-bar,
  .cookie-actions,
  .footer-inner,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-grid,
  .showcase,
  .community,
  .video-proof,
  .investment-section,
  .grid-4,
  .grid-3,
  .grid-2,
  .gallery-grid,
  .mini-grid,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .investment-highlights {
    grid-template-columns: 1fr;
  }

  .lead-card,
  .card,
  .stat,
  .cta-copy,
  .cta-form-wrap,
  .media-content {
    padding: 22px;
  }

  .showcase-image {
    min-height: 420px;
  }

  .community-photo img {
    min-height: 360px;
  }

  .brand img {
    width: 180px;
  }

  .showcase-badge {
    max-width: calc(100% - 24px);
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .video-frame {
    border-radius: 22px;
  }

  .cta-final-centered {
    padding: 36px 22px;
  }

  .cta-final-centered .eyebrow {
    justify-content: center;
  }
}
