/* ==========================================================================
   DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
  /* Colors - As per Design System */
  --bg: #000000;
  --surface: rgba(18, 18, 18, 0.4);
  --surface-2: rgba(26, 26, 26, 0.4);

  --bg: #000000;
  --bg-alt: #080808;
  --surface: #0A0A0A;
  --surface-2: #111111;

  --line: rgba(255, 255, 255, 0.08);

  --text: #FFFFFF;
  --muted: #A0A0A0;

  --primary: #FF6A00;
  --primary-soft: #FF8533;
  --primary-glow: rgba(255, 106, 0, 0.4);
  --primary-glow-subtle: rgba(255, 106, 0, 0.1);

  --success: #22C55E;
  --warning: #FACC15;
  --error: #EF4444;
  --info: #3B82F6;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Shadows & Glow */
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, .35);
  --shadow-glow: 0 0 25px rgba(255, 106, 0, .18);
  --shadow-glow-strong: 0 0 40px rgba(255, 106, 0, .3);

  /* Typography */
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Layout */
  --container-width: 1200px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: initial;
  /* Lenis handles this */
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   BUTTONS (UI/UX Pro Max Priority 2 & 4)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 13px;
  font-family: var(--font-body);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border: none;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 480px) {
  .btn {
    font-size: 12px;
    padding: 10px 20px;
    width: 100%;
  }
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transform: skewX(-25deg);
  transition: none;
  z-index: -1;
}

.btn:hover::after {
  left: 150%;
  transition: 0.6s;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8533 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF8533 0%, var(--primary) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.5);
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background-color: var(--surface-2);
  border-color: var(--muted);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text);
  padding: 8px 16px;
}

.btn-ghost:hover {
  color: var(--primary);
}

/* ==========================================================================
   GLOBAL LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
  position: relative;
  background-color: var(--bg);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
    /* Espaçamento reduzido no mobile */
  }
}

.bg-alt {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.15), rgba(255, 106, 0, 0.05));
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 99px;
  border: 1px solid rgba(255, 106, 0, 0.3);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.1);
}

.section-header i[data-lucide] {
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.section-title em {
  font-family: var(--font-heading);
  font-style: normal;
  color: var(--primary);
  text-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
}

.section-desc {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.logo-spark {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text .bou {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.logo-sub {
  display: flex;
  flex-direction: column;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 28px;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

/* Nav Mobile CTA - Hidden by default */
.nav-mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: -100%;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
    height: auto;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Alinhamento à esquerda fica mais moderno */
    justify-content: flex-start;
    gap: 0;
    padding: 24px;
    z-index: 90;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    visibility: hidden;
  }

  .navbar.active .nav-links {
    top: 75px;
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    width: 100%;
    text-align: left;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    letter-spacing: -0.01em;
  }

  .nav-links a:last-child {
    border-bottom: none;
    margin-top: 20px;
  }

  /* Botão de Contato no Mobile */
  .nav-links .nav-mobile-cta {
    display: flex;
    background: linear-gradient(135deg, var(--primary) 0%, #FF8533 100%);
    color: #fff;
    padding: 18px;
    border-radius: 14px;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    border: none;
  }

  .nav-links .nav-mobile-cta:hover {
    color: #fff;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }
}

/* ==========================================================================
   1. HERO (#home)
   ========================================================================== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 0;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.08) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 40px;
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 700px;
  flex: 1;
}

.hero-tagline {
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
}

.text-gradient-animated {
  background: linear-gradient(90deg, #FF6A00, #FF9500, #FF4D00, #FF9500, #FF6A00);
  background-size: 300% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientMove 6s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-desc {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.5;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background-color: var(--primary);
  margin-bottom: 40px;
}

.btn-outline-glow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: transparent;
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  align-self: flex-start;
}

.btn-outline-glow i {
  color: var(--primary);
  width: 18px;
  height: 18px;
}

.btn-outline-glow:hover {
  background: rgba(255, 106, 0, 0.05);
  border-color: var(--primary);
  color: var(--text);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.15);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-3d-logo {
  width: 100%;
  max-width: 700px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: float-3d 6s ease-in-out infinite;
}

@keyframes float-3d {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-footer-text {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  padding-bottom: 20px;
}

@media (max-width: 992px) {
  .hero-video-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 1) 100%);
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-container {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 80px;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }


  .hero::before {
    top: 20%;
    right: 50%;
    transform: translateX(50%);
    width: 600px;
    height: 600px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-footer-text {
    position: relative;
    left: 0;
    right: 0;
    margin-top: 40px;
  }
}

/* ==========================================================================
   2. SERVICES (#servicos) - CAROUSEL MASTER
   ========================================================================== */
.section-carousel-base {
  background: var(--bg);
}

.section-carousel-base .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.carousel-wrapper {
  overflow-x: auto;
  width: 100%;
  padding: 20px 0 40px;
  margin: -20px 0 -40px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.carousel-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.cards-track {
  display: flex;
  gap: 24px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 0;
  width: calc((100% - 48px) / 3);
  flex: 0 0 calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 480px;
  scroll-snap-align: start;
}

.card-body {
  padding: 40px 40px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 768px) {
  .card {
    min-height: 520px;
  }
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.4);
  box-shadow: var(--shadow-glow);
}

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--primary);
  background: rgba(255, 106, 0, 0.1);
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 106, 0, 0.2);
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

.card-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 14px;
  margin-bottom: 24px;
  flex: 1;
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0.9;
  transition: all 0.5s ease;
  margin-top: auto;
}

.card:hover .card-image {
  opacity: 1;
  transform: scale(1.05);
}

.dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  justify-content: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  width: 24px;
  border-radius: 99px;
  background: var(--primary);
}

@media (max-width: 992px) {
  .card {
    width: calc((100% - 24px) / 2);
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  .section-carousel-base .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .nav-buttons {
    width: 100%;
    justify-content: flex-end;
  }

  .card {
    width: 85%;
    flex: 0 0 85%;
  }
}

/* ==========================================================================
   3. ABOUT / OPERATION (#sobre)
   ========================================================================== */
.about {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  opacity: 1;
}

.about-decorator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 106, 0, 0.3);
  box-shadow: var(--shadow-glow);
}

