/* ═══════════════════════════════════════════════════════════════
   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;
  user-select: auto;
  -webkit-user-select: auto;
}

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; /* Mantém a proporção */
  gap: 120px; /* Aumenta o buraco entre os dois lados de 80px para 120px */
  max-width: 1450px; /* Expande mais a tela (era 1350px) para caber sem encavalar */
  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;
  }
}


/* FINAL MOBILE OVERRIDES */
@media (max-width: 768px) {
  /* Footer Mobile */
  .faq-footer-wrapper { background-color: #ae7d8f !important; }
  .faq-section { padding-bottom: 10px !important; }
  .footer { padding-top: 20px !important; }
  
  .footer-top { display: flex !important; flex-wrap: wrap !important; justify-content: center !important; text-align: center !important; gap: 20px !important; }
  .footer-brand { width: 100% !important; margin: 0 auto !important; order: 1 !important; }
  .footer-brand .logo { display: inline-block !important; margin-bottom: -15px !important; }
  .footer-brand .logo-img { transform: scale(1.1) !important; height: 160px !important; margin: 0 auto !important; display: block !important; object-fit: contain !important; }
  .footer-brand p { margin-top: 0 !important; }
  .footer-social { justify-content: center !important; }
  .footer-links:nth-of-type(2) { width: 45% !important; order: 2 !important; text-align: left !important; }
  .footer-links:nth-of-type(3) { width: 45% !important; order: 3 !important; text-align: right !important; }
  .footer-links h4 { font-size: 0.8rem !important; margin-bottom: 10px !important; }
  .footer-links a { font-size: 0.75rem !important; margin-bottom: 8px !important; }
  
  .faq-footer-wrapper::before { display: block !important; filter: blur(30px) !important; opacity: 0.15 !important; z-index: 0 !important; }
  .faq-section, .footer { position: relative !important; z-index: 10 !important; }
  .faq-question, .faq-answer p { opacity: 1 !important; text-shadow: none !important; }
  .faq-section .section-title { text-transform: uppercase !important; }
  
  #oferta { padding-bottom: 20px !important; }
  
  /* FAQ Mobile - hide toggle, force white text, gold on active */
  .faq-toggle { display: none !important; }
  .faq-question { justify-content: center !important; color: #ffffff !important; font-weight: 700 !important; font-size: 0.95rem !important; padding: 15px 0 !important; }
  .faq-item.active .faq-question { color: var(--gold) !important; }
  .faq-answer p { color: #ffffff !important; font-size: 0.85rem !important; text-align: center !important; }
  
  /* Ecosystem - hide specific cards on mobile */
  .ecosystem-grid .value-card:nth-child(2),
  .ecosystem-grid .value-card:nth-child(5) { display: none !important; }
  
  /* Notebook 3D - hide on mobile */
  #notebook3d { display: none !important; }

  /* Oferta - Inline benefits */
  .inline-benefits { font-size: 0.45rem !important; gap: 4px !important; margin-top: 8px !important; flex-wrap: nowrap !important; justify-content: center !important; width: 100% !important; }

  /* Fix for premium price one line */
  .price-old br { display: none !important; }
  .price-old { white-space: nowrap !important; font-size: 0.85rem !important; }
  .price-new { text-align: center !important; }
  #offerCta .arrow { display: none !important; }
  #offerCta span { display: block !important; white-space: nowrap !important; }
  .premium-safe {
    display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important;
    justify-content: center !important; gap: 4px !important; margin-top: 8px !important;
  }
  .premium-safe svg { display: none !important; }
  .premium-safe span { font-size: 0.45rem !important; color: var(--gold) !important; font-weight: 500 !important; white-space: nowrap !important; }
  .premium-guarantee-text h5 { font-size: 0.95rem !important; margin: 8px 0 !important; white-space: nowrap !important; }
  .premium-guarantee-text p { font-size: 0.75rem !important; text-align: center !important; }
  .premium-why-block { margin-top: 1.5rem !important; width: 100% !important; max-width: 320px !important; text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
}




/* ========================================= */
/* ======= MOBILE OVERRIDES (FIXED) ======== */

/* ========================================= */



@media (max-width: 768px) {

  .premium-card-wrapper {

    border-radius: 22px;

/* removed premature brace */

  

  /* Testimonial Section Adjustments for Mobile */

  #depoimentos {

    padding-left: 20px;

    padding-right: 20px;

  }

  #depoimentos .reveal-up:last-child {

    padding: 2rem 1.5rem !important; /* Smaller padding on mobile for the card */

  }

  #depoimentos .reveal-up:last-child p {

    font-size: 1rem !important;

  }

}

  .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: center;

  width: 100%;

  padding: 15px 0;

  font-size: 0.95rem;

  font-weight: 700;

  color: #ffffff !important;

  opacity: 1 !important;

  text-align: center;

  transition: color var(--transition-fast);

}



.faq-item.active .faq-question {

  color: var(--gold) !important;

}



.price-benefits {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 15px;

  font-size: 0.9rem;

  color: var(--gray-600);

  margin-top: 10px;

}

.inline-benefits {

  display: flex;

  flex-direction: row;

  justify-content: center;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px;

  font-size: 0.75rem;

  margin-top: 15px;

  color: var(--gold);

  font-weight: 500;

}



.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.85rem;

  color: #ffffff !important;

  line-height: 1.5;

  text-align: center;

}



/* ─── 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;

  }

}



/* =========================================================================

   MOBILE FIXES (FASE 1) 

   ========================================================================= */

