/* ==========================================================================
   Walter Bondioli — design tokens
   ========================================================================== */
:root {
  --color-primary: #A60311;
  --color-primary-hover: #c20a1a;
  --color-bg-deep: #060607;
  --color-bg-base: #0a0a0b;
  --color-surface-1: #101114;
  --color-surface-2: #121316;
  --color-surface-3: #16171a;
  --color-border: #26272b;
  --color-border-accent: #2c1418;
  --color-white: #fff;
  --color-text: #e8e9eb;
  --color-body: #b9bcc2;
  --color-secondary: #8a8f98;
  --color-silver: #c9cdd3;
  --color-muted: #55575e;

  --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --section-pad-y: 110px;
  --section-pad-x: 48px;
  --radius-sm: 3px;
  --radius-md: 5px;
  --radius-lg: 6px;
  --radius-xl: 8px;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #060607 0%, #101012 40%, #0a0a0b 70%, #131316 100%);
  background-attachment: fixed;
  font-family: var(--font-sans);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--color-silver); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #d92433; }
ul { margin: 0; padding: 0; }
::selection { background: var(--color-primary); color: #fff; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

[hidden] { display: none !important; }

/* Lenis smooth-scroll boilerplate */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* scroll-reveal (JS toggles .is-visible) */
.reveal { opacity: 1; }

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    filter: blur(12px);
    will-change: opacity, transform, filter;
    transition: opacity 1.25s cubic-bezier(0.16, 1, 0.3, 1), transform 1.25s cubic-bezier(0.16, 1, 0.3, 1), filter 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Directional Scroll Motion Modifiers */
  .reveal--left {
    transform: translateX(-65px) scale(0.96);
    filter: blur(12px);
  }
  .reveal--right {
    transform: translateX(65px) scale(0.96);
    filter: blur(12px);
  }
  .reveal--zoom {
    transform: scale(0.88) translateY(45px);
    filter: blur(14px);
  }
  .reveal--up {
    transform: translateY(60px);
    filter: blur(12px);
  }

  .reveal.is-visible,
  .reveal--left.is-visible,
  .reveal--right.is-visible,
  .reveal--zoom.is-visible,
  .reveal--up.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
    filter: blur(0);
  }

  /* staggered cascade for repeating item groups */
  .career__stat,
  .timeline__item,
  .video-card,
  .contact-card,
  .product-card,
  .feature-mini {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.is-visible .career__stat,
  .reveal.is-visible .timeline__item,
  .reveal.is-visible .video-card,
  .reveal.is-visible .contact-card,
  .reveal.is-visible .product-card,
  .reveal.is-visible .feature-mini,
  .reveal--zoom.is-visible .career__stat,
  .reveal--zoom.is-visible .timeline__item,
  .reveal--zoom.is-visible .video-card,
  .reveal--zoom.is-visible .contact-card,
  .reveal--zoom.is-visible .product-card,
  .reveal--zoom.is-visible .feature-mini {
    opacity: 1;
    transform: translate(0) scale(1);
  }
  .career__stat:nth-child(1), .timeline__item:nth-child(1), .video-card:nth-child(1), .contact-card:nth-child(1), .product-card:nth-child(1), .feature-mini:nth-child(1) { transition-delay: 0.08s; }
  .career__stat:nth-child(2), .timeline__item:nth-child(2), .video-card:nth-child(2), .contact-card:nth-child(2), .product-card:nth-child(2), .feature-mini:nth-child(2) { transition-delay: 0.18s; }
  .career__stat:nth-child(3), .timeline__item:nth-child(3), .video-card:nth-child(3), .contact-card:nth-child(3), .product-card:nth-child(3), .feature-mini:nth-child(3) { transition-delay: 0.28s; }
  .timeline__item:nth-child(4), .video-card:nth-child(4), .contact-card:nth-child(4) { transition-delay: 0.38s; }
  .timeline__item:nth-child(5), .video-card:nth-child(5), .contact-card:nth-child(5) { transition-delay: 0.48s; }
  .timeline__item:nth-child(6) { transition-delay: 0.58s; }
  .video-card:nth-child(6) { transition-delay: 0.58s; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-sans);
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover { background: var(--color-primary-hover); color: #fff; }
.btn--outline {
  border-color: #4a4b50;
  color: var(--color-text);
  background: transparent;
}
.btn--outline:hover { border-color: var(--color-primary); color: #fff; }
.btn--sm { padding: 14px 30px; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: linear-gradient(180deg, rgba(6,6,7,0.92) 0%, rgba(6,6,7,0.75) 70%, rgba(6,6,7,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__brand img { height: 40px; width: auto; }
.nav__brand-name {
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--color-text);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lang-toggle {
  background: none;
  border: 1px solid #3a3b40;
  border-radius: var(--radius-sm);
  color: var(--color-silver);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 7px 14px;
  cursor: pointer;
}
.lang-toggle:hover { border-color: var(--color-primary); color: #fff; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Section heading kicker
   ========================================================================== */
.kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.kicker__bar { width: 40px; height: 3px; background: var(--color-primary); flex: none; }
.kicker__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--color-secondary);
  text-transform: uppercase;
}
.section-title {
  margin: 0 0 56px;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: uppercase;
}
.section-title--tight { margin-bottom: 10px; }

/* ==========================================================================
   Hero
   ========================================================================== */
/* ==========================================================================
   Hero Stage Effects & Lighting
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transition: transform 0.2s ease-out;
}

/* Volumetric Stage Light Beams */
.hero__light-beams {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  mix-blend-mode: screen;
}

.hero__light-beam {
  position: absolute;
  top: 13%;
  width: 110px;
  height: 55%;
  background: radial-gradient(ellipse at top center, rgba(255, 195, 135, 0.35) 0%, rgba(200, 110, 45, 0.12) 50%, transparent 80%);
  filter: blur(20px);
  opacity: 0.65;
  transform-origin: top center;
  animation: beamSway 8s ease-in-out infinite alternate;
}

.hero__light-beam--1 { left: 41%; transform: rotate(-12deg); animation-delay: 0s; }
.hero__light-beam--2 { left: 49%; transform: rotate(0deg); animation-delay: 2.5s; width: 125px; opacity: 0.8; }
.hero__light-beam--3 { left: 56.5%; transform: rotate(12deg); animation-delay: 5s; }

@keyframes beamSway {
  0% { opacity: 0.55; transform: scaleX(0.92) rotate(-2deg); }
  100% { opacity: 0.85; transform: scaleX(1.1) rotate(2deg); }
}

/* Stage Dust Particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 225, 190, 0.75);
  box-shadow: 0 0 10px rgba(255, 210, 160, 0.9);
  animation: particleFloat 12s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

/* Stage Dust Particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 225, 195, 0.85);
  box-shadow: 0 0 10px rgba(255, 210, 160, 0.9);
  will-change: transform, opacity, filter;
  animation: particleFloat 12s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.p1  { width: 4px; height: 4px; top: 20%; left: 6%;  animation-duration: 9s;  animation-delay: 0s;   --p-peak: 0.95; }
.p2  { width: 6px; height: 6px; top: 38%; left: 22%; animation-duration: 14s; animation-delay: 2s;   --p-peak: 0.50; }
.p3  { width: 3px; height: 3px; top: 28%; left: 40%; animation-duration: 11s; animation-delay: 4s;   --p-peak: 0.80; }
.p4  { width: 7px; height: 7px; top: 52%; left: 58%; animation-duration: 16s; animation-delay: 1s;   --p-peak: 0.40; }
.p5  { width: 4px; height: 4px; top: 32%; left: 74%; animation-duration: 10s; animation-delay: 3s;   --p-peak: 0.90; }
.p6  { width: 5px; height: 5px; top: 48%; left: 88%; animation-duration: 13s; animation-delay: 5s;   --p-peak: 0.60; }
.p7  { width: 3px; height: 3px; top: 22%; left: 14%; animation-duration: 8s;  animation-delay: 1.5s; --p-peak: 0.30; }
.p8  { width: 8px; height: 8px; top: 60%; left: 30%; animation-duration: 15s; animation-delay: 3.5s; --p-peak: 0.70; }
.p9  { width: 4px; height: 4px; top: 35%; left: 47%; animation-duration: 12s; animation-delay: 0.5s; --p-peak: 0.95; }
.p10 { width: 5px; height: 5px; top: 26%; left: 64%; animation-duration: 10.5s; animation-delay: 2.8s; --p-peak: 0.45; }
.p11 { width: 3px; height: 3px; top: 44%; left: 80%; animation-duration: 13.5s; animation-delay: 4.2s; --p-peak: 0.85; }
.p12 { width: 7px; height: 7px; top: 50%; left: 94%; animation-duration: 11s; animation-delay: 1.2s; --p-peak: 0.35; }
.p13 { width: 3px; height: 3px; top: 18%; left: 10%; animation-duration: 9.5s; animation-delay: 5.1s; --p-peak: 0.90; }
.p14 { width: 6px; height: 6px; top: 58%; left: 26%; animation-duration: 14.5s; animation-delay: 2.2s; --p-peak: 0.55; }
.p15 { width: 4px; height: 4px; top: 30%; left: 38%; animation-duration: 12.5s; animation-delay: 3.8s; --p-peak: 0.75; }
.p16 { width: 7px; height: 7px; top: 42%; left: 52%; animation-duration: 10s; animation-delay: 0.8s; --p-peak: 0.95; }
.p17 { width: 3px; height: 3px; top: 24%; left: 68%; animation-duration: 15s; animation-delay: 4.5s; --p-peak: 0.25; }
.p18 { width: 5px; height: 5px; top: 65%; left: 84%; animation-duration: 13s; animation-delay: 1.8s; --p-peak: 0.80; }
.p19 { width: 4px; height: 4px; top: 37%; left: 12%; animation-duration: 11.5s; animation-delay: 3.1s; --p-peak: 0.40; }
.p20 { width: 6px; height: 6px; top: 29%; left: 28%; animation-duration: 14s; animation-delay: 5.5s; --p-peak: 0.90; }
.p21 { width: 3px; height: 3px; top: 46%; left: 44%; animation-duration: 8.5s; animation-delay: 2.4s; --p-peak: 0.50; }
.p22 { width: 5px; height: 5px; top: 54%; left: 60%; animation-duration: 12.8s; animation-delay: 0.3s; --p-peak: 0.85; }
.p23 { width: 4px; height: 4px; top: 33%; left: 76%; animation-duration: 10.2s; animation-delay: 4.7s; --p-peak: 0.30; }
.p24 { width: 8px; height: 8px; top: 62%; left: 90%; animation-duration: 17s; animation-delay: 1.1s; --p-peak: 0.70; }
.p25 { width: 3px; height: 3px; top: 21%; left: 18%; animation-duration: 9.2s; animation-delay: 3.4s; --p-peak: 0.95; }
.p26 { width: 5px; height: 5px; top: 41%; left: 34%; animation-duration: 13.8s; animation-delay: 5.8s; --p-peak: 0.45; }
.p27 { width: 4px; height: 4px; top: 49%; left: 50%; animation-duration: 11.2s; animation-delay: 2.7s; --p-peak: 0.90; }
.p28 { width: 6px; height: 6px; top: 57%; left: 66%; animation-duration: 15.5s; animation-delay: 0.9s; --p-peak: 0.35; }
.p29 { width: 3px; height: 3px; top: 16%; left: 82%; animation-duration: 8.8s; animation-delay: 4.1s; --p-peak: 0.80; }
.p30 { width: 5px; height: 5px; top: 36%; left: 96%; animation-duration: 12.2s; animation-delay: 1.6s; --p-peak: 0.60; }
.p31 { width: 4px; height: 4px; top: 23%; left: 4%;  animation-duration: 10s; animation-delay: 2.1s; --p-peak: 0.85; }
.p32 { width: 7px; height: 7px; top: 51%; left: 16%; animation-duration: 15s; animation-delay: 0.4s; --p-peak: 0.40; }
.p33 { width: 3px; height: 3px; top: 34%; left: 31%; animation-duration: 11s; animation-delay: 3.7s; --p-peak: 0.95; }
.p34 { width: 5px; height: 5px; top: 43%; left: 45%; animation-duration: 13s; animation-delay: 1.9s; --p-peak: 0.25; }
.p35 { width: 4px; height: 4px; top: 27%; left: 59%; animation-duration: 9.8s; animation-delay: 4.9s; --p-peak: 0.70; }
.p36 { width: 6px; height: 6px; top: 61%; left: 73%; animation-duration: 14s; animation-delay: 2.6s; --p-peak: 0.90; }
.p37 { width: 3px; height: 3px; top: 39%; left: 85%; animation-duration: 12s; animation-delay: 0.7s; --p-peak: 0.45; }
.p38 { width: 5px; height: 5px; top: 47%; left: 93%; animation-duration: 10.5s; animation-delay: 5.2s; --p-peak: 0.80; }
.p39 { width: 4px; height: 4px; top: 19%; left: 22%; animation-duration: 13.2s; animation-delay: 3.3s; --p-peak: 0.35; }
.p40 { width: 7px; height: 7px; top: 56%; left: 37%; animation-duration: 16s; animation-delay: 1.4s; --p-peak: 0.85; }
.p41 { width: 3px; height: 3px; top: 31%; left: 54%; animation-duration: 9.1s; animation-delay: 4.0s; --p-peak: 0.95; }
.p42 { width: 5px; height: 5px; top: 45%; left: 69%; animation-duration: 11.7s; animation-delay: 2.3s; --p-peak: 0.50; }
.p43 { width: 4px; height: 4px; top: 25%; left: 78%; animation-duration: 14.1s; animation-delay: 0.1s; --p-peak: 0.75; }
.p44 { width: 6px; height: 6px; top: 63%; left: 89%; animation-duration: 12.6s; animation-delay: 3.9s; --p-peak: 0.30; }
.p45 { width: 3px; height: 3px; top: 17%; left: 97%; animation-duration: 8.9s; animation-delay: 1.7s; --p-peak: 0.90; }

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0) scale(0.3);
    opacity: 0;
    filter: blur(4px);
  }
  20% {
    opacity: calc(var(--p-peak, 0.8) * 0.5);
    filter: blur(1.5px);
  }
  45% {
    opacity: var(--p-peak, 0.8);
    filter: blur(0px);
    transform: translateY(-80px) translateX(20px) scale(1);
  }
  75% {
    opacity: var(--p-peak, 0.8);
    filter: blur(0px);
  }
  90% {
    opacity: calc(var(--p-peak, 0.8) * 0.4);
    filter: blur(2px);
  }
  100% {
    transform: translateY(-185px) translateX(50px) scale(1.4);
    opacity: 0;
    filter: blur(5px);
  }
}

/* Kick Drum Monogram Seal Glow */
.hero__kick-glow {
  position: absolute;
  top: 68%;
  left: 49.3%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 3, 17, 0.45) 0%, rgba(166, 3, 17, 0.1) 50%, transparent 75%);
  filter: blur(25px);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  animation: kickGlowPulse 5s ease-in-out infinite alternate;
}

@keyframes kickGlowPulse {
  0% { opacity: 0.35; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1.2); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,6,7,0.45) 0%, rgba(6,6,7,0.1) 40%, rgba(6,6,7,0.85) 88%, #060607 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 48px 90px;
  max-width: 1100px;
}

.hero .kicker { margin-bottom: 22px; }
.hero .kicker__bar { width: 56px; }
.hero .kicker__label {
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--color-silver);
}

/* Hero Title styling */
.hero__title {
  margin: 0 0 20px;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
}

.hero__title-line {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.95);
  transition: text-shadow 0.4s ease, transform 0.3s ease;
}