.about-features {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 48px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.feature-item:hover {
  background: rgba(255, 106, 0, 0.03);
}

.feature-item:nth-child(3n) {
  border-right: none;
}

.feature-item:nth-last-child(-n+3) {
  border-bottom: none;
}

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

  .feature-item:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature-item:nth-child(2n) {
    border-right: none;
  }

  .feature-item:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .about-features {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .feature-item {
    border-right: none !important;
    padding: 32px 20px;
    align-items: center;
    text-align: center;
  }

  .feature-item h4 {
    font-size: 20px;
  }

  .feature-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature-item:last-child {
    border-bottom: none;
  }
}

.feature-icon {
  color: var(--primary);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px var(--primary-glow));
}

.feature-item h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.about-footer-text {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-footer-text p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  max-width: 600px;
}

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

/* ==========================================================================
   FUNNEL (#funil)
   ========================================================================== */
.funnel {
  background: transparent;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 140px 0;
}

.funnel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.03) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.funnel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  position: relative;
}

/* Conectores Visuais */
@media (min-width: 1201px) {
  .funnel-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary);
    opacity: 0.2;
    font-weight: 300;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 1200px) {
  .funnel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

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

.funnel-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 30px;
  border-radius: 32px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
}

.funnel-card:hover {
  transform: translateY(-15px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: var(--primary);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 106, 0, 0.2);
}

.funnel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent, rgba(255, 106, 0, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.4s;
}

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



.funnel-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 64px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-heading);
  transition: all 0.4s;
  z-index: 0;
}

.funnel-card:hover .funnel-number {
  color: var(--primary);
  opacity: 0.15;
  transform: scale(1.1);
  text-shadow: 0 0 30px rgba(255, 106, 0, 0.4);
}

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

.funnel-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 24px;
  filter: drop-shadow(0 0 12px var(--primary-glow));
  transition: all 0.4s ease;
}

.funnel-card:hover .funnel-icon {
  filter: drop-shadow(0 0 20px var(--primary));
  transform: scale(1.1) rotate(5deg);
}

.funnel-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.funnel-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

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

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

/* ==========================================================================
   4. STRATEGY 360 (#estrategia)
   ========================================================================== */
.strategy-360 {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.strategy-content .section-title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.strategy-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.strategy-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.strategy-item:hover {
  background: rgba(255, 106, 0, 0.05);
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateX(10px);
}

.strategy-icon {
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s;
}

.strategy-icon i,
.strategy-icon svg {
  width: 20px;
  height: 20px;
}

.strategy-item:hover .strategy-icon {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.strategy-info h4 {
  font-size: 17px;
  margin-bottom: 4px;
  color: white;
}

.strategy-info p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.strategy-visual {
  position: relative;
}

.visual-container {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface);
}

.main-visual {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.strategy-visual:hover .visual-container {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(255, 106, 0, 0.2);
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
  z-index: -1;
  animation: pulse-glow 4s infinite alternate;
}

/* Onboarding Section */
.onboarding {
  padding: 120px 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 106, 0, 0.02));
}

