/* ==========================================================================
   BILLY IA — DESIGN SYSTEM & LANDING PAGE STYLES
   Brand Colors:
   - Bark Black:  #16130F (Base / Background)
   - Pinheiro:    #2E3D31 (Brand / Card Surfaces)
   - Walnut:      #5B3E2A (Warmth / Frames / Borders)
   - Luz Quente:  #D99A4E (Highlight / Glow / Amber)
   - Aveia:       #EDE4D2 (Primary Light Text / Light Elements)
   - Voltz:       #E4E93A (CTA Exclusive / High Attention)
   - Signal Green:#86C06A (Digital Accent / Badges / Live Indicator)
   - Terracota:   #B5643C (Secondary Accent / Tags)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Sora:wght@200;300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --color-bark-black: #16130F;
  --color-pinheiro: #2E3D31;
  --color-pinheiro-dark: #1f2a22;
  --color-pinheiro-light: #3d5041;
  --color-walnut: #5B3E2A;
  --color-walnut-glow: rgba(91, 62, 42, 0.4);
  --color-luz-quente: #D99A4E;
  --color-luz-quente-glow: rgba(217, 154, 78, 0.25);
  --color-aveia: #EDE4D2;
  --color-aveia-muted: rgba(237, 228, 210, 0.78);
  --color-aveia-dim: rgba(237, 228, 210, 0.4);
  --color-voltz: #E4E93A;
  --color-voltz-hover: #f2f753;
  --color-voltz-glow: rgba(228, 233, 58, 0.4);
  --color-signal-green: #86C06A;
  --color-signal-green-glow: rgba(134, 192, 106, 0.3);
  --color-terracota: #B5643C;

  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Sora', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  --container-max: 1240px;
  --container-narrow: 860px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bark-black);
  color: var(--color-aveia);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-color: var(--color-bark-black);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

/* Ambient Glow */
.ambient-glow-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 61, 49, 0.5) 0%, rgba(22, 19, 15, 0) 75%);
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--color-aveia);
  letter-spacing: -0.02em;
}

p {
  color: var(--color-aveia-muted);
  font-size: 1.0625rem;
  font-weight: 300;
}

.mono-text {
  font-family: var(--font-mono);
}

.highlight-amber {
  color: var(--color-luz-quente);
}

.highlight-voltz {
  color: var(--color-voltz);
}

.highlight-green {
  color: var(--color-signal-green);
}

.highlight-terracota {
  color: var(--color-terracota);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.75rem;
  position: relative;
  z-index: 2;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-walnut) 50%, transparent 100%);
  opacity: 0.6;
}

/* HEADER */
.header {
  padding: 1rem 0;
  position: relative;
  z-index: 20;
}

.header-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.badge-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(46, 61, 49, 0.6);
  border: 1px solid rgba(134, 192, 106, 0.35);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-aveia);
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 9px;
  height: 9px;
  background-color: var(--color-signal-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-signal-green);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(134, 192, 106, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(134, 192, 106, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(134, 192, 106, 0); }
}

/* HERO SECTION WITH STUDIO 1.PNG FULL-HEIGHT BACKGROUND */
.hero-full-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 2rem 0 4.5rem;
  overflow: hidden;
  background-color: var(--color-bark-black);
}

.hero-bg-photo-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-bg-fade-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, 
    var(--color-bark-black) 0%, 
    var(--color-bark-black) 35%, 
    rgba(22, 19, 15, 0.85) 60%, 
    rgba(22, 19, 15, 0.3) 85%, 
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-bg-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(0deg, var(--color-bark-black) 0%, rgba(22, 19, 15, 0.8) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-bg-amber-glow {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-luz-quente-glow) 0%, rgba(46, 61, 49, 0.25) 50%, transparent 75%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-content-col {
  position: relative;
  z-index: 10;
  max-width: 690px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-aveia);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-title {
  font-size: 2.75rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-aveia);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-aveia-muted);
  margin-bottom: 2.25rem;
  max-width: 620px;
}

/* Event Pill */
.hero-event-pill {
  background: linear-gradient(135deg, rgba(46, 61, 49, 0.78) 0%, rgba(31, 42, 34, 0.92) 100%);
  border: 1px solid var(--color-walnut);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  max-width: 620px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.event-pill-icon {
  font-size: 1.75rem;
  background: rgba(217, 154, 78, 0.15);
  border: 1px solid var(--color-luz-quente);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-pill-text {
  flex-grow: 1;
}

.event-pill-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-aveia);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.event-pill-date {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--color-luz-quente);
  font-weight: 600;
}