@media (max-width: 768px) {

  /* 1. Video Fixes */

  .hero-image-wrapper {

    transform: none !important;

    margin: 0 auto !important;

    width: 100% !important;

    max-width: 380px !important;

    box-shadow: 0 20px 30px rgba(0,0,0,0.08) !important;

  }

  .hero-image-wrapper:hover {

    transform: none !important;

  }

  

  /* 2. Menu Fixes */

  .header-inner {

    align-items: center !important;

  }

  .menu-toggle {

    padding: 15px !important;

    margin-right: -10px !important;

  }

  

  /* --- WHEN MENU IS CLOSED & SCROLLED --- */

  /* Hamburger is Gold (Fixed invalid variable) */

  .header.scrolled .menu-toggle span {

    background-color: var(--gold-dark) !important;

  }



  /* --- WHEN MENU IS OPEN (Full Screen) --- */

  /* Remove white background so black menu shows through */

  body[style*="overflow: hidden"] .header {

    backdrop-filter: none !important;

    -webkit-backdrop-filter: none !important;

    background: transparent !important;

    box-shadow: none !important;

  }

  /* Force Logo to White (High Specificity) */

  body[style*="overflow: hidden"] .header .logo-img {

    filter: brightness(0) invert(1) !important;

  }

  /* Force Hamburger (X button) to White (High Specificity) */

  body[style*="overflow: hidden"] .header .menu-toggle span {

    background-color: #ffffff !important;

  }



  /* Fix menu modal to be a drop-down and black */

  .nav-menu {

    position: fixed !important;

    top: 0 !important;

    left: 0 !important;

    right: 0 !important;

    bottom: auto !important; /* NOT full screen */

    height: auto !important;

    background: rgba(15,15,15,0.98) !important;

    justify-content: flex-start !important;

    padding-top: 95px !important;

    padding-bottom: 35px !important;

    overflow-y: visible !important;

    border-bottom: 1px solid rgba(255,255,255,0.05) !important;

    border-bottom-left-radius: 20px !important;

    border-bottom-right-radius: 20px !important;

    box-shadow: 0 15px 40px rgba(0,0,0,0.6) !important;

    transition: opacity 0.3s ease !important;

  }

  /* Force all children to load instantly without stagger */

  .nav-menu > * {

    color: #ffffff !important;

    transition: none !important;

    animation: none !important;

    opacity: 1 !important;

    transform: none !important;

    transition-delay: 0s !important;

  }

  .nav-menu .nav-cta {

    margin-top: 10px !important; /* Espaço para o botão Quero Aprender */

  }



  /* 3. Hero Typography */

  .hero-title {

    font-weight: 800 !important;

    text-transform: uppercase !important;

    font-size: 1.7rem !important;

    margin-bottom: 5px !important;

  }

  .hero-subtitle-accent {

    margin-top: 0 !important;

    margin-bottom: 15px !important;

    line-height: 1.3 !important;

  }

  .hero-description {

    font-size: 0.85rem !important;

    margin-top: -5px !important;

    margin-bottom: 25px !important;

  }



  /* 4. Floating CTA */

  .hide-mobile {

    display: none !important;

  }

  .floating-cta {

    bottom: 20px !important;

    left: 50% !important;

    transform: translateX(-50%) translateY(20px) scale(0.9);

    width: 85% !important;

    max-width: 280px !important;

    right: auto !important;

  }

  .floating-cta.visible {

    transform: translateX(-50%) translateY(0) scale(1) !important;

  }

  .floating-cta .btn {

    border-radius: 20px !important;

    padding: 12px 18px !important;

    justify-content: center !important;

    font-size: 0.9rem !important;

    min-height: auto !important;

  }

}





/* 7. Quem Somos (Sobre) Section Fixes */

@media (max-width: 768px) {

  /* Reduzir e aplicar máscara degradê na imagem */

  #sobre .founders-image {

    max-height: 420px !important;

    mask-image: linear-gradient(to bottom, black 40%, transparent 85%);

    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 85%);

    margin-bottom: 0 !important;

    box-shadow: none !important;

    border: none !important;

    background: transparent !important;

    border-top-left-radius: var(--radius-xl) !important;

    border-top-right-radius: var(--radius-xl) !important;

    border-bottom-left-radius: 0 !important;

    border-bottom-right-radius: 0 !important;

  }

  #sobre .founders-image img {

    max-height: 420px !important;

    object-position: top center !important;

  }

  

  /* Subir o texto para o bloco degradê da imagem e centralizar */

  #sobre .founders-profiles {

    margin-top: -100px !important; /* Puxa para cima da foto transparente */

    position: relative;

    z-index: 10;

  }

  #sobre .founder-blog-card {

    text-align: center !important;

    background: transparent !important; /* Remover fundo do cartão para mesclar bem */

    backdrop-filter: none !important;

    -webkit-backdrop-filter: none !important;

    border: none !important;

    box-shadow: none !important;

    padding: 1rem !important;

  }

  #sobre .founder-name {

    font-size: 1.6rem !important;

  }

}



  #sobre .founders-subtitle-anim {

    font-size: 0.75rem !important;

    line-height: 1.35 !important;

    font-weight: 300 !important; /* Extremely thin */

    font-family: 'Inter', sans-serif !important;

    transform: translateY(-25px) !important; /* Force move up, bypassing margin issues */

    opacity: 0.8 !important;

    letter-spacing: 0.2px !important;

  }

  #sobre .founder-name {

    border-bottom: 0px solid transparent !important;

    box-shadow: none !important;

    padding-bottom: 0 !important;

  }





/* 8. Conteudo (Carousel) Fixes */

