/* =========================================================
   INDEX.CSS — MAXIMUM PREMIUM
   ========================================================= */

/* ── Hero ───────────────────────────────────────────────── */

.hero {
  padding: 20px 0 0;
  min-height: calc(100vh - var(--header-height) - 32px);
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
}

/* Vertical editorial rule — right of center */
.hero::before {
  content: '';
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: calc(50% + 12px);
  width: 1px;
  background: linear-gradient(180deg,
      transparent, rgba(242, 178, 121, 0.12) 20%,
      rgba(242, 178, 121, 0.12) 80%, transparent);
  pointer-events: none;
  z-index: 0;
}

/* Sweeping light beam — diagonal */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 55%;
  height: 140%;
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(242, 221, 213, 0.04) 50%,
      transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: hero-beam 12s ease-in-out infinite;
}

@keyframes hero-beam {

  0%,
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    transform: translateX(15%) rotate(2deg);
    opacity: 1;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 300px);
  gap: 44px;
  align-items: center;
  padding: 64px 0 88px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 780px;
}

/* ── Kicker ─────────────────────────────────────────────── */

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}

.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(242, 221, 213, 0.34));
}

/* ── Title with letter-reveal feel ─────────────────────── */

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5.8rem;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--cream);
  max-width: 24ch;
  margin-bottom: 30px;
}

/* Animated gold shimmer on accent word */
.hero-title .accent {
  display: block;
  font-style: italic;
  background: linear-gradient(115deg,
      var(--gold) 0%,
      var(--gold-bright) 30%,
      var(--gold-light) 50%,
      var(--gold-bright) 70%,
      var(--gold) 100%);
  background-size: 280% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 4.5s linear infinite;
}

@keyframes shimmer-text {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 280% center;
  }
}

.hero-title .accent-2 {
  display: block;
  -webkit-text-fill-color: rgba(234, 226, 202, 0.32);
  font-style: normal;
  font-size: 0.70em;
  letter-spacing: 0.02em;
  margin-top: 6px;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.80;
  max-width: 50ch;
  margin-bottom: 38px;
}

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

.hero-actions .btn {
  min-width: 214px;
}

.hero-note {
  margin-bottom: 26px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-proof-item {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cream-dim);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.hero-proof-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 8px rgba(242, 185, 153, 0.46);
  margin-right: 10px;
}

/* ── Stats bar ──────────────────────────────────────────── */

.hero-stats {
  display: flex;
  gap: 0;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  position: relative;
}

/* Travelling light dot across border */
.hero-stats::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 2px rgba(242, 178, 121, 0.42);
  animation: dot-travel 5s var(--ease-in-out) infinite;
}

@keyframes dot-travel {
  0% {
    left: 0%;
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 28px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.stat-item:hover {
  opacity: 0.80;
}

.stat-item:last-child {
  padding-right: 0;
  border-right: none;
}

.stat-item+.stat-item {
  padding-left: 28px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-num--sm {
  font-size: 2.2rem;
  letter-spacing: 0;
}

.stat-label {
  font-size: 0.70rem;
  color: var(--text-muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Photo panel ────────────────────────────────────────── */

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 340px;
  margin-left: auto;
}

.hero-photo-wrap {
  position: relative;
  margin-bottom: 20px;
  max-width: 340px;
  margin-left: auto;
}

/* Shadow pedestal under photo */
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 14%;
  right: 14%;
  height: 24px;
  background: radial-gradient(ellipse, rgba(242, 178, 121, 0.14) 0%, transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background:
    radial-gradient(circle at 50% 18%, rgba(242, 221, 213, 0.12), transparent 42%),
    linear-gradient(160deg, rgba(242, 185, 153, 0.82), rgba(13, 13, 13, 0.94));
  border: 1px solid var(--border-hi);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(242, 221, 213, 0.07),
    0 0 70px rgba(242, 178, 121, 0.07);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
  transform-style: preserve-3d;
}

.hero-photo-frame:hover {
  transform: scale(1.01) translateY(-4px);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(242, 221, 213, 0.12),
    0 0 96px rgba(242, 178, 121, 0.10);
}

/* Pulsing gold border glow — no mask needed */
.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(242, 221, 213, 0.26);
  z-index: 4;
  pointer-events: none;
  animation: frame-glow 4s ease-in-out infinite;
}

@keyframes frame-glow {

  0%,
  100% {
    border-color: rgba(242, 221, 213, 0.18);
    box-shadow: inset 0 0 20px rgba(242, 178, 121, 0.05);
  }

  50% {
    border-color: rgba(242, 178, 121, 0.38);
    box-shadow: inset 0 0 36px rgba(242, 178, 121, 0.10);
  }
}

/* Inner inset gold rule */
.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: calc(var(--radius-xl) - 4px);
  border: 1px solid rgba(242, 221, 213, 0.16);
  z-index: 3;
  pointer-events: none;
}

.hero-photo-frame .hero-photo-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(242, 185, 153, 0) 0%,
      rgba(242, 185, 153, 0.12) 40%,
      rgba(118, 150, 60, 0.36) 68%,
      rgba(100, 132, 50, 0.64) 86%,
      rgba(13, 13, 13, 0.84) 100%
    );
  filter: blur(1px);
}