.onboarding-timeline {
  position: relative;
  margin-top: 80px;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 55px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: linear-gradient(to right,
      rgba(255, 106, 0, 0.1),
      rgba(255, 106, 0, 0.5) 20%,
      rgba(255, 106, 0, 0.5) 80%,
      rgba(255, 106, 0, 0.1));
  z-index: 1;
}

.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.onboarding-step {
  position: relative;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.onboarding-step:hover {
  background: rgba(255, 106, 0, 0.03);
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-node {
  width: 32px;
  height: 32px;
  background: var(--surface);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  position: absolute;
  top: -16px;
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
  transition: all 0.3s;
}

.onboarding-step:hover .step-node {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-glow);
  transform: scale(1.2);
}

.step-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.onboarding-step h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: white;
}

.onboarding-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.step-icon {
  margin-top: auto;
  padding-top: 24px;
  color: rgba(255, 106, 0, 0.15);
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}

.onboarding-step:hover .step-icon {
  color: var(--primary);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .timeline-line {
    display: none;
  }

  .onboarding-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .onboarding-step {
    text-align: left;
    align-items: flex-start;
    padding-left: 60px;
  }

  .step-node {
    left: 20px;
    top: 40px;
  }

  .step-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    padding-top: 0;
  }
}

/* Qualification Section */
.qualification {
  padding: 100px 0;
}

.qualification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.qual-card {
  padding: 48px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.qual-card.is-for {
  border-color: rgba(34, 197, 94, 0.2);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.02) 0%, transparent 100%);
}

.qual-card.not-for {
  border-color: rgba(239, 68, 68, 0.2);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.02) 0%, transparent 100%);
}

.qual-card h3 {
  font-size: 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.qual-card.is-for h3 {
  color: #22c55e;
}

.qual-card.not-for h3 {
  color: #ef4444;
}

.qual-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qual-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.qual-item i {
  flex-shrink: 0;
  margin-top: 4px;
}

.qual-item p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.qual-item strong {
  color: white;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 992px) {

  .onboarding-steps,
  .qualification-grid {
    grid-template-columns: 1fr;
  }
}

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

  .strategy-visual {
    order: -1;
  }
}

