/* ═══════════════════════════════════════════════════════════════
   IMPERIO DA HOF — Premium Landing Page Styles
   Design System: White, Blush Pink, Dark Gold, Black
   ═══════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Forum&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  /* Colors */
  --white: #ffffff;
  --off-white: #fdf8f9;
  --cream: #f9f0f2;
  --blush-50: #f2d5de;
  --blush-100: #eac4d0;
  --blush-200: #e0b4c3;
  --blush-300: #d4a3b3;
  --blush-400: #be6b8c;
  --blush-500: #a85072;
  --gold-light: #edc234;
  --gold: #d6a91c;
  --gold-dark: #ba9111;
  --gold-darker: #9c7809;
  --black: #2e1c23;
  --dark: #402932;
  --dark-soft: #543944;
  --gray-900: #35242a;
  --gray-800: #412f36;
  --gray-700: #544048;
  --gray-600: #6b525b;
  --gray-500: #836a74;
  --gray-400: #9d848f;
  --gray-300: #b8a0ab;
  --gray-200: #d4bdc8;
  --gray-100: #ebd8df;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #edc234, #d6a91c, #ba9111);
  --gradient-gold-light: linear-gradient(135deg, #f5d664 0%, #edc234 50%, #d6a91c 100%);
  --gradient-blush: linear-gradient(135deg, #be6b8c, #a85072);
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  --gradient-hero: linear-gradient(135deg, #d6a91c 0%, #ba9111 40%, #9c7809 100%);
  --gradient-cta: linear-gradient(135deg, #f5cd42 0%, #d6a91c 50%, #ba9111 100%);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Forum', Georgia, serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container-max: 1200px;
  --container-px: clamp(1rem, 4vw, 2rem);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.14), 0 8px 16px rgba(0,0,0,0.08);
  --shadow-gold: 0 8px 30px rgba(184,146,47,0.25);
  --shadow-blush: 0 8px 30px rgba(255,133,171,0.15);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 350ms var(--ease-out);
  --transition-slow: 500ms var(--ease-out);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-bg-light: rgba(255, 255, 255, 0.7);
  --glass-border-light: rgba(255, 255, 255, 0.9);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

@media (min-width: 769px) {
  /* Custom Scrollbar for Desktop */
  ::-webkit-scrollbar {
    width: 16px; /* Acomoda a borda grossa e o meio dourado */
  }
  ::-webkit-scrollbar-track {
    background: #111; /* Fundo escuro */
  }
  ::-webkit-scrollbar-thumb {
    background: var(--gradient-gold); /* Dourado forte/metálico */
    border-radius: 100px; /* Arredondamento máximo no topo e embaixo */
    /* Borda UNIFORME para não distorcer o arredondamento, mas ainda reduz a altura da barra */
    border: 5px solid #111; 
    background-clip: padding-box;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light); 
  }
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ─── Utility ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Scroll Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-drop {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.7s var(--ease-out) var(--delay, 0s), transform 0.7s var(--ease-out) var(--delay, 0s);
}

.reveal-drop.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 560ms; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 640ms; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 720ms; }
.stagger-children.visible > *:nth-child(11) { transition-delay: 800ms; }
.stagger-children.visible > *:nth-child(12) { transition-delay: 880ms; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Progress Bar ─── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 10001;
  transition: width 100ms linear;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  padding: 12px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230, 170, 34, 0.4);
  background-size: 200% 200%;
  animation: shimmer-bg 3s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 170, 34, 0.6);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  border-color: var(--white);
  color: var(--dark);
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-lg {
  padding: 14px 34px;
  font-size: 1rem;
}

.btn-icon {
  font-size: 1.2em;
}

@keyframes shimmer-bg {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ─── HEADER / NAV ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 0 var(--container-px);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header.scrolled .btn-primary {
  background: var(--gradient-cta);
  box-shadow: 0 4px 15px rgba(230, 170, 34, 0.4);
}

.header.scrolled .btn-primary:hover {
  box-shadow: 0 8px 25px rgba(230, 170, 34, 0.6);
}

.header:not(.scrolled) .btn-primary {
  background: var(--gradient-blush);
  box-shadow: 0 4px 15px rgba(168,80,114,0.4);
}

.header:not(.scrolled) .btn-primary:hover {
  box-shadow: 0 8px 25px rgba(168,80,114,0.6);
}

.header.scrolled .nav-link {
  color: var(--gray-600);
}

.header.scrolled .nav-link:hover {
  color: var(--gold);
}

.header.scrolled .logo-img {
  filter: none;
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 101;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: cover;
  object-position: center;
  transform: scale(2.2);
  transform-origin: left center;
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-gold);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(184,146,47,0.2);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,146,47,0.35);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  background: var(--blush-100);
  overflow: hidden;
  padding-top: calc(72px + 4rem);
  padding-bottom: 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: url('hero-bg.png') center/cover no-repeat;
  filter: blur(40px);
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 28, 35, 0.2);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* Desloca o texto um pouco mais à esquerda e o vídeo à direita */
  gap: 80px; /* Aumenta o espaço (buraco) entre eles */
  max-width: 1350px; /* Expande a largura máxima do container na Hero para caber tudo sem sobrepor */
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero-title .highlight {
  background: var(--gradient-gold-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle-accent {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-trust-item .stars {
  display: flex;
  gap: 2px;
  color: var(--gold-light);
  font-size: 0.75rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.hero-image-wrapper {
  position: relative;
  width: 110%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: -20px 30px 60px rgba(0,0,0,0.18), -10px 10px 20px rgba(0,0,0,0.1);
  transform: rotateY(-14deg) rotateX(4deg);
  transform-origin: center right;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-image-wrapper:hover {
  transform: rotateY(-6deg) rotateX(2deg) scale(1.02);
}

.hero-image-wrapper img,
.hero-image-wrapper video {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(180,140,160,0.3) 100%);
  pointer-events: none;
}

/* Floating cards on hero */
.float-card-wrapper {
  position: absolute;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.float-card-wrapper:nth-child(2) {
  animation-delay: -1.5s;
}

.float-card-wrapper:nth-child(3) {
  animation-delay: -3s;
}


.hero-float-card {
  position: relative;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--dark);
  cursor: default;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.2s;
}

/* Mouse-tracking glow overlay */
.hero-float-card .glow-overlay {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  filter: blur(15px);
  z-index: 0;
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);
}

.hero-float-card:hover .glow-overlay {
  opacity: 1;
}

/* Ensuring float content is above glow */
.hero-float-card .float-icon,
.hero-float-card .float-text {
  position: relative;
  z-index: 1;
}

.float-card-1 {
  top: 15%;
  left: -110px;
}

.float-card-2 {
  bottom: 35%;
  right: -130px;
}

.float-card-3 {
  bottom: 2%;
  left: -80px;
}

.hero-float-card .float-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.hero-float-card .float-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.hero-float-card .float-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
}

.hero-float-card .float-text span {
  font-size: 0.7rem;
  color: var(--gray-500);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── PAIN POINTS ─── */
.pain-section {
  padding: var(--section-py) 0;
  background: var(--white);
  position: relative;
}

.pain-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 2rem 0;
}
@media (max-width: 991px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all var(--transition-base);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blush-200);
  transition-delay: 0s !important;
}

.pain-card-icon {
  width: 44px;
  height: 44px;
  background: var(--blush-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blush-400);
}

.pain-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.pain-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pain-card-title {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}

.pain-card-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.pain-section .section-label {
  margin-bottom: 0.25rem;
}

.pain-section .section-title {
  white-space: nowrap;
  font-size: clamp(1.2rem, 3.8vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.pain-section .section-subtitle {
  white-space: nowrap;
  font-size: clamp(0.7rem, 2.2vw, 1.125rem);
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
  max-width: none;
}

.pain-resolution {
  text-align: center;
  margin-top: 1rem;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--blush-50), var(--cream));
  border-radius: var(--radius-md);
  border: 1px solid var(--blush-100);
}

.pain-resolution p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pain-resolution .arrow-icon {
  display: none;
}

/* ─── FOUNDERS SECTION ─── */
.founders-section {
  padding: 0 0 4rem 0;
  background: var(--blush-100);
  position: relative;
  overflow: hidden;
}

.founders-section::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 120%; height: 120%;
  background: url('hero-bg.png') center/cover no-repeat;
  filter: blur(40px);
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}