.hero-photo-glow {
  position: absolute;
  inset: 6% 2% -6% 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
  height: 102%;
  background:
    radial-gradient(ellipse at bottom,
      rgba(242, 178, 121, 0.20) 0%,
      rgba(242, 221, 213, 0.09) 40%,
      transparent 78%),
    url("../img/luiz-home.png") center 12% / cover no-repeat;
  filter: blur(24px) saturate(1.02) brightness(0.92);
  opacity: 0.62;
  pointer-events: none;
  z-index: 1;
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 10%;
  display: block;
  padding: 10px 0 0;
  transform: scale(0.96) translateY(0);
  filter: contrast(1.1) brightness(1.02) saturate(1) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.18));
  transition: transform 1.6s var(--ease-out), filter 0.7s var(--ease-out);
}

.hero-photo-frame:hover .hero-photo {
  transform: scale(0.99) translateY(-2px);
  filter: contrast(1.14) brightness(1.05) saturate(1.03) drop-shadow(0 16px 36px rgba(0, 0, 0, 0.22));
}

/* ── Floating badges ────────────────────────────────────── */

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  z-index: 10;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 13px 17px;
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(242, 178, 121, 0.24),
    0 0 32px rgba(242, 178, 121, 0.30);
  animation: float-a 5s var(--ease-in-out) infinite;
  transition: box-shadow var(--transition-fast);
}

.hero-badge:hover {
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(242, 178, 121, 0.34),
    0 0 48px rgba(242, 178, 121, 0.34);
}

.hero-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}

.hero-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

.hero-tag {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 10;
  background: rgba(13, 13, 13, 0.42);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md), 0 0 22px rgba(242, 178, 121, 0.10);
  animation: float-b 5s var(--ease-in-out) infinite;
  animation-delay: 1.1s;
  backdrop-filter: blur(12px);
}

.hero-tag span {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}

@keyframes float-a {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(0deg);
  }
}

@keyframes float-b {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-8px) rotate(0deg);
  }
}

/* ── Hero Quote ─────────────────────────────────────────── */

.hero-quote {
  position: relative;
  margin-top: 20px;
  padding: 20px 22px 18px 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg,
      rgba(13, 13, 13, 0.40) 0%,
      rgba(13, 13, 13, 0.24) 100%);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  backdrop-filter: blur(8px);
  transition:
    border-color var(--transition-med),
    box-shadow var(--transition-med),
    transform var(--transition-med);
}

.hero-quote:hover {
  border-color: var(--border-hi);
  border-left-color: var(--gold-light);
  box-shadow: 0 4px 24px rgba(242, 178, 121, 0.08);
  transform: translateX(4px);
}

.hero-quote-mark {
  position: absolute;
  top: -20px;
  left: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}