@media (max-width: 768px) {

  #conteudo .curriculum-content-col {

    text-align: center !important;

    display: flex;

    flex-direction: column;

    align-items: center;

    overflow: visible; /* Cards laterais precisam ser visíveis */

    width: 100% !important;

  }

  #conteudo .section-title {

    text-transform: uppercase !important;

    text-align: center !important;

  }

  #conteudo .section-subtitle {

    text-align: center !important;

    font-size: 0.85rem !important;

    max-width: 95% !important;

    margin: 0 auto 1rem auto !important;

  }

  

  /* Carrossel 2D - ajustes mobile */

  #moduleSlider {

    width: 100% !important;

    max-width: 100% !important;

    margin-top: 1rem !important;

    margin-bottom: 0 !important;

  }

  .video-slide {

    width: 310px !important;

  }

  .video-slide.active {

    transform: translate(-50%, -50%) translateX(0) scale(1) !important;

  }

  .video-slide.prev {

    transform: translate(-50%, -50%) translateX(-330px) scale(0.8) !important;

  }

  .video-slide.next {

    transform: translate(-50%, -50%) translateX(330px) scale(0.8) !important;

  }

  .video-slide.far-prev {

    transform: translate(-50%, -50%) translateX(-500px) scale(0.6) !important;

  }

  .video-slide.far-next {

    transform: translate(-50%, -50%) translateX(500px) scale(0.6) !important;

  }

  





}



/* Centralizar checks dentro do card flex */

.single-card {

  text-align: center;

  align-items: center;

}

.single-card p {

  text-align: center;

}

.single-card ul {

  display: inline-block;

  text-align: left;

}



/* Fix Uppercase */

.hero-title {

  font-size: clamp(2rem, 5.2vw, 3.5rem) !important;

  margin-bottom: 1rem;

  line-height: 1.1;

  text-transform: uppercase !important;

}

.pain-section .section-title {

  font-size: clamp(1.5rem, 4vw, 2.6rem) !important;

  margin-bottom: 0.5rem;

  line-height: 1.2;

  text-transform: uppercase !important;

}



/* Big Quotes for Testimonials */

.testimonial-quote-text {

  position: relative;

  display: inline-block;

  padding: 0 40px;

}



@media (max-width: 768px) {

  .testimonial-quote-text { padding: 0 20px; }

  .testimonial-quote-text::before { top: -10px; left: -5px; font-size: 4rem; }

  .testimonial-quote-text::after { bottom: -20px; right: -5px; font-size: 4rem; }

}



.hero-description {

  font-size: 0.85rem !important; /* Made even smaller */

}



/* Mobile Adjustments requested by user */

@media (max-width: 768px) {

  .pain-section { padding-top: 2rem !important; padding-bottom: 3rem !important; }

  .pain-resolution { padding: 1rem 0.5rem !important; margin-top: 1.5rem !important; max-width: 90%; }

}



/* Mobile adjustments for Hero as requested by user */