.founders-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(46, 28, 35, 0.2);
  z-index: 0;
  pointer-events: none;
}

.founders-bg-pattern {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background-image: url('logo-fundo.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  opacity: 0.15;
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}

.relative-z {
  position: relative;
  z-index: 1;
}

.founders-header {
  margin-bottom: 4rem;
}

.text-white {
  color: #fff !important;
}

.text-light {
  color: rgba(255,255,255,0.85) !important;
  max-width: 700px;
}

.founders-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .founders-content {
    grid-template-columns: 1fr;
  }
}

.founders-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}

.founders-image img {
  width: 100%;
  max-height: 630px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s ease;
}

.founders-image:hover img {
  transform: scale(1.04);
}

.founder-blog-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.founder-blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214,169,28,0.4);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.75rem;
}

.founder-blog-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.founder-blog-text strong {
  color: var(--gold-light);
  font-weight: 700;
}



/* ─── CURRICULUM / NETFLIX STYLE ─── */
.curriculum-dark {
  padding: var(--section-py) 0;
  background-color: #0a0a0a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.curriculum-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212,168,83,0.08), transparent 50%),
              radial-gradient(circle at bottom left, rgba(255,255,255,0.02), transparent 50%);
  pointer-events: none;
}

.curriculum-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .curriculum-split-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.text-light {
  color: var(--white) !important;
}