@keyframes pulse-glow {
  from {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* ==========================================================================
   5. DIFFERENTIALS (#diferenciais)
   ========================================================================== */
.differentials {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.differentials::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.compare-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.compare-card.bou-method {
  background: var(--surface-2);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  position: relative;
}

.compare-card.bou-method::before {
  content: 'Recomendado';
  position: absolute;
  top: -12px;
  right: 40px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.compare-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.compare-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.common-method .compare-list li {
  color: var(--muted);
}

.common-method .icon-x {
  color: var(--error);
}

.bou-method .icon-check {
  color: var(--primary);
}

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

/* ==========================================================================
   5. TEAM / ECOSYSTEM (#equipe)
   ========================================================================== */
.team {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin-bottom: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover .team-photo {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
}

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

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

/* ==========================================================================
   6. RESULTS (#resultados)
   ========================================================================== */

/* ==========================================================================
   7. PORTFOLIO (#portfolio)
   ========================================================================== */
.portfolio {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.case-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  group;
}

.case-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s;
}

.case-card:hover .case-img {
  transform: scale(1.05);
}

.case-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 32px 32px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
}

.case-badge {
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
  display: inline-block;
}

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

/* ==========================================================================
   8. TESTIMONIALS (#depoimentos) - MARQUEE MASTER
   ========================================================================== */
.testimonials-section {
  background: var(--bg);
  padding: 120px 0;
  overflow: hidden;
}

.testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  height: 800px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.testimonials-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 350px;
}

.marquee-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 32px;
  /* Compensador de gap para loop perfeito */
}

/* ANIMATION SPEEDS */
.col-1 .marquee-inner {
  animation: scrollVertical 30s linear infinite;
}

.col-2 .marquee-inner {
  animation: scrollVertical 45s linear infinite;
}

.col-3 .marquee-inner {
  animation: scrollVertical 35s linear infinite;
}

@keyframes scrollVertical {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 30px;
}

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

.testimonial-author img,
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  /* Garante que o círculo não deforme */
}

.author-avatar {
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.author-info h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.author-info p {
  font-size: 13px;
  color: var(--primary);
}

@media (max-width: 1024px) {
  .col-3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .col-2 {
    display: none;
  }

  .testimonials-grid {
    height: 600px;
  }
}

/* ==========================================================================
   9. CTA (#cta)
   ========================================================================== */
.cta-section {
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.1) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.cta-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 100px 40px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.cta-box .section-desc {
  font-size: 20px;
  margin-bottom: 48px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 600px) {
  .cta-section .btn {
    padding: 16px 24px !important;
    font-size: 15px !important;
    white-space: nowrap;
  }

  .cta-box {
    padding: 60px 24px;
  }
}

/* ==========================================================================
   10. FAQ (#faq)
   ========================================================================== */
.faq {
  background: transparent;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}

.faq-icon {
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer p {
  padding-bottom: 24px;
  color: var(--muted);
}

/* ==========================================================================
   11. LOCATION / CONTACT (#localizacao)
   ========================================================================== */
.location {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.map-container {
  width: 100%;
  height: 400px;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}

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

/* ==========================================================================
   12. FOOTER (Elite Footer Pattern)
   ========================================================================== */
.footer {
  background: var(--bg);
  color: var(--text);
  padding: 80px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  margin-right: auto;
  max-width: 400px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-logo span {
  color: var(--primary);
}

.footer-links h3,
.footer-social h3 {
  margin-bottom: 24px;
  font-size: 16px;
  font-family: var(--font-heading);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 50px;
  color: var(--muted);
  font-size: 14px;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.social-link:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.dev-link {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.dev-link:hover {
  text-decoration: underline;
  color: var(--text);
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Founder Section */
.founder {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to top, rgba(255, 106, 0, 0.05), transparent);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.founder-visual {
  position: relative;
}

.founder-image-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.founder-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.2) 0%, transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

.founder-content .section-badge {
  margin-bottom: 24px;
}

.founder-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 32px;
  line-height: 1.1;
  color: white;
}

.founder-bio p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.founder-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item h3 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .founder-content .section-badge {
    margin: 0 auto 24px;
  }

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

  .founder-stats {
    justify-content: center;
  }
}

/* Utilities */
.result-card {
  flex: 0 0 calc((100% - 60px) / 4);
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s;
}

.result-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 992px) {
  .result-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 480px) {
  .result-card {
    flex: 0 0 100%;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}/* ============================================================
   REDESIGN.CSS — Método BOU Landing Page
   Identidade: Preto (#000) + Laranja (#FF6A00) + Branco
   Fontes: Sora (headings) + Outfit (body)
   ============================================================ */

/* ─── VARIÁVEIS ─────────────────────────────────────────── */
:root {
  --orange: #FF6A00;
  --orange-soft: #FF8533;
  --orange-glow: rgba(255, 106, 0, 0.25);
  --black: #000000;
  --black-soft: #090909;
  --surface: #111111;
  --surface-2: #181818;
  --line: rgba(255, 255, 255, 0.08);
  --white: #FFFFFF;
  --muted: #A0A0A0;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --max-w: 1200px;
  --radius: 16px;
}

/* ─── RESET BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── UTILITÁRIOS ────────────────────────────────────────── */
.text-orange { color: var(--orange); }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}
.section-p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
}

/* Animate on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0s);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: background .35s, backdrop-filter .35s, padding .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.nav-link:hover { color: var(--white); }
.btn-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-nav-cta:hover {
  background: var(--orange-soft);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--orange-glow);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* ─── PRISMA HERO (BOU Edition) ──────────────────────────── */

/* Seção outer: full viewport */
.prisma-hero {
  height: 100svh;
  min-height: 600px;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

/* Inner full width sem mascaramento arredondado */
.prisma-hero-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}
@media (min-width: 768px) {
  .prisma-hero-inner { border-radius: 0; }
}

/* Vídeo de fundo */
.prisma-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Noise overlay — textura sutil */
.prisma-noise {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .55;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Gradient overlay: topo e base escuros */
.prisma-gradient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35) 0%,
    transparent 40%,
    rgba(0,0,0,.70) 100%
  );
}

/* Filtro laranja — a "assinatura" Bou sobre o vídeo */
.prisma-orange-filter {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    135deg,
    rgba(255, 106, 0, 0.25) 0%,
    rgba(255, 60, 0, 0.10) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

/* ── Conteúdo: ancorado no fundo ─── */
.prisma-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding-bottom: 12px;   /* só bottom — lados ficam com o container */
}
@media (min-width: 640px)  { .prisma-bottom { padding-bottom: 16px; } }
@media (min-width: 1024px) { .prisma-bottom { padding-bottom: 24px; } }

/* Container alinhado ao mesmo max-width do navbar */
.prisma-container {
  max-width: var(--max-w);   /* 1200px — igual ao .container do navbar */
  margin: 0 auto;
  padding: 0 24px;           /* mesmo padding do .container */
  width: 100%;
}

/* Grid 12 colunas */
.prisma-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;                /* ambas colunas alinham pelo fundo */
  gap: 16px;
}
@media (min-width: 1024px) { .prisma-grid { gap: 40px; } }