.event-pill-subtext {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-signal-green);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Mini Countdown */
.countdown-mini {
  display: flex;
  gap: 0.4rem;
}

.cd-item {
  background: rgba(22, 19, 15, 0.85);
  border: 1px solid rgba(237, 228, 210, 0.15);
  border-radius: 6px;
  padding: 0.3rem 0.5rem;
  text-align: center;
  min-width: 44px;
}

.cd-item span {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-voltz);
  display: block;
  line-height: 1;
}

.cd-item small {
  font-size: 0.6rem;
  color: var(--color-aveia-muted);
  text-transform: uppercase;
}

/* CTA WRAPPER & NEON GLOW PULSE ANIMATION */
@keyframes voltzNeonPulse {
  0% {
    box-shadow: 0 0 25px rgba(228, 233, 58, 0.4), 0 8px 24px rgba(0, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 45px rgba(228, 233, 58, 0.8), 0 0 65px rgba(228, 233, 58, 0.4), 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 25px rgba(228, 233, 58, 0.4), 0 8px 24px rgba(0, 0, 0, 0.4);
  }
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--color-voltz);
  color: #110e0a;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 1.2rem 2.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  animation: voltzNeonPulse 2.8s infinite ease-in-out;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  background-color: var(--color-voltz-hover);
  transform: translateY(-3px) scale(1.02);
  color: #000;
}

.btn-cta svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.cta-microcopy {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-aveia-muted);
  margin-top: 0.85rem;
}

.hero-qualify-microcopy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-luz-quente);
  margin-top: 0.75rem;
  background: rgba(217, 154, 78, 0.1);
  border: 1px solid rgba(217, 154, 78, 0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}

/* BLOCO 2 — REFRAME SECTION */
.reframe-section {
  background: linear-gradient(180deg, var(--color-bark-black) 0%, var(--color-pinheiro-dark) 50%, var(--color-bark-black) 100%);
  padding: 6rem 0;
}

.reframe-card {
  background: rgba(46, 61, 49, 0.45);
  border: 1px solid var(--color-walnut);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  position: relative;
}

.reframe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-walnut), var(--color-luz-quente), var(--color-voltz));
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.reframe-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.reframe-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-aveia);
}

.reframe-header .sub-head {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--color-luz-quente);
  line-height: 1.4;
}

.reframe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.reframe-step-card {
  background: rgba(22, 19, 15, 0.65);
  border: 1px solid rgba(91, 62, 42, 0.6);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.reframe-step-card:hover {
  border-color: var(--color-luz-quente);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.reframe-step-icon {
  width: 46px;
  height: 46px;
  background: rgba(217, 154, 78, 0.15);
  border: 1px solid var(--color-luz-quente);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.reframe-step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-aveia);
  margin-bottom: 0.65rem;
}

.reframe-step-desc {
  font-size: 0.95rem;
  color: var(--color-aveia-muted);
  line-height: 1.55;
}

.reframe-quote {
  background: rgba(22, 19, 15, 0.85);
  border-left: 4px solid var(--color-voltz);
  padding: 1.75rem 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 2.5rem 0 1rem;
  text-align: center;
}

.reframe-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-voltz);
  line-height: 1.4;
}

/* PROOF SECTION */
.proof-section {
  padding: 6rem 0;
}

.section-title-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section-title-center h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.stat-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: rgba(46, 61, 49, 0.4);
  border: 1px solid rgba(91, 62, 42, 0.6);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-luz-quente);
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-luz-quente);
  line-height: 1;
  margin-bottom: 1rem;
}

.stat-desc {
  font-size: 1rem;
  color: var(--color-aveia-muted);
  line-height: 1.55;
}

.proof-quote-banner {
  background: linear-gradient(135deg, rgba(91, 62, 42, 0.3) 0%, rgba(46, 61, 49, 0.5) 100%);
  border: 1px solid var(--color-luz-quente);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

.proof-quote-banner p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-aveia);
}