.curriculum-image-col {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.platform-3d-mockup {
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}

/* Video Slider 16:9 Advanced Animation */
.video-slider-container {
  position: relative;
  width: 100%;
  margin-top: 4rem;
  padding-bottom: 2rem;
  perspective: 1500px;
}

.video-track {
  position: relative;
  height: 380px; /* Reduced from 420px to bring dots closer */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.carousel-3d-spinner {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateZ(-350px) rotateY(0deg);
}

.video-slide {
  position: absolute;
  width: 100%;
  max-width: 440px; /* Slightly smaller to fit nicely in 3D circle */
  left: 50%;
  top: 50%;
  margin-left: -220px;
  margin-top: -210px; /* Half of track height */
  opacity: 0.15; /* Dimmer for back items */
  visibility: visible;
  pointer-events: none;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  /* Place each card in a circle using the CSS var --i */
  transform: rotateY(calc(var(--i) * 72deg)) translateZ(350px);
}

.video-slide.active {
  opacity: 1; /* Front card is fully visible */
  z-index: 100;
  pointer-events: auto;
  transform: rotateY(calc(var(--i) * 72deg)) translateZ(355px);
}

.single-card {
  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), inset 0 0 20px rgba(212,168,83,0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.video-slide.active:hover .single-card {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0,0,0,0.9), inset 0 0 30px rgba(212,168,83,0.2);
}

.single-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 1rem;
}

.video-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
  max-width: 75%;
}

.badge-number-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.video-badge-inline {
  background: linear-gradient(135deg, var(--gold), #b38b42);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-number-inline {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 0.9;
}

.single-card p {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.single-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-card ul li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.single-card ul li::before {
  content: '✓';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.video-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -1rem;
  position: relative;
  z-index: 10;
}

.video-indicators {
  display: flex;
  gap: 8px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: var(--gold);
  transform: scale(1.3);
}

.platform-3d-scroll {
  width: 100%;
  max-width: 600px;
  height: auto;
  transition: transform 0.1s linear; /* Smooth micro-stutters from scroll */
  transform-style: preserve-3d;
  mix-blend-mode: screen; /* Blends the black background out to transparent */
}

/* ─── DIFFERENTIALS ─── */
.differentials {
  padding: var(--section-py) 0;
  background: var(--white);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.diff-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.diff-card:hover {
  border-color: var(--blush-100);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.diff-card:hover::before {
  opacity: 1;
}

.diff-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
  color: var(--gold);
}

.diff-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.diff-card:hover .diff-icon {
  background: linear-gradient(135deg, rgba(212,168,83,0.12), rgba(255,133,171,0.08));
}

.diff-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.diff-desc {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ─── PAIN FLOAT CARDS ─── */
.pain-float-wrapper {
  position: absolute;
  z-index: 1;
  pointer-events: none; /* Ignore clicks so it doesn't block the page */
  animation: float 8s ease-in-out infinite;
  transform-style: preserve-3d;
}

.pain-float-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.90); /* White glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 168, 83, 0.4); /* Gold border */
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: 0 15px 35px rgba(224, 159, 172, 0.25); /* Pink shadow */
  width: max-content;
  max-width: 320px;
}

.pain-float-card .glow-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.6), transparent);
  pointer-events: none;
}