@media (max-width: 768px) {

  .hero-buttons .btn { padding: 8px 16px !important; font-size: 0.8rem !important; }

  .hero-description { font-size: 0.75rem !important; margin-bottom: 0.8rem !important; }

  .hero-badge { padding: 4px 10px !important; font-size: 0.65rem !important; margin-bottom: 0.5rem !important; }

  .hero-title { margin-bottom: 0.5rem !important; margin-top: 0 !important; }

  .hero-video { max-width: 100% !important; width: 100% !important; aspect-ratio: 4 / 3 !important; object-fit: cover !important; height: auto !important; display: block !important; border-radius: 20px !important; box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important; margin: 0 !important; }

  .hero-image-wrapper { max-height: none !important; height: auto !important; text-align: center; box-shadow: none !important; transform: none !important; margin: 0 auto 0.5rem auto !important; max-width: 95% !important; }

  .testimonials-section { padding-bottom: 0 !important; }

  .value-card { text-align: center; align-items: center; width: 90% !important; margin: 0 auto !important; padding: 1.25rem 1rem !important; }

  .value-footer { font-size: 0.65rem !important; margin-top: 1rem !important; max-width: 90%; margin-left: auto; margin-right: auto; }

  .hide-on-mobile { display: none !important; }



  /* Premium Offer Mobile */

  .premium-card-wrapper { box-shadow: none !important; padding: 0 !important; background: transparent !important; max-width: 100% !important; width: 100% !important; border: none !important; margin: 0 auto !important; overflow: visible !important; }

  .premium-card-wrapper::before, .premium-card-wrapper::after { display: none !important; }

  .premium-card { background: transparent !important; padding: 10px 0 !important; border: none !important; text-align: center !important; display: flex !important; flex-direction: column !important; align-items: center !important; gap: 20px !important; width: 100% !important; max-width: 100% !important; }

  .premium-card::before, .premium-card::after { display: none !important; }

  .premium-card-left { align-items: center !important; width: 100% !important; display: flex !important; flex-direction: column !important; }

  .premium-badge { margin: 0 auto 1rem auto !important; }

  .premium-title { text-align: center !important; font-size: 1.4rem !important; margin: 0 0 1rem 0 !important; text-transform: uppercase !important; }

  .premium-subtitle { text-align: center !important; font-size: 0.8rem !important; margin: 0 auto 2rem auto !important; max-width: 95% !important; }

  .premium-modules { width: 100% !important; display: flex !important; flex-direction: column !important; gap: 10px !important; align-items: center !important; }

  

  .premium-module-card { width: 95% !important; max-width: 340px !important; flex-direction: row !important; justify-content: space-between !important; text-align: left !important; padding: 1rem 1.2rem !important; margin: 0 auto !important; align-items: center !important; }

  .pmc-info { text-align: left !important; margin: 0 !important; flex: 1 !important; }

  .pmc-info h4 { font-size: 0.95rem !important; margin-bottom: 2px !important; }

  .pmc-info p { font-size: 0.7rem !important; line-height: 1.2 !important; margin: 0 !important; }

  

  /* Price Strikethrough Animation logic */

  .pmc-price { 

    margin: 0 0 0 15px !important; 

    font-size: 1.25rem !important; 

    text-decoration: none !important; 

    color: var(--gold) !important;

    transition: all 1s ease;

  }

  .premium-module-card.scrolled .pmc-price {

    text-decoration: line-through !important;

    color: var(--gray-400) !important;

  }



  .premium-card-right { display: flex !important; flex-direction: column !important; align-items: center !important; width: 100% !important; padding: 0 !important; margin-top: 1rem !important; overflow: visible !important; }

  

  .premium-guarantee-text h5 { font-size: 0.95rem !important; margin: 8px 0 !important; white-space: nowrap !important; }

  .premium-guarantee-text p { font-size: 0.75rem !important; }

  

  .premium-cta-wrapper { overflow: visible !important; margin-bottom: 0px !important; width: 100% !important; text-align: center !important; margin-top: 10px !important; }

  #offerCta { padding: 12px 15px !important; font-size: 0.95rem !important; max-width: 100% !important; margin: 0 auto !important; box-shadow: 0 0 30px rgba(200, 162, 74, 0.7) !important; white-space: nowrap !important; }

  

  .premium-why-block { width: 100% !important; max-width: 320px !important; text-align: center !important; margin-left: auto !important; margin-right: auto !important; }

  .premium-why-block { margin-top: 1.5rem !important; }

  

  .inline-benefits { font-size: 0.45rem !important; gap: 4px !important; margin-top: 8px !important; flex-wrap: nowrap !important; justify-content: center !important; width: 100% !important; }

  

  /* Footer Mobile */

  .faq-footer-wrapper { background-color: #ae7d8f !important; }

  .faq-section { padding-bottom: 10px !important; }

  .footer { padding-top: 20px !important; }

  

  .footer-top { grid-template-columns: 1fr !important; text-align: center !important; gap: 20px !important; }

  .footer-brand { margin: 0 auto !important; }

  .footer-brand .logo { display: inline-block !important; margin-bottom: -15px !important; }

  .footer-brand .logo-img { transform: scale(1.1) !important; height: 160px !important; margin: 0 auto !important; display: block !important; object-fit: contain !important; }

  .footer-brand p { margin-top: 0 !important; }

  .footer-social { justify-content: center !important; }

  

  .faq-footer-wrapper::before { display: block !important; filter: blur(30px) !important; opacity: 0.15 !important; z-index: 0 !important; } /* Fundo embaçado ativado, sem sobrepor texto */

  .faq-section, .footer { position: relative !important; z-index: 10 !important; }

  .faq-question, .faq-answer p { opacity: 1 !important; text-shadow: none !important; }

  .faq-section .section-title { text-transform: uppercase !important; }

  

  #oferta { padding-bottom: 20px !important; }

  

  .footer-links-wrapper { display: flex !important; flex-direction: row !important; justify-content: space-between !important; width: 100% !important; max-width: 350px !important; margin: 0 auto !important; gap: 10px !important; text-align: left !important; }

  .footer-links { margin-bottom: 0 !important; width: 50% !important; }

  .footer-links:last-child { text-align: right !important; }

  .footer-links h4 { font-size: 0.8rem !important; margin-bottom: 10px !important; }

  .footer-links a { font-size: 0.75rem !important; margin-bottom: 8px !important; }

}





/* FINAL MOBILE OVERRIDES */

@media (max-width: 768px) {

  /* Footer Mobile */

  .faq-footer-wrapper { background-color: #ae7d8f !important; }

  .faq-section { padding-bottom: 10px !important; }

  .footer { padding-top: 20px !important; }

  

  .footer-top { display: flex !important; flex-wrap: wrap !important; justify-content: center !important; text-align: center !important; gap: 20px !important; }

  .footer-brand { width: 100% !important; margin: 0 auto !important; order: 1 !important; }

  .footer-brand .logo { display: inline-block !important; margin-bottom: -15px !important; }

  .footer-brand .logo-img { transform: scale(1.1) !important; height: 160px !important; margin: 0 auto !important; display: block !important; object-fit: contain !important; }

  .footer-brand p { margin-top: 0 !important; }

  .footer-social { justify-content: center !important; }

  .footer-links:nth-of-type(2) { width: 45% !important; order: 2 !important; text-align: left !important; }

  .footer-links:nth-of-type(3) { width: 45% !important; order: 3 !important; text-align: right !important; }

  .footer-links h4 { font-size: 0.8rem !important; margin-bottom: 10px !important; }

  .footer-links a { font-size: 0.75rem !important; margin-bottom: 8px !important; }

  

  .faq-footer-wrapper::before { display: block !important; filter: blur(30px) !important; opacity: 0.15 !important; z-index: 0 !important; }

  .faq-section, .footer { position: relative !important; z-index: 10 !important; }

  .faq-question, .faq-answer p { opacity: 1 !important; text-shadow: none !important; }

  .faq-section .section-title { text-transform: uppercase !important; }

  

  #oferta { padding-bottom: 20px !important; }

  

  /* FAQ Mobile - hide toggle, force white text, gold on active */

  .faq-toggle { display: none !important; }

  .faq-question { justify-content: center !important; color: #ffffff !important; font-weight: 700 !important; font-size: 0.95rem !important; padding: 15px 0 !important; }

  .faq-item.active .faq-question { color: var(--gold) !important; }

  .faq-answer p { color: #ffffff !important; font-size: 0.85rem !important; text-align: center !important; }

  

  /* Ecosystem - hide specific cards on mobile */

  .ecosystem-grid .value-card:nth-child(2),

  .ecosystem-grid .value-card:nth-child(5) { display: none !important; }

  

  /* Notebook 3D - hide on mobile */

  #notebook3d { display: none !important; }



  /* Oferta - Inline benefits */

  .inline-benefits { font-size: 0.45rem !important; gap: 4px !important; margin-top: 8px !important; flex-wrap: nowrap !important; justify-content: center !important; width: 100% !important; }



  /* Fix for premium price one line */

  .price-old br { display: none !important; }

  .price-old { white-space: nowrap !important; font-size: 0.85rem !important; }

  .price-new { text-align: center !important; }

  #offerCta .arrow { display: none !important; }

  #offerCta span { display: block !important; white-space: nowrap !important; }

  .premium-safe {

    display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important;

    justify-content: center !important; gap: 4px !important; margin-top: 8px !important;

  }

  .premium-safe svg { display: none !important; }

  .premium-safe span { font-size: 0.45rem !important; color: var(--gold) !important; font-weight: 500 !important; white-space: nowrap !important; }

  .premium-guarantee-text h5 { font-size: 0.95rem !important; margin: 8px 0 !important; white-space: nowrap !important; }

  .premium-guarantee-text p { font-size: 0.75rem !important; text-align: center !important; }

  .premium-why-block { margin-top: 1.5rem !important; width: 100% !important; max-width: 320px !important; text-align: center !important; margin-left: auto !important; margin-right: auto !important; }

}


}


/* ========================================= */
/* ======= MOBILE SPRINT FINAL OVERRIDES === */
/* ========================================= */

/* Esconde elementos do desktop quando no celular */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-hidden {
    display: none !important;
  }

  /* 1. Títulos e Subtítulos Cortados */
  .section-title, .section-subtitle, h1, h2, h3, h4, h5, p, span {
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: keep-all;
  }

  /* 2. Caixa Rosa ("Você se identifica") */
  #identificacao {
    height: auto !important;
    padding: 30px 20px !important;
  }
  #identificacao .container {
    height: auto !important;
  }
  .pink-box { /* Caso tenha uma classe específica */
    height: auto !important;
    white-space: normal !important;
  }

  /* 4. Módulos 2D Slider */
  .video-slider-container {
      width: 100vw !important;
      margin-left: calc(-50vw + 50%) !important;
      padding: 0 20px !important;
      position: relative !important;
      overflow: hidden !important;
      display: flex !important;
      justify-content: center !important;
  }
  .video-track {
      position: relative !important;
      height: auto !important;
      min-height: 250px !important;
      width: 100% !important;
  }
  .carousel-3d-spinner {
      position: relative !important;
      display: flex !important;
      gap: 15px !important;
      overflow-x: auto !important;
      scroll-snap-type: x mandatory !important;
      scroll-behavior: smooth !important;
      padding-bottom: 20px !important;
      transform: none !important;
      transform-style: flat !important;
      animation: none !important;
      -webkit-overflow-scrolling: touch !important;
      width: 100% !important;
  }
  .carousel-3d-spinner::-webkit-scrollbar {
      display: none !important;
  }
  .video-slide {
      flex: 0 0 85% !important;
      max-width: 320px !important;
      scroll-snap-align: center !important;
      position: relative !important;
      transform: none !important;
      opacity: 1 !important;
      filter: none !important;
      pointer-events: auto !important;
      left: auto !important;
      top: auto !important;
      margin: 0 auto !important;
  }
  .video-description.single-card {
      height: auto !important;
      min-height: 250px !important;
  }

  /* 5. Vídeo de Depoimentos Menor */
  #depoimentos .curriculum-content-col {
    max-width: 250px !important;
    margin: 0 auto !important;
  }

  /* 7. Depoimento Sem Bloco (Com Aspas Douradas) */
  #depoimentos .curriculum-image-col > div {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    position: relative !important;
    margin-top: 15px !important;
  }
  #depoimentos .curriculum-image-col > div p {
    position: relative;
    padding: 0 15px;
  }
  #depoimentos .curriculum-image-col > div p::before {
    content: "«";
    color: var(--gold-primary, #d4a853);
    font-size: 2.5rem;
    position: absolute;
    left: -10px;
    top: -10px;
    font-family: serif;
    opacity: 0.7;
  }
  #depoimentos .curriculum-image-col > div p::after {
    content: "»";
    color: var(--gold-primary, #d4a853);
    font-size: 2.5rem;
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-family: serif;
    opacity: 0.7;
  }

  /* 8. e 9. "Muito mais do que o curso" e Subtítulo */
  #ambiente .section-title {
    text-transform: uppercase !important;
    max-width: 280px !important; /* Força quebra em duas linhas */
    margin: 0 auto 10px auto !important;
  }
  #ambiente .section-subtitle {
    font-size: 0.75rem !important;
  }

  /* 10. Oferta Exclusiva */
  /* Efeito de Risco Cinza */
  .offer-list-item {
    transition: all 0.5s ease;
  }
  .offer-list-item.scrolled-past {
    text-decoration: line-through !important;
    color: #666 !important;
    opacity: 0.6 !important;
  }
  /* HOJE VOCÊ ENTRA POR APENAS em maiúsculo */
  .offer-section p {
    text-transform: uppercase !important;
  }
  /* Valor "97,00" maior */
  .offer-section h2.price {
    font-size: 4rem !important;
  }
  /* Remover traço e vetor do botão na Oferta */
  .offer-section .cta-button svg, 
  .offer-section .cta-button .cta-subtext {
    display: none !important;
  }
  /* Reordenar pagamentos */
  .offer-section .payment-info-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .offer-section .payment-info-container p {
    font-size: 0.75rem !important;
    order: 1 !important; /* Coloca o texto em cima */
    text-transform: none !important; /* Restaura caixa original */
  }
  .offer-section .payment-info-container .vectors-container {
    order: 2 !important; /* Vetores embaixo */
    margin-top: 10px !important;
  }

  /* 11. Garantia 7 Dias */
  .guarantee-section .section-title {
    text-transform: uppercase !important;
  }
  .guarantee-section .section-subtitle {
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }
}