/* Coluna esquerda — 8/12 em desktop, cola no fundo */
.prisma-col-left {
  grid-column: 1 / -1;             /* mobile: full width */
  align-self: end;                 /* cola no fundo do grid */
}
@media (min-width: 1024px) {
  .prisma-col-left { grid-column: 1 / 9; }
}

/* Headline da frase — tamanho editorial responsivo */
.prisma-brand {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  font-size: 9vw;           /* mobile: frase cabe bem */
  overflow: visible;
  margin-bottom: 0;
}

/* Variante frase longa: linha-altura um pouco mais arejada */
.prisma-brand--phrase {
  line-height: 1.08;
  letter-spacing: -0.04em;
}

/* Cada linha da frase: exibição em bloco para quebra controlada */
.prisma-line {
  display: block;
  overflow: hidden;           /* recorta o pull-up por linha */
  padding-bottom: 0.05em;    /* evita corte do descend. das letras */
}

/* Responsive: cresce em mobile, encolhe em desktop */
@media (min-width: 480px)  { .prisma-brand { font-size: 8vw; } }
@media (min-width: 640px)  { .prisma-brand { font-size: 6.5vw; } }
@media (min-width: 768px)  { .prisma-brand { font-size: 5.5vw; } }
@media (min-width: 1024px) { .prisma-brand { font-size: 4.0vw; } }
@media (min-width: 1280px) { .prisma-brand { font-size: 3.6vw; } }
@media (min-width: 1536px) { .prisma-brand { font-size: 3.2vw; } }

/* Animação Pull-Up — cada palavra sobe de baixo */
.prisma-word {
  display: inline-block;
  margin-right: 0.22em;       /* espaço entre palavras */
  animation: wordPullUp .75s cubic-bezier(0.16, 1, 0.3, 1) both;
  opacity: 0;
  transform: translateY(40px);
}
.prisma-word:last-child { margin-right: 0; }

/* Destaque laranja na última palavra "Google." */
.prisma-word--orange { color: var(--orange); }

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

/* Coluna direita: desc + CTA — 4/12 em desktop */
.prisma-col-right {
  grid-column: 1 / -1;             /* mobile: full width */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;       /* empurra conteúdo para o fundo */
  gap: 16px;
  padding-bottom: 0;               /* sem padding — alinha pelo fundo real */
}
@media (min-width: 1024px) {
  .prisma-col-right {
    grid-column: 9 / -1;
    padding-bottom: 0;             /* base da coluna = base do título */
  }
}

/* Descrição */
.prisma-desc {
  font-family: var(--font-body);
  font-size: .75rem;
  color: rgba(255,255,255,.78);
  line-height: 1.4;
  animation: fadeUp .8s cubic-bezier(0.16, 1, 0.3, 1) .45s both;
}
@media (min-width: 640px)  { .prisma-desc { font-size: .88rem; } }
@media (min-width: 768px)  { .prisma-desc { font-size: 1rem; } }

/* Botão CTA */
.prisma-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 6px 6px 22px;
  border-radius: 100px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  transition: gap .25s ease, background .2s;
  animation: fadeUp .8s cubic-bezier(0.16, 1, 0.3, 1) .65s both;
}
.prisma-cta:hover {
  gap: 14px;
  background: var(--orange-soft);
}
@media (min-width: 640px) { .prisma-cta { font-size: .95rem; } }

/* Seta circular do botão */
.prisma-cta-arrow {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.prisma-cta:hover .prisma-cta-arrow { transform: scale(1.1); }
@media (min-width: 640px) {
  .prisma-cta-arrow { width: 40px; height: 40px; }
}

/* Tag inferior — badge de especialidade */
.prisma-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
  animation: fadeUp .8s cubic-bezier(0.16, 1, 0.3, 1) .8s both;
}
.prisma-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* Animação genérica fade + slide up */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

/* ─── SEÇÃO PROBLEMA ─────────────────────────────────────── */
.problema-section {
  padding: 100px 0;
  background: var(--black-soft);
}
.problema-intro {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.problema-intro .section-p { margin: 0 auto; text-align: center; }
.problema-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.prob-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color .3s, transform .3s;
}
.prob-card:hover {
  border-color: rgba(255,106,0,.3);
  transform: translateY(-4px);
}
.prob-icon { font-size: 2rem; margin-bottom: 16px; }
.prob-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}
.prob-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.problema-resolucao {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid rgba(255,106,0,.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,106,0,.05) 0%, transparent 100%);
}
.resolucao-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}
.resolucao-text strong { color: var(--orange); }

/* ─── SEÇÃO MÉTODO BOU ───────────────────────────────────── */
.metodo-section {
  padding: 100px 0;
  background: var(--black);
}
.metodo-header {
  text-align: center;
  margin-bottom: 64px;
}
.metodo-header .section-p {
  margin: 0 auto;
  text-align: center;
}
.metodo-sub { margin-top: 8px; }