.pain-float-card .float-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white); 
}

.pain-float-card .float-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.pain-float-card .float-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pain-float-card .float-text strong {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

.pain-float-card .float-text span {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.3;
}

/* Positioning the 6 cards */
.pain-float-1 { top: 3%; left: 5%; animation-delay: -0s; transform: scale(0.85); }
.pain-float-2 { top: 45%; left: 1%; animation-delay: -2s; transform: scale(0.88); }
.pain-float-3 { bottom: 5%; left: 5%; animation-delay: -4s; transform: scale(0.82); }

.pain-float-4 { top: 8%; right: 5%; animation-delay: -1s; transform: scale(0.82); }
.pain-float-5 { top: 50%; right: 1%; animation-delay: -3s; transform: scale(0.88); }
.pain-float-6 { bottom: 3%; right: 5%; animation-delay: -5s; transform: scale(0.85); }

@media (max-width: 1100px) {
  .pain-float-wrapper { display: none; } /* Hide on smaller screens to avoid clutter */
}

/* ─── RESULTS / TRANSFORMATION ─── */
.results-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}

.result-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--blush-50), var(--cream));
  border: 1px solid var(--blush-100);
  transition: all var(--transition-base);
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.result-before {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-before-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.result-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.result-after {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-after-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--off-white);
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  gap: 24px;
  margin-top: 3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 350px;
  max-width: 380px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blush-100);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial-location {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all var(--transition-base);
  font-size: 1.1rem;
}

.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,83,0.05);
}

/* ─── ECOSYSTEM / VALUE SECTION ─── */
.value-section {
  padding: 4rem 0 2rem;
  background: var(--white);
  position: relative;
}

.value-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.value-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2rem;
}

@media (max-width: 1200px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .value-grid { grid-template-columns: 1fr; }
}

.value-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 40px rgba(224, 159, 172, 0.15);
  border-color: rgba(212, 168, 83, 0.4);
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 168, 83, 0.08), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

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

.value-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
  margin-bottom: 4px;
}

.value-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.value-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.value-content h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.value-content p {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 8px;
  flex-grow: 1;
}

.value-highlight {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: auto;
  display: inline-block;
  padding: 6px 10px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 8px;
  line-height: 1.3;
}

.value-footer {
  text-align: center;
  max-width: 800px;
  margin: 2rem auto 0;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.6;
}

/* Gold Leaves / Blurs */
.gold-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.gold-blur-1 {
  width: 350px; height: 350px;
  background: rgba(212, 168, 83, 0.25);
  top: -50px; left: -100px;
}
.gold-blur-2 {
  width: 450px; height: 250px;
  background: rgba(212, 168, 83, 0.2);
  bottom: 15%; right: -150px;
  transform: rotate(-30deg);
}
.gold-blur-3 {
  width: 300px; height: 300px;
  background: rgba(224, 159, 172, 0.2);
  top: 50%; left: 35%;
}

/* ─── PREMIUM OFFER CTA ─── */
.premium-offer-section {
  padding: 3rem 0 5rem;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.premium-glow-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw; height: 100vh;
  background: radial-gradient(circle at 40% 50%, rgba(200, 162, 74, 0.04), transparent 40%),
              radial-gradient(circle at 60% 50%, rgba(253, 244, 247, 0.6), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.premium-card-wrapper {
  position: relative;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  border-radius: 26px;
  padding: 2px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04),
              0 0 40px rgba(200, 162, 74, 0.08);
}

.premium-card-wrapper::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 3000px; height: 3000px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 200deg,
    rgba(200, 162, 74, 0.1) 260deg,
    rgba(200, 162, 74, 0.7) 340deg,
    rgba(255, 230, 150, 1) 357deg,
    #ffffff 360deg
  );
  animation: border-rotate 9s linear infinite;
  z-index: 0;
  filter: blur(2px);
}

.premium-card-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 26px;
  border: 1px solid rgba(200, 162, 74, 0.15);
  pointer-events: none;
  z-index: 0;
}

@keyframes border-rotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.premium-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 36px 60px;
  text-align: left;
}

.premium-card-left {
  display: flex;
  flex-direction: column;
}