/* ========================================================= */
/* ======= MOBILE SPRINT FINAL OVERRIDES V2 (CORRECOES) ==== */
/* ========================================================= */

@media (max-width: 768px) {
  /* Utilitarios */
  .desktop-only { display: none !important; }
  .mobile-hidden { display: none !important; }
  .mobile-center-depo { 
      text-align: center !important; 
      align-items: center !important; 
  }

  /* 3. Subtitulo Pagamento Unico abaixo do botao */
  .premium-offer-section .premium-card-right {
      display: flex !important;
      flex-direction: column !important;
  }
  .premium-offer-section .premium-cta-wrapper {
      order: 1 !important; /* Botao primeiro */
      margin-bottom: 10px !important;
  }
  .premium-offer-section .price-benefits {
      order: 2 !important; /* Lista de pagamento debaixo do botao */
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: wrap !important;
      justify-content: center !important;
      gap: 5px !important;
  }
  .premium-offer-section .price-benefits span {
      font-size: 0.8rem !important;
  }
  .premium-offer-section .premium-guarantee-text {
      order: 3 !important;
      margin-top: 15px !important;
  }

  /* 4. Valores e Titulos da Oferta (MAIUSCULO) */
  .premium-price-block .price-today-label {
      text-transform: uppercase !important;
  }
  .premium-price-block .price-huge {
      font-size: 4.5rem !important;
  }

  /* 5. Animacao de Risco Cinza nos Modulos */
  .premium-module-card {
      transition: all 0.5s ease;
  }
  .premium-module-card.scrolled-past {
      text-decoration: line-through !important;
      color: #777 !important;
      opacity: 0.5 !important;
      filter: grayscale(1) !important;
  }
  /* Nao riscar o preco caso queira, ou riscar junto. O pedido foi riscar o valor tambem: "com o valor cinza e o risco" */
  .premium-module-card.scrolled-past .pmc-price,
  .premium-module-card.scrolled-past h4,
  .premium-module-card.scrolled-past p {
      text-decoration: line-through !important;
      color: #777 !important;
  }

  /* 6. Muito mais do que um curso (MAIUSCULO) */
  #ecossistema .section-title {
      text-transform: uppercase !important;
  }
  #ecossistema .section-subtitle {
      font-size: 0.75rem !important;
      max-width: 100% !important;
  }

  /* 7. Depoimento Alinhamento e Aspas */
  #depoimentos .curriculum-image-col p {
      text-align: center !important;
  }
  #depoimentos .curriculum-image-col > div {
      background: transparent !important;
      border: none !important;
      padding: 0 15px !important;
      position: relative !important;
      margin-top: 15px !important;
      display: flex;
      justify-content: center;
  }
  #depoimentos .curriculum-image-col > div p {
      position: relative;
      display: inline-block;
  }
  #depoimentos .curriculum-image-col > div p::before {
      content: "«";
      color: var(--gold-primary, #d4a853);
      font-size: 2.5rem;
      position: absolute;
      left: -20px;
      top: -10px;
      font-family: serif;
      opacity: 0.7;
  }
  #depoimentos .curriculum-image-col > div p::after {
      content: "»";
      color: var(--gold-primary, #d4a853);
      font-size: 2.5rem;
      position: absolute;
      right: -20px;
      bottom: -20px;
      font-family: serif;
      opacity: 0.7;
  }

  /* 8. Cartazes Invisiveis no Celular (Slider 2D) */
  /* Removemos o relative e opacity 0 dos filhos do reveal que falhavam no mobile no slider */
  .video-slider-container {
      width: 100vw !important;
      margin-left: calc(-50vw + 50%) !important;
      padding: 0 20px !important;
      overflow: hidden !important;
      display: flex !important;
      justify-content: center !important;
  }
  .curriculum-content-col.reveal-left {
      opacity: 1 !important; 
      transform: none !important;
  }
  /* O .carousel-3d-spinner continua como display flex horizontal */
  .carousel-3d-spinner {
      position: relative !important;
      display: flex !important;
      gap: 15px !important;
      overflow-x: auto !important;
      scroll-snap-type: x mandatory !important;
      scroll-behavior: smooth !important;
      padding-bottom: 20px !important;
      transform: none !important;
      transform-style: flat !important;
      animation: none !important;
      -webkit-overflow-scrolling: touch !important;
      width: 100% !important;
  }
  .video-slide {
      flex: 0 0 85% !important;
      max-width: 320px !important;
      scroll-snap-align: center !important;
      position: relative !important;
      transform: none !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      left: auto !important;
      top: auto !important;
      margin: 0 auto !important;
  }

  /* 9. Bloco Rosa de Conteudo ("Voce se identifica") */
  .pain-section .text-center {
      padding: 0 15px !important;
  }
  .pain-card {
      margin: 0 auto !important;
      max-width: 90% !important;
      padding: 1.5rem !important; /* Diminuir tamanho */
  }
  .pain-card-title {
      font-size: 1rem !important; /* Fonte um pouco menor */
  }
  .pain-card-desc {
      font-size: 0.85rem !important;
  }
}