.prints-gallery-header {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prints-gallery-header h3 {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* CASE STUDY CARD (CASE MARCELO) */
.case-study-card {
  background: rgba(22, 19, 15, 0.9);
  border: 1px solid var(--color-walnut);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-bottom: 4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.case-study-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-signal-green), var(--color-luz-quente), var(--color-voltz));
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.case-study-header {
  margin-bottom: 2rem;
}

.case-study-title {
  font-size: 2.25rem;
  color: var(--color-signal-green);
  margin-top: 0.35rem;
}

.case-study-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.case-study-bullet {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(46, 61, 49, 0.35);
  border: 1px solid rgba(134, 192, 106, 0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
}

.bullet-dot {
  color: var(--color-signal-green);
  font-size: 1.25rem;
  line-height: 1.4;
}

.case-study-bullet p {
  font-size: 1.125rem;
  color: var(--color-aveia);
  line-height: 1.65;
  font-weight: 400;
}

/* CASE STUDY GRAPHICS GRID (YOUTUBE + INSTAGRAM) */
.case-study-graphics-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.75rem;
  margin-top: 1.5rem;
  align-items: stretch;
}

@media (max-width: 992px) {
  .case-study-graphics-grid {
    grid-template-columns: 1fr;
  }
}

/* YOUTUBE VIDEO CARD */
.yt-video-card {
  background: #0f0f0f;
  border: 1px solid rgba(237, 228, 210, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.yt-video-screen {
  background: #141414;
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.yt-call-streams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
}

.yt-stream-box {
  background: #000;
  border: 1.5px solid #4f46e5;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.yt-stream-box.host-box {
  border-color: var(--color-luz-quente);
}

.stream-person-icon {
  font-size: 2.5rem;
  opacity: 0.8;
}

.stream-host-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stream-avatar-name {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(0, 0, 0, 0.85);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #fff;
  white-space: nowrap;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yt-video-info {
  padding: 1rem 1.25rem;
  background: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.yt-title-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.yt-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff0000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.yt-video-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.2;
}

.yt-channel-sub {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #aaa;
}

/* INSTAGRAM COMMENT CARD */
.ig-comment-card {
  background: #ffffff;
  color: #000;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ig-comment-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ig-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #262626;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
}

.ig-user-details {
  display: flex;
  flex-direction: column;
}

.ig-username {
  font-weight: 700;
  font-size: 0.925rem;
  color: #262626;
}

.ig-time {
  font-size: 0.75rem;
  color: #8e8e8e;
}

.ig-comment-text {
  font-size: 0.95rem;
  color: #262626;
  line-height: 1.45;
  font-weight: 500;
  border-left: 3px solid #ff3040;
  padding-left: 0.75rem;
}

.ig-reply-box {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #e9ecef;
  margin-left: 0.75rem;
}

.ig-reply-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.ig-reply-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: #262626;
}

.ig-badge-author {
  font-size: 0.65rem;
  background: #ef4444;
  color: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.ig-reply-text {
  font-size: 0.825rem;
  color: #495057;
  line-height: 1.4;
}

.ig-highlight-sticker {
  background: linear-gradient(135deg, #0095f6 0%, #0077e6 100%);
  color: #ffffff;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 149, 246, 0.3);
}

/* CARROSSEL INFINITO DESLIZANTE DE DEPOIMENTOS */
.testimonial-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.testimonial-marquee-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  will-change: transform;
  animation: marqueeInfinite 32s linear infinite;
}

.testimonial-marquee-wrapper:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeInfinite {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.testimonial-card {
  width: 380px;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(31, 42, 34, 0.6) 0%, rgba(22, 19, 15, 0.95) 100%);
  border: 1px solid var(--color-walnut);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--color-luz-quente);
  transform: translateY(-4px);
}

.testimonial-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-luz-quente);
  background: rgba(217, 154, 78, 0.12);
  border: 1px solid rgba(217, 154, 78, 0.35);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 1.025rem;
  color: var(--color-aveia);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(237, 228, 210, 0.1);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-luz-quente);
  box-shadow: 0 0 10px rgba(217, 154, 78, 0.3);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-aveia);
  line-height: 1.2;
}

.author-sub {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-aveia-muted);
  margin-top: 0.2rem;
}

/* BEFORE / AFTER */
.before-after-section {
  background: rgba(22, 19, 15, 0.95);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3.5rem;
}

.comp-card {
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
}

.comp-card.before {
  background: rgba(45, 25, 20, 0.5);
  border: 1px solid rgba(181, 100, 60, 0.4);
}

.comp-card.after {
  background: rgba(35, 55, 40, 0.6);
  border: 1px solid rgba(134, 192, 106, 0.5);
}

.comp-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(237, 228, 210, 0.1);
}

.comp-card-header h3 {
  font-size: 1.35rem;
}

.comp-card.before h3 {
  color: #E26D5C;
}