.hero__title-line:hover {
  text-shadow: 0 0 30px rgba(166, 3, 17, 0.85), 0 0 60px rgba(166, 3, 17, 0.4), 0 6px 25px rgba(0, 0, 0, 0.95);
  transform: translateY(-2px);
}
.hero__desc {
  margin: 0 0 34px;
  max-width: 620px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-body);
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__toggle-info-btn { display: none; }

/* Hero intro sequence — plays once on load, not scroll-triggered */
@media (prefers-reduced-motion: no-preference) {
  @keyframes heroBarGrow {
    from { opacity: 0; transform: scaleX(0); }
    to { opacity: 1; transform: scaleX(1); }
  }
  @keyframes heroLineIn {
    from { opacity: 0; transform: translateY(28px) scale(0.98); filter: blur(6px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  }

  .hero .kicker__bar {
    transform-origin: left center;
    animation: heroBarGrow 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.1s;
  }
  .hero .kicker__label {
    display: inline-block;
    animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.3s;
  }
  .hero__title-line {
    display: inline-block;
    animation: heroLineIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero__title-line--1 { animation-delay: 0.45s; }
  .hero__title-line--2 { animation-delay: 0.62s; }
  .hero__desc {
    animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.9s;
  }
  .hero__ctas {
    animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 1.05s;
  }
}

/* ==========================================================================
   Section base
   ========================================================================== */
.section {
  padding: var(--section-pad-y) var(--section-pad-x);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ==========================================================================
   Standardized Section Header Component
   ========================================================================== */
.section__header {
  padding: 0;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}
.section__title {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 10px 0 12px;
  line-height: 1.1;
  font-family: var(--font-sans);
}
.section__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-silver);
  margin: 0;
  max-width: 640px;
  font-weight: 400;
}

/* ==========================================================================
   Carreira
   ========================================================================== */
#carreira { position: relative; }
#carreira::before,
#carreira::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
}
#carreira::before {
  background: url('../assets/career_bg.jpg') center 25% / cover no-repeat;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, transparent 0%, black 26%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 26%, black 85%, transparent 100%);
}
#carreira::after {
  background: linear-gradient(180deg, rgba(6,6,7,0.75) 0%, rgba(10,10,11,0.4) 18%, rgba(10,10,11,0.72) 45%, rgba(10,10,11,0.5) 100%);
}
.career__content { position: relative; z-index: 1; }