/* ========================================================= */
/* ======= MOBILE SPRINT FINAL OVERRIDES V3 (REVIEWS) ====== */
/* ========================================================= */

@media (max-width: 768px) {
  /* 1. Oferta Exclusiva: Pagamento abaixo do botao e na mesma linha */
  /* Removemos o order que coloquei antes, pois o HTML agora ja esta na ordem certa (Why -> CTA -> Benefits). */
  .premium-offer-section .price-benefits {
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: wrap !important;
      justify-content: center !important;
      gap: 5px !important;
      margin-top: 15px !important;
  }
  .premium-offer-section .price-benefits span {
      font-size: 0.85rem !important;
  }

  /* 2. O valor acessivel tem que estar embaixo da garantia */
  /* O HTML agora esta na ordem certa, mas ajustando a margem para nao ficar espacado demais */
  .premium-why-block {
      margin-top: 20px !important;
      margin-bottom: 20px !important;
  }

  /* 3. Animacao de Risco Cinza nos Modulos */
  .premium-module-card {
      transition: all 0.5s ease;
  }
  /* Remove opacity and grayscale so they don't look invisible/bugged */
  .premium-module-card.scrolled-past {
      opacity: 1 !important;
      filter: none !important;
  }
  /* O texto fica riscado quando rolar */
  .premium-module-card.scrolled-past .pmc-price,
  .premium-module-card.scrolled-past h4,
  .premium-module-card.scrolled-past p {
      text-decoration: line-through !important;
      color: #999 !important;
      transition: all 0.5s ease;
  }

  /* 4. Cartazes / Slider 2D Invisiveis */
  /* Forcar a coluna a ficar visivel e ocupar o espaco no celular, removendo conflitos 3D */
  .curriculum-dark {
      overflow: hidden !important; /* impede vazamento lateral na secao inteira */
  }
  .curriculum-content-col {
      visibility: visible !important;
      opacity: 1 !important;
      transform: none !important;
      width: 100% !important;
      position: relative !important;
      z-index: 10 !important;
  }
  .curriculum-content-col.reveal-left {
      visibility: visible !important;
      opacity: 1 !important;
      transform: none !important;
  }
  /* Consertando o container do slider 2D */
  .video-slider-container {
      width: 100% !important;
      margin: 0 !important;
      padding: 0 10px !important;
      overflow: hidden !important;
      display: block !important;
  }
  .carousel-3d-spinner {
      position: relative !important;
      display: flex !important;
      gap: 15px !important;
      overflow-x: auto !important;
      scroll-snap-type: x mandatory !important;
      scroll-behavior: smooth !important;
      padding-bottom: 20px !important;
      transform: none !important;
      transform-style: flat !important;
      animation: none !important;
      -webkit-overflow-scrolling: touch !important;
      width: 100% !important;
  }
  .video-slide {
      flex: 0 0 85% !important;
      max-width: 300px !important;
      scroll-snap-align: center !important;
      position: relative !important;
      transform: none !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      left: auto !important;
      top: auto !important;
      margin: 0 !important;
  }
  .video-description {
      visibility: visible !important;
      opacity: 1 !important;
  }

  /* 5. Cartaz rosa do 'Voce se identifica' (Pain Resolution) */
  .pain-resolution {
      max-width: 85% !important;
      margin: 2rem auto !important;
      padding: 1rem !important;
  }
  .pain-resolution p:first-child strong {
      font-size: 0.9rem !important;
  }
  .pain-resolution p:last-child {
      font-size: 0.8rem !important;
  }
  
  /* Retorno as configuracoes previas caso tenham sido sobrescritas (garantia que o botao vai perder svg) */
  #floatingCtaBtn svg {
      display: none !important;
  }
}