/* Grid principal do Método Showcase */
.metodo-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}

/* Coluna de Cards de Texto */
.metodo-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.metodo-card-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.metodo-card-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.3);
  box-shadow: 0 12px 36px rgba(255, 106, 0, 0.08);
}

.metodo-card-step.destaque-orange {
  background: linear-gradient(145deg, var(--surface) 0%, rgba(255, 106, 0, 0.06) 100%);
  border: 1px solid rgba(255, 106, 0, 0.35);
}

.metodo-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.metodo-badge-num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

.metodo-badge-num.orange {
  background: var(--orange);
  color: var(--white);
}

.metodo-card-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.metodo-card-tag.orange {
  color: var(--orange);
}

.metodo-card-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}

.metodo-card-desc {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Moldura do Gráfico (Mockup de Interface) */
.metodo-grafico-frame {
  background: #111113;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 106, 0, 0.1);
  transition: transform .3s ease, border-color .3s ease;
}

.metodo-grafico-frame:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-4px);
}

.metodo-grafico-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.metodo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.metodo-dot.red { background: #FF5F56; }
.metodo-dot.yellow { background: #FFBD2E; }
.metodo-dot.green { background: #27C93F; }

.metodo-frame-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-left: 8px;
}

.metodo-grafico-body {
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0A0A0A;
}

.metodo-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Etapas do método */
.metodo-etapas {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.etapa-item {
  display: grid;
  grid-template-columns: 64px 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s ease, transform .5s ease;
  transition-delay: var(--delay, 0s);
}
.etapa-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.etapa-item:last-child { border-bottom: none; }
.etapa-numero {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,.08);
  line-height: 1;
  padding-top: 6px;
}
.etapa-icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,106,0,.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,106,0,.06);
  flex-shrink: 0;
}
.etapa-conteudo h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.etapa-conteudo p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.etapa-conteudo p strong { color: var(--white); }
.etapa-resultado {
  font-size: .85rem;
  color: var(--orange);
  font-weight: 500;
}
.etapa-bonus {
  background: linear-gradient(90deg, rgba(255,106,0,.06) 0%, transparent 100%);
  border-radius: var(--radius);
  padding: 40px 24px;
  border: 1px solid rgba(255,106,0,.15);
  border-bottom: 1px solid rgba(255,106,0,.15);
}
.bonus-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 100px;
  margin-bottom: 8px;
}

.metodo-cta {
  text-align: center;
  margin-top: 80px;
  padding: 56px 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}
.metodo-cta-frase {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.4;
}
.metodo-cta-frase strong { color: var(--orange); }
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary-lg:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--orange-glow);
}

/* ─── SEÇÃO SERVIÇOS ─────────────────────────────────────── */
.servicos-section {
  padding: 100px 0;
  background: var(--black-soft);
}
.servicos-header {
  max-width: 600px;
  margin-bottom: 64px;
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.servico-card {
  position: relative;
  display: grid;
  grid-template-columns: 32px 56px 1fr;
  grid-template-rows: auto auto;
  gap: 0 16px;
  align-items: start;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s, transform .3s, box-shadow .3s;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease var(--delay, 0s), transform .5s ease var(--delay, 0s), border-color .3s, box-shadow .3s;
}
.servico-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.servico-card:hover {
  border-color: rgba(255,106,0,.4);
  box-shadow: 0 8px 30px rgba(255,106,0,.1);
}
.servico-card-bonus {
  grid-column: 1 / -1;
  grid-template-columns: 32px 56px 1fr auto;
}
.servico-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.07);
  line-height: 1;
  padding-top: 10px;
}
.servico-icon-area { grid-row: 1 / 3; }
.servico-icon-bg {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servico-icon-bonus { background: linear-gradient(135deg, var(--orange), #FF3D00); }
.servico-texto { grid-column: 3; }
.servico-texto h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bonus-badge {
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--orange);
  border-radius: 100px;
  color: white;
  letter-spacing: .05em;
}
.servico-texto p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}
.servico-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: .68rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,106,0,.08);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,106,0,.2);
}
.servicos-rodape {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.servicos-rodape p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.servicos-rodape p strong { color: var(--white); }

/* ─── SEÇÃO RESULTADOS ───────────────────────────────────── */
.resultados-section {
  padding: 100px 0;
  background: var(--black);
}
.resultados-header {
  text-align: center;
  margin-bottom: 48px;
}
.resultados-header .section-p { margin: 0 auto; }
.resultados-carousel-wrap { position: relative; }
.resultados-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 24px;
}
.r-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.r-nav-btn:hover {
  border-color: var(--orange);
  background: rgba(255,106,0,.1);
}
.resultados-carousel { overflow: hidden; border-radius: var(--radius); }
.resultados-track {
  display: flex;
  gap: 20px;
  transition: transform .4s ease;
}
.result-card {
  flex: 0 0 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.result-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── SISTEMA BOU ─────────────────────────────────────────── */
.sistema-section {
  padding: 100px 0;
  background: var(--black-soft);
}

.sistema-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

/* Grid: vídeo à esquerda, features à direita */
.sistema-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .sistema-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
  }
}

