/* ==========================================================================
   FRANQUIA BOX ONE - TECH FUTURIST DESIGN SYSTEM
   Cores: Laranja Oficial (#F28E1E), Preto Carvão (#07080A), Grafite (#12151D)
   Fundos com Contraste Real entre Dobras, Tarjas de Destaque e Hero Split
   ========================================================================== */

:root {
  /* Brand Tokens */
  --color-primary: #F28E1E;
  --color-primary-light: #FFA23A;
  --color-primary-dark: #D4750B;
  --color-primary-glow: rgba(242, 142, 30, 0.35);

  /* Dark Bases */
  --bg-hero: #07080A;
  --bg-carousel: #050608;
  --bg-market: #0D1016;
  --bg-revenue: #11141D;
  --bg-lab: #080A0E;
  --bg-timeline: #0E121A;
  --bg-financial: #121620;
  --bg-faq: #07080B;
  --bg-form: #0B0E14;

  /* Card Colors */
  --bg-card: rgba(18, 22, 31, 0.88);
  --border-subtle: rgba(255, 255, 255, 0.09);
  --border-primary-subtle: rgba(242, 142, 30, 0.4);

  /* Typography Colors */
  --text-pure-white: #FFFFFF;
  --text-main: #E2E6EF;
  --text-muted: #A0ABBD;
  --text-dimmed: #6F7B91;

  /* Fonts */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacings & Layout */
  --container-max-width: 1260px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-hero);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

body {
  position: relative;
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  min-height: 100vh;
  background-color: var(--bg-hero);
}

main {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

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

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

button, input, select {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   TARJA LARANJA DE DESTAQUE NAS HEADLINES
   ========================================================================== */
mark.highlight-orange {
  background: linear-gradient(135deg, #FF9F30 0%, #F28E1E 60%, #E07A07 100%);
  color: #07080B;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 6px;
  display: inline;
  box-shadow: 0 4px 15px rgba(242, 142, 30, 0.45);
  line-height: inherit;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ==========================================================================
   AMBIENT BACKGROUND LAYERS
   ========================================================================== */
.ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden !important;
  max-width: 100vw !important;
}

.ambient-grid {
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.5;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}

.ambient-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242, 142, 30, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -50px;
}

.ambient-glow-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(242, 142, 30, 0.07) 0%, transparent 75%);
  top: 55%;
  left: -150px;
}

/* ==========================================================================
   CONTAINER & SECTION COMMONS (CONTRASTE REAL ENTRE AS DOBRAS)
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 2;
}

.section {
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
  z-index: 2;
}

/* Fundos contrastantes por seção */
.hero-section {
  background: var(--bg-hero);
}