/* ========================================================= */
/* ======= MOBILE SPRINT FINAL OVERRIDES V4 (POLISH) ======= */
/* ========================================================= */

@media (max-width: 768px) {
  /* Ocultar ' - R$ 97' na CTA Flutuante */
  .mobile-hidden {
      display: none !important;
  }
  
  /* Quebra de linha exclusiva para celular */
  .mobile-only {
      display: block !important;
  }

  /* Cartazes O que voce vai aprender (Mais horizontais e menores) */
  .video-slide {
      flex: 0 0 75% !important; /* Ligeiramente mais largo proporcionalmente */
      max-width: 280px !important;
      padding: 15px !important; /* Menos padding para reduzir altura */
      min-height: 180px !important;
  }
  .video-thumbnail {
      height: 140px !important; /* Thumbnail menor */
  }

  /* Remover aspas douradas do depoimento */
  #depoimentos .curriculum-image-col > div p::before,
  #depoimentos .curriculum-image-col > div p::after {
      content: none !important;
      display: none !important;
  }

  /* Pagamento unico - icone e tamanho */
  .premium-offer-section .price-benefits span {
      font-size: 0.75rem !important; /* Menor ainda */
      display: flex;
      align-items: center;
      gap: 3px;
  }
}

/* Esconder quebra de linha no desktop */
@media (min-width: 769px) {
  .mobile-only {
      display: none !important;
  }
}



/* ========================================================= */
/* ======= MOBILE SPRINT FINAL OVERRIDES V5 (BUTTON) ======= */
/* ========================================================= */

@media (max-width: 768px) {
  #floatingCtaBtn {
      padding: 8px 20px !important; /* Diminuindo a "sobra" vertical (altura do botao) */
      min-height: 40px !important;
      max-height: 45px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      line-height: 1 !important;
  }
}



/* ========================================================= */
/* ======= MOBILE SPRINT FINAL OVERRIDES V6 (BUTTON) ======= */
/* ========================================================= */

@media (max-width: 768px) {
  /* Revert height restrictions, and narrow the width */
  #floatingCtaBtn {
      padding: 12px 25px !important; /* Retorna a grossura vertical e controla as laterais */
      min-height: auto !important;
      max-height: none !important;
      width: auto !important; /* Em vez de 85%, ele abraça apenas o texto */
      max-width: 90% !important;
  }
}



/* ========================================================= */
/* ======= MOBILE SPRINT FINAL OVERRIDES V7 (BUTTON) ======= */
/* ========================================================= */