.comp-card.after h3 {
  color: var(--color-signal-green);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comp-list li {
  display: flex;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--color-aveia);
  line-height: 1.5;
}

/* TOPICS LIVE */
.live-topics-section {
  padding: 6rem 0;
}

.topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.topic-card {
  background: rgba(46, 61, 49, 0.35);
  border: 1px solid var(--color-walnut);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.topic-number {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-voltz);
  margin-bottom: 0.75rem;
  display: inline-block;
  background: rgba(228, 233, 58, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(228, 233, 58, 0.3);
}

.topic-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-aveia);
  margin-bottom: 0.75rem;
}

.topic-desc {
  font-size: 0.975rem;
  color: var(--color-aveia-muted);
}

.everything-without-box {
  background: rgba(22, 19, 15, 0.85);
  border: 1px solid var(--color-walnut);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  margin-bottom: 3.5rem;
}

.everything-without-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-luz-quente);
  text-align: center;
}

.without-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.without-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--color-aveia);
}

.without-item .check-icon {
  width: 22px;
  height: 22px;
  background: rgba(134, 192, 106, 0.2);
  border: 1px solid var(--color-signal-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-signal-green);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* QUALIFICATION */
.qualify-section {
  background: linear-gradient(180deg, var(--color-bark-black) 0%, var(--color-pinheiro-dark) 100%);
}

.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.qualify-card {
  border-radius: var(--radius-lg);
  padding: 2.75rem;
}

.qualify-card.for-you {
  background: rgba(46, 61, 49, 0.5);
  border: 1px solid var(--color-signal-green);
}

.qualify-card.not-for-you {
  background: rgba(35, 25, 25, 0.5);
  border: 1px solid var(--color-terracota);
}

.qualify-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.qualify-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.qualify-list li {
  display: flex;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--color-aveia);
  line-height: 1.55;
}

/* SPEAKER */
.speaker-section {
  padding: 6rem 0;
}

.speaker-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.speaker-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-walnut);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  background: var(--color-pinheiro);
}

.speaker-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.speaker-name-hero {
  font-size: 3.5rem;
  color: var(--color-aveia);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.03em;
}

.speaker-real-name {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-aveia-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  opacity: 0.75;
}

.speaker-role {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--color-luz-quente);
  margin-bottom: 1.75rem;
  display: inline-block;
}

.speaker-bio p {
  font-size: 1.075rem;
  margin-bottom: 1.25rem;
  color: var(--color-aveia-muted);
}

.speaker-quote {
  background: rgba(46, 61, 49, 0.4);
  border-left: 3px solid var(--color-voltz);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 2rem;
}

.speaker-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-voltz);
}

/* FAQ */
.faq-section {
  background: rgba(22, 19, 15, 0.9);
  padding: 6rem 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(46, 61, 49, 0.3);
  border: 1px solid var(--color-walnut);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--color-luz-quente);
  background: rgba(46, 61, 49, 0.55);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: none;
  border: none;
  color: var(--color-aveia);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(217, 154, 78, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-luz-quente);
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-luz-quente);
  color: var(--color-bark-black);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  padding: 0 1.75rem 1.75rem 1.75rem;
}

.faq-answer p {
  font-size: 1.025rem;
  color: var(--color-aveia-muted);
  line-height: 1.6;
}

/* FOOTER */
.footer-section {
  padding: 5rem 0 3rem;
  text-align: center;
  border-top: 1px solid var(--color-walnut);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-aveia-dim);
  margin-top: 1.5rem;
}

/* STICKY BOTTOM BAR */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(22, 19, 15, 0.94);
  border-top: 1px solid var(--color-luz-quente);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-cta-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-aveia);
}

.sticky-cta-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-voltz);
}

.sticky-cta-btn {
  background: var(--color-voltz);
  color: #110e0a;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 0 15px var(--color-voltz-glow);
  transition: var(--transition-fast);
}

.sticky-cta-btn:hover {
  background: var(--color-voltz-hover);
  transform: scale(1.03);
}