/* Wrapper do vídeo — mantém proporção 16:9 */
.sistema-video-wrap {
  width: 100%;
}
.sistema-video-inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,106,0,.12);
}
.sistema-video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

/* Lista de features */
.sistema-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sistema-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.sistema-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,106,0,.10);
  border: 1px solid rgba(255,106,0,.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sistema-feature strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.sistema-feature p {
  font-family: var(--font-body);
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  margin: 0;
}

/* ─── DEPOIMENTOS / MARQUEE ──────────────────────────────── */
.depoimentos-section {
  padding: 100px 0 0;
  background: var(--black-soft);
  overflow: hidden;
}
.depoimentos-header {
  text-align: center;
  margin-bottom: 64px;
}
.marquee-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: 600px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  padding-bottom: 80px;
}
.marquee-col { overflow: hidden; }
.marquee-inner-v {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scrollUp 18s linear infinite;
}
.marquee-reverse { animation: scrollDown 22s linear infinite; }
@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes scrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}
.dep-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  flex-shrink: 0;
}
.dep-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.dep-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dep-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.dep-autor div { display: flex; flex-direction: column; gap: 2px; }
.dep-autor strong { font-size: .88rem; color: var(--white); font-weight: 600; }
.dep-autor span { font-size: .78rem; color: var(--muted); }

/* ─── SEÇÃO SOBRE ────────────────────────────────────────── */
.sobre-section {
  padding: 100px 0;
  background: var(--black);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.sobre-visual { position: relative; }
.sobre-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.sobre-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.sobre-img-glow {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  height: 100px;
  background: var(--orange-glow);
  filter: blur(30px);
  z-index: -1;
}
.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.sobre-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.sobre-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
}
.sobre-stat span { font-size: .78rem; color: var(--muted); }
.sobre-cargo {
  font-size: .9rem;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 28px;
}
.sobre-bio p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.sobre-bio p strong { color: var(--white); }
.sobre-bio p em { color: rgba(255,255,255,.6); }
.sobre-bio { margin-bottom: 36px; }

/* ─── CTA CENTRAL ────────────────────────────────────────── */
.cta-central {
  padding: 100px 0;
  background: var(--black-soft);
}
.cta-box-v2 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 64px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(255,106,0,.05) 100%);
  border: 1px solid rgba(255,106,0,.2);
  border-radius: 28px;
}
.cta-box-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.cta-box-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.btn-cta-big {
  font-size: 1.05rem;
  padding: 18px 40px;
  margin-bottom: 16px;
}
.cta-minor {
  font-size: .78rem;
  color: var(--muted);
  margin: 12px 0 0 !important;
}
.cta-box-destaques {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  min-width: 280px;
}
.cta-destaque-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section {
  padding: 100px 0;
  background: var(--black);
}
.faq-header {
  text-align: center;
  margin-bottom: 64px;
}
.faq-lista {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color .2s;
}
.faq-btn:hover { color: var(--orange); }
.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--orange);
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .3s, color .3s;
  line-height: 1;
}
.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-resposta.open { max-height: 300px; padding-bottom: 24px; }
.faq-resposta p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-cta {
  text-align: center;
  margin-top: 60px;
}
.faq-cta p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.btn-outline-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: 1px solid rgba(255,106,0,.5);
  border-radius: 100px;
  color: var(--orange);
  font-size: .9rem;
  font-weight: 600;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-outline-wa:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ─── FOOTER V2 ──────────────────────────────────────────── */