.carousel-3d-section {
  background: radial-gradient(circle at 50% 45%, rgba(242, 142, 30, 0.1) 0%, rgba(5, 6, 8, 1) 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.market-section {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.revenue-section {
  background: linear-gradient(180deg, #11141D 0%, #151924 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lab-section {
  background: linear-gradient(180deg, #080A0E 0%, #0D1017 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline-section {
  background: linear-gradient(180deg, #0E121A 0%, #121722 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.financial-section {
  background: linear-gradient(180deg, #121620 0%, #161C2A 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-section {
  background: #07080B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.form-section {
  background: linear-gradient(180deg, #0A0D13 0%, #060709 100%);
}

.section-header {
  margin-bottom: 50px;
  max-width: 900px;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-pure-white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (ENTRADA E SAÍDA VINCULADA AO SCROLL)
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(35px) scale(0.97);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Micro-hover animations */
.market-card, .layout-card, .step-card, .financial-table-box {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.market-card:hover, .layout-card:hover, .step-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(242, 142, 30, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(242, 142, 30, 0.15);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, #FFA945 0%, #F28E1E 50%, #D87508 100%);
  color: #07080B;
  box-shadow: 0 4px 22px rgba(242, 142, 30, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFB55E 0%, #FF9820 50%, #EA7E0B 100%);
  box-shadow: 0 8px 32px rgba(242, 142, 30, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-pure-white);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  z-index: 100;
  transition: var(--transition-smooth);
  background: rgba(7, 8, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header.scrolled {
  height: 72px;
  background: rgba(7, 8, 11, 0.95);
  border-bottom: 1px solid rgba(242, 142, 30, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

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

.brand-link {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  position: relative;
}

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

/* ==========================================================================
   SECTION 1: HERO (METADE LOJA / METADE TEXTO COM CARD DE VIDRO DESFOCADO)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 30px 0;
  overflow: hidden;
  background-color: #07080A;
}

@media (min-height: 600px) and (min-width: 992px) {
  .hero-section {
    height: 100vh;
    max-height: 980px;
  }
}

/* Metade da tela oposta ao texto com a foto da frente da loja */
.hero-store-half {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  background-color: #07080A;
  z-index: 1;
}

.hero-store-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(96%) contrast(106%);
  display: block;
}

.hero-store-half::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: 
    linear-gradient(to right, #07080A 0%, rgba(7, 8, 10, 0.75) 6%, rgba(7, 8, 10, 0.2) 20%, transparent 40%),
    linear-gradient(to top, #07080A 0%, transparent 12%),
    linear-gradient(to bottom, #07080A 0%, transparent 12%);
}

.hero-container-split {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.hero-content-col {
  width: 100%;
  max-width: 580px;
}

/* Card com fundo de vidro desfocado (Glassmorphism) */
.hero-glass-card {
  background: rgba(10, 13, 20, 0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 30px 34px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
}

.hero-card-brand {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}

.hero-brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-pure-white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.hero-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.hero-metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px 14px;
  background: rgba(6, 8, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.metric-card {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
}

.metric-label {
  font-size: 0.65rem;
  color: var(--text-dimmed);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-actions .btn-primary {
  padding: 12px 24px;
  font-size: 0.925rem;
}

.hero-institutional-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  background: rgba(6, 8, 12, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  width: fit-content;
  max-width: 100%;
}

.inst-item {
  display: flex;
  flex-direction: column;
}

.inst-label {
  font-size: 0.625rem;
  color: var(--text-dimmed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.inst-value {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-top: 1px;
}

.inst-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   NOVA DOBRA: APRESENTAÇÃO DO NEGÓCIO EM VÍDEO
   ========================================================================== */
.video-presentation-section {
  background: #080A0E;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0;
  position: relative;
}

.video-presentation-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.video-main-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(242, 142, 30, 0.1);
  background: #0B0E14;
  position: relative;
}

.video-player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%) contrast(108%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.video-player-frame:hover .video-poster-img {
  transform: scale(1.03);
  filter: brightness(82%) contrast(110%);
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.4) 0%, transparent 40%, rgba(8, 10, 14, 0.85) 100%);
  pointer-events: none;
}

.video-play-center {
  position: absolute;
  z-index: 5;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon-box {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #07080B;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(242, 142, 30, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.video-play-center:hover .play-icon-box {
  transform: scale(1.12);
  box-shadow: 0 15px 40px rgba(242, 142, 30, 0.7);
}

.play-pulse-ring {
  position: absolute;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 2px solid rgba(242, 142, 30, 0.4);
  animation: playPulse 2.4s infinite;
  pointer-events: none;
}

@keyframes playPulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.2; }
  100% { transform: scale(1.35); opacity: 0; }
}

.video-simple-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  white-space: nowrap;
  background: rgba(11, 14, 20, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

@media (max-width: 680px) {
  .video-simple-caption {
    font-size: 0.825rem;
    padding: 8px 16px;
    bottom: 16px;
    white-space: normal;
    text-align: center;
    width: 90%;
  }
}

@media (max-width: 768px) {
  .play-icon-box {
    width: 60px;
    height: 60px;
  }
  .play-icon-box svg {
    width: 22px;
    height: 22px;
  }
  .video-meta-title {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   SECTION 3: CARROSSEL
   ========================================================================== */
.scene-3d-viewport {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  perspective: 1400px;
  perspective-origin: 50% 45%;
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
  user-select: none;
}

.carousel-3d-stage {
  width: 100%;
  max-width: 820px;
  height: 420px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  cursor: grab;
}

.carousel-3d-stage:active {
  cursor: grabbing;
}

.card-3d {
  position: absolute;
  top: 0;
  left: 50%;
  width: 520px;
  height: 350px;
  margin-left: -260px;
  border-radius: var(--radius-lg);
  transform-style: flat;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
  will-change: transform, opacity;
}

.card-3d.active {
  z-index: 60 !important;
}

.card-3d-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #0B0E14;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75);
}

.card-3d-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: brightness(102%) contrast(106%);
  position: relative;
  z-index: 2;
}

.card-3d.active .card-3d-inner {
  border-color: var(--color-primary);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(242, 142, 30, 0.35);
}

.carousel-3d-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
  z-index: 10;
  position: relative;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: var(--color-primary);
  color: #07080B;
  border-color: var(--color-primary);
  transform: scale(1.08);
}

.carousel-indicators {
  display: flex;
  gap: 10px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-indicator.active {
  width: 28px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
}

/* ==========================================================================
   SECTION 3: O MERCADO
   ========================================================================== */
.market-section .section-title {
  color: #0F172A;
}

.market-section .section-subtitle {
  color: #475569;
}

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

.market-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.market-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 142, 30, 0.5);
  box-shadow: 0 18px 40px rgba(242, 142, 30, 0.12), 0 6px 18px rgba(15, 23, 42, 0.08);
}

/* Card Media Wrap com Imagem e Logo Oficial Sobreposto */
.card-media-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  background: #000;
}

.card-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.market-card:hover .card-media-img,
.layout-card:hover .card-media-img {
  transform: scale(1.06);
}

.card-brand-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(7, 8, 11, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.card-logo-badge {
  height: 18px;
  width: auto;
  object-fit: contain;
}

.market-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
  line-height: 1.35;
}

.market-card-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 4: COMO VOCÊ FATURA (MENU LATERAL DESTACADO)
   ========================================================================== */
.revenue-interactive-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  padding: 28px;
}

.revenue-top-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: rgba(10, 13, 20, 0.95);
  padding: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.revenue-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: left;
  position: relative;
}

.revenue-tab:hover {
  color: var(--text-pure-white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(242, 142, 30, 0.4);
}

.revenue-tab.active {
  color: var(--text-pure-white);
  background: linear-gradient(135deg, rgba(242, 142, 30, 0.2) 0%, rgba(242, 142, 30, 0.08) 100%);
  border-color: var(--color-primary);
  box-shadow: 0 8px 25px rgba(242, 142, 30, 0.18), inset 0 3px 0 var(--color-primary);
}

.tab-badge-col {
  flex-shrink: 0;
}

.tab-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dimmed);
  transition: var(--transition-smooth);
}

.revenue-tab.active .tab-number {
  background: var(--color-primary);
  color: #07080B;
}

.tab-info-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tab-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure-white);
  line-height: 1.3;
}

.tab-tag {
  font-size: 0.78rem;
  color: var(--text-dimmed);
  margin-top: 3px;
}

.revenue-tab.active .tab-tag {
  color: #FFAE4D;
  font-weight: 600;
}

.revenue-panes-area {
  width: 100%;
  display: block;
  background: rgba(13, 16, 24, 0.6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.revenue-tab-pane {
  display: none;
  padding: 36px;
  width: 100%;
  animation: fadeIn 0.35s ease;
}

.revenue-tab-pane.active {
  display: block;
}

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

.pane-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.pane-text {
  display: flex;
  flex-direction: column;
}

.pane-heading {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 18px;
  line-height: 1.3;
}

.pane-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pane-spec-list {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 960px) {
  .revenue-top-nav {
    grid-template-columns: 1fr;
  }
  .pane-split {
    grid-template-columns: 1fr;
  }
  .pane-spec-list {
    grid-template-columns: 1fr;
  }
  .visual-wrapper {
    min-height: 320px;
  }
}

.spec-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition-smooth);
}

.spec-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.spec-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-check-icon {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.spec-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-pure-white);
  line-height: 1.25;
}

.spec-desc {
  font-size: 0.78rem;
  color: var(--text-dimmed);
  line-height: 1.45;
}

.pane-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.visual-wrapper {
  width: 100%;
  min-height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.pane-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visual-wrapper:hover .pane-img {
  transform: scale(1.04);
}

/* ==========================================================================
   SECTION 5: INFRAESTRUTURA & LABORATÓRIO CENTRAL
   ========================================================================== */
.store-layout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.layout-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  position: relative;
}

.layout-card-badge {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.layout-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 12px;
}

.layout-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.central-lab-panel {
  background: #0E121A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 380px 1fr;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
}

@media (max-width: 960px) {
  .central-lab-panel {
    grid-template-columns: 1fr;
  }
}

.lab-panel-visual {
  position: relative;
  min-height: 240px;
  background: #07080A;
}

.lab-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lab-panel-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(14, 18, 26, 0.8) 100%);
}

@media (max-width: 960px) {
  .lab-panel-visual::after {
    background: linear-gradient(to bottom, transparent 60%, rgba(14, 18, 26, 0.9) 100%);
  }
}

.lab-panel-stamp {
  display: none !important;
}

.stamp-org {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stamp-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.lab-panel-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lab-panel-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.lab-panel-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-pure-white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.lab-panel-desc {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.lab-panel-metrics {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.lab-metric-item {
  display: flex;
  flex-direction: column;
}

.lab-metric-highlight {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure-white);
}

.lab-metric-sub {
  font-size: 0.78rem;
  color: var(--text-dimmed);
  margin-top: 2px;
}

.lab-metric-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   SECTION 6: LINHA DO TEMPO DA IMPLANTAÇÃO
   ========================================================================== */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.timeline-step {
  display: flex;
  flex-direction: column;
}

.step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0E121A;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 18px rgba(242, 142, 30, 0.3);
}

.timeline-step:not(:last-child) .step-indicator::after {
  content: '';
  position: absolute;
  left: 44px;
  right: -16px;
  height: 2px;
  background: var(--border-subtle);
  z-index: 1;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  height: 100%;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 12px;
}

.step-text {
  font-size: 0.885rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 7: DADOS FINANCEIROS & SIMULADOR COM FUNDO LARANJA
   ========================================================================== */
.financial-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.financial-table-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
}

.table-box-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 24px;
}

.financial-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  gap: 20px;
}

.financial-row-label strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-pure-white);
  font-weight: 600;
}

.financial-row-label span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dimmed);
  margin-top: 3px;
}

.financial-row-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: right;
  flex-shrink: 0;
}

.financial-row-value small {
  display: block;
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Quadro Consolidado de Investimento de Abertura */
.investment-summary-card {
  margin-top: 28px;
  background: #0B0E14;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.inv-summary-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 16px;
}

.inv-summary-label-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inv-summary-badge {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.inv-summary-scope {
  font-size: 0.85rem;
  color: var(--text-dimmed);
}

.inv-summary-figure {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.inv-figure-label {
  font-size: 0.72rem;
  color: var(--text-dimmed);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.inv-figure-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-pure-white);
  line-height: 1.15;
}

.inv-summary-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
  margin-bottom: 14px;
}

@media (max-width: 600px) {
  .inv-summary-items-grid {
    grid-template-columns: 1fr;
  }
  .inv-summary-figure {
    text-align: left;
  }
}

.inv-item-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.inv-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.inv-summary-footnote {
  font-size: 0.8rem;
  color: var(--text-dimmed);
  line-height: 1.5;
}

/* SIMULADOR COM FUNDO LARANJA DESTACADO E ALTO CONTRASTE */
.calculator-box.orange-theme {
  background: linear-gradient(145deg, #A84D00 0%, #7E3600 50%, #5A2400 100%);
  border: 1.5px solid rgba(255, 185, 95, 0.45);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
}

.calculator-box.orange-theme .calculator-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.calculator-box.orange-theme .calculator-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  margin-bottom: 28px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.calc-control-group {
  margin-bottom: 22px;
}

.calculator-box.orange-theme .calc-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.calculator-box.orange-theme .calc-number {
  font-family: var(--font-display);
  font-weight: 800;
  color: #FFFFFF;
  background: rgba(10, 13, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.calc-range.orange-slider {
  width: 100%;
  height: 8px;
  background: rgba(10, 13, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-range.orange-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #F28E1E;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.calc-range.orange-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calculator-results.orange-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px;
  background: rgba(10, 13, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  margin-top: 14px;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.orange-results .result-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.orange-results .result-highlight {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.calc-disclaimer.orange-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   SECTION 8: FAQ ACCORDION
   ========================================================================== */
.faq-container {
  max-width: 900px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: rgba(242, 142, 30, 0.45);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.faq-trigger {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-pure-white);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-content {
  padding-bottom: 26px;
}

.faq-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   SECTION 9: CONTATO DIRETO DE EXPANSÃO (SEM FORMULÁRIO)
   ========================================================================== */
.direct-contact-section {
  background: linear-gradient(180deg, #0A0D13 0%, #060709 100%);
  padding: 90px 0;
  position: relative;
}

.direct-contact-card {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(13, 16, 24, 0.9);
  border: 1px solid rgba(242, 142, 30, 0.35);
  border-radius: var(--radius-xl);
  padding: 56px 44px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 50px rgba(242, 142, 30, 0.12);
  position: relative;
  overflow: hidden;
}

.direct-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

/* ==========================================================================
   SECTION 8: DEPOIMENTOS EM VÍDEO (3 VÍDEOS DE FRANQUEADOS)
   ========================================================================== */
.testimonials-section {
  background: #0A0D13;
  padding: 100px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testi-video-card {
  background: rgba(16, 20, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.testi-video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 142, 30, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(242, 142, 30, 0.1);
}

.testi-video-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
}

.testi-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(82%) contrast(106%);
  transition: transform 0.5s ease;
}

.testi-video-thumb-wrap:hover .testi-video-img {
  transform: scale(1.05);
}

.testi-video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 13, 19, 0.8) 100%);
}

.testi-video-duration {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.04em;
}

.testi-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #07080B;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(242, 142, 30, 0.45);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 2;
}

.testi-video-thumb-wrap:hover .testi-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: #FFAE4D;
}

.testi-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.testi-author-header {
  margin-bottom: 12px;
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-author-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure-white);
}

.testi-author-role {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
}

.testi-quote {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 960px) {
  .testimonials-video-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   SECTION 9: FINAL SPLIT (CHECKOUT DA FRANQUIA)
   ========================================================================== */
.final-split-section {
  position: relative;
  z-index: 2;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 70px 0;
  overflow: hidden;
  background-color: #FFFFFF;
  border-top: 1px solid #E2E8F0;
}

.final-store-half {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  background-color: #FFFFFF;
  z-index: 1;
}

.final-store-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(100%) contrast(105%);
  display: block;
}

.final-store-half::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: 
    linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.3) 32%, transparent 52%),
    linear-gradient(to top, #FFFFFF 0%, transparent 15%),
    linear-gradient(to bottom, #FFFFFF 0%, transparent 15%);
}

.final-container-split {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.final-content-col {
  width: 100%;
  max-width: 580px;
}

.final-glass-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  padding: 34px 38px;
  box-shadow: 
    0 25px 60px rgba(15, 23, 42, 0.09),
    0 4px 16px rgba(15, 23, 42, 0.04);
  position: relative;
}

.final-card-brand {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}

.final-brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.final-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0F172A;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.final-card-description {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ==========================================================================
   CHECKOUT FINANCEIRO (DOBRA FINAL DE CONVERSÃO)
   ========================================================================== */
.final-checkout-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.checkout-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 10px;
}

.checkout-header-title {
  font-family: var(--font-display);
  font-size: 0.825rem;
  font-weight: 700;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.checkout-header-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #B45309;
  background: #FEF3C7;
  padding: 2px 8px;
  border-radius: 4px;
}

.checkout-table {
  display: flex;
  flex-direction: column;
}

.checkout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #F1F5F9;
  gap: 12px;
}

.checkout-row:last-child {
  border-bottom: none;
}

.checkout-label {
  font-size: 0.825rem;
  color: #64748B;
  font-weight: 500;
}

.checkout-val {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #0F172A;
  text-align: right;
}

.checkout-val small {
  font-size: 0.725rem;
  color: #94A3B8;
  font-weight: 400;
  margin-left: 2px;
}

.checkout-highlight {
  color: #D97706;
  font-weight: 800;
  font-size: 0.95rem;
}

.checkout-row-highlight {
  background: #FFFBEB;
  margin: 6px -12px 0 -12px;
  padding: 8px 12px;
  border-radius: 6px;
  border-bottom: none !important;
}

.checkout-row-highlight .checkout-label {
  color: #92400E;
  font-weight: 700;
}

.checkout-row-highlight .return-val {
  color: #B45309;
  font-weight: 800;
  font-size: 0.95rem;
}

.final-card-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}



.final-card-note {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.45;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #050608;
  border-top: 1px solid var(--border-subtle);
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-text {
  font-size: 0.925rem;
  color: var(--text-dimmed);
  line-height: 1.65;
  max-width: 360px;
}

.footer-heading {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list li, .footer-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

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

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
}

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  color: var(--text-dimmed);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   CALL TO ACTION WRAPPERS (DISTRIBUÍDOS PELAS DOBRAS)
   ========================================================================== */
.section-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 44px;
}

.market-cta-wrap,
.lab-cta-wrap {
  margin-top: 64px;
}

.faq-cta-box {
  margin-top: 48px;
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 8px;
}

.faq-cta-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   RESPONSIVE QUERIES (REDIAGRAMAÇÃO MOBILE COMPLETA)
   ========================================================================== */

/* Tablets & Smartphones (< 991px) */
@media (max-width: 991px) {
  /* Prevenção rígida de transbordo em qualquer seção */
  .section,
  .hero-section,
  .video-presentation-section,
  .carousel-3d-section,
  .market-section,
  .revenue-section,
  .lab-section,
  .timeline-section,
  .financial-section,
  .final-split-section,
  .faq-section,
  .site-footer {
    overflow-x: clip !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .section-header {
    margin-bottom: 26px;
  }

  .section-title {
    font-size: clamp(1.25rem, 4.8vw, 1.55rem);
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .section-subtitle {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  mark.highlight-orange {
    padding: 2px 6px;
    border-radius: 4px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  /* DOBRA 1: HERO - Imagem na metade superior, textos na metade inferior */
  .hero-section {
    display: flex;
    flex-direction: column;
    min-height: auto;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    overflow: hidden;
    position: relative;
    background-color: #07080A;
  }

  .hero-store-half {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: clamp(290px, 40vh, 370px);
    opacity: 1 !important;
    z-index: 1;
    overflow: hidden;
    background-color: #07080A;
  }

  .hero-store-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    filter: brightness(100%) contrast(105%);
  }

  .hero-store-half::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: 
      linear-gradient(to bottom, rgba(7, 8, 10, 0.1) 0%, transparent 20%, rgba(7, 8, 10, 0.35) 55%, rgba(7, 8, 10, 0.9) 85%, #07080A 100%),
      linear-gradient(to right, rgba(7, 8, 10, 0.3) 0%, transparent 10%, transparent 90%, rgba(7, 8, 10, 0.3) 100%);
  }

  .hero-container-split {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 16px 36px 16px !important;
    margin-top: -30px;
    justify-content: center;
  }

  .hero-content-col {
    max-width: 100%;
    width: 100%;
  }

  .hero-glass-card {
    padding: 20px 16px;
    border-radius: 16px;
    background: rgba(11, 14, 20, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  }

  .hero-card-brand {
    display: none !important;
  }

  .hero-brand-logo {
    height: 32px;
    width: auto;
  }

  .hero-title {
    font-size: clamp(1.22rem, 4.8vw, 1.55rem);
    line-height: 1.28;
    margin-bottom: 12px;
    text-align: center !important;
  }

  .hero-description {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: center !important;
  }

  .hero-metrics-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 10px 8px;
    margin-bottom: 14px;
    background: rgba(6, 8, 12, 0.7);
    border-radius: 8px;
  }

  .metric-value {
    font-size: clamp(0.95rem, 3.8vw, 1.15rem);
    font-weight: 700;
  }

  .metric-label {
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .hero-institutional-bar {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    padding: 10px 8px !important;
    width: 100% !important;
    background: rgba(6, 8, 12, 0.7) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    margin-top: 14px !important;
    text-align: center !important;
  }

  .inst-divider {
    display: none !important;
  }

  .inst-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    text-align: center !important;
  }

  .inst-label {
    font-size: 0.62rem !important;
    color: var(--text-dimmed) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    line-height: 1.2 !important;
    margin-bottom: 3px !important;
  }

  .inst-value {
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    line-height: 1.2 !important;
  }

  /* DOBRA 2: VÍDEO INSTITUCIONAL */
  .video-presentation-section {
    padding: 44px 0 !important;
  }

  .video-player-frame {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  .play-icon-box {
    width: 54px;
    height: 54px;
  }

  .play-icon-box svg {
    width: 20px;
    height: 20px;
  }

  .play-pulse-ring {
    width: 76px;
    height: 76px;
  }

  .video-simple-caption {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 320px;
    white-space: normal;
    text-align: center;
    font-size: 0.76rem;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(11, 14, 20, 0.88);
    backdrop-filter: blur(8px);
  }

  /* DOBRA 3: CARROSSEL SEM TRANSBORDO */
  .carousel-3d-section {
    overflow: hidden !important;
    max-width: 100vw !important;
    padding: 44px 0 !important;
  }

  .scene-3d-viewport {
    min-height: auto;
    padding: 8px 0 16px 0;
    overflow: hidden !important;
    perspective: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .carousel-3d-stage {
    height: 220px;
    max-width: 100% !important;
    width: 100% !important;
    position: relative;
    overflow: hidden !important;
    transform-style: flat !important;
  }

  .card-3d {
    width: min(320px, calc(100vw - 36px)) !important;
    height: 210px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    position: absolute !important;
    top: 0 !important;
    border-radius: 14px;
  }

  .card-3d-inner {
    border-radius: 14px;
  }

  .carousel-3d-controls {
    margin-top: 16px;
    gap: 16px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
  }

  /* DOBRA 4: MERCADO (UM CARD EMBAIXO DO OUTRO NO MOBILE) */
  .market-section {
    padding: 44px 0 !important;
  }

  .market-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .market-card {
    padding: 20px 16px !important;
    border-radius: 14px !important;
    width: 100% !important;
  }

  .card-media-wrap {
    height: 190px !important;
    width: 100% !important;
    border-radius: 10px !important;
    margin-bottom: 16px !important;
  }

  .market-card-title {
    font-size: 1.18rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }

  .market-card-text {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
  }

  /* DOBRA 5: COMO VOCÊ FATURA (FOTO ABAIXO DA HEADLINE E ANTES DO TEXTO) */
  .revenue-section {
    padding: 44px 0 !important;
  }

  .revenue-interactive-layout {
    padding: 14px;
    border-radius: var(--radius-lg);
    gap: 14px;
  }

  .revenue-top-nav {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .revenue-tab {
    padding: 12px 14px;
  }

  .tab-number {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .tab-title {
    font-size: 0.95rem;
  }

  .tab-tag {
    font-size: 0.75rem;
  }

  .revenue-tab-pane {
    padding: 18px 14px !important;
  }

  .pane-split {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .pane-text {
    display: contents !important;
  }

  .pane-heading {
    order: 1 !important;
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
  }

  .pane-visual {
    order: 2 !important;
    width: 100% !important;
    margin-bottom: 16px !important;
  }

  .visual-wrapper {
    min-height: 210px !important;
    height: 210px !important;
    width: 100% !important;
    border-radius: 12px !important;
  }

  .pane-text p,
  .pane-split p {
    order: 3 !important;
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    margin-bottom: 12px !important;
  }

  .pane-spec-list {
    order: 4 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 8px !important;
  }

  .spec-card {
    padding: 10px 12px;
  }

  /* DOBRA 6: SETORES DA LOJA (1 COLUNA NO MOBILE) & LABORATÓRIO CENTRAL */
  .lab-section {
    padding: 44px 0 !important;
  }

  .store-layout-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 28px !important;
  }

  .layout-card {
    width: 100% !important;
    padding: 20px 16px !important;
    border-radius: 14px !important;
  }

  .layout-card .card-media-wrap {
    height: 190px !important;
    width: 100% !important;
    border-radius: 10px !important;
    margin-bottom: 14px !important;
  }

  .layout-card-badge {
    margin-bottom: 10px !important;
  }

  .layout-card-title {
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
  }

  .layout-card-text {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
  }

  .central-lab-panel {
    grid-template-columns: 1fr;
    border-radius: 14px;
    margin-top: 18px;
  }

  .lab-panel-visual {
    height: 190px;
    min-height: 190px;
  }

  .lab-panel-stamp {
    bottom: 10px;
    left: 10px;
    padding: 6px 10px;
  }

  .stamp-org {
    font-size: 0.72rem;
  }

  .stamp-sub {
    font-size: 0.68rem;
  }

  .lab-panel-content {
    padding: 20px 16px;
  }

  .lab-panel-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .lab-panel-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .lab-panel-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
  }

  .lab-metric-divider {
    display: none;
  }

  .lab-metric-highlight {
    font-size: 0.95rem;
  }

  .lab-metric-sub {
    font-size: 0.72rem;
  }

  /* DOBRA 7: SIMULADOR & FINANCEIRO */
  .financial-section {
    padding: 44px 0 !important;
  }

  .financial-split-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .calculator-box {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .calculator-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .financial-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 8px;
  }

  .financial-row-value {
    text-align: right;
  }

  /* DOBRA 8: IMPLANTAÇÃO */
  .timeline-section {
    padding: 44px 0 !important;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .step-indicator {
    margin-bottom: 0;
  }

  .step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.95rem;
  }

  .timeline-step:not(:last-child) .step-indicator::after {
    display: none;
  }

  .step-card {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
  }

  /* DOBRA 9: DEPOIMENTOS */
  .testimonials-video-section {
    padding: 44px 0 !important;
  }

  .testimonials-video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testi-video-thumb-wrap {
    aspect-ratio: 16 / 9;
  }

  .testi-play-btn {
    width: 44px;
    height: 44px;
  }

  .testi-card-body {
    padding: 16px 14px;
  }

  .testi-author-name {
    font-size: 1rem;
  }

  .testi-author-role {
    font-size: 0.75rem;
  }

  .testi-quote {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* DOBRA FINAL: CHECKOUT - Imagem no topo (30-35%), checkout abaixo */
  .final-split-section {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 0 !important;
    overflow: hidden;
    position: relative;
    background-color: #FFFFFF;
  }

  .final-store-half {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: clamp(210px, 30vh, 270px);
    opacity: 1 !important;
    z-index: 1;
    overflow: hidden;
    background-color: #FFFFFF;
  }

  .final-store-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .final-store-half::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: 
      linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, transparent 18%, rgba(255, 255, 255, 0.4) 55%, rgba(255, 255, 255, 0.92) 82%, #FFFFFF 100%),
      linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, transparent 10%, transparent 90%, rgba(255, 255, 255, 0.3) 100%);
  }

  .final-container-split {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 16px 36px 16px !important;
    margin-top: -26px;
    justify-content: center;
  }

  .final-content-col {
    max-width: 100%;
    width: 100%;
  }

  .final-glass-card {
    padding: 20px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.07);
  }

  .final-card-brand {
    margin-bottom: 12px;
  }

  .final-brand-logo {
    height: 32px;
    width: auto;
  }

  .final-card-title {
    font-size: clamp(1.22rem, 4.8vw, 1.55rem);
    line-height: 1.28;
    margin-bottom: 10px;
    color: #0F172A;
  }

  .final-card-description {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 14px;
    color: #475569;
  }

  .final-checkout-card {
    padding: 12px 14px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    margin-bottom: 16px;
  }

  .checkout-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #E2E8F0;
    gap: 8px;
  }

  .checkout-label {
    font-size: 0.78rem;
    color: #64748B;
  }

  .checkout-val {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0F172A;
    text-align: right;
  }

  .checkout-row-highlight {
    background: #FFFBEB;
    padding: 8px 10px;
    border-radius: 6px;
    margin-top: 4px;
  }

  .checkout-row-highlight .return-val {
    font-size: 0.88rem;
  }

  .final-card-note {
    font-size: 0.75rem;
    color: #64748B;
    text-align: center;
    margin-top: 8px;
  }

  /* DOBRA 10: FAQ */
  .faq-section {
    padding: 44px 0 !important;
  }

  .faq-trigger {
    padding: 14px 12px;
    font-size: 0.88rem;
    text-align: left;
    gap: 10px;
  }

  .faq-content p {
    padding: 0 12px 14px 12px;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .faq-cta-box {
    padding: 20px 14px;
    margin-top: 24px;
  }

  /* Rodapé */
  .site-footer {
    padding-top: 44px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 36px;
  }

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

  /* Botões e CTAs no Mobile */
  .btn-lg {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    padding: 14px 18px !important;
    font-size: 0.92rem !important;
  }

  .section-cta-wrap {
    margin-top: 28px;
    width: 100%;
  }

  .market-cta-wrap,
  .lab-cta-wrap {
    margin-top: 28px;
  }
}

/* Telas pequenas (< 480px) */
@media (max-width: 480px) {
  .hero-store-half {
    height: clamp(260px, 38vh, 320px);
  }

  .final-store-half {
    height: clamp(190px, 28vh, 240px);
  }

  .hero-glass-card,
  .final-glass-card {
    padding: 18px 12px;
  }

  .hero-metrics-strip {
    gap: 4px;
    padding: 8px 4px;
  }

  .metric-value {
    font-size: 0.98rem;
  }

  .metric-label {
    font-size: 0.58rem;
  }

  .hero-institutional-bar {
    gap: 6px !important;
    padding: 8px 4px !important;
  }

  .inst-label {
    font-size: 0.56rem !important;
  }

  .inst-value {
    font-size: 0.72rem !important;
  }

  .card-3d {
    width: min(290px, calc(100vw - 28px)) !important;
    height: 195px !important;
  }

  .carousel-3d-stage {
    height: 205px;
  }

  .checkout-label {
    font-size: 0.74rem;
  }

  .checkout-val {
    font-size: 0.78rem;
  }

  .checkout-row-highlight .return-val {
    font-size: 0.82rem;
  }
}