/* ==========================================================================
   MODAL DE CAPTURA DE LEAD & ETAPA DE CONFIRMAÇÃO DO WHATSAPP
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 12, 10, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.25rem;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: linear-gradient(145deg, #1d1813 0%, #16130F 100%);
  border: 1px solid var(--color-walnut);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(217, 154, 78, 0.15);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 2.5rem 2.25rem;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(237, 228, 210, 0.08);
  border: 1px solid rgba(237, 228, 210, 0.2);
  color: var(--color-aveia-muted);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(237, 228, 210, 0.2);
  color: var(--color-aveia);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 1.35rem;
  color: var(--color-aveia);
  text-align: center;
  margin-bottom: 1.75rem;
  line-height: 1.35;
  font-weight: 600;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-input,
.form-select {
  width: 100%;
  background: rgba(22, 19, 15, 0.9);
  border: 1px solid rgba(237, 228, 210, 0.2);
  border-radius: 12px;
  padding: 0.95rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--color-aveia);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input::placeholder {
  color: rgba(237, 228, 210, 0.45);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--color-voltz);
  box-shadow: 0 0 15px rgba(228, 233, 58, 0.2);
  background: rgba(31, 42, 34, 0.6);
}

/* Phone input with Flag & Country Code */
.phone-input-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.phone-country-flag {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-aveia-muted);
  pointer-events: none;
  z-index: 2;
}

.flag-icon {
  font-size: 1.1rem;
}

.phone-field {
  padding-left: 5rem !important;
}

/* Input with icon */
.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--color-aveia-dim);
  pointer-events: none;
  z-index: 2;
}

.email-field {
  padding-left: 2.8rem !important;
}

/* Custom Select styling */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23EDE4D2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 16px;
  cursor: pointer;
}

.form-select option {
  background-color: var(--color-bark-black);
  color: var(--color-aveia);
  padding: 0.75rem;
}

/* Field validation error styling */
.form-input.input-error,
.form-select.input-error {
  border-color: #ff5252 !important;
  box-shadow: 0 0 12px rgba(255, 82, 82, 0.4) !important;
  background: rgba(45, 20, 20, 0.7) !important;
}

.field-error {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #ff6b6b;
  margin-top: 0.4rem;
  margin-left: 0.5rem;
  font-weight: 500;
}

.btn-modal-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1.1rem 1.5rem;
  font-size: 1.05rem;
}

.modal-microcopy {
  justify-content: center;
  margin-top: 0.5rem;
}

/* ETAPA 2 — FALTA APENAS 1 PASSO... */
.progress-bar-container {
  width: 100%;
  height: 28px;
  background: rgba(14, 12, 10, 0.95);
  border: 1px solid rgba(237, 228, 210, 0.25);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}

.progress-bar-fill {
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, #f59e0b 0%, #eab308 60%, var(--color-voltz) 100%);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(228, 233, 58, 0.5);
  animation: progressPulse 2.5s infinite ease-in-out;
  padding: 0 1rem;
}

.progress-bar-fill span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #110e0a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@keyframes progressPulse {
  0% { opacity: 0.9; }
  50% { opacity: 1; }
  100% { opacity: 0.9; }
}

.confirm-headline {
  font-size: 2.1rem;
  color: var(--color-luz-quente);
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.confirm-subtext {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-aveia);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.btn-modal-final {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.15rem;
}

.modal-event-box {
  background: rgba(46, 61, 49, 0.5);
  border: 1px solid var(--color-walnut);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.event-info-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-aveia);
}

.event-info-icon {
  font-size: 1.25rem;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .hero-full-section {
    min-height: auto;
    padding: 1.5rem 0 3.5rem;
  }

  .hero-bg-photo-wrapper {
    width: 100%;
    opacity: 0.35;
    filter: grayscale(20%);
  }

  .hero-bg-fade-left {
    width: 100%;
    background: linear-gradient(180deg, 
      var(--color-bark-black) 0%, 
      rgba(22, 19, 15, 0.7) 40%, 
      var(--color-bark-black) 100%
    );
  }

  .hero-title {
    font-size: 2.1rem;
  }

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

  .stat-cards-grid,
  .prints-grid,
  .speaker-grid,
  .comparison-grid,
  .topics-grid,
  .qualify-grid,
  .without-grid {
    grid-template-columns: 1fr;
  }

  .hero-event-pill {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .reframe-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .header-container {
    justify-content: flex-end;
  }

  .hero-eyebrow {
    font-size: 1.05rem;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-cta {
    font-size: 0.975rem;
    padding: 1.1rem 1.5rem;
    width: 100%;
  }

  .comp-card,
  .qualify-card {
    padding: 1.5rem 1.25rem;
  }

  .sticky-cta-info {
    display: none;
  }

  .sticky-cta-bar {
    justify-content: center;
  }

  .sticky-cta-btn {
    width: 100%;
    text-align: center;
  }

  .modal-card {
    padding: 2rem 1.5rem;
  }

  .confirm-headline {
    font-size: 1.65rem;
  }
}