.career__grid {
  display: grid;
  grid-template-columns: minmax(224px, 364px) 1fr;
  gap: 64px;
  align-items: start;
}
.career__media {
  position: static;
}
.career__frame {
  position: relative;
  aspect-ratio: 1400/2275;
  overflow: hidden;
}
.career__portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(180deg, black 0%, black 88%, transparent 99%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 88%, transparent 99%);
}

.career__text p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-body);
}
.career__text strong { color: #fff; }

/* Expandable long-form story */
.career-story { position: relative; }
.career-story__inner {
  position: relative;
  overflow: hidden;
  max-height: 555px;
  transition: max-height 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.career-story.is-expanded .career-story__inner { max-height: 3000px; }
.career-story__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,11,0.92) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 2;
}
.career-story.is-expanded .career-story__fade { opacity: 0; }

.career-story__quote {
  margin: 30px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--color-primary);
}
.career-story__quote::before {
  content: '\201C';
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 0.6;
  margin-bottom: 6px;
}
.career-story__quote {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: #fff;
}

.story-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-sans);
}
.story-toggle__icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}
.story-toggle__icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-primary);
  transition: background 0.3s ease;
}
.story-toggle__icon span:nth-child(1) { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.story-toggle__icon span:nth-child(2) { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.story-toggle:hover .story-toggle__icon { background: var(--color-primary); }
.story-toggle:hover .story-toggle__icon span { background: #fff; }
.story-toggle[aria-expanded="true"] .story-toggle__icon { transform: rotate(45deg); }
.story-toggle__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.2s ease;
}
.story-toggle:hover .story-toggle__label { color: #fff; }

.career__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  margin-top: 36px;
}
.career__stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 24px 18px;
  backdrop-filter: blur(10px);
}
.career__stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #ff384a;
  text-shadow: 0 0 16px rgba(255, 56, 74, 0.45);
  line-height: 1;
}
.career__stat-label {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

/* Horizontal timeline — spans the section width, sits below the photo/text grid */
.timeline__heading {
  margin: 64px 0 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: #fff;
  text-transform: uppercase;
}
.timeline {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 22px;
  margin-top: 28px;
  padding: 6px 4px 140px;
}
.timeline__item {
  position: relative;
  flex: 1 1 150px;
  max-width: 220px;
  cursor: pointer;
  outline: none;
}
/* connector bridging this item's dot to the next one — only safe to draw
   once the row is guaranteed not to wrap (see ≥960px override below) */
.timeline__item::before { display: none; }
.timeline__dot {
  position: relative;
  width: 12px;
  height: 12px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(166,3,17,0.2);
  transition: transform 0.3s ease;
}
.timeline__item:hover .timeline__dot,
.timeline__item:focus-within .timeline__dot,
.timeline__item.is-open .timeline__dot {
  transform: scale(1.25);
}
.timeline__year {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-primary);
}
.timeline__title {
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
  transition: color 0.3s ease;
  overflow-wrap: break-word;
}
.timeline__item:hover .timeline__title,
.timeline__item:focus-within .timeline__title,
.timeline__item.is-open .timeline__title {
  color: var(--color-primary);
}
.timeline__desc {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 250px;
  margin-top: 8px;
  padding: 14px 16px;
  background: rgba(14, 15, 18, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-secondary);
  overflow-wrap: anywhere;
  word-break: break-word;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}