@media (max-width: 768px) {
  .floating-cta {
      display: flex !important;
      justify-content: center !important;
      width: 100% !important;
  }
  #floatingCtaBtn {
      width: 70% !important; /* Um pouquinho maior do que o abraço justo, e menor que o 85% original */
      margin: 0 auto !important; /* Centralizado perfeitamente */
      padding: 14px 20px !important;
      font-size: 1rem !important; /* Um pouco maior a fonte */
  }
}



/* ========================================================= */
/* ===== MOBILE MODULES V12 (MINIMALIST TEXT-ONLY) ========= */
/* ========================================================= */

@media (max-width: 768px) {
  /* Hide the FIRST curriculum-split-layout (the 3D carousel) on mobile */
  #conteudo > .container.curriculum-split-layout:first-child {
      display: none !important;
  }

  /* Show our mobile modules */
  .mob-modules-wrapper {
      padding: 0 25px 50px 25px;
  }

  .mob-modules-title {
      text-align: center;
      font-size: 1.8rem;
      color: #fff;
      line-height: 1.25;
      margin: 0 0 40px 0;
      font-family: serif;
      text-transform: uppercase;
      letter-spacing: 1px;
  }
  .mob-modules-title span {
      color: var(--gold-primary, #d4a853);
  }

  .mob-mod-item {
      margin-bottom: 40px;
      padding-left: 5px;
      /* Animation base state */
      opacity: 0;
      transform: translateX(-25px);
      transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }
  .mob-mod-item.active {
      opacity: 1;
      transform: translateX(0);
  }

  .mob-mod-icon {
      margin-bottom: 12px;
  }

  .mob-mod-number {
      font-size: 0.75rem;
      color: var(--gold-primary, #d4a853);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 6px;
      font-weight: 600;
  }

  .mob-mod-title {
      font-size: 1.15rem;
      color: #fff;
      margin: 0 0 8px 0;
      font-weight: 700;
      line-height: 1.3;
  }

  .mob-mod-subtitle {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.55);
      margin: 0 0 12px 0;
      line-height: 1.5;
  }

  .mob-mod-checklist {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  .mob-mod-checklist li {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.85rem;
      margin-bottom: 6px;
      padding-left: 20px;
      position: relative;
      line-height: 1.4;
  }
  .mob-mod-checklist li::before {
      content: '✓';
      color: var(--gold-primary, #d4a853);
      position: absolute;
      left: 0;
      top: 0;
      font-weight: bold;
  }
}

/* Ensure mobile-only is hidden on desktop */
@media (min-width: 769px) {
  .mob-modules-wrapper.mobile-only {
      display: none !important;
  }
}



/* ========================================================= */
/* ===== MOBILE MODULES V12.1 (GOLD FIX + CENTER) ========= */
/* ========================================================= */

@media (max-width: 768px) {
  /* Center the whole block */
  .mob-modules-wrapper {
      text-align: center !important;
  }

  /* Stronger gold on title */
  .mob-modules-title span {
      color: var(--gold-light, #edc234) !important;
  }

  /* Center each module item */
  .mob-mod-item {
      text-align: center !important;
      padding-left: 0 !important;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  /* Stronger gold on icon strokes */
  .mob-mod-icon svg {
      stroke: var(--gold-light, #edc234) !important;
  }

  /* Stronger gold on module number */
  .mob-mod-number {
      color: var(--gold-light, #edc234) !important;
  }

  /* Stronger gold on subtitle */
  .mob-mod-subtitle {
      color: var(--gold-light, #edc234) !important;
      opacity: 0.9;
  }

  /* Center checklist but keep left-aligned text */
  .mob-mod-checklist {
      text-align: left !important;
      display: inline-block;
  }

  /* Stronger gold on checkmarks */
  .mob-mod-checklist li::before {
      color: var(--gold-light, #edc234) !important;
  }
}



/* CHECKLIST CENTER FIX */
@media (max-width: 768px) {
  .mob-mod-checklist {
      text-align: center !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
  }
  .mob-mod-checklist li {
      text-align: center !important;
      padding-left: 0 !important;
      display: inline-flex !important;
      align-items: center !important;
      gap: 6px;
      justify-content: center !important;
  }
  .mob-mod-checklist li::before {
      position: static !important;
  }
}



/* REDUCE GAP BETWEEN MODULES AND TESTIMONIALS */
@media (max-width: 768px) {
  .mob-modules-wrapper {
      padding-bottom: 10px !important;
  }
  #depoimentos {
      margin-top: 1rem !important;
  }
}



/* WIDER CTA BUTTON IN OFFER SECTION (DESKTOP) */
@media (min-width: 769px) {
  .premium-cta-wrapper .btn-gold-lg {
      padding-left: 50px !important;
      padding-right: 50px !important;
  }
}



/* DESKTOP: WIDER OFFER BUTTON */
@media (min-width: 769px) {
  .btn-premium-huge {
      padding-left: 55px !important;
      padding-right: 55px !important;
  }
}

/* MOBILE: SLIGHTLY SMALLER OFFER BUTTON */
@media (max-width: 768px) {
  .btn-premium-huge {
      padding-left: 25px !important;
      padding-right: 25px !important;
      font-size: 0.95rem !important;
  }
}



/* ========================================================= */
/* ============= SECURITY - ANTI-COPY CSS ================== */
/* ========================================================= */

body {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

img {
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    pointer-events: none !important;
}

/* Allow clicking on links and buttons */
a, button, input, select, textarea, .btn-premium-huge, .btn-gold-lg, .nav-cta, .floating-cta, .faq-question, .menu-toggle, [data-nav] {
    pointer-events: auto !important;
    -webkit-user-select: auto;
    user-select: auto;
}

/* Allow video interaction */
video, iframe {
    pointer-events: auto !important;
}