.premium-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.premium-card::before, .premium-card::after {
  content: '';
  position: absolute;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(200, 162, 74, 0.15) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.premium-card::before { top: -20px; left: -20px; }
.premium-card::after { bottom: -20px; right: -20px; }

.premium-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: var(--gradient-gold);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.premium-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.premium-subtitle {
  font-size: 0.9rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.premium-modules {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.premium-module-card {
  display: flex;
  align-items: center;
  text-align: left;
  background: var(--white);
  border: 1px solid rgba(200, 162, 74, 0.1);
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.premium-module-card:hover, .premium-module-card.hover-active {
  transform: scale(1.01);
  border-color: rgba(200, 162, 74, 0.4);
  box-shadow: 0 12px 30px rgba(200, 162, 74, 0.08);
}

.premium-module-card:hover .pmc-price,
.premium-module-card.hover-active .pmc-price {
  text-decoration: line-through;
  color: var(--gray-400);
}

.pmc-icon {
  margin-right: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(200, 162, 74, 0.1);
  border-radius: 10px;
  color: var(--gold);
}
.pmc-icon svg {
  width: 18px;
  height: 18px;
}

.pmc-info {
  flex-grow: 1;
}

.pmc-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.pmc-info p {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.4;
  margin: 0;
}

.pmc-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-dark);
  margin-left: 16px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.premium-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.price-anchor {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.price-anchor s {
  font-weight: 700;
  color: var(--gray-400);
  margin-left: 8px;
}

.price-today-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.price-huge {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 20px rgba(200, 162, 74, 0.2);
}

.pulse-slow {
  animation: pulse-slow 3s infinite ease-in-out;
}

@keyframes pulse-slow {
  0% { transform: scale(1); text-shadow: 0 4px 20px rgba(200, 162, 74, 0.2); }
  50% { transform: scale(1.03); text-shadow: 0 4px 30px rgba(200, 162, 74, 0.4); }
  100% { transform: scale(1); text-shadow: 0 4px 20px rgba(200, 162, 74, 0.2); }
}

.price-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.price-benefits .dot {
  color: var(--gold);
  font-size: 1.2rem;
}

.premium-why-block {
  background: var(--off-white);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 0;
  text-align: left;
}

.premium-why-block h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.premium-why-block p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

.premium-guarantee-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  margin-bottom: 16px;
}

.premium-guarantee-text svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
  margin-bottom: 4px;
}

.premium-guarantee-text h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.premium-guarantee-text p {
  font-size: clamp(0.6rem, 1.5vw, 0.9rem);
  white-space: nowrap;
  color: var(--gray-600);
  margin: 0;
}

.premium-cta-wrapper {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.btn-premium-huge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  height: 54px;
  background: var(--gradient-gold);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(200, 162, 74, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-premium-huge::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: all 0.6s ease;
}

.btn-premium-huge:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(200, 162, 74, 0.4);
  color: var(--white);
}

.btn-premium-huge:hover::before {
  left: 100%;
}

.btn-premium-huge .arrow {
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.btn-premium-huge:hover .arrow {
  transform: translateX(6px);
}

.premium-safe {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.premium-safe span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.premium-safe svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

@media (max-width: 991px) {
  .premium-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .premium-card-wrapper {
    border-radius: 22px;
  }
  .premium-card {
    padding: 32px 20px;
    border-radius: 20px;
  }
  .premium-module-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .pmc-icon {
    margin: 0;
  }
  .pmc-price {
    margin: 12px 0 0 0;
  }
  .price-benefits {
    flex-direction: column;
    gap: 8px;
  }
  .price-benefits .dot {
    display: none;
  }
  .premium-guarantee {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .pg-icon {
    margin: 0 0 12px 0;
  }
  .btn-premium-huge {
    font-size: 1.1rem;
    height: 60px;
  }
  .premium-why-block {
    text-align: center;
  }
}


/* ─── FAQ ─── */
.faq-section {
  padding: var(--section-py) 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.faq-section .section-title {
  color: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--gradient-gold);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ─── FINAL CTA ─── */
.final-cta {
  padding: var(--section-py) 0;
  background: var(--gradient-hero);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.final-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta .container {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.final-cta .section-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.final-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ─── FAQ & FOOTER WRAPPER ─── */
.faq-footer-wrapper {
  background-color: var(--blush-400);
  position: relative;
  overflow: hidden;
}

.faq-footer-wrapper::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: url('faq-bg.png') center/cover no-repeat;
  filter: blur(40px);
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}

/* ─── FOOTER ─── */
.footer {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-img {
  height: 80px;
  object-fit: contain;
  transform: scale(1.3);
  transform-origin: left center;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
  font-size: 0.85rem;
}

.footer-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom-info p {
  margin: 0;
}

.footer-bottom-disclaimer {
  font-size: 0.75rem;
  opacity: 0.7;
  max-width: 800px;
}

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all var(--transition-base);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.floating-cta .btn {
  box-shadow: 0 8px 30px rgba(184,146,47,0.4);
  padding: 16px 28px;
}

.floating-cta .btn:hover {
  box-shadow: 0 12px 40px rgba(184,146,47,0.5);
}

/* ─── Counter Animation ─── */
.counter {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 360px;
  }

  .hero-float-card {
    display: none;
  }

  .presentation .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .presentation-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  /* Prevent horizontal overflow strictly */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Nav Menu */
  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-menu .nav-link {
    font-size: 1.2rem;
    color: var(--white);
  }
  .nav-menu .nav-cta {
    font-size: 1rem;
    padding: 14px 32px;
  }
  .menu-toggle {
    display: flex;
  }

  /* Section Spacing */
  section {
    padding: 60px 0; /* Reduce massive vertical gaps between sections */
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 110px 0 40px; /* Reduced padding */
  }
  .hero-visual {
    max-height: 280px; /* Force image to be much smaller vertically */
    overflow: hidden;
    border-radius: 16px;
  }
  .hero-visual img {
    height: 100%;
    object-fit: cover;
    object-position: center 10%; /* Focus on the action/face */
  }
  .hero-tag {
    font-size: 0.75rem;
    padding: 6px 16px;
    margin: 0 auto 16px; /* Center and tighten */
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .hero-description p {
    font-size: 1rem;
    margin-bottom: 24px;
    padding: 0 10px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: none;
    font-size: 1rem;
  }

  /* Pain Grid (Voce se identifica) */
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 10px;
  }
  .pain-card {
    padding: 24px 16px; /* Shrink cards so they fit nicely */
  }
  .pain-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .pain-card h3 {
    font-size: 1.15rem;
  }

  /* Curriculum Timeline */
  .timeline::before {
    left: 14px;
  }
  .timeline-item {
    padding-left: 44px;
    padding-right: 0;
  }
  .timeline-number {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
    left: -1px;
  }
  .timeline-topics {
    grid-template-columns: 1fr;
  }
  .timeline-content {
    padding: 24px 16px; /* Reduce massive padding */
  }

  /* Testimonials */
  .testimonial-track {
    padding: 10px;
    scroll-padding: 10px;
  }
  .testimonial-card {
    min-width: 85vw; /* Make it almost full width but peek next card */
    padding: 24px 16px;
  }
  .testimonial-video {
    max-height: 350px;
    border-radius: 12px;
  }

  /* Who / Results / Diff */
  .diff-grid {
    grid-template-columns: 1fr 1fr; /* Keep 2 cols on tablet */
  }
  .who-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Ecosystem / Presentation */
  .presentation-image {
    max-height: 300px;
    object-fit: cover;
  }
  .presentation-highlights {
    grid-template-columns: 1fr;
  }

  /* Guarantee */
  .guarantee-container {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
  }
  .guarantee-image {
    width: 120px;
  }

  /* Premium Card (Oferta Exclusiva) - Fix Overflow */
  .premium-card-wrapper {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
  }
  .premium-card-wrapper::before {
    width: 150vw; /* Reduce width so it doesn't leak horizontal pixels */
    height: 150vw;
  }
  .premium-card {
    padding: 24px 16px; /* Squeeze it */
  }
  .premium-header h3 {
    font-size: 1.6rem;
  }
  .premium-price {
    font-size: 3rem;
  }
  .pmc-price {
    font-size: 1.1rem;
  }
  .premium-cta {
    font-size: 1rem;
    padding: 16px 20px;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Floating CTA */
  .floating-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
  .floating-cta .btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ─── Print ─── */
@media print {
  .header, .progress-bar, .floating-cta {
    display: none !important;
  }
}