.timeline__item:first-child .timeline__desc { left: 0; transform: translateY(-6px); }
.timeline__item:first-child:hover .timeline__desc,
.timeline__item:first-child:focus-within .timeline__desc,
.timeline__item:first-child.is-open .timeline__desc { transform: translateY(0); }
.timeline__item:last-child .timeline__desc { left: auto; right: 0; transform: translateY(-6px); }
.timeline__item:last-child:hover .timeline__desc,
.timeline__item:last-child:focus-within .timeline__desc,
.timeline__item:last-child.is-open .timeline__desc { transform: translateY(0); }
.timeline__item:hover .timeline__desc,
.timeline__item:focus-within .timeline__desc,
.timeline__item.is-open .timeline__desc {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Mobile-only toggle controls — hidden on Desktop (>= 769px) */
@media (min-width: 769px) {
  .timeline__toggle-btn,
  .specs-toggle-icon {
    display: none !important;
  }
  .drumstick-specs__toggle-btn {
    cursor: default;
  }
  .drumstick-specs__collapsible {
    display: block !important;
    opacity: 1 !important;
  }
}

@media (min-width: 960px) {
  .timeline {
    flex-wrap: nowrap;
    padding-bottom: 140px;
  }
  .timeline__item {
    flex: 1 1 0;
    max-width: none;
  }
  /* safe to draw connectors now that the row is guaranteed not to wrap */
  .timeline__item:not(:last-child)::before {
    content: '';
    display: block;
    position: absolute;
    left: 12px;
    top: 5px;
    right: -28px;
    height: 2px;
    background: var(--color-border);
  }
}

/* ==========================================================================
   Produtos / baquetas
   ========================================================================== */
.products {
  padding: var(--section-pad-y) 0;
  background: radial-gradient(circle at 50% 30%, rgba(166, 3, 17, 0.12) 0%, rgba(10, 10, 11, 0) 70%), #0a0a0b;
}
.products__subtitle {
  margin: 0 0 56px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

/* Container dos Showcases de Baquetas com 3D Loop */
.drumsticks-showcase-container {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-bottom: 48px;
}

.drumstick-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.drumstick-showcase--reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

@media (max-width: 900px) {
  .drumstick-showcase,
  .drumstick-showcase--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.drumstick-showcase__stage {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  perspective: 1000px;
}

.drumstick-showcase__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.drumstick-showcase__logo {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

.drumstick-showcase__title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}

/* Logo Branca de Fundo em Baixa Opacidade no Fundo das Baquetas */
.drumstick-showcase__bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(240px, 25vw, 340px);
  height: auto;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  opacity: 0.12;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.05));
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.drumstick-showcase:hover .drumstick-showcase__bg-logo {
  opacity: 0.2;
  transform: translate(-50%, -50%) scale(1.05);
}

.drumstick-showcase__3d-stage {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  z-index: 3;
}

.drumstick-showcase__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  animation: auraPulseLoop 6s ease-in-out infinite alternate;
}

.drumstick-showcase__glow--wb {
  background: radial-gradient(circle, rgba(220, 10, 30, 0.45) 0%, rgba(166, 3, 17, 0) 70%);
}

.drumstick-showcase__glow--fhd {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
}

@keyframes auraPulseLoop {
  0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}

/* Animação 3D Contínua em Loop Sem Precisar Interagir! */
.drumstick-3d-loop {
  max-width: 420px;
  width: 100%;
  height: auto;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: transform, filter;
  animation: drumstickContinuousLoop3D 7s ease-in-out infinite;
}

.drumstick-3d-loop--fhd {
  animation-delay: -3.5s;
}

@keyframes drumstickContinuousLoop3D {
  0% {
    transform: rotateY(-18deg) rotateX(10deg) rotateZ(5deg) translateY(0px) translateZ(20px);
    filter: drop-shadow(-12px 20px 25px rgba(0,0,0,0.85));
  }
  50% {
    transform: rotateY(18deg) rotateX(-8deg) rotateZ(2deg) translateY(-16px) translateZ(70px);
    filter: drop-shadow(15px 30px 40px rgba(0,0,0,0.95));
  }
  100% {
    transform: rotateY(-18deg) rotateX(10deg) rotateZ(5deg) translateY(0px) translateZ(20px);
    filter: drop-shadow(-12px 20px 25px rgba(0,0,0,0.85));
  }
}

/* Card de Especificações na Direita */
.drumstick-showcase__specs-card {
  background: rgba(18, 20, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 36px 32px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 5;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.drumstick-showcase__specs-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.drumstick-showcase__specs-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #fff;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.product-card__rule {
  margin: 24px 0 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.product-card__specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-card__spec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.product-card__spec-value {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.product-card__spec-value span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary);
}

.product-card__list {
  margin: 20px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card__list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-body);
}

