/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a9d7a;
  --primary-dark: #147a5e;
  --secondary: #22c997;
  --accent: #2ee8ad;
  --success: #34d399;
  --warning: #fbbf24;
  --chrome-gradient: linear-gradient(135deg, #1a9d7a 0%, #22c997 50%, #2ee8ad 100%);
  --chrome-shine: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  --glow-cyan: #22c997;
  --glow-purple: #1a9d7a;
  --glow-pink: #2ee8ad;
  --bg-dark: #000000;
  --bg-darker: #000000;
  --text-light: #f0f0f5;
  --text-muted: #a0a8b8;
  --border-color: rgba(26, 157, 122, 0.25);
  --card-bg: rgba(10, 10, 10, 0.85);
  --section-spacing: clamp(60px, 8vw, 120px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
  background: #000000;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Headings usam Manrope (estilo Furion) */
h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.close-friends-titulo,
.close-friends-subtitulo,
.stat-number,
.preco-valor-destaque,
.fundador-info h3,
.footer-brand {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Animações Tecnológicas */
@keyframes filmNoise {
  0%,
  100% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.1;
  }
}

@keyframes ditherDrift {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(2px, 2px);
  }
  50% {
    transform: translate(0, 2px);
  }
  75% {
    transform: translate(-2px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes chromeShine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    filter: blur(20px);
  }
  50% {
    opacity: 1;
    filter: blur(30px);
  }
}

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

@keyframes gridMove {
  0% {
    transform: perspective(500px) rotateX(60deg) translateZ(0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateZ(100px);
  }
}

/* Animações de Entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Classes de animação no scroll */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animações gerais para seções */
section {
  position: relative;
  z-index: 10000;
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Film Overlay - REMOVIDO */
.film-overlay {
  display: none;
}

/* Grid Tecnológico de Fundo - REMOVIDO */
body::before {
  display: none;
}

/* Efeito de Partículas Brilhantes - REMOVIDO */
body::after {
  display: none;
}

/* Orbs desabilitados */
.tech-background {
  display: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10000;
}

/* Header */
header {
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(26, 157, 122, 0.12);
  position: sticky;
  top: 0;
  z-index: 10001;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Manrope', 'Inter', sans-serif;
  transition: color 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-menu a:hover {
  color: var(--accent);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--chrome-gradient);
  transition: width 0.3s ease;
  border-radius: 1px;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  background: #000000;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
}

/* Glow sutil atrás do hero */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(26, 157, 122, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content > * {
  animation: fadeInUp 0.8s ease-out backwards;
}

.hero h1 {
  animation-delay: 0.2s;
}

.hero .subtitle {
  animation-delay: 0.4s;
}

.hero .cta-button {
  animation-delay: 0.6s;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-logo {
  position: relative;
  z-index: 10000;
  width: 180px;
  height: auto;
  margin-bottom: 48px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 0 30px rgba(26, 157, 122, 0.15));
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 32px;
  color: #ffffff;
  letter-spacing: -2.5px;
}

.hero h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--chrome-gradient);
  margin: 32px auto 0;
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(26, 157, 122, 0.3);
}

.subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.8;
  font-weight: 400;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Botões CTA */
.cta-button {
  position: relative;
  z-index: 10000;
  background-image: url('Screenshots/background-botoes-2.avif');
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 56px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Manrope', 'Inter', sans-serif;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  animation: scaleIn 0.6s ease-out;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.15);
  box-shadow: 0 8px 32px rgba(26, 157, 122, 0.2);
  border-color: rgba(26, 157, 122, 0.3);
}

.cta-button:active {
  transform: translateY(-1px) scale(1);
}

/* Stats Section */
.stats-section {
  padding: var(--section-spacing) 0 40px;
  background: #000000;
  position: relative;
}

/* Stats Tabs */
.stats-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.stats-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Manrope', 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stats-tab-btn:hover {
  border-color: rgba(26, 157, 122, 0.3);
  color: var(--text-light);
  transform: translateY(-2px);
}

.stats-tab-btn.active {
  background: linear-gradient(135deg, rgba(26, 157, 122, 0.12), rgba(34, 201, 151, 0.06));
  border-color: rgba(26, 157, 122, 0.4);
  color: var(--accent);
  box-shadow: 0 4px 24px rgba(26, 157, 122, 0.15);
}

.stats-tab-content {
  display: none;
}

.stats-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Container do vídeo com footer */
.video-box-container {
  position: relative;
  z-index: 10000;
  background: #2a2a2a url('Screenshots/Background das caixas 3.avif');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(26, 157, 122, 0.08);
  padding: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.video-headline {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin: 0 0 28px 0;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 28px;
  border: 2px solid #333;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

.stats-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  z-index: 10001;
}

/* Footer do vídeo */
.video-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.video-footer-text {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

.video-footer-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.dashboard-image {
  position: relative;
  z-index: 10000;
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 0 auto 60px auto;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 48px 28px;
  background: #2a2a2a url('Screenshots/Background das caixas 3.avif');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10000;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 157, 122, 0.4);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(26, 157, 122, 0.08);
}

.stat-number {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Diferencial */
.diferencial {
  padding: 80px 0;
  background: #000000;
  position: relative;
}

.diferencial h2 {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  color: var(--text-light);
}

/* Cases Section */
.cases {
  padding: var(--section-spacing) 0;
  background-color: #000000;
}

.cases h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.case-card {
  background: #2a2a2a url('Screenshots/Background das caixas 3.avif');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 36px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 10000;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--chrome-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover::before {
  transform: scaleX(1);
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 157, 122, 0.4);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(26, 157, 122, 0.08);
}

.case-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-light);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.video-wrapper {
  position: relative;
  z-index: 10000;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 16px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  z-index: 10001;
}

/* Testimonials Carousel */
.testimonials-carousel {
  padding: 80px 0;
  background: #000000;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-carousel::before,
.testimonials-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 250px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-carousel::before {
  left: 0;
  background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
}

.testimonials-carousel::after {
  right: 0;
  background: linear-gradient(to left, #000000 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
}

.carousel-row {
  display: flex;
  position: relative;
  gap: 20px;
  margin-bottom: 20px;
  width: max-content;
  -webkit-animation-duration: 60s;
  animation-duration: 60s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.carousel-left {
  -webkit-animation-name: scrollLeft;
  animation-name: scrollLeft;
}

.carousel-right {
  -webkit-animation-name: scrollRight;
  animation-name: scrollRight;
}

@-webkit-keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@-webkit-keyframes scrollRight {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 40px;
  min-width: 420px;
  max-width: 420px;
  min-height: 180px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.3s ease;
  backdrop-filter: blur(8px);
}

.testimonial-card:hover {
  border-color: rgba(26, 157, 122, 0.2);
}

.testimonial-card br {
  margin-bottom: 12px;
  display: block;
  content: '';
}

/* CTA Section */
.cta-section {
  padding: 48px 0;
  text-align: center;
  background-color: #000000;
}

/* Proposta de Valor */
.proposta-valor {
  padding: var(--section-spacing) 0;
  background: #000000;
  position: relative;
}

/* Glow sutil */
.proposta-valor::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(26, 157, 122, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.proposta-valor h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  text-align: center;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -1.5px;
  max-width: 850px;
  margin: 0 auto;
}

/* Comparativo */
.comparativo {
  padding: var(--section-spacing) 0;
  background-color: #000000;
}

.comparativo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.comparativo-column {
  position: relative;
  z-index: 10000;
  background: #2a2a2a url('Screenshots/Background das caixas 3.avif');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 48px 36px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.comparativo-column h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.5px;
}

.comparativo-column ul {
  list-style: none;
}

.comparativo-column li {
  padding: 14px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.comparativo-column li:last-child {
  border-bottom: none;
}

.icon-x {
  color: #ff4a4a;
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
}

.icon-check {
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
}

.comparativo-outros h3 {
  color: #ff4a4a;
}

.comparativo-nos h3 {
  color: var(--accent);
}

/* O que Esperar */
.o-que-esperar {
  padding: var(--section-spacing) 0;
  background-color: #000000;
}

.o-que-esperar h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  color: #d0d0d0;
  max-width: 800px;
  margin: 0 auto;
}

.logo-center {
  text-align: center;
  margin-top: 48px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.logo-center::after {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse 50% 45% at center, transparent 20%, #000000 58%);
  pointer-events: none;
  z-index: 10001;
}

.wonne-logo {
  position: relative;
  z-index: 10000;
  width: auto;
  height: auto;
  max-width: 100%;
  display: inline-block;
  filter: drop-shadow(0 0 20px rgba(26, 157, 122, 0.1));
}

/* Serviços */
.servicos {
  padding: var(--section-spacing) 0 clamp(20px, 3vw, 40px);
  background-color: #000000;
}

.servicos-badge {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f97316;
  text-align: center;
  margin-bottom: 16px;
}

.servicos-titulo {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  text-align: center;
  color: #d0d0d0;
  margin-bottom: 48px;
  line-height: 1.3;
}

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

.servico-card {
  background: #2a2a2a url('Screenshots/Background de caixas especiais V2.avif');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 32px 28px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.servico-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 4px;
}

.servico-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.servico-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.servico-card p {
  font-size: 14px;
  color: #999;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.servico-tag {
  display: inline-block;
  font-size: 12px;
  color: #ccc;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 4px 14px;
  width: fit-content;
  margin-top: 4px;
}

/* Título Ofertas */
.ofertas-titulo {
  padding: 80px 0 0;
  background: #000000;
}

.ofertas-titulo h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  text-align: center;
  color: #d0d0d0;
}

/* Leadbox CRM */
.leadbox-section {
  padding: 40px 0;
  padding-top: calc(40px + 320px);
  background: #000000;
}

.leadbox-box {
  background: url('Screenshots/Background da caixa de oferta.avif') center/cover no-repeat;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: visible;
  width: 100%;
  margin: 0 auto;
}

.leadbox-mockup {
  width: 80%;
  margin-top: -40%;
}

.leadbox-mockup img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.leadbox-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.leadbox-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 16px;
}

.leadbox-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.leadbox-desc {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 16px;
}

.leadbox-highlight {
  font-size: 17px;
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 24px;
}

.leadbox-highlight strong {
  color: #1a9d7a;
  font-weight: 600;
}

.leadbox-garantia {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-bottom: 0;
  margin-top: 16px;
}

.leadbox-content .cta-button {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .leadbox-section {
    padding-top: calc(var(--section-spacing) + 80px);
  }

  .leadbox-box {
    padding: 24px;
    gap: 12px;
    overflow: visible;
  }

  .leadbox-mockup {
    width: 75%;
    margin-top: -25%;
  }

  .dashboard-carousel-section {
    display: none !important;
  }
}

/* Dashboard Carousel */
.dashboard-carousel-section {
  padding: 40px 0;
  background: #000000;
  overflow: hidden;
  position: relative;
}

.dashboard-carousel-section::before,
.dashboard-carousel-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.dashboard-carousel-section::before {
  left: 0;
  background: linear-gradient(to right, #000000, transparent);
}

.dashboard-carousel-section::after {
  right: 0;
  background: linear-gradient(to left, #000000, transparent);
}

.dashboard-carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  -webkit-animation: dashboardScroll 45s linear infinite;
  animation: dashboardScroll 45s linear infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.dashboard-carousel-track img {
  height: 220px;
  width: auto;
  border-radius: 16px;
  border: 2px solid #2a2a2a;
  object-fit: cover;
  flex-shrink: 0;
  background: #111;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

@-webkit-keyframes dashboardScroll {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes dashboardScroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.dashboard-carousel-track:hover {
  animation-play-state: paused;
}

/* Método W.I.N */
.metodo-win {
  padding: clamp(20px, 3vw, 40px) 0 var(--section-spacing);
  background: #000000;
  position: relative;
}

.win-badge {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f97316;
  text-align: center;
  margin-bottom: 16px;
}

.metodo-win h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
  color: #d0d0d0;
  line-height: 1.3;
}

.win-box {
  background: url('Screenshots/Background das caixas 3.avif') center/cover no-repeat;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.win-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.win-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.win-card-icon-large {
  width: 100%;
  height: 160px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a9d7a;
  margin-bottom: 8px;
}

.win-card-icon-small {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}

.win-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.win-card p {
  font-size: 14px;
  color: #999;
  line-height: 1.7;
}

.win-box > .cta-button {
  margin-top: 0;
}

@media (max-width: 768px) {
  .win-box {
    padding: 24px;
  }
  .win-grid {
    grid-template-columns: 1fr;
  }
}

/* Prova Social YouTube */
.prova-social-section {
  padding: 40px 0;
  background: #000000;
}

.prova-social-box {
  background: url('Screenshots/Background das caixas 3.avif') center/cover no-repeat;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.prova-social-titulo {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  text-align: center;
  color: #d0d0d0;
  line-height: 1.3;
}

.prova-social-cards {
  display: flex;
  gap: 32px;
  align-items: stretch;
  width: 100%;
}

.prova-social-box > .cta-button {
  margin-top: 8px;
}

.prova-tweet {
  flex: 1;
  background: transparent;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.tweet-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.tweet-user {
  display: flex;
  flex-direction: column;
}

.tweet-name {
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}

.tweet-handle {
  color: #888;
  font-size: 14px;
}

.tweet-divider {
  height: 1px;
  background: #333;
  margin-bottom: 20px;
}

.tweet-text {
  color: #c0c0c0;
  font-size: 15px;
  line-height: 1.7;
}

.prova-video {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.yt-player-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid #333;
}

.yt-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.yt-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  padding: 20px 12px 8px;
}

.yt-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  margin-bottom: 6px;
}

.yt-progress-played {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 31%;
  background: #ff0000;
  border-radius: 2px;
}

.yt-progress-dot {
  position: absolute;
  top: 50%;
  left: 31%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #ff0000;
  border-radius: 50%;
}

.yt-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.yt-controls-left,
.yt-controls-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yt-ctrl-icon {
  color: #fff;
  font-size: 14px;
  opacity: 0.9;
}

.yt-time {
  color: #fff;
  font-size: 12px;
  opacity: 0.8;
}

.yt-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.yt-views {
  font-size: 14px;
  color: #888;
}

@media (max-width: 768px) {
  .prova-social-box {
    padding: 24px;
  }
  .prova-social-cards {
    flex-direction: column;
  }
}

/* Close Friends Oferta */
.close-friends-oferta {
  padding: var(--section-spacing) 0;
  background: #000000;
}

.close-friends-box {
  max-width: 800px;
  margin: 0 auto;
  background: #2a2a2a url('Screenshots/Background das caixas 3.avif');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 48px 64px;
  border-radius: 24px;
  border: 1px solid rgba(26, 157, 122, 0.3);
  position: relative;
  z-index: 10000;
  overflow: visible;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(26, 157, 122, 0.06);
  text-align: center;
}

.oferta-urgency-bar {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 105%;
  background: linear-gradient(90deg, #f59e0b, #f97316, #f59e0b);
  color: #000000;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  padding: 12px 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.close-friends-box > * {
  position: relative;
  z-index: 1;
}

.close-friends-titulo {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 4px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.close-friends-subtitulo {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

/* Lista estilo Furion */
.close-friends-lista-furion {
  list-style: none;
  text-align: left;
  max-width: 650px;
  margin: 0 auto 40px auto;
  padding: 0;
}

.close-friends-lista-furion li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.close-friends-lista-furion li:last-child {
  border-bottom: none;
}

.oferta-icon {
  color: #22c55e;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 50%;
}

.oferta-text {
  flex: 1;
  font-size: 16px;
  color: #e0e0e0;
  font-weight: 500;
  line-height: 1.5;
}

.oferta-badge {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  font-family: 'Manrope', 'Inter', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-price {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-free {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-bonus {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

/* Preço estilo Furion */
.close-friends-preco-furion {
  margin: 48px 0 36px 0;
  text-align: center;
}

.preco-periodo {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.preco-destaque-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.preco-valor-destaque {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -3px;
  line-height: 1;
  margin: 0;
}

.close-friends-box .cta-button {
  width: 100%;
  max-width: 560px;
  padding: 22px;
  font-size: 17px;
  margin-top: 16px;
}

/* Elegibilidade */
.elegibilidade {
  padding: var(--section-spacing) 0;
  background-color: #000000;
}

.elegibilidade h2 {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff;
}

.criterios-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.criterios-list li {
  padding: 20px 0;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Oferta Principal */
.oferta-principal {
  padding: var(--section-spacing) 0;
  background: #000000;
}

.oferta-box {
  max-width: 750px;
  margin: 0 auto;
  background: #2a2a2a url('Screenshots/Background das caixas 3.avif');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 60px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 10000;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.oferta-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--chrome-gradient);
}

.oferta-box > * {
  position: relative;
  z-index: 1;
}

.oferta-box h2 {
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 45px;
  color: var(--text-light);
  letter-spacing: -1px;
  line-height: 1.3;
}

.oferta-conteudo h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
}

.oferta-conteudo ul {
  list-style: none;
  margin-bottom: 40px;
}

.oferta-conteudo li {
  padding: 15px 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.preco {
  text-align: center;
  margin: 40px 0;
}

.preco-valor {
  font-size: 72px;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: -2px;
}

.oferta-box .cta-button {
  width: 100%;
  padding: 20px;
  font-size: 18px;
}

/* Sobre Fundador */
.sobre-fundador {
  padding: var(--section-spacing) 0;
  background: #000000;
  position: relative;
}

.sobre-fundador .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 56px;
  color: #ffffff;
  letter-spacing: -1px;
}

.fundador-content-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.fundador-foto {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.fundador-foto::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
  z-index: 10001;
  pointer-events: none;
}

.fundador-foto img {
  position: relative;
  z-index: 10000;
  width: auto;
  height: 650px;
  display: block;
}

.fundador-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.fundador-info h3 {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 8px;
  text-align: center;
  width: 100%;
}

.fundador-info p {
  font-size: 19px;
  color: #c8c8c8;
  line-height: 1.85;
  margin: 0;
  font-weight: 400;
  text-align: center;
}

/* FAQ */
.faq {
  padding: var(--section-spacing) 0;
  background-color: #000000;
}

.faq-badge {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.faq h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -1px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  z-index: 10000;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3,
.faq-item.active .faq-question h3 {
  color: var(--text-light);
}

.faq-chevron {
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 24px 0;
}

.faq-answer p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Modal de Contato */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  z-index: 1;
}

.modal-content {
  position: relative;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  max-width: 460px;
  width: 90%;
  padding: 40px 36px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
  z-index: 2;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal.closing .modal-content {
  animation: slideDown 0.3s ease forwards;
}

.modal.closing .modal-overlay {
  animation: fadeOut 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 32px;
  cursor: pointer;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--text-light);
  transform: rotate(90deg);
}

.modal-title {
  display: none;
}

.modal-subtitle {
  font-size: 14px;
  color: #999;
  text-align: center;
  margin-bottom: 28px;
}

.contact-form {
  position: relative;
  z-index: 3;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaa;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.form-group input[type='text'],
.form-group input[type='email'],
.form-group input[type='tel'] {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.form-group input::placeholder {
  color: #666;
}

.checkbox-group {
  margin-top: 24px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
}

.checkbox-label input[type='checkbox'] {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #1a9d7a;
}

.checkbox-label span {
  flex: 1;
  line-height: 1.5;
}

.terms-link {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.terms-link:hover {
  border-bottom-color: var(--accent);
}

.modal-submit-btn {
  width: 100%;
  padding: 18px;
  margin-top: 12px;
  background-image: url('Screenshots/background-botoes-2.avif');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  box-shadow: 0 8px 32px rgba(26, 157, 122, 0.2);
}

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

/* Footer */
footer {
  position: relative;
  z-index: 10000;
  padding: 72px 0;
  background-color: #000000;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo-wrapper {
  position: relative;
}

.footer-logo-img {
  position: relative;
  z-index: 10000;
  width: 220px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(26, 157, 122, 0.1));
}

.footer-brand {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 6px;
  margin: 0;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 700px;
}

.footer-contact {
  color: #ffffff;
  font-size: 15px;
}

.footer-address,
.footer-legal,
.footer-terms {
  color: #555;
  font-size: 13px;
  line-height: 1.6;
}

/* Redes Sociais no Footer */
.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.social-link {
  color: var(--text-muted);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.social-link:hover {
  color: var(--accent);
  transform: translateY(-3px);
  border-color: rgba(26, 157, 122, 0.2);
  background: rgba(26, 157, 122, 0.05);
}

.social-link svg {
  width: 28px;
  height: 28px;
}

/* Agitação de Dor */
.agitacao-dor {
  padding: 60px 0;
  background: var(--bg-dark);
}

.dor-box {
  max-width: 900px;
  margin: 0 auto;
  background: url('Screenshots/Background das caixas 3.avif') center/cover no-repeat;
  border-radius: 20px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dor-box h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

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

.dor-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.dor-icon {
  flex-shrink: 0;
}

.dor-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.dor-box .cta-button {
  margin-top: 35px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* O que Esperar - sub-headline */
.o-que-esperar-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ==================== RESPONSIVO MOBILE ==================== */
@media (max-width: 768px) {
  /* Prevenir scroll horizontal */
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  * {
    max-width: 100% !important;
  }

  body::after {
    display: none !important;
  }

  header {
    display: none;
  }

  .container {
    padding: 0 20px;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-content {
    grid-template-columns: 1fr !important;
    gap: 30px;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -1px;
  }

  .subtitle {
    font-size: 16px;
  }

  .hero-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  /* Stats */
  .stats-tabs {
    flex-direction: column;
    gap: 12px;
  }

  .stats-tab-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .dashboard-image {
    width: 100%;
    height: auto;
  }

  /* Carrossel */
  .testimonials-carousel {
    display: none !important;
  }

  /* Cases */
  .cases-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  /* Agitação de Dor Mobile */
  .dor-box {
    padding: 30px 18px;
  }

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

  .dor-box h2 {
    font-size: 1.5rem;
  }

  /* Fundador */
  .gustavo-freire-content {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .fundador-foto img {
    content: url('Screenshots/Gustavo Freire - Mobile.png') !important;
    width: 100% !important;
    max-width: 300px !important;
    height: auto !important;
    margin: 0 auto;
    object-fit: cover;
  }

  .fundador-info p {
    text-align: center;
    font-size: 17px;
  }

  .gustavo-freire-image {
    width: 100% !important;
    max-width: 300px !important;
    height: auto !important;
    margin: 0 auto;
    object-fit: cover;
  }

  .gustavo-freire-text {
    text-align: justify;
  }

  /* Grids */
  .win-grid,
  .servicos-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .comparativo-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .comparativo-column {
    min-width: 100%;
  }

  /* Close Friends */
  .close-friends-oferta {
    padding: 40px 0;
  }

  .close-friends-box {
    padding: 36px 24px;
  }

  .close-friends-titulo {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .close-friends-subtitulo {
    font-size: 18px;
  }

  .close-friends-lista-furion li {
    gap: 10px;
  }

  .oferta-text {
    font-size: 14px;
  }

  .oferta-badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  .preco-valor-destaque {
    font-size: 42px;
  }

  /* FAQ */
  .faq h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px;
  }

  .faq-answer {
    font-size: 15px;
    padding: 20px;
  }

  /* Modal */
  .modal-content {
    width: 90%;
    max-width: 400px;
    padding: 30px 20px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-close {
    font-size: 32px;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }

  .modal-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .modal-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .form-group input {
    padding: 12px;
    font-size: 15px;
  }

  .modal-submit-btn {
    padding: 14px;
    font-size: 16px;
  }

  /* Video */
  .video-box-container {
    padding: 20px;
  }

  .video-headline {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .video-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .video-footer-text {
    font-size: 16px;
  }

  .video-footer-btn {
    width: 100%;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 24px;
  }

  .footer-logo {
    margin: 0 auto;
  }

  /* Títulos */
  h2 {
    font-size: 28px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  /* Botões */
  .cta-button {
    padding: 16px 36px;
    font-size: 14px;
    width: 100%;
  }

  .stats-video-wrapper {
    max-width: 100%;
  }
}

/* ===== PANDA VIDEO PLAYER ===== */
.panda-player-wrapper {
  position: relative;
}

.panda-player-wrapper > div[id^='panda-yt-'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.panda-player-wrapper > div[id^='panda-yt-'] iframe {
  position: absolute !important;
  top: -60px !important;
  left: 0 !important;
  width: 100% !important;
  height: calc(100% + 120px) !important;
  border-radius: 12px;
  pointer-events: none;
}

.panda-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.panda-controls-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.panda-controls-layer .panda-controls {
  pointer-events: all;
}

.panda-overlay.hidden {
  display: none;
}

.panda-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.panda-overlay:hover .panda-thumbnail {
  opacity: 0.7;
}

.panda-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 72px;
  height: 72px;
  background: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(249, 115, 22, 0.55);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  z-index: 2;
}

.panda-overlay:hover .panda-play-btn {
  transform: translate(-50%, -60%) scale(1.1);
  box-shadow: 0 6px 32px rgba(249, 115, 22, 0.75);
}

.panda-play-btn svg {
  margin-left: 5px;
}

.panda-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  padding: 32px 14px 10px;
  z-index: 3;
}

.panda-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  margin-bottom: 8px;
  cursor: pointer;
}

.panda-progress-fill {
  height: 100%;
  width: 0%;
  background: #f97316;
  border-radius: 2px;
  transition: width 0.3s;
}

.panda-controls-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.panda-ctrl-play,
.panda-ctrl-vol,
.panda-ctrl-full {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  opacity: 0.9;
  transition: opacity 0.15s;
}

.panda-ctrl-play:hover,
.panda-ctrl-vol:hover,
.panda-ctrl-full:hover {
  opacity: 1;
}

.panda-time {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.panda-spacer {
  flex: 1;
}

.panda-overlay::before {
  content: 'panda';
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  text-transform: lowercase;
  background: rgba(0, 0, 0, 0.45);
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 4;
  opacity: 0.8;
}

/* ===== PANDA SKIN ===== */
.panda-skin {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.panda-skin iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  z-index: 1;
}

.panda-skin-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 42px;
  background: #0a0a0a;
  z-index: 2;
  pointer-events: none;
  border-radius: 0;
}

.panda-skin-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0a0a0a;
  z-index: 2;
  pointer-events: none;
  padding: 6px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.panda-skin-bottom .panda-vol-btn {
  pointer-events: all;
}

.panda-skin-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.panda-skin-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: #f97316;
  border-radius: 2px;
}

.panda-skin-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.panda-vol-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity 0.15s;
  pointer-events: all;
}

.panda-vol-btn:hover {
  opacity: 1;
}

.panda-skin-logo {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: lowercase;
}

.panda-skin-spacer {
  flex: 1;
}