.hero-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.64;
  margin-bottom: 12px;
}

.hero-quote p em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

.hero-quote-source {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.hero-quote-line {
  display: block;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), transparent);
  flex-shrink: 0;
}

/* ── Feature cards ──────────────────────────────────────── */

.features-section {
  padding-bottom: 100px;
}

.feature-card {
  padding: 34px 28px;
  cursor: default;
  perspective: 800px;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg,
      rgba(242, 178, 121, 0.09) 0%,
      transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px) rotateX(2deg);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.8rem;
  font-weight: 300;
  color: rgba(242, 221, 213, 0.12);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0;
  transition: color var(--transition-slow);
}

.feature-card:hover .feature-num {
  color: rgba(242, 178, 121, 0.22);
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.36rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.feature-card:hover h3 {
  color: var(--gold-light);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.90rem;
  line-height: 1.74;
}

.audience-section {
  padding-top: 0;
}

.audience-strip {
  padding-top: 42px;
}

.audience-head {
  max-width: 780px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-card {
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.audience-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(242, 221, 213, 0.12);
  border: 1px solid rgba(242, 221, 213, 0.2);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.audience-card h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.audience-card p {
  color: var(--text-secondary);
  line-height: 1.72;
  font-size: 0.92rem;
}

.audience-actions {
  justify-content: center;
  margin-top: 24px;
}

/* ── Highlight band ─────────────────────────────────────── */

.highlight-band {
  background: linear-gradient(135deg,
      rgba(242, 178, 121, 0.08) 0%,
      rgba(13, 13, 13, 0.34) 45%,
      rgba(242, 221, 213, 0.05) 100%);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.highlight-band::before,
.highlight-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.highlight-band::before {
  top: -70px;
  right: -70px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(242, 178, 121, 0.11) 0%, transparent 68%);
  animation: orb-pulse 6s ease-in-out infinite;
}

.highlight-band::after {
  bottom: -70px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(242, 185, 153, 0.10) 0%, transparent 68%);
  animation: orb-pulse 6s ease-in-out infinite reverse;
}

@keyframes orb-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

.highlight-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.44;
  max-width: 60ch;
  position: relative;
  z-index: 1;
}

.highlight-band blockquote em {
  color: var(--gold-light);
  font-style: normal;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 32px 0 56px;
  }

  .hero-panel {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-photo-frame {
    aspect-ratio: 4/5;
  }

  .hero-badge {
    bottom: -14px;
    left: -14px;
  }

  .hero-tag {
    top: -14px;
    right: -14px;
  }

  .highlight-band {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    text-align: center;
  }

  .highlight-band .btn {
    margin: 0 auto;
  }

  .hero-stats {
    gap: 0;
    flex-wrap: wrap;
  }

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

  .video-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 3.1rem;
  }

  .stat-num,
  .stat-num--sm {
    font-size: 1.75rem;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof-item {
    width: 100%;
    justify-content: flex-start;
  }

}

/* ── Video Showcase ─────────────────────────────────────── */

.video-section {
  padding-top: 0;
}

.video-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

/* ── Left copy ──────────────────────────────────────────── */

.video-copy .section-title {
  font-size: 2.85rem;
}

.video-copy .section-subtitle {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.78;
}

.video-actions {
  justify-content: flex-start;
  margin-top: 26px;
}

.audience-actions .btn,
.video-actions .btn {
  min-width: 210px;
}

/* ── Right: screen frame ────────────────────────────────── */

.video-frame-wrap {
  position: relative;
  min-width: 0;
}

/* Ambient glow below screen */
.video-screen-glow {
  position: absolute;
  bottom: -40px;
  left: 10%;
  right: 10%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(242, 178, 121, 0.18) 0%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

/* Browser chrome frame */
.video-screen {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-hi);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(242, 221, 213, 0.08),
    0 0 60px rgba(242, 178, 121, 0.08);
  background: var(--ink-mid);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.video-screen:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(242, 221, 213, 0.14),
    0 0 90px rgba(242, 178, 121, 0.13);
}

/* Fake browser top bar */
.video-screen-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.screen-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
}