.drumstick-showcase--wb .product-card__list li::before { content: '\2014'; color: var(--color-primary); font-weight: 800; }
.drumstick-showcase--fhd .product-card__list li::before { content: '\2014'; color: var(--color-silver); font-weight: 800; }

.product-card__rule {
  margin: 28px 0 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 5;
}

.product-card__specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 5;
}

.product-card__spec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.product-card__spec-value {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.product-card__spec-value span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary);
}

.product-card__list {
  margin: 28px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 5;
}

.product-card__list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-body);
}

.product-card--wb .product-card__list li::before { content: '\2014'; color: var(--color-primary); font-weight: 800; }
.product-card--fhd .product-card__list li::before { content: '\2014'; color: var(--color-silver); font-weight: 800; }

.products__footnote {
  margin: 40px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-secondary);
  text-align: center;
}

/* ==========================================================================
   Música
   ========================================================================== */
.music__intro {
  margin: 0 0 56px;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body);
}
.music__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface-1);
  aspect-ratio: 16/9;
}
.video-card:hover { border-color: var(--color-primary); }
.video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,6,7,0) 55%, rgba(6,6,7,0.6) 100%);
}
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 36px;
  background: #ff0000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 16px rgba(255, 0, 0, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 3;
}
.video-card__play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 3px;
  display: block;
}
.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.15);
  background: #cc0000;
}
.music__cta { margin-top: 36px; text-align: center; }

/* ==========================================================================
   Projetos / PraiseOn
   ========================================================================== */
/* ==========================================================================
   Projetos / PraiseOn 3D Showroom
   ========================================================================== */
.projects-3d {
  position: relative;
  width: 100%;
  padding: 80px 0 40px;
  overflow: hidden;
  background: transparent;
  border-top: none;
}
.project-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: rgba(166, 3, 17, 0.15);
  border: 1px solid rgba(166, 3, 17, 0.35);
  border-radius: 20px;
  text-transform: uppercase;
  vertical-align: middle;
}
.projects-3d__info {
  max-width: 100%;
  margin: 20px 0 30px;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}
.project-hero-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.project-hero-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.project-hero-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%) scale(0.6);
  background: radial-gradient(circle, rgba(220, 10, 30, 0.85) 0%, rgba(166, 3, 17, 0) 70%);
  border-radius: 50%;
  opacity: 0;
  filter: blur(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.project-hero-logo {
  height: 44px;
  width: auto;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
  filter: drop-shadow(0 4px 12px rgba(166, 3, 17, 0.45));
}
.project-hero-logo-wrap:hover .project-hero-logo {
  transform: scale(1.08) translateY(-2px);
  filter: drop-shadow(0 0 25px rgba(220, 10, 30, 0.9)) drop-shadow(0 6px 20px rgba(166, 3, 17, 0.7));
}
.project-hero-logo-wrap:hover .project-hero-logo-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.6);
}
.project-hero-title {
  font-size: clamp(36px, 4.8vw, 54px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.project-hero-desc {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-secondary);
  margin: 0;
  text-align: left;
}
.projects-3d__actions {
  display: flex;
  justify-content: center;
  margin-top: 110px;
  margin-bottom: 28px;
  position: relative;
  z-index: 20;
}
.project-hero-btn {
  border-radius: 30px;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(166, 3, 17, 0.35);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.project-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(166, 3, 17, 0.5);
  background: #c20414;
  color: #fff;
}
/* Pure CSS 3D Perspective Stage Container (Side Cropped) */
.projects-3d__stage {
  position: relative;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 35px;
  overflow: hidden;
  background: transparent;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.projects-3d__perspective {
  perspective: 1000px;
  perspective-origin: 50% 40%;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

/* Grupo Rotacionado no Eixo X */
.projects-3d__group {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transform: rotateX(22deg) translateZ(-40px);
  transform-origin: center bottom;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
}

/* Estilo Base dos Cards (Sem Bordas, Apenas Sombra Natural) */
.praiseon-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
  border: none;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease, filter 0.4s ease;
  background: transparent;
  will-change: transform, opacity, filter;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
}

.praiseon-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  transition: opacity 0.35s ease, transform 0.35s ease;
  will-change: opacity, transform;
  border: none;
}

/* Inner Fade Gradient na Base do Card */
.praiseon-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to bottom, rgba(16, 17, 21, 0) 0%, rgba(16, 17, 21, 0.88) 100%);
  pointer-events: none;
  z-index: 3;
}

/* Card Central (Sem Bordas) */
.praiseon-card--center {
  width: 560px;
  max-width: 52vw;
  z-index: 10;
  border: none;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
  transform: translateZ(40px) scale(1.05);
  opacity: 1;
  filter: none;
}

/* Aura Luminosa Organica Vermelha por tras do Card Central */
.praiseon-card--center::before {
  content: '';
  position: absolute;
  top: -80px; bottom: -80px; left: -80px; right: -80px;
  background: radial-gradient(circle at center, rgba(220, 10, 30, 0.45) 0%, rgba(166, 3, 17, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
  animation: praiseonAuraPulse 4s ease-in-out infinite alternate;
}

@keyframes praiseonAuraPulse {
  0% { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.08); }
}

/* Cards das Pontas (Sem Bordas) */
.praiseon-card--side {
  width: 480px;
  max-width: 38vw;
  z-index: 5;
  opacity: 0.65;
  filter: blur(1.5px) brightness(0.75);
  border: none;
}

.praiseon-card--left {
  margin-right: -120px;
  transform: rotateY(25deg) translateZ(-60px) scale(0.88);
}

.praiseon-card--right {
  margin-left: -120px;
  transform: rotateY(-25deg) translateZ(-60px) scale(0.88);
}

/* Glass Sheen Effect */
.praiseon-card__glass {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 55%);
  pointer-events: none;
  z-index: 2;
}