.footer-v2 {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 72px 0 0;
}
.footer-v2-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand-v2 p {
  font-size: .88rem;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.6;
}
.footer-nav-v2 h4,
.footer-contato-v2 h4 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-nav-v2 ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-v2 a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-nav-v2 a:hover { color: var(--white); }
.footer-contato-v2 { display: flex; flex-direction: column; gap: 12px; }
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-social-link:hover { color: var(--white); }
.footer-wa { color: #25D366; }
.footer-wa:hover { color: #1aaa52; }
.footer-bottom-v2 {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom-v2 p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ─── BOTÃO WHATSAPP FLUTUANTE ───────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
  animation: float-in .5s ease .5s both;
}
.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}
@keyframes float-in {
  from { opacity: 0; transform: scale(.8); }
  to { opacity: 1; transform: scale(1); }
}

/* ─── HAMBURGER & OVERLAY MOBILE ─────────────────────────── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10000;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.menu-toggle.open span:nth-child(1),
.navbar.active .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--orange);
}

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

.menu-toggle.open span:nth-child(3),
.navbar.active .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--orange);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .metodo-showcase {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .circulo-central { display: none; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-img-wrap img { height: 360px; }
  .cta-box-v2 { grid-template-columns: 1fr; gap: 40px; }
  .cta-box-destaques { min-width: auto; }
  .footer-v2-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-v2 { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex !important; }
  .btn-nav-cta { display: none !important; }

  .nav-links,
  .navbar.active .nav-links,
  .navbar .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100svh !important;
    background: rgba(10, 10, 14, 0.98) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;
    padding: 40px 24px !important;
    z-index: 9999 !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.35s ease, visibility 0.35s ease !important;
  }

  .nav-links.open,
  .navbar.active .nav-links {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
  }

  .nav-links a:not(.nav-mobile-cta),
  .nav-links .nav-link:not(.nav-mobile-cta),
  .navbar.active .nav-links a:not(.nav-mobile-cta) {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    width: auto !important;
    text-align: center !important;
    font-family: var(--font-head) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    letter-spacing: 0.02em !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
  }

  .nav-links a:not(.nav-mobile-cta):hover,
  .nav-links .nav-link:not(.nav-mobile-cta):hover {
    color: var(--orange) !important;
    transform: translateY(-2px) !important;
  }

  .nav-links .nav-mobile-cta,
  .nav-links a.nav-mobile-cta,
  .navbar.active .nav-links a.nav-mobile-cta,
  .navbar.active .nav-links .nav-mobile-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 220px !important;
    margin-top: 16px !important;
    padding: 16px 36px !important;
    background: #FF6A00 !important;
    background-color: #FF6A00 !important;
    color: #FFFFFF !important;
    font-family: var(--font-head) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    border-radius: 100px !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.45) !important;
    text-align: center !important;
    line-height: 1 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }

  .nav-links .nav-mobile-cta:hover,
  .nav-links a.nav-mobile-cta:hover,
  .navbar.active .nav-links a.nav-mobile-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.6) !important;
    color: #FFFFFF !important;
  }

  .hero-v2-title { font-size: clamp(2rem, 9vw, 3rem); }
  .btn-hero-cta { width: 100%; justify-content: center; }
  .hero-metrics {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .metric-sep { display: none; }
  .metric-pill { padding: 0; }

  .metodo-card-step {
    padding: 24px 20px;
  }
  .metodo-card-title {
    font-size: 1.12rem;
  }
  .metodo-card-desc {
    font-size: 0.92rem;
  }
  .metodo-grafico-body {
    padding: 16px;
  }

  .problema-cards { grid-template-columns: 1fr !important; }

  .etapa-item {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
  }
  .etapa-numero { display: none; }
  .etapa-icon-wrap { grid-column: 1; grid-row: 1; }
  .etapa-conteudo { grid-column: 2; grid-row: 1 / 3; }

  /* Serviços: coluna única e card interno sem overflow */
  .servicos-grid { grid-template-columns: 1fr !important; }
  .servico-card {
    grid-template-columns: 48px 1fr !important;
    gap: 0 14px !important;
  }
  .servico-card-bonus { grid-column: 1; grid-template-columns: 32px 48px 1fr; }

  /* Resultados marquee: 1 coluna no mobile */
  .marquee-container { grid-template-columns: 1fr !important; height: auto !important; }
  .marquee-col:last-child { display: none; }

  /* CTA Central: texto e checklist empilhados */
  .cta-box-v2 {
    grid-template-columns: 1fr !important;
    padding: 36px 24px !important;
    gap: 32px !important;
  }
  .cta-box-content h2 { font-size: 1.35rem; }
  .cta-box-destaques { min-width: auto !important; }

  /* Sobre (Rafael): foto acima, texto abaixo */
  .sobre-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .sobre-img-wrap img { height: 340px; }

  /* Footer: coluna única */
  .footer-v2-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .footer-brand-v2 { grid-column: 1; }

  .metodo-cta { padding: 36px 24px; }
  .btn-primary-lg { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .marquee-container { grid-template-columns: 1fr !important; }
  .marquee-col:nth-child(2) { display: none; }
  .servico-tag { display: none; }
  .servico-card {
    grid-template-columns: 44px 1fr !important;
    gap: 0 12px !important;
  }
  .servico-num { display: none; }
  .prob-card { padding: 24px 18px; }
  .cta-box-v2 { padding: 28px 20px !important; }
}