.screen-dot:nth-child(1) {
  background: rgba(255, 95, 87, 0.55);
}

.screen-dot:nth-child(2) {
  background: rgba(255, 189, 46, 0.45);
}

.screen-dot:nth-child(3) {
  background: rgba(40, 200, 64, 0.40);
}

.screen-url {
  margin-left: 10px;
  font-size: 0.70rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-family: 'DM Sans', monospace;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* The video itself */
.video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--ink);
}

/* Floating "● ao vivo" badge */
.video-badge-float {
  position: absolute;
  bottom: -14px;
  right: -14px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border-hi);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  box-shadow: var(--shadow-md), 0 0 20px rgba(242, 178, 121, 0.10);
  animation: float-a 5s ease-in-out infinite;
}

.video-badge-float span {
  font-size: 0.55rem;
  color: rgba(242, 185, 153, 0.92);
  animation: pulse-green 1.8s ease-in-out infinite;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 900px) {
  .video-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-copy {
    text-align: center;
  }

  .video-copy .section-subtitle {
    margin-inline: auto;
  }
}


.hero {
  padding-top: calc(var(--header-height) + 12px);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 8px) 0 0;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0 56px;
  }

  .hero-title {
    font-size: 3.35rem;
    line-height: 1;
    max-width: 20ch;
    margin-bottom: 20px;
  }

  .hero-text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-actions .btn {
    min-height: 52px;
    min-width: 0;
  }

  .hero-stats {
    flex-wrap: wrap;
    row-gap: 18px;
    padding-top: 20px;
  }

  .stat-item {
    width: calc(50% - 8px);
    padding-right: 14px;
    border-right: none;
  }

  .stat-item + .stat-item {
    padding-left: 0;
  }

  .hero-panel {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-photo-wrap,
  .hero-photo-frame {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-photo {
    transform: scale(0.92);
    transform-origin: center;
  }
}

@media (max-width: 640px) {
  .hero-grid {
    gap: 22px;
    padding: 24px 0 44px;
  }

  .hero-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-title {
    font-size: 2.55rem;
    max-width: 18ch;
    margin-bottom: 16px;
  }

  .hero-text {
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .audience-actions,
  .video-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .audience-actions .btn,
  .video-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
  }

  .stat-item {
    width: 100%;
    padding: 0;
  }

  .stat-num,
  .stat-num--sm {
    font-size: 1.6rem;
  }

  .hero-photo-wrap,
  .hero-photo-frame {
    max-width: 268px;
  }

  .hero-photo {
    transform: scale(0.88);
  }

  .hero-badge {
    transform: scale(0.82);
    left: -8px;
    bottom: -8px;
  }

  .hero-tag {
    transform: scale(0.88);
    right: -8px;
    top: -8px;
  }

  .video-screen-bar {
    padding: 10px 12px;
  }

  .screen-url {
    max-width: 180px;
  }
}

@media (max-width: 420px) {
  .hero-title { font-size: 1.9rem; }
  .hero-photo-wrap,
  .hero-photo-frame { max-width: 230px; }
  .hero-photo { transform: scale(0.84); }
  .hero-stats { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .video-actions {
    justify-content: center;
  }
}

@media (min-width: 1600px) {
  .hero-grid {
    gap: 72px;
    align-items: center;
  }

  .hero-title {
    max-width: 12.5ch;
  }

  .hero-text {
    max-width: 52ch;
  }

  .hero-photo-wrap {
    max-width: 600px;
    margin-inline: auto;
  }
}

/* Palette refinement */
.hero::before {
  background: linear-gradient(180deg,
      transparent, rgba(242, 178, 121, 0.12) 20%,
      rgba(242, 185, 153, 0.12) 80%, transparent);
}

.hero::after {
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(242, 221, 213, 0.05) 50%,
      transparent 60%);
}

.hero-title .accent-2 {
  -webkit-text-fill-color: rgba(242, 221, 213, 0.42);
}

.hero-proof-item {
  background: rgba(242, 221, 213, 0.07);
  border-color: rgba(242, 221, 213, 0.12);
}

.hero-proof-item::before {
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(242, 185, 153, 0.46);
}

.hero-stats::before {
  box-shadow: 0 0 10px 2px rgba(242, 178, 121, 0.42);
}

.hero-photo-frame {
  background:
    radial-gradient(circle at 50% 18%, rgba(242, 221, 213, 0.12), transparent 42%),
    linear-gradient(160deg, rgba(36, 32, 29, 0.92), rgba(13, 13, 13, 0.96));
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(242, 221, 213, 0.07),
    0 0 70px rgba(242, 178, 121, 0.08);
}

.hero-photo-frame .hero-photo-fade {
  background:
    linear-gradient(
      to bottom,
      rgba(13, 13, 13, 0) 0%,
      rgba(13, 13, 13, 0.18) 44%,
      rgba(13, 13, 13, 0.58) 82%,
      rgba(13, 13, 13, 0.88) 100%
    );
}

.hero-photo-glow {
  background:
    radial-gradient(ellipse at bottom,
      rgba(242, 178, 121, 0.18) 0%,
      rgba(242, 221, 213, 0.08) 40%,
      transparent 78%),
    url("../img/luiz-home.png") center 12% / cover no-repeat;
}

.hero-photo {
  filter: contrast(1.08) brightness(1.03) saturate(0.98) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.26));
}