/* Container de Dots do Carrossel */
.carousel-dots {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
.carousel-dot.is-active {
  background: var(--color-primary);
  transform: scale(1.25);
  box-shadow: 0 0 8px var(--color-primary);
}
.projects-3d__actions {
  margin-top: 16px;
}





/* ==========================================================================
   Contato / footer
   ========================================================================== */
.contact {
  position: relative;
  overflow: hidden;
  padding: 110px 48px 40px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  background: linear-gradient(180deg, #0a0a0b 0%, #120508 100%);
  border-top: 1px solid #1c1d21;
}
.contact__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.28;
  pointer-events: none;
  filter: grayscale(70%) contrast(1.05) brightness(0.88);
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 30%, transparent 78%);
}
.contact__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.6) 0%, rgba(10,10,11,0.25) 45%, rgba(18,5,8,0.95) 100%);
  pointer-events: none;
}
.contact__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.contact__title { margin: 0 0 40px; font-size: clamp(34px, 4.8vw, 60px); font-weight: 800; color: #fff; text-transform: uppercase; }


.contact__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 6;
  margin-top: auto;
  margin-bottom: 8px;
  padding: 80px 0 10px;
}

.contact-card {
  border: none;
  border-radius: 0;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
  transition: transform 0.3s ease;
  flex: 1 1 auto;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: none;
}

.contact-card__icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.contact-card:hover .contact-card__icon-wrap {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 20px rgba(166, 3, 17, 0.5);
}

.contact-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary);
  opacity: 0.8;
}

.contact-card__value {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.contact-card:hover .contact-card__value {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.contact__foot {
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #1c1d21;
  padding-top: 28px;
  flex-wrap: wrap;
}
.contact__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact__brand img { height: 28px; width: auto; }
.contact__copyright { font-size: 12px; color: var(--color-secondary); }
.contact__tagline { font-size: 12px; color: var(--color-muted); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .career__grid { grid-template-columns: 1fr; }
  .career__media { position: static; max-width: 364px; }
  .products__grid { grid-template-columns: 1fr; }
  .product-card__photo { right: -80px; }
  .project-card { grid-template-columns: 1fr; padding: 48px 36px; }
  .project-card__features { margin-top: 8px; }
  .music__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__head { grid-template-columns: 1fr; }
  .contact__portrait { display: none; }
}

@media (max-width: 860px) {
  .nav { padding: 16px 24px; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(6,6,7,0.97);
    backdrop-filter: blur(8px);
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--color-border);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__link { padding: 10px 0; width: 100%; }
  .lang-toggle { margin-top: 8px; }
  .nav__toggle { display: flex; }
}

@media (max-width: 640px) {
  :root {
    --section-pad-x: 24px;
    --section-pad-y: 72px;
  }
  .hero__content { padding: 0 24px 64px; }
  .music__grid { grid-template-columns: 1fr; }
  .career__stats { grid-template-columns: 1fr; }
  .career__stat { border-bottom: 1px solid var(--color-border); }
  .product-card { padding: 36px 24px; }
  .product-card__photo { display: none; }
  .project-card { padding: 40px 24px; }
  .contact { padding: 72px 24px 40px; }
  .contact__foot { flex-direction: column; align-items: flex-start; }
}

/* Botão de Abrir Galeria HD no Palco 3D */
.drumstick-showcase__stage {
  cursor: pointer;
}

.drumstick-showcase__gallery-btn {
  align-self: flex-start;
  margin-top: 12px;
  margin-right: auto;
  margin-left: 0;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.drumstick-showcase__gallery-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(166, 3, 17, 0.4);
}

/* Lightbox Gallery Modal */
.drumstick-lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.drumstick-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drumstick-lightbox__backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 7, 9, 0.95);
  backdrop-filter: blur(20px);
}

.drumstick-lightbox__content {
  position: relative;
  width: 92%;
  max-width: 1080px;
  max-height: 90vh;
  background: rgba(16, 18, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
  z-index: 2;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.drumstick-lightbox.is-open .drumstick-lightbox__content {
  transform: scale(1);
}

.drumstick-lightbox__close {
  position: relative;
  top: auto;
  right: auto;
  font-size: 24px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}

.drumstick-lightbox__close:hover {
  color: #ffffff;
  background: #ff384a;
  border-color: #ff384a;
  transform: scale(1.1);
}

.drumstick-lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.drumstick-lightbox__title-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.drumstick-lightbox__title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}

.drumstick-lightbox__counter {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(166, 3, 17, 0.15);
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(166, 3, 17, 0.3);
  white-space: nowrap;
}

.drumstick-lightbox__stage {
  position: relative;
  width: 100%;
  height: 480px;
  max-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

/* Watermark Logo no Fundo do Modal da Galeria */
.drumstick-lightbox__bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(260px, 35vw, 420px);
  height: auto;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  opacity: 0.08;
  filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.05));
  transition: opacity 0.4s ease;
}

/* Badge de Dica de Zoom - Removido a pedido do usuario */
.drumstick-lightbox__zoom-hint {
  display: none !important;
}

.drumstick-lightbox__main-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 5;
  cursor: zoom-in;
  overflow: hidden;
}

.drumstick-lightbox__main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.85));
  transition: opacity 0.3s ease, transform 0.1s ease-out;
  transform-origin: center center;
  will-change: transform, transform-origin;
}

.drumstick-lightbox__nav {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
}

.drumstick-lightbox__nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.drumstick-lightbox__caption {
  display: none;
}

.drumstick-lightbox__thumbs {
  display: flex;
  gap: 14px;
  justify-content: center;
  width: 100%;
  padding: 14px 12px;
  margin-top: 8px;
  overflow-x: auto;
}

.drumstick-lightbox__thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.drumstick-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.drumstick-lightbox__thumb.is-active,
.drumstick-lightbox__thumb:hover {
  opacity: 1;
  border-color: var(--color-primary);
  box-shadow: 0 0 14px rgba(166, 3, 17, 0.5);
  transform: translateY(-2px);
}

/* ==========================================================================
   Responsive & Mobile Design System
   ========================================================================== */