.hero-badge {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--ink);
}

.hero-tag,
.hero-quote {
  background: rgba(13, 13, 13, 0.58);
}

.feature-num,
.process-step {
  color: rgba(242, 221, 213, 0.14);
}

.highlight-band,
.philosophy-strip {
  background: linear-gradient(135deg,
      rgba(242, 178, 121, 0.10) 0%,
      rgba(13, 13, 13, 0.42) 48%,
      rgba(242, 221, 213, 0.05) 100%);
}

.highlight-band::before {
  background: radial-gradient(circle, rgba(242, 178, 121, 0.11) 0%, transparent 68%);
}

.highlight-band::after {
  background: radial-gradient(circle, rgba(242, 185, 153, 0.10) 0%, transparent 68%);
}

.video-screen {
  background: var(--ink);
}

.video-screen-glow {
  background: radial-gradient(ellipse, rgba(242, 178, 121, 0.18) 0%, transparent 70%);
}

.video-badge-float span {
  color: var(--gold-bright);
}

/* Light readability pass */
.hero-title .accent-2 {
  -webkit-text-fill-color: rgba(13, 13, 13, 0.50);
}

.hero-proof-item,
.hero-tag,
.hero-quote,
.audience-card,
.feature-card {
  background: rgba(242, 221, 213, 0.68);
  border-color: rgba(13, 13, 13, 0.12);
}

.hero-photo-frame {
  background:
    radial-gradient(circle at 50% 18%, rgba(242, 178, 121, 0.22), transparent 42%),
    linear-gradient(160deg, rgba(242, 221, 213, 0.94), rgba(242, 185, 153, 0.34));
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(13, 13, 13, 0.06),
    0 0 70px rgba(242, 178, 121, 0.14);
}

.hero-photo-frame .hero-photo-fade {
  background:
    linear-gradient(
      to bottom,
      rgba(242, 221, 213, 0) 0%,
      rgba(242, 221, 213, 0.20) 46%,
      rgba(242, 221, 213, 0.70) 100%
    );
}

.hero-photo {
  filter: contrast(1.04) brightness(1.02) saturate(1.02) drop-shadow(0 12px 28px rgba(13, 13, 13, 0.14));
}

.hero-quote-mark,
.feature-num {
  color: rgba(13, 13, 13, 0.12);
}

.highlight-band {
  background: linear-gradient(135deg,
      rgba(242, 178, 121, 0.24) 0%,
      rgba(242, 221, 213, 0.78) 48%,
      rgba(255, 255, 255, 0.22) 100%);
}

.video-screen {
  background: #F2DDD5;
}