@media (max-width: 768px) {
  /* Navigation Bar Mobile */
  .nav {
    padding: 14px 20px;
  }
  .nav__brand-name {
    font-size: 13px;
    letter-spacing: 0.12em;
  }
  .nav__brand img {
    width: 24px;
    height: 24px;
  }

  /* Mobile Hero Top Layout (Texto no Topo, Botões no Bottom - 100vh Layout) */
  .hero {
    min-height: 100vh;
    padding-top: 105px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
  }

  /* Full-Height Subtle Vignette and Soft Backdrop Blur Overlay */
  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 7, 9, 0.45) 0%, rgba(6, 7, 9, 0.4) 50%, rgba(6, 7, 9, 0.88) 100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease;
    z-index: 2;
  }

  .hero.show-text .hero__overlay {
    opacity: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  /* Hero Content - Text at Top, Buttons at Bottom */
  .hero__content {
    position: relative;
    z-index: 15;
    padding: 0 24px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .hero.show-text .hero__content {
    opacity: 1;
    pointer-events: auto;
  }

  .hero__ctas {
    margin-top: auto;
    margin-bottom: 56px;
  }

  /* Staggered Text & Button Entrance Animations */
  .hero .kicker,
  .hero__title,
  .hero__desc,
  .hero__ctas {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(6px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .hero.show-text .kicker {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 0.08s;
  }

  .hero.show-text .hero__title {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 0.2s;
  }

  .hero.show-text .hero__desc {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 0.32s;
  }

  .hero.show-text .hero__ctas {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 0.44s;
  }

  /* Floating INÍCIO Badge Button on Mobile */
  .hero__toggle-info-btn {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(18, 20, 24, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .hero.show-text .hero__toggle-info-btn {
    background: rgba(18, 20, 24, 0.9);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  }

  .hero .kicker {
    margin-bottom: 14px;
    gap: 12px;
  }
  .hero .kicker__bar {
    width: 32px;
    flex-shrink: 0;
  }
  .hero .kicker__label {
    font-size: 10px;
    letter-spacing: 0.16em;
    line-height: 1.35;
  }

  .hero__title {
    margin: 0 0 14px;
    font-size: clamp(32px, 9.5vw, 50px);
    line-height: 0.95;
    letter-spacing: -0.01em;
  }

  .hero__desc {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 24px;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.85);
  }

  .hero__ctas {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero__ctas .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
    letter-spacing: 0.12em;
    justify-content: center;
  }

  .hero__kick-glow {
    top: 75%;
    width: 280px;
    height: 280px;
  }

  /* General Layout & Section Padding Mobile */
  .section {
    padding: 60px 0;
  }
  .container,
  .career__content {
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
  }
  .section__header {
    padding: 0 24px;
    margin-bottom: 28px;
    width: 100%;
    box-sizing: border-box;
  }
  .section__title {
    font-size: clamp(24px, 7vw, 32px);
    font-weight: 900;
    margin-top: 6px;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.12;
    color: #ffffff;
  }
  .section__subtitle {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--color-silver);
    margin: 0;
  }

  /* Section 01: Minha História Mobile (.career) */
  .career__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .career__frame {
    aspect-ratio: 1400/2275;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 12px;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }
  .career__portrait {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .career-story__inner {
    max-height: 340px;
  }
  .career__text p {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.88);
  }
  .career-story__quote {
    margin: 22px 0;
    padding: 0 0 0 16px;
    font-size: 14px;
    line-height: 1.55;
  }
  .career__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    margin-top: 28px;
  }
  .career__stat {
    padding: 14px 6px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
  }
  .career__stat-num {
    font-size: 24px;
    font-weight: 900;
    color: #ff384a;
    text-shadow: 0 0 14px rgba(255, 56, 74, 0.5);
    margin-bottom: 6px;
  }
  .career__stat-label {
    font-size: 9.5px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
  }
  .timeline__heading {
    font-size: 20px;
    margin-top: 48px;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
  }

  /* Mobile Vertical Timeline Fix with Expandable Toggle (+) */
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
    padding: 0 0 20px 20px;
    position: relative;
  }

  /* Continuous Red Vertical Line connecting all timeline nodes */
  .timeline::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 24px;
    left: 5px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary) 0%, rgba(166, 3, 17, 0.3) 100%);
    display: block;
  }

  .timeline__item {
    position: relative;
    display: block;
    flex: none;
    max-width: 100%;
    padding-left: 20px;
    cursor: pointer;
  }

  .timeline__item::before {
    display: none;
  }

  /* Red Dot Node on the vertical line */
  .timeline__dot {
    position: absolute;
    top: 6px;
    left: -20px;
    width: 12px;
    height: 12px;
    margin-bottom: 0;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(166, 3, 17, 0.8);
    z-index: 2;
  }

  .timeline__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .timeline__toggle-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    transition: all 0.3s ease;
    padding: 0;
    cursor: pointer;
  }

  .timeline__item.is-open .timeline__toggle-btn {
    background: #ff384a;
    border-color: #ff384a;
    color: #ffffff;
    transform: rotate(45deg);
  }

  .timeline__year {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #ff384a;
    margin-bottom: 2px;
  }

  .timeline__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
    margin-top: 0;
  }

  /* Inline Description Card on Mobile — HIDDEN by default until (+) clicked */
  .timeline__desc {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    display: none;
    opacity: 0;
    pointer-events: auto;
    width: 100%;
    margin-top: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    box-shadow: none;
    transition: opacity 0.3s ease;
  }

  .timeline__item.is-open .timeline__desc {
    display: block;
    opacity: 1;
  }

  /* Section 02: Baquetas Signature Mobile (Opção 1: Card de Luxo Minimalista Limpo) */
  @media (max-width: 768px) {
    .drumsticks-showcase-container {
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      gap: 36px;
      box-sizing: border-box;
      margin-top: 10px;
    }

    .drumstick-showcase {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 24px 20px;
      background: rgba(18, 20, 24, 0.85) !important;
      border: 1px solid rgba(255, 255, 255, 0.1) !important;
      border-radius: 24px;
      backdrop-filter: blur(20px) !important;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
      box-sizing: border-box;
      position: relative;
    }

    .drumstick-showcase__specs-card,
    .drumstick-showcase__stage {
      display: contents !important;
    }

    /* 1. TOP: Logo & Title */
    .drumstick-showcase__card-header {
      order: 1 !important;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 0;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .drumstick-showcase__logo {
      height: 32px;
      width: auto;
    }

    .drumstick-showcase__title {
      font-size: 19px;
      font-weight: 900;
      color: #ffffff;
      margin: 0;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    /* 2. CENTER: 3D Floating Drumstick Image Stage */
    .drumstick-showcase__3d-stage {
      order: 2 !important;
      position: relative;
      width: 100%;
      height: 220px;
      min-height: 210px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 4px 0;
    }

    .drumstick-showcase__bg-logo {
      width: 220px;
      opacity: 0.12;
    }

    /* 3. SPECS GRID: Clean 2-Column Specs Always Visible & Elegant */
    .drumstick-specs__toggle-btn {
      display: none !important; /* Hide cramped accordion toggle on mobile! */
    }

    .drumstick-specs__collapsible {
      order: 3 !important;
      display: block !important;
      opacity: 1 !important;
      max-height: none !important;
      margin-top: 0 !important;
      width: 100%;
    }

    .product-card__specs-grid {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 0 6px;
      background: transparent !important;
      border: none !important;
      border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
      border-radius: 0 !important;
    }

    .product-card__spec-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: var(--color-silver);
      text-transform: uppercase;
    }

    .product-card__spec-value {
      font-size: 18px;
      font-weight: 800;
      color: #ffffff;
      margin-top: 4px;
      white-space: nowrap;
    }

    .product-card__spec-value span {
      font-size: 11.5px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.55);
      display: block;
      margin-top: 2px;
    }

    .product-card__rule {
      display: none;
    }

    .product-card__list {
      margin-top: 14px;
      gap: 8px;
    }

    .product-card__list li {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.85);
    }

    /* 4. BASE CTA BUTTON: Full-Width Prominent "Ver Galeria em HD" */
    .drumstick-showcase__gallery-btn {
      order: 4 !important;
      position: static !important;
      transform: none !important;
      width: 100%;
      justify-content: center;
      margin-top: 6px;
      padding: 12px 18px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
      transition: all 0.3s ease;
    }

    .drumstick-showcase__gallery-btn:active {
      transform: scale(0.98) !important;
      background: var(--color-primary);
      border-color: var(--color-primary);
    }
  }

  .drumstick-showcase__specs-title {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .specs-toggle-icon,
  .timeline__toggle-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    flex-shrink: 0;
  }

  .specs-toggle-icon span,
  .timeline__toggle-btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ffffff;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  }

  .specs-toggle-icon span:nth-child(1),
  .timeline__toggle-btn span:nth-child(1) {
    width: 11px;
    height: 2px;
    transform: translate(-50%, -50%);
  }

  .specs-toggle-icon span:nth-child(2),
  .timeline__toggle-btn span:nth-child(2) {
    width: 2px;
    height: 11px;
    transform: translate(-50%, -50%);
  }

  /* Animated Morphing + into × */
  .drumstick-showcase__specs-card.is-open .specs-toggle-icon,
  .timeline__item.is-open .timeline__toggle-btn {
    background: #ff384a;
    border-color: #ff384a;
    box-shadow: 0 0 14px rgba(255, 56, 74, 0.6);
    transform: rotate(180deg) scale(1.06);
  }

  .drumstick-showcase__specs-card.is-open .specs-toggle-icon span:nth-child(2),
  .timeline__item.is-open .timeline__toggle-btn span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  /* Smooth Collapsible Accordion Transition */
  .drumstick-specs__collapsible {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-top 0.35s ease;
  }

  .drumstick-showcase__specs-card.is-open .drumstick-specs__collapsible {
    max-height: 500px;
    opacity: 1;
    margin-top: 14px;
  }

  /* Modal Lightbox Gallery Mobile */
  .drumstick-lightbox {
    padding: 12px;
  }
  .drumstick-lightbox__content {
    padding: 18px 14px;
  }
  .drumstick-lightbox__stage {
    height: 300px;
    max-height: 45vh;
  }
  .drumstick-lightbox__nav {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .drumstick-lightbox__title {
    font-size: 16px;
  }

  /* Section 03: Músicas & Vídeos Mobile (Hero Featured Top Video + 2-Column Grid Below) */
  .music__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .video-card:first-child {
    grid-column: 1 / -1;
  }

  .video-card:first-child .video-card__play {
    width: 48px;
    height: 32px;
    border-radius: 8px;
  }

  .video-card:first-child .video-card__play::after {
    border-width: 7px 0 7px 12px;
    margin-left: 3px;
  }

  .video-card:first-child .video-card__title {
    font-size: 14.5px;
    font-weight: 700;
  }

  .video-card:first-child .video-card__sub {
    font-size: 11.5px;
  }

  .video-card__play {
    width: 36px;
    height: 24px;
    border-radius: 6px;
  }

  .video-card__play::after {
    border-width: 5px 0 5px 9px;
    margin-left: 2px;
  }

  .video-card__info {
    padding: 10px 10px;
  }

  .video-card__title {
    font-size: 12.5px;
  }

  .video-card__sub {
    font-size: 10.5px;
  }

  /* Section 04: PraiseOn Mobile Even Vertical Distribution */
  .projects-3d {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0 24px;
    box-sizing: border-box;
    scroll-snap-align: start;
  }
  .projects-3d__info {
    padding: 0 24px;
    margin: 20px 0 12px;
    box-sizing: border-box;
  }
  .project-hero-brand {
    gap: 12px;
    margin-bottom: 12px;
  }
  .project-hero-logo {
    height: 36px;
  }
  .project-hero-title {
    font-size: 26px;
    gap: 10px;
  }
  .project-hero-desc {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
  }
  
  /* Mobile Stage Layout - Clear & Prominent App Showcase */
  .projects-3d__stage {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
    margin-top: 12px;
    padding: 0 24px;
    box-sizing: border-box;
  }
  .projects-3d__perspective {
    perspective: none;
    height: auto;
  }
  .projects-3d__group {
    display: block;
    position: relative;
    height: auto;
    min-height: 220px;
  }
  .praiseon-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    transform: none !important;
    opacity: 1;
    display: block;
    margin-bottom: 0;
  }
  .praiseon-card--side {
    display: none;
  }
  .praiseon-card img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* Reset Giant 110px Desktop Margin */
  .projects-3d__actions {
    padding: 0 24px;
    margin-top: 28px;
    margin-bottom: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .project-hero-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }
  .carousel-dots {
    margin-top: 12px;
  }

  /* Section 05: Contato 2-Column Compact Grid + Email Alone at Bottom */
  .contact {
    padding: 60px 0 40px;
  }
  .contact__inner {
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
  }
  .contact__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    margin-top: 28px;
    width: 100%;
  }

  .contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-card:hover,
  .contact-card:active {
    opacity: 0.85;
    transform: translateY(-2px);
  }

  /* E-mail (5th item) alone full width at bottom */
  .contact-card:nth-child(5) {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-top: 6px;
  }

  .contact-card__icon-wrap {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #ff384a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-card__icon-wrap svg {
    width: 18px;
    height: 18px;
  }

  .contact-card__details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
  }

  .contact-card__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-silver);
  }

  .contact-card__value {
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
    word-break: break-word;
  }

  .contact__foot {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .contact__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .contact__copyright {
    font-size: 11.5px;
    color: var(--color-silver);
  }
  .contact__tagline {
    font-size: 11px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding: 0 16px 40px;
  }
  .hero .kicker__label {
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }
  .hero__title {
    font-size: clamp(28px, 8.5vw, 42px);
  }
  .hero__desc {
    font-size: 13px;
    line-height: 1.48;
  }
  .section {
    padding: 48px 0;
  }
  .container {
    padding: 0 16px;
  }
}
