/* RESET & GLOBALS */
:root {
  /* ── PALETA OFICIAL OSV ── */
  --color-primary: #F58E26;
  --color-primary-dark: #D67618;
  --color-primary-light: #FFE3C2;
  
  --brown-dark: #2E1F16;
  --brown-mid: #4E3B31;
  --stone: #F4F2EF;
  --indigo: #2C4A7C;
  --moss: #4A6741;
  
  --color-bg-light: #FFFFFF;
  --color-bg-white: #FFFFFF;
  --color-bg: #0D0D0D;
  --color-bg-dark: #050505;
  --color-text-dark: #1A1008;
  --color-text-muted: #3A3530;
  --color-text-on-dark: #FFFFFF;
  --color-primary: #F58E26;
  
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-display: 'League Spartan', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --font-script: 'IM Fell English', Georgia, serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  --radius-md: 12px;
  --radius-lg: 24px;
  
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* OVERRIDE ELEMENTOR GLOBALS */
body, .elementor, .elementor-1663 {
  background-color: var(--color-bg) !important;
  color: var(--color-text-on-dark) !important;
  background-image: none !important;
  position: relative; /* Needed for grain overlay */
}

/* Premium Grain Texture (from Brand Manual) */
body::before {
  content: ''; 
  position: fixed; 
  inset: 0; 
  pointer-events: none; 
  z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022; 
}
.elementor-container,
.elementor-column-wrap,
.elementor-widget-wrap {
  background-color: #0D0D0D !important;
  color: #FFFFFF !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

/* UTILITIES */
.osv-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Global Section Backgrounds - Forçar Escuro */
section, 
.elementor-section {
  background-color: var(--color-bg) !important;
  color: var(--color-text-on-dark) !important;
}

.highlight {
  color: var(--color-primary);
}

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

.btn-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--color-primary) !important;
  color: #fff !important;
  padding: 14px 32px !important;
  border-radius: 50px !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(245, 142, 38, 0.2);
  text-decoration: none !important;
  border: none !important;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--color-primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(245, 142, 38, 0.3);
}

.btn-small {
  padding: 10px 24px !important;
  font-size: 12px !important;
}

/* PREMIUM VSL BUTTON - SIMPLIFIED */
.btn-vsl {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--color-primary) !important;
  color: #FFFFFF !important;
  padding: 22px 56px !important;
  border-radius: 100px !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 10px 25px rgba(245, 142, 38, 0.25);
  text-decoration: none !important;
  border: none !important;
  cursor: pointer;
  white-space: nowrap;
}

.btn-vsl:hover {
  background: var(--color-primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(245, 142, 38, 0.4);
}

@media (max-width: 900px) {
  .btn-vsl {
    padding: 16px 32px !important;
    font-size: 15px !important;
    white-space: normal;
    text-align: center;
  }
}

/* HEADER BASE */
.osv-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999 !important;
  transition: all 0.4s ease !important;
  background: transparent !important;
  padding: 15px 0 !important;
}

.osv-header.scrolled {
  background: rgba(13, 13, 13, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#header-logo-wrapper {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  display: flex !important;
  align-items: center;
}

.osv-header .osv-logo img {
  height: 45px !important;
  width: auto;
  filter: invert(1) hue-rotate(180deg) brightness(1.5) !important;
}

.osv-header .osv-logo {
  display: flex !important;
  align-items: center;
  flex: 1;
}

#header-logo-wrapper {
  opacity: 1 !important;
  display: flex !important;
}

@keyframes floatIn {
  from { opacity: 0; transform: translate(-50%, -20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

#header-logo {
  height: 48px !important;
  width: auto !important;
  filter: none !important;
  transition: all 0.3s ease;
}

.osv-header.scrolled #header-logo {
  height: 36px !important;
}

.osv-header .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
}

.osv-header .nav-link:hover {
  color: var(--orange) !important;
}

.osv-header .osv-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100%;
  max-width: 1140px !important; /* Matches site content width better */
  margin: 0 auto;
  padding: 0 20px;
  min-height: 80px;
  position: relative;
}

.osv-logo {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  border: none !important;
  background: none !important;
}

.osv-logo img {
  height: 44px !important;
  width: auto !important;
  transition: transform 0.3s ease;
}

.osv-logo:hover img {
  transform: scale(1.05);
}

.osv-hero-logo-wrapper {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  width: 100%;
  animation: fadeInDown 0.8s ease-out;
}

.osv-hero-logo {
  height: 70px !important;
  width: auto !important;
  /* Premium Filter: Inverts black to white while preserving orange/gold accents */
  filter: invert(1) hue-rotate(180deg) brightness(1.5) !important;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.osv-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 30px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  list-style: none !important;
  background: transparent !important;
  flex: 1;
}

.osv-nav:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.osv-nav a.nav-link {
  font-family: var(--font-heading) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  padding: 8px 0 !important;
  transition: all 0.3s ease;
  text-decoration: none !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}

.osv-nav a.nav-link:hover {
  color: var(--orange) !important;
}

.osv-header.scrolled .osv-nav a.nav-link {
  font-size: 12px !important;
}

/* SCROLLED STATE - FLOATING PILL ENHANCEMENT */
.osv-header.scrolled .osv-nav {
  background: rgba(13, 13, 13, 0.6);
  border-color: rgba(245, 142, 38, 0.2);
}

.osv-header-action {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  z-index: 10000 !important;
}

.osv-header-action .btn-primary.btn-small {
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  background: linear-gradient(135deg, #F9A84A 0%, #F58E26 100%) !important;
  box-shadow: 0 4px 15px rgba(245, 142, 38, 0.3) !important;
  border: none !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.osv-header-action .btn-primary.btn-small:hover {
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 8px 25px rgba(245, 142, 38, 0.4) !important;
}

/* CRITICAL: Nav links always white on dark hero */
.osv-nav a,
.osv-nav a.nav-link,
.nav-link {
  font-family: var(--font-heading) !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  border: none !important;
  background: none !important;
  position: relative;
  padding: 8px 16px !important;
  border-radius: 100px;
}

.osv-nav a:hover,
.osv-nav a.nav-link:hover,
.nav-link:hover {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.1);
}

.osv-nav a:hover,
.osv-nav a.nav-link:hover,
.nav-link:hover {
  color: #FFFFFF !important;
}

@media (max-width: 900px) {
  .osv-header {
    display: none !important;
  }
}

/* FOLD 1: HERO */
.osv-hero {
  position: relative;
  overflow: visible;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 100px 0 100px 0;
  background-color: #0D0D0D !important;
  color: var(--color-text-on-dark) !important;
  /* OSV Hero — Premium dark with aurora composition */
  background-color: #080807 !important;
  background-image: 
    /* Warm amber aurora — topo direito */
    radial-gradient(ellipse 60% 40% at 75% -5%, rgba(245, 142, 38, 0.18) 0%, rgba(245, 142, 38, 0.06) 50%, transparent 75%),
    /* Cool indigo counter-light — esquerda */
    radial-gradient(ellipse 50% 55% at -10% 65%, rgba(44, 74, 124, 0.20) 0%, rgba(44, 74, 124, 0.06) 55%, transparent 80%),
    /* Sepia warm glow — centro baixo */
    radial-gradient(ellipse 80% 30% at 50% 105%, rgba(200, 169, 110, 0.10) 0%, transparent 70%),
    /* Deep dark base */
    linear-gradient(160deg, #0C0B08 0%, #0A090A 50%, #08080C 100%) !important;
}

/* Glassy Glow Overlay */
.osv-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  bottom: 0;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(5,5,5,0.4) 80%, rgba(5,5,5,0.9) 100%);
}

/* Orb of Light — Softer, more diffuse */
.osv-hero-orb {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(245, 142, 38, 0.08) 0%, rgba(245, 142, 38, 0.03) 40%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
  animation: orb-breathe 8s ease-in-out infinite;
}

/* Secondary sepia orb — cartographic warmth */
.osv-hero-orb-secondary {
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(200, 169, 110, 0.04) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(60px);
}

@keyframes orb-breathe {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

/* Crosshatch Cartographic Grid — finer, more elegant */
.osv-hero-grid {
  position: absolute;
  inset: 0;
  bottom: 0;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 56px, rgba(255,255,255,0.018) 56px, rgba(255,255,255,0.018) 57px),
    repeating-linear-gradient(90deg, transparent, transparent 56px, rgba(255,255,255,0.018) 56px, rgba(255,255,255,0.018) 57px),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.007) 40px, rgba(255,255,255,0.007) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.007) 40px, rgba(255,255,255,0.007) 41px);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 42%, black 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 42%, black 15%, transparent 75%);
}

/* Cartographic Map Pattern */
.osv-hero-map {
  position: absolute;
  inset: 0;
  bottom: 0;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg width='1000' height='1000' viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100,100 Q300,50 500,150 T900,100 M50,400 Q250,350 450,450 T850,400 M150,700 Q350,650 550,750 T950,700' fill='none' stroke='white' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.10;
}

.osv-hero-content {
  position: relative;
  z-index: 10;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}

.osv-hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 16px !important;
  background: rgba(245, 142, 38, 0.1) !important;
  border: 1px solid rgba(245, 142, 38, 0.3) !important;
  border-radius: 100px !important;
  font-family: var(--f-mono) !important;
  font-size: 13px !important;
  color: var(--orange) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  margin-bottom: 32px !important;
  backdrop-filter: blur(8px);
}

.osv-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  animation: pulse 2s infinite;
}

.osv-hero-title {
  font-family: var(--font-heading) !important;
  font-size: 52px !important;
  font-weight: 800 !important;
  margin-bottom: 32px !important;
  letter-spacing: -0.04em !important;
  color: #FFFFFF !important;
  line-height: 1.1 !important;
  text-transform: none !important;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  max-width: 900px;
}

@media (max-width: 900px) {
  .osv-hero-title {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
    max-width: 95% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .osv-hero-badge {
    margin-bottom: 12px !important;
    font-size: 11px !important;
  }
  .osv-hero {
    padding: 80px 0 60px 0 !important;
  }
}

.osv-hero-title span.highlight {
  background: linear-gradient(90deg, #F9A84A, #F58E26);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800 !important;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(245, 142, 38, 0.4));
}

.osv-hero-title span.script {
  font-family: var(--f-oldstyle) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1em !important;
  display: inline-block;
  padding: 0 8px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.osv-hero-subtitle {
  font-size: 18px !important;
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 40px !important;
  max-width: 700px;
  line-height: 1.5 !important;
  font-weight: 400 !important;
}

/* SPLIT LAYOUT */
.osv-hero-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 900px;
  margin-top: 48px;
  z-index: 20;
}

@media (max-width: 900px) {
  .osv-hero-split {
    gap: 40px !important;
  }
  .osv-hero-action-panel {
    margin-top: 60px !important;
  }
}

.osv-hero-action-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-top: 80px !important; /* Aumentado para evitar sobreposição com a sombra do vídeo */
  position: relative;
  z-index: 25;
}

/* Bullet points restored and centered */
.osv-hero-list {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: flex-start !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  text-align: left !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 60px 0 !important;
  width: 100%;
  max-width: 1000px;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  backdrop-filter: none;
}

.osv-hero-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 0 !important;
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  max-width: 280px;
}

.osv-hero-list li:last-child {
  margin-bottom: 0 !important;
}

.osv-hero-list li svg {
  flex-shrink: 0 !important;
  width: 24px !important;
  height: 24px !important;
  fill: var(--color-primary) !important;
  margin-top: 0 !important;
  filter: drop-shadow(0 0 6px rgba(245,142,38,0.5));
}

.osv-hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  z-index: 20;
}

.osv-hero-video {
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1) !important;
  background: #000 !important;
  aspect-ratio: 16/9 !important;
  position: relative;
  z-index: 1;
}

.osv-hero-video iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  position: absolute;
  top: 0;
  left: 0;
}

/* Custom Video Thumb */
.osv-custom-video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0c;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.osv-custom-video-thumb:hover .video-thumb-img {
  transform: scale(1.02);
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(245, 142, 38, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(245, 142, 38, 0.5);
  transition: all 0.3s ease;
}

.play-button-overlay svg {
  width: 40px;
  height: 40px;
  color: #fff;
  margin-left: 5px; /* Adjust optical center for play icon */
}

.osv-custom-video-thumb:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #F58E26;
  box-shadow: 0 0 40px rgba(245, 142, 38, 0.8);
}

@media (max-width: 900px) {
  .osv-hero {
    min-height: auto;
    padding: 80px 0 100px 0;
  }
  .osv-hero-content {
    text-align: center !important;
  }
  .osv-hero-list {
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }
  .osv-hero-list li {
    text-align: left !important;
    max-width: 100%;
    margin-bottom: 0 !important;
  }
  .osv-hero-badge {
    margin: 0 auto 24px auto !important;
  }
  .osv-hero-video-wrapper {
    margin-bottom: 0;
  }
}

/* NEW SIMPLE BENEFITS IN HERO */
.osv-hero-benefits-simple {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  width: 100%;
}

.osv-hero-benefits-simple .benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.osv-hero-benefits-simple .benefit-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary);
  stroke-width: 2.5;
}

@media (max-width: 900px) {
  .osv-hero-benefits-simple {
    gap: 12px;
    margin-top: 32px;
    flex-wrap: nowrap !important; /* Force single row */
    justify-content: center;
    overflow: hidden;
  }
  .osv-hero-benefits-simple .benefit-item {
    font-size: 10px !important;
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 4px !important;
  }
  .osv-hero-benefits-simple .benefit-item svg {
    width: 16px !important;
    height: 16px !important;
  }
}
@media (max-width: 480px) {
  .osv-hero-benefits-simple {
    gap: 8px;
    flex-wrap: nowrap !important; /* Always single row even on smallest phones */
  }
  .osv-hero-benefits-simple .benefit-item {
    font-size: 9px !important;
    letter-spacing: 0 !important;
  }
}

.osv-benefit-title {
  font-family: var(--font-heading) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--color-text-dark) !important;
  margin-bottom: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: -0.02em !important;
}

.osv-benefit-title span {
  color: var(--color-primary) !important;
}

.osv-benefit-text {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: var(--color-text-muted) !important;
}

@media (max-width: 1024px) {
  .osv-benefits-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* SECTION SEPARATOR SYSTEM */
/* Subtle visual separators between sections for better content flow */
section + section {
  position: relative;
}

.osv-testimonials-section,
.osv-flight-comparison-simple,
.osv-about-section,
.osv-target-audience-section,
.osv-method-section,
.osv-features-section,
.osv-oraculo-section,
.osv-comparison-section,
.osv-voyages-section,
.osv-proof-mural-section,
.osv-who-we-are-section,
.osv-offer-section,
.osv-warranty-section,
.osv-faq-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
}

/* Alternating subtle background tints for visual breathing room */
.osv-testimonials-section,
.osv-target-audience-section,
.osv-oraculo-section,
.osv-voyages-section,
.osv-offer-section {
  background-color: #060606 !important;
}

.osv-flight-comparison-simple,
.osv-about-section,
.osv-method-section,
.osv-features-section,
.osv-comparison-section,
.osv-who-we-are-section,
.osv-faq-section {
  background-color: #0D0D0D !important;
}

/* Section label / overline pattern for unified headings */
.osv-section-header.center,
.osv-section-heading {
  text-align: center !important;
  margin-bottom: 60px !important;
}

.osv-section-header.center .osv-section-title,
.osv-section-heading h2 {
  font-family: var(--font-heading) !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin-bottom: 16px !important;
  line-height: 1.1 !important;
}

.osv-section-header.center .osv-section-subtitle,
.osv-section-heading p {
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  max-width: 640px !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
}

@media (max-width: 900px) {
  .osv-section-header.center .osv-section-title,
  .osv-section-heading h2 {
    font-size: 26px !important;
  }
  .osv-section-header.center .osv-section-subtitle,
  .osv-section-heading p {
    font-size: 15px !important;
  }
  .osv-section-header.center,
  .osv-section-heading {
    margin-bottom: 40px !important;
  }
}

/* FLIGHT COMPARISON SECTION - PREMIUM REFINEMENT */
.osv-flight-comparison-simple {
  padding: 80px 0;
  background-color: #0D0D0D;
  position: relative;
  overflow: hidden;
}

.osv-flight-comparison-simple::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 142, 38, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* New centered comparison layout */
.osv-comp-headline {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.osv-comp-headline h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.osv-comp-headline p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.osv-comp-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.osv-comp-image-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.osv-comp-caption {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.osv-comp-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.osv-comp-text h3 {
  font-size: 28px;
  color: #fff;
  font-family: var(--font-heading);
}

.osv-comparison-image-wrapper {
  position: relative;
  z-index: 2;
}

.osv-comparison-image-wrapper::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(245, 142, 38, 0.1) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

.osv-comparison-image-wrapper img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.4s var(--ease-out);
}

.osv-comparison-image-wrapper:hover img {
  transform: scale(1.02) translateY(-10px);
}

.economy-summary {
  background: linear-gradient(135deg, rgba(245, 142, 38, 0.15) 0%, rgba(245, 142, 38, 0.05) 100%);
  border: 1px solid rgba(245, 142, 38, 0.3);
  border-radius: 20px;
  padding: 30px 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(245, 142, 38, 0.05);
  position: relative;
  overflow: hidden;
  min-width: 280px;
}

.economy-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 142, 38, 0.5), transparent);
}

.economy-summary .label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.economy-summary .label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary);
}

.economy-summary .value {
  font-size: 56px;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
  text-shadow: 0 0 30px rgba(245, 142, 38, 0.3);
}

.economy-summary .percent {
  font-size: 24px;
  font-weight: 600;
  vertical-align: middle;
  margin-left: 12px;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .osv-comp-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .osv-comp-image-centered {
    order: 1;
  }

  .osv-comp-side {
    order: 2;
    width: 100%;
  }

  .osv-comp-side .btn-primary {
    width: 100% !important;
    max-width: 380px !important;
    text-align: center !important;
  }

  .economy-summary {
    padding: 24px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .economy-summary .value {
    font-size: 36px;
    white-space: nowrap;
    text-align: center;
  }

  .economy-summary .percent {
    font-size: 18px;
    display: inline;
    margin-left: 8px;
    text-align: center;
  }

  .osv-flight-comparison-simple {
    padding: 60px 0;
  }
}


/* NEW TESTIMONIALS SECTION (GLASSMORPHISM) */
.osv-testimonials-section {
  padding: 100px 0 100px 0;
  background-color: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.osv-testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(245, 142, 38, 0.05), transparent 70%);
  pointer-events: none;
}

.osv-section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.osv-section-heading h2 {
  font-family: var(--font-heading) !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin-bottom: 16px !important;
}

.osv-section-heading h2 .highlight {
  color: var(--color-primary) !important;
}

.osv-section-heading p {
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  max-width: 600px;
  margin: 0 auto;
}

.osv-carousel-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.osv-testimonials-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 32px;
  padding: 20px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
}

.osv-testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.osv-testimonials-carousel .osv-testimonial-card {
  flex: 0 0 calc(50% - 16px);
  scroll-snap-align: center;
}

.osv-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 142, 38, 0.2);
  border: 1px solid rgba(245, 142, 38, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.osv-carousel-btn:hover {
  background: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
}

.osv-carousel-btn.prev {
  left: -24px;
}

.osv-carousel-btn.next {
  right: -24px;
}

.osv-testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.osv-testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 142, 38, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 142, 38, 0.1);
}

.osv-testimonial-video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}

.osv-testimonial-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.osv-testimonial-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.osv-testimonial-content h4 {
  font-family: var(--font-heading) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  line-height: 1.4 !important;
  margin-bottom: 24px !important;
}

.osv-testimonial-content h4 .highlight-text {
  color: var(--color-primary) !important;
}

.osv-testimonial-quote {
  position: relative;
  padding-left: 20px;
  border-left: 3px solid rgba(245, 142, 38, 0.5);
  margin-top: auto;
}

.osv-testimonial-quote p {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 12px !important;
}

.osv-testimonial-quote p:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {
  .osv-testimonials-carousel {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    width: calc(100% + 48px);
    gap: 16px;
  }

  .osv-testimonials-carousel .osv-testimonial-card {
    flex: 0 0 85%;
  }
  
  .osv-carousel-btn {
    display: none;
  }
  
  .osv-section-heading h2 {
    font-size: 28px !important;
  }
  
  .osv-testimonial-content {
    padding: 24px;
  }
  
  .osv-testimonial-content h4 {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
}

/* NEW FLIGHT COMPARISON SECTION */
.osv-flight-comparison-section {
  padding: 100px 0;
  background-color: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.osv-flight-comparison-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.osv-flight-proof {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}

.osv-flight-proof:hover {
  transform: rotate(0) scale(1.02);
}

.osv-flight-proof img {
  width: 100%;
  height: auto;
  display: block;
}

.osv-boarding-pass-card {
  flex: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
}

.osv-boarding-pass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--color-primary);
}

.osv-bp-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.osv-bp-airport {
  display: flex;
  flex-direction: column;
}

.osv-bp-airport .code {
  font-family: var(--font-heading) !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1 !important;
}

.osv-bp-airport .city {
  font-size: 14px !important;
  color: rgba(255,255,255,0.5) !important;
  margin-top: 4px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.osv-bp-plane {
  color: var(--color-primary);
  opacity: 0.8;
  position: relative;
}

.osv-bp-plane::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -40px;
  width: 30px;
  height: 2px;
  background: dashed 2px rgba(255,255,255,0.2);
}

.osv-bp-price-compare {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}

.osv-price-traditional, .osv-price-osv {
  display: flex;
  flex-direction: column;
}

.osv-price-traditional .label, .osv-price-osv .label {
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: 4px !important;
  text-transform: uppercase;
}

.osv-price-traditional .value {
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  text-decoration: line-through;
  opacity: 0.6;
}

.osv-price-osv .value {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: var(--color-primary) !important;
  font-family: var(--font-heading) !important;
}

.osv-economy-badge {
  background: rgba(245, 142, 38, 0.1);
  border: 1px solid rgba(245, 142, 38, 0.3);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.osv-economy-badge .economy-amount {
  font-family: var(--font-heading) !important;
  font-size: 48px !important;
  font-weight: 800 !important;
  color: var(--color-primary) !important;
  line-height: 1 !important;
}

.osv-economy-badge .economy-amount .currency {
  font-size: 24px !important;
  vertical-align: super;
}

.osv-economy-badge .economy-percent {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  margin-top: 8px !important;
}

@media (max-width: 900px) {
  .osv-flight-comparison-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .osv-flight-proof {
    transform: rotate(0);
    order: 2; /* Move image below the card on mobile */
  }
  
  .osv-boarding-pass-card {
    order: 1;
    padding: 30px 20px;
  }
  
  .osv-bp-airport .code {
    font-size: 28px !important;
  }
}

/* NEW TARGET AUDIENCE SECTION (Dobra 5) */
.osv-target-audience-section {
  padding: 100px 0;
  background-color: var(--color-bg-dark);
  position: relative;
}

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

.osv-audience-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.osv-audience-card:hover {
  transform: translateY(-8px);
}

.osv-audience-card.positive {
  border-top: 4px solid var(--color-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 40px rgba(245, 142, 38, 0.05);
}

.osv-audience-card.positive:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 60px rgba(245, 142, 38, 0.1);
  border-color: rgba(245, 142, 38, 0.3);
  border-top-color: var(--color-primary);
}

.osv-audience-card.negative {
  border-top: 4px solid #e74c3c;
  background: rgba(255, 255, 255, 0.01);
  opacity: 0.9;
}

.osv-audience-card.negative:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(231, 76, 60, 0.05);
  border-color: rgba(231, 76, 60, 0.2);
  border-top-color: #e74c3c;
  opacity: 1;
}

.osv-audience-header {
  margin-bottom: 32px;
  text-align: center;
}

.osv-audience-header h3 {
  font-family: var(--font-heading) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.osv-audience-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.osv-audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.osv-audience-list svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.osv-audience-card.positive .osv-audience-list svg {
  color: var(--color-primary);
  filter: drop-shadow(0 0 8px rgba(245, 142, 38, 0.4));
}

.osv-audience-card.negative .osv-audience-list svg {
  color: #e74c3c;
}

.osv-audience-card.negative .osv-audience-list span {
  color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 900px) {
  .osv-audience-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .osv-audience-card {
    padding: 32px 24px;
  }
  
  .osv-audience-header h3 {
    font-size: 24px !important;
  }
  
  .osv-audience-list li {
    font-size: 15px !important;
  }
}

/* NEW ABOUT SECTION & STATS BAR (Dobra 4) */
.osv-about-section {
  padding: 100px 0;
  background-color: var(--color-bg);
  position: relative;
}

.osv-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.osv-about-title {
  font-family: var(--font-heading) !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.1 !important;
  margin-bottom: 30px !important;
}

.osv-about-title .highlight {
  color: var(--color-primary);
}

.osv-about-description p {
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 20px !important;
}

.osv-about-description strong {
  color: #FFFFFF;
  font-weight: 600;
}

.osv-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.1);
  background: #000;
}

.osv-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

/* STATS BAR */
.osv-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.osv-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.osv-stat-item .stat-number {
  font-family: var(--font-heading) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--color-primary) !important;
  line-height: 1 !important;
}

.osv-stat-item .stat-label {
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 600 !important;
}

.stat-stars {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.stat-stars svg {
  width: 20px;
  height: 20px;
}

.osv-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .osv-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .osv-about-text {
    text-align: center;
  }
  
  .osv-about-title {
    font-size: 32px !important;
  }
  
  .osv-stats-bar {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .osv-stat-divider {
    width: 100px;
    height: 1px;
  }
}

/* NEW METHOD SECTION (Dobra 6) */
.osv-method-section {
  padding: 100px 0;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.osv-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.osv-method-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.osv-method-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 142, 38, 0.3);
}

.osv-method-watermark {
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: var(--font-heading) !important;
  font-size: 180px !important;
  font-weight: 800 !important;
  color: rgba(245, 142, 38, 0.05) !important;
  line-height: 1 !important;
  z-index: -1;
  pointer-events: none;
  transition: color 0.3s ease;
}

.osv-method-card:hover .osv-method-watermark {
  color: rgba(245, 142, 38, 0.1) !important;
}

.osv-method-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 142, 38, 0.2) 0%, rgba(245, 142, 38, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 142, 38, 0.3);
}

.osv-method-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.osv-method-content h3 {
  font-family: var(--font-heading) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin-bottom: 16px !important;
}

.osv-method-content p {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 0 !important;
}

.osv-method-content strong {
  color: #FFFFFF;
  font-weight: 600;
}

@media (max-width: 900px) {
  .osv-method-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .osv-method-card {
    padding: 32px 24px;
  }
}

/* NEW FEATURES SECTION (Dobra 7) */
.osv-features-section {
  padding: 100px 0;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.osv-features-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.osv-features-header {
  flex: 1;
  position: sticky;
  top: 120px;
}

.osv-features-header h2 {
  font-family: var(--font-heading) !important;
  font-size: 48px !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
}

.osv-features-header h2 .highlight {
  color: var(--color-primary);
}

.osv-features-header p {
  font-size: 20px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.osv-features-stack {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.osv-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.osv-feature-row:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(-10px);
  border-color: rgba(255, 255, 255, 0.1);
}

.osv-feature-special {
  border-color: rgba(245, 142, 38, 0.3);
  background: linear-gradient(135deg, rgba(245, 142, 38, 0.05) 0%, transparent 100%);
  box-shadow: 0 10px 40px rgba(245, 142, 38, 0.05);
}

.osv-feature-special:hover {
  border-color: rgba(245, 142, 38, 0.6);
  box-shadow: 0 10px 40px rgba(245, 142, 38, 0.15);
}

.osv-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 142, 38, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.osv-feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.osv-feature-special .osv-feature-icon {
  background: var(--color-primary);
}

.osv-feature-special .osv-feature-icon svg {
  color: #000000;
}

.osv-feature-content h3 {
  font-family: var(--font-heading) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin-bottom: 12px !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-ia {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(245, 142, 38, 0.2);
  color: var(--color-primary);
  border: 1px solid rgba(245, 142, 38, 0.3);
}

.osv-feature-content p {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 0 !important;
}

.osv-feature-content strong {
  color: #FFFFFF;
  font-weight: 600;
}

@media (max-width: 900px) {
  .osv-features-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .osv-features-header {
    position: relative;
    top: 0;
    text-align: center;
  }
  
  .osv-features-header h2 {
    font-size: 36px !important;
  }
  
  .osv-feature-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .osv-feature-row:hover {
    transform: none;
  }
  
  .osv-feature-content h3 {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 22px !important;
  }
  
  .osv-feature-content p {
    font-size: 16px !important;
  }

  .osv-feature-icon {
    margin-bottom: 8px;
  }
}

/* NEW ORACULO SECTION (Dobra 8) */
.osv-oraculo-section {
  padding: 100px 0;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

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

.osv-oraculo-content h2 {
  font-family: var(--font-heading) !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
}

.osv-oraculo-content h2 .highlight {
  color: var(--color-primary);
}

.osv-oraculo-desc {
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 32px !important;
}

.osv-oraculo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.osv-oraculo-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px !important;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.osv-oraculo-list li:hover {
  transform: translateX(5px);
  border-color: rgba(245, 142, 38, 0.3);
}

.osv-oraculo-list svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(245, 142, 38, 0.5));
}

.osv-oraculo-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.osv-glow-box {
  position: relative;
  border-radius: 30px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: inline-block;
}

.osv-glow-box::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--color-primary) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  z-index: -1;
  border-radius: 26px;
  filter: blur(10px);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.osv-glow-box:hover::before {
  opacity: 0.8;
}

.osv-glow-box img {
  border-radius: 24px;
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .osv-oraculo-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Text/list first on mobile */
  .osv-oraculo-content {
    text-align: left;
    order: 1;
  }

  .osv-oraculo-content h2 {
    font-size: 28px !important;
    text-align: left;
  }

  .osv-oraculo-list li {
    text-align: left;
  }

  .osv-oraculo-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 0;
    order: 3;
  }

  /* Chat UI: below headline, full width, reasonable height */
  .osv-oraculo-chat-ui {
    order: 2;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    border-color: rgba(245, 142, 38, 0.4);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(245, 142, 38, 0.15);
  }

  /* Shrink chat messages area on mobile */
  .oraculo-chat-messages {
    min-height: 240px;
  }
}

/* NEW COMPARISON SECTION (Dobra 9) */
.osv-comparison-section {
  padding: 100px 0;
  background-color: var(--color-bg);
  position: relative;
}

.osv-comparison-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  position: relative;
  margin-top: 50px;
}

.osv-compare-card {
  flex: 1;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 40px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.osv-compare-card.others {
  opacity: 0.7;
}

.osv-compare-card.osv-premium {
  background: rgba(245, 142, 38, 0.03);
  border: 1px solid rgba(245, 142, 38, 0.2);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
  z-index: 2;
  transform: scale(1.05);
}

.osv-compare-card.osv-premium:hover {
  border-color: rgba(245, 142, 38, 0.5);
  transform: scale(1.07);
}

.card-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  margin-bottom: 30px;
}

.card-tag.primary {
  background: var(--color-primary);
  color: #000000;
}

.osv-card-logo {
  margin-bottom: 24px;
  text-align: center;
}

.osv-logo-img {
  max-width: 150px;
  height: auto;
  filter: brightness(0) invert(1); /* Makes the black logo white for dark bg */
}

.osv-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.osv-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.osv-premium .osv-compare-list li {
  color: #FFFFFF;
}

.icon-x {
  width: 20px;
  height: 20px;
  color: #FF4B2B;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-check {
  width: 20px;
  height: 20px;
  color: #00D084;
  flex-shrink: 0;
  margin-top: 2px;
}

.osv-vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-style: italic;
  font-size: 20px;
  color: var(--color-primary);
  z-index: 10;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
  .osv-comparison-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-bottom: 10px;
  }
  
  .osv-compare-card {
    padding: 32px 24px;
    max-width: 100%;
    width: 100%;
  }
  
  .osv-compare-list li {
    font-size: 15px;
    gap: 12px;
  }
  
  .osv-compare-card.osv-premium {
    transform: none;
    order: -1;
  }
  
  .osv-compare-card.osv-premium:hover {
    transform: none;
  }

  /* VS badge: centered horizontally between the two cards */
  .osv-vs-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 0;  /* between premium (-1) and others (1) */
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    font-size: 18px;
  }

  .osv-compare-card.others {
    order: 1;
  }
}

/* NEW VOYAGES SECTION (Dobra 10) */
.osv-voyages-section {
  padding: 100px 0;
  background-color: var(--color-bg);
  overflow: hidden;
}

.osv-voyages-carousel-wrapper {
  position: relative;
  margin-top: 50px;
  padding: 0 60px;
}

.osv-voyages-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  padding-bottom: 20px;
}

.osv-voyages-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.osv-voyage-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 300px;
  scroll-snap-align: center;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.osv-voyage-card:hover {
  transform: translateY(-10px) scale(1.02);
}

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

.osv-voyage-card:hover img {
  transform: scale(1.1);
}

.osv-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.osv-nav-btn:hover {
  background: var(--color-primary);
  color: #000000;
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(245, 142, 38, 0.4);
}

.osv-nav-btn.prev { left: 0; }
.osv-nav-btn.next { right: 0; }

@media (max-width: 900px) {
  .osv-voyages-carousel-wrapper {
    padding: 0;
  }
  
  .osv-voyages-track {
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .osv-voyage-card {
    flex: 0 0 85%;
    min-width: 280px;
    scroll-snap-align: center;
  }
  
  .osv-nav-btn {
    display: none; /* Hide nav buttons on mobile as users swipe */
  }
}

/* PROOF MURAL SECTION (Restored) */
.osv-proof-mural-section {
  padding: 100px 0;
  background-color: #050505;
  position: relative;
  overflow: hidden;
}

.osv-masonry-grid {
  column-count: 4;
  column-gap: 16px;
  margin-top: 40px;
}

.osv-masonry-grid img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 12px;
  break-inside: avoid;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.osv-masonry-grid img:hover {
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .osv-masonry-grid { column-count: 3; }
}

@media (max-width: 768px) {
  .osv-masonry-grid { 
    column-count: 2;
  }
  
  /* On mobile collapsed: hide images after 4th */
  .osv-masonry-grid.collapsed img:nth-child(n+5) {
    display: none;
  }
  
  /* Gradient overlay on last visible image to hint more content */
  .osv-masonry-grid.collapsed {
    position: relative;
  }
  
  .osv-masonry-grid.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 120px;
    background: linear-gradient(to bottom, transparent, #050505);
    pointer-events: none;
  }
}

.osv-expand-wrapper {
  display: none;
  text-align: center;
  margin-top: 30px;
}

.osv-expand-btn {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  border: 2px solid rgba(245, 142, 38, 0.6);
  color: var(--color-primary);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.osv-expand-btn:hover {
  background: rgba(245, 142, 38, 0.12);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .osv-expand-wrapper {
    display: block;
  }
}

@media (max-width: 900px) {
  .osv-proof-mural {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.osv-proof-mural-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to top, var(--color-bg) 0%, transparent 100%);
  pointer-events: none;
}

.mural-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.osv-proof-mural img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.osv-proof-mural img:hover {
  transform: scale(1.05);
  z-index: 10;
}

.osv-cta-center {
  display: flex;
  justify-content: center;
}

@media (max-width: 1000px) {
  .osv-proof-mural {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .osv-proof-mural {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-height: 580px; /* Altura ideal para mobile */
  }
  .mural-column {
    gap: 12px;
  }
  
  /* Ajuste de espaçamento global no mobile */
  .osv-offer-section,
  .osv-warranty-section,
  .osv-faq-section,
  .osv-voyages-section,
  .osv-comparison-section {
    padding: 60px 0 !important;
  }
}

/* PREMIUM MATH BOX */
.osv-math-box-premium {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.math-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  max-width: 800px;
  width: 100%;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.math-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.math-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(245, 142, 38, 0.1);
  color: var(--color-primary);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.math-header h3 {
  font-family: var(--font-heading) !important;
  font-size: 36px !important;
  color: #FFFFFF !important;
  margin-bottom: 30px !important;
}

.math-body p {
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 40px !important;
}

.highlight-white {
  color: #FFFFFF;
  font-weight: 700;
}

.math-result {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}

.math-result .label {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.value-highlight {
  font-family: var(--font-heading) !important;
  font-size: 48px !important;
  font-weight: 900 !important;
  color: var(--color-primary) !important;
  line-height: 1 !important;
  text-shadow: 0 0 30px rgba(245, 142, 38, 0.3);
}

.value-highlight small {
  font-size: 18px;
  color: #FFFFFF;
  display: block;
  margin-top: 10px;
}

.math-footer p {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.math-footer strong {
  color: #FF4B2B;
}

@media (max-width: 600px) {
  .math-card { padding: 40px 20px; }
  .math-header h3 { font-size: 28px !important; }
  .value-highlight { font-size: 32px !important; }
  .math-result { padding: 30px 15px; }
}

/* WARRANTY SECTION (Dobra 14) */
.osv-warranty-section {
  padding: 100px 0;
  background-color: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.osv-warranty-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.warranty-seal {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  background: rgba(245, 142, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.warranty-seal svg {
  width: 80px;
  height: 80px;
  color: var(--color-primary);
  opacity: 0.5;
}

.seal-days {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 900;
  color: #FFFFFF;
}

.warranty-content h2 {
  margin-bottom: 20px !important;
  text-align: left !important;
}

.warranty-content p {
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 24px !important;
}

.warranty-promise {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  font-style: italic;
}

/* FAQ SECTION (Dobra 15) */
.osv-faq-section {
  padding: 100px 0;
  background-color: var(--color-bg);
}

.osv-faq-grid {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.osv-faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.osv-faq-question {
  width: 100%;
  padding: 24px 30px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.osv-faq-question .arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.osv-faq-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 142, 38, 0.3);
}

.osv-faq-item.active .arrow {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--color-primary);
}

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

.osv-faq-item.active .osv-faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.osv-faq-answer p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* FOOTER */
.osv-footer {
  padding: 60px 0;
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.osv-footer-brand {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.osv-footer-legal p {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-bottom: 10px !important;
}

.osv-footer-links {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.osv-footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

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

.osv-footer-links .divider {
  color: rgba(255, 255, 255, 0.1);
  font-size: 10px;
}


@media (max-width: 800px) {
  .osv-warranty-card {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
    gap: 30px;
  }
  .warranty-content h2 { text-align: center !important; }
  .osv-faq-question { font-size: 16px; padding: 20px; }
}

/* OFFER SECTION */
.osv-offer-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% -20%, rgba(245, 142, 38, 0.05), transparent 70%), #080808;
  border-top: 1px solid rgba(245, 142, 38, 0.1);
}

.osv-offer-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 50px auto 0;
}

.osv-value-stack {
  flex: 1;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.value-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 142, 38, 0.4);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-list li:last-child {
  margin-bottom: 0;
}

.value-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(245, 142, 38, 0.2) 0%, rgba(245, 142, 38, 0.05) 100%);
  border: 1px solid rgba(245, 142, 38, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(245, 142, 38, 0.1);
}

.value-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

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

.value-text strong {
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  color: #FFFFFF !important;
  margin-bottom: 4px;
}

.value-text span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-top: 4px;
}

.value-price {
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
  font-weight: 500;
}

.value-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 0, 0, 0.1);
  padding: 20px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 0, 0, 0.3);
}

.value-total span:first-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.total-strike {
  color: #ff4444;
  font-size: 24px;
  font-weight: 700;
  text-decoration: line-through;
}

.osv-pricing-card {
  flex: 1;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(245, 142, 38, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #000000;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 24px;
  border-radius: 100px;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(245, 142, 38, 0.4);
}

.pricing-header h3 {
  font-family: var(--font-heading) !important;
  font-size: 28px !important;
  color: #FFFFFF !important;
  margin-bottom: 5px !important;
}

.pricing-header p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 16px !important;
}

.pricing-amount {
  margin: 40px 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.pricing-amount .currency {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 5px;
}

.pricing-amount .installments {
  font-size: 72px;
  font-weight: 900;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.pricing-amount .installments small {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-cash {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  margin-bottom: 40px;
}

.pricing-cta {
  margin-bottom: 30px;
}

.pricing-cta .btn-vsl {
  width: 100%;
  padding: 24px 30px;
  font-size: 18px;
}

.pricing-security {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.security-item svg {
  width: 16px;
  height: 16px;
  color: #4CAF50;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .osv-offer-wrapper {
    flex-direction: column;
  }
  .osv-value-stack, .osv-pricing-card {
    width: 100%;
  }
  
  /* Ensure primary CTA buttons are centered on mobile */
  .btn-vsl,
  .btn-primary:not(.btn-small) {
    display: flex !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .osv-hero-action-panel {
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .osv-hero-action-panel .btn-vsl {
    width: 90% !important;
    max-width: 340px !important;
  }

  /* OSV Oraculo CTA button centered */
  .osv-oraculo-button-wrapper {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .osv-oraculo-button-wrapper .btn-vsl {
    width: 90% !important;
    max-width: 340px !important;
    white-space: normal !important;
    text-align: center !important;
  }

  /* Who we are section CTA */
  .osv-who-we-are-content .btn-vsl {
    width: 90% !important;
    max-width: 340px !important;
    display: flex !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 600px) {
  .osv-pricing-card { padding: 40px 20px; }
  .pricing-amount .installments { font-size: 60px; }
  .value-list li { flex-direction: column; align-items: flex-start; gap: 10px; }
  .value-price { align-self: flex-start; }
}

/* ── MODAL PRE-CHECKOUT (GLASSMORPHISM) ── */
.osv-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.osv-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.osv-modal-container {
  width: 100%;
  max-width: 480px;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.osv-modal.active .osv-modal-container {
  transform: translateY(0) scale(1);
}

.osv-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.osv-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.osv-modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.osv-modal-header h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}

.osv-modal-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

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

.osv-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.osv-form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}

.osv-form-group input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(245, 142, 38, 0.15);
}

.osv-modal-container .btn-vsl {
  width: 100%;
  margin-top: 10px;
}

/* ── FLOATING WHATSAPP ── */
.osv-whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.osv-wa-label {
  background: #fff;
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.osv-whatsapp-float:hover .osv-wa-label {
  opacity: 1;
  transform: translateX(0);
}

.osv-wa-icon {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  position: relative;
}

.osv-wa-icon svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* Pulse animation for WA */
.osv-wa-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 768px) {
  .osv-whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .osv-wa-icon {
    width: 50px;
    height: 50px;
  }
  .osv-wa-icon svg {
    width: 26px;
    height: 26px;
  }
  .osv-modal-container {
    padding: 30px 20px;
  }
}

/* ── SECONDARY WHATSAPP BUTTON (OUTLINE) ── */
.btn-whatsapp-outline {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent !important;
  color: #FFFFFF !important;
  padding: 18px 40px !important;
  border-radius: 100px !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  cursor: pointer;
  text-decoration: none !important;
  width: 100%;
  max-width: 500px;
  margin: 15px auto 0 !important;
}

.btn-whatsapp-outline:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: #25D366 !important;
  color: #25D366 !important;
  transform: translateY(-2px);
}

.btn-whatsapp-outline svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* FORCE FAQ ORANGE COLOR - REMOVE PINK */
.osv-faq-item.active,
.osv-faq-item.active .osv-faq-question,
.osv-faq-item.active .osv-faq-question:hover,
.osv-faq-item.active .osv-faq-question:active,
.osv-faq-item.active .osv-faq-question:focus,
.osv-faq-item:hover .osv-faq-question,
.osv-faq-question:hover,
.elementor-active .osv-faq-question,
.elementor-active .elementor-toggle-title {
  background-color: #F58E26 !important;
  background: #F58E26 !important;
  color: #FFFFFF !important;
  border-color: #D67618 !important;
}

.osv-faq-item.active .arrow,
.osv-faq-item:hover .arrow {
  color: #FFFFFF !important;
  opacity: 1 !important;
}

.osv-faq-item.active .osv-faq-answer p {
  color: #FFFFFF !important;
  opacity: 0.9 !important;
}

/* NEW WHO WE ARE SECTION */
.osv-who-we-are-section {
  padding: 120px 0;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.osv-who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.osv-who-we-are-image {
  position: relative;
}

.osv-who-we-are-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

.osv-who-we-are-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  border-radius: 24px;
  z-index: 1;
}

.osv-who-we-are-content h2 {
  font-family: var(--font-heading) !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
}

.osv-who-we-are-content p {
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 20px !important;
}

@media (max-width: 900px) {
  .osv-who-we-are-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 32px;
  }
  
  .osv-who-we-are-image {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .osv-who-we-are-image img {
    max-height: 400px;
    object-fit: cover;
    object-position: top;
  }
  
  .osv-who-we-are-content h2 {
    font-size: 28px !important;
    text-align: left;
  }
  
  .osv-who-we-are-content p {
    text-align: left !important;
  }
  
  /* Remove the decorative offset border on mobile to prevent overflow */
  .osv-who-we-are-image::before {
    display: none;
  }
}

/* ─── OFFER SECTION - NEW LAYOUT ─── */
.osv-offer-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.osv-offer-image-col {
  position: sticky;
  top: 100px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.osv-offer-img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  border: none;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.osv-offer-content-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.osv-offer-includes-label {
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 2px;
  color: #FFFFFF !important;
  text-transform: uppercase;
  margin-bottom: 20px !important;
  opacity: 0.6;
}

.osv-bonus-block {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(245, 142, 38, 0.06) 0%, rgba(245, 142, 38, 0.02) 100%);
  border: 1px solid rgba(245, 142, 38, 0.25);
  border-radius: 16px;
}

.osv-bonus-label {
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--color-primary) !important;
  letter-spacing: 1px;
  margin-bottom: 16px !important;
}

.bonus-list {
  margin: 0 !important;
}

.bonus-list li {
  background: transparent !important;
  border-color: rgba(245, 142, 38, 0.15) !important;
  padding: 14px 16px !important;
}

.bonus-icon {
  background: linear-gradient(135deg, rgba(245, 142, 38, 0.3), rgba(245, 142, 38, 0.1)) !important;
  border-color: rgba(245, 142, 38, 0.5) !important;
}

.bonus-icon svg {
  fill: var(--color-primary);
  stroke: var(--color-primary);
}

@media (max-width: 900px) {
  .osv-offer-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
    max-width: 100%;
  }
  
  .osv-offer-image-col {
    position: relative;
    top: 0;
    padding: 30px 20px;
    border-radius: 24px;
  }
  
  .osv-offer-img {
    max-height: none;
    width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  }

  .value-list li {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 30px 20px;
  }

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

  .osv-offer-includes-label {
    text-align: center;
  }
}

/* NEWS SCENARIO SECTION */
.osv-news-scenario-section {
  padding: 100px 0;
  background: radial-gradient(circle at center, rgba(245, 142, 38, 0.03) 0%, var(--color-bg) 60%) !important;
  position: relative;
  z-index: 10;
}

.osv-news-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.osv-news-card {
  flex: 1 1 300px;
  max-width: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.osv-news-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.5s ease;
}

.osv-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(245, 142, 38, 0.15);
  border-color: rgba(245, 142, 38, 0.3);
}

.osv-news-card:hover img {
  opacity: 1;
}

@media (max-width: 900px) {
  .osv-news-scenario-section {
    padding: 60px 0;
  }

  /* Wrapper is relative so buttons can be absolutely positioned over grid */
  .osv-news-carousel-wrapper {
    position: relative;
    width: 100%;
  }

  /* Grid: full-width horizontal scroll snap */
  .osv-news-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    width: 100%;
  }

  .osv-news-grid::-webkit-scrollbar { display: none; }

  .osv-news-card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    border-radius: 12px;
  }

  /* Buttons: hidden on mobile — navigation via swipe touch + dots */
  .osv-news-carousel-btn {
    display: none;
  }

  .osv-news-carousel-btn:hover {
    background: rgba(245, 142, 38, 0.2);
  }

  /* Dots */
  .osv-news-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

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

  .osv-news-dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
  }
}

/* Desktop: hide carousel controls, show normal flex grid */
@media (min-width: 901px) {
  .osv-news-carousel-wrapper {
    display: contents; /* transparent wrapper on desktop */
  }
  .osv-news-carousel-btn { display: none; }
  .osv-news-dots { display: none; }
}

/* ===========================
   LEARNINGS SECTION
   =========================== */
.osv-learnings-section {
  padding: 100px 0;
  position: relative;
}

.osv-learnings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 56px;
}

/* First 4 cards fill top row */
.osv-learning-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.osv-learning-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 142, 38, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.osv-learning-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 142, 38, 0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(245, 142, 38, 0.05);
}

.osv-learning-card:hover::before {
  opacity: 1;
}

/* 5th card spans full width */
.osv-learning-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(245, 142, 38, 0.06) 0%, rgba(245, 142, 38, 0.02) 100%);
  border-color: rgba(245, 142, 38, 0.15);
}

.osv-learning-card--wide .osv-learning-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}

.osv-learning-card--wide h3 {
  margin-bottom: 4px;
}

.osv-learning-card--wide .osv-learning-num {
  position: static;
  margin-bottom: 0;
  font-size: 48px;
  flex-shrink: 0;
  opacity: 0.15;
  line-height: 1;
}

.osv-learning-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 142, 38, 0.2), rgba(245, 142, 38, 0.05));
  border: 1px solid rgba(245, 142, 38, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.osv-learning-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
}

.osv-learning-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.12;
  line-height: 1;
  letter-spacing: -2px;
}

.osv-learning-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.osv-learning-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

.osv-learning-card p strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .osv-learnings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .osv-learning-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .osv-learnings-section {
    padding: 60px 0;
  }
  .osv-learnings-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .osv-learning-card--wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 24px;
  }
  .osv-learning-card--wide .osv-learning-num {
    font-size: 36px;
  }
}


/* ===========================
   ORÁCULO CHAT UI
   =========================== */
.osv-oraculo-chat-ui {
  background: linear-gradient(160deg, #111118 0%, #0d0d14 100%);
  border: 1px solid rgba(245, 142, 38, 0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  max-width: 460px;
  width: 100%;
}

.oraculo-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(245, 142, 38, 0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.oraculo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245,142,38,0.3), rgba(245,142,38,0.1));
  border: 1px solid rgba(245,142,38,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.oraculo-avatar svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
  stroke: none;
}

.oraculo-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.oraculo-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.oraculo-status {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 5px;
}

.oraculo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: blink-dot 2s ease-in-out infinite;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.oraculo-ia-badge {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-primary);
  background: rgba(245,142,38,0.12);
  border: 1px solid rgba(245,142,38,0.3);
  border-radius: 6px;
  padding: 3px 8px;
}

.oraculo-chat-messages {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 320px;
}

.oraculo-msg {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.6;
  opacity: 0;
  animation: msg-appear 0.5s ease forwards;
}

.oraculo-msg p { margin: 0; }

.oraculo-msg--bot {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.oraculo-msg--user {
  background: linear-gradient(135deg, rgba(245,142,38,0.2), rgba(245,142,38,0.1));
  border: 1px solid rgba(245,142,38,0.25);
  color: rgba(255,255,255,0.9);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.oraculo-msg--anim-1 { animation-delay: 0.4s; }
.oraculo-msg--anim-2 { animation-delay: 1.4s; }
.oraculo-msg--anim-3 { animation-delay: 2.4s; }
.oraculo-msg--anim-4 { animation-delay: 3.8s; }
.oraculo-msg--anim-5 { animation-delay: 5.0s; }
.oraculo-msg--anim-6 { animation-delay: 6.2s; }

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

.oraculo-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  align-self: flex-start;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  opacity: 0;
  animation: msg-appear 0.5s ease 6.2s forwards;
}

.oraculo-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: bounce-dot 1.2s ease infinite;
}

.oraculo-typing span:nth-child(2) { animation-delay: 0.2s; }
.oraculo-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce-dot {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.oraculo-chat-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
}

.oraculo-chat-input input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  outline: none;
  cursor: default;
}

.oraculo-chat-input button {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--color-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.oraculo-chat-input button svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.oraculo-chat-input button:hover {
  background: #e07e1e;
}

@media (max-width: 900px) {
  .osv-oraculo-chat-ui {
    max-width: 100%;
  }
}

/* ===========================
   LEARNINGS ROADMAP
   =========================== */
.osv-learnings-roadmap {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.osv-learn-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 24px;
  align-items: start;
}

.osv-learn-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.osv-learn-bubble {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245,142,38,0.25), rgba(245,142,38,0.08));
  border: 2px solid rgba(245,142,38,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(245,142,38,0.15);
  transition: all 0.3s ease;
}

.osv-learn-bubble--final {
  background: linear-gradient(135deg, rgba(245,142,38,0.4), rgba(245,142,38,0.15));
  border-color: var(--color-primary);
  box-shadow: 0 0 30px rgba(245,142,38,0.3);
}

.osv-learn-item:hover .osv-learn-bubble {
  background: linear-gradient(135deg, rgba(245,142,38,0.35), rgba(245,142,38,0.15));
  box-shadow: 0 0 30px rgba(245,142,38,0.25);
  transform: scale(1.05);
}

.osv-learn-bubble svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
}

.osv-learn-line {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: linear-gradient(to bottom, rgba(245,142,38,0.4), rgba(245,142,38,0.05));
  margin: 6px 0;
}

.osv-learn-item--last .osv-learn-step {
  justify-content: flex-start;
}

.osv-learn-body {
  padding: 4px 0 40px;
}

.osv-learn-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-primary);
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-bottom: 6px;
}

.osv-learn-tag--final {
  opacity: 1;
}

.osv-learn-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}

.osv-learn-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

.osv-learn-body p strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

@media (max-width: 640px) {
  .osv-learnings-roadmap {
    margin-top: 40px;
  }
  .osv-learn-item {
    grid-template-columns: 44px 1fr;
    gap: 0 16px;
  }
  .osv-learn-bubble {
    width: 44px;
    height: 44px;
  }
  .osv-learn-bubble svg {
    width: 18px;
    height: 18px;
  }
  .osv-learn-body h3 {
    font-size: 17px;
  }
}

/* ===========================
   DELIVERABLES BOX (Offer)
   =========================== */
.osv-deliverables-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}

.osv-deliverables-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.osv-deliverables-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 20px;
}

.osv-deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.osv-deliverables-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.osv-deliverables-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.osv-bullet {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}

.osv-deliverables-list em {
  color: rgba(255,255,255,0.45);
  font-style: normal;
  font-size: 13px;
}

.osv-deliverables-bonus {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed rgba(245,142,38,0.25);
}

.osv-bonus-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 16px;
}

.osv-offer-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 40px;
}

.osv-offer-ctas .btn-vsl {
  width: 100%;
  max-width: 500px;
  text-align: center;
  font-size: 18px;
  padding: 22px 30px;
}

@media (max-width: 900px) {
  .osv-deliverables-box {
    padding: 24px 20px;
  }
}

/* ===========================
   OFFER CARD (image top)
   =========================== */
.osv-offer-card {
  max-width: 680px;
  margin: 48px auto 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.osv-offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.osv-offer-card-img {
  width: 100%;
  line-height: 0;
  padding: 40px 20px 0;
  text-align: center;
}

.osv-offer-card-img img {
  width: 100%;
  max-width: 580px;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.osv-offer-card-body {
  padding: 36px 40px 40px;
}

/* Check icon */
.osv-check {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.osv-check--bonus {
  stroke: #f0c040;
  width: 16px;
  height: 16px;
}

/* Override list item to use svg instead of span bullet */
.osv-deliverables-list li {
  align-items: flex-start;
}

.osv-deliverables-list li svg {
  margin-top: 3px;
}

@media (max-width: 640px) {
  .osv-offer-card-body {
    padding: 24px 20px 28px;
  }
  .osv-offer-card-img img {
    height: 200px;
  }
}

/* ===========================
   PAGE ZOOM 80% (Desktop)
   =========================== */
@media (min-width: 1025px) {
  html {
    zoom: 0.8;
  }
}


/* ===================================================
   TYPOGRAPHY & MOBILE AUDIT — GLOBAL STANDARDISATION
   All h2 headlines: 38px desktop / 24px mobile
   Subtitles: 17px desktop / 14px mobile
   Section padding: 80px desktop / 56px mobile
   =================================================== */

/* 1. GLOBAL SECTION PADDING & DIFFERENTIATION */
section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  position: relative;
}

/* Alternating Folds */
section:nth-of-type(even) {
  background-color: var(--color-bg-dark) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
}

section:nth-of-type(odd) {
  background-color: var(--color-bg) !important;
}

/* Exceções */
.osv-hero {
  border-top: none !important;
}
.osv-hero {
  padding: 120px 0 80px !important;
}

/* 2. H2 SYSTEM — all section headline variants */
.osv-section-title,
.osv-section-header.center .osv-section-title,
.osv-section-heading h2,
.osv-about-title,
.osv-oraculo-content h2,
.osv-who-we-are-content h2,
.osv-comp-headline h2 {
  font-family: var(--font-heading) !important;
  font-size: 38px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: #fff !important;
}

/* 3. SUBTITLE / DESCRIPTION TEXT */
.osv-section-subtitle,
.osv-section-header.center .osv-section-subtitle,
.osv-section-heading p,
.osv-about-description p,
.osv-oraculo-desc,
.osv-comp-headline p,
.osv-who-we-are-content p {
  font-size: 17px !important;
  line-height: 1.65 !important;
}

/* 4. MOBILE — max-width 768px */
@media (max-width: 768px) {
  section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .osv-hero {
    padding: 90px 0 56px !important;
  }
  .osv-section-title,
  .osv-section-header.center .osv-section-title,
  .osv-section-heading h2,
  .osv-about-title,
  .osv-oraculo-content h2,
  .osv-who-we-are-content h2,
  .osv-comp-headline h2 {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }
  .osv-hero-title {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }
  .osv-section-subtitle,
  .osv-section-header.center .osv-section-subtitle,
  .osv-section-heading p,
  .osv-about-description p,
  .osv-oraculo-desc,
  .osv-comp-headline p,
  .osv-who-we-are-content p {
    font-size: 14px !important;
  }
  .osv-section-header.center,
  .osv-section-heading {
    margin-bottom: 32px !important;
  }
  .btn-vsl,
  .osv-offer-ctas .btn-vsl {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 15px !important;
    padding: 18px 20px !important;
    white-space: normal !important;
    text-align: center !important;
  }
  .btn-whatsapp-outline {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    font-size: 14px !important;
  }
  .osv-offer-card { margin-top: 28px !important; border-radius: 16px !important; }
  .osv-offer-card-img { padding: 24px 16px 0 !important; }
  .osv-offer-card-body { padding: 20px 16px 24px !important; }
  .osv-deliverables-title { font-size: 11px !important; }
  .osv-deliverables-list li { font-size: 14px !important; gap: 10px !important; padding-bottom: 12px !important; }
  .osv-deliverables-list em { font-size: 12px !important; }
  .osv-bonus-label { font-size: 11px !important; }
  .osv-comp-body { grid-template-columns: 1fr !important; gap: 24px !important; }
  .osv-faq-question span { font-size: 15px !important; }
  .osv-who-we-are-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .osv-who-we-are-image img { max-height: 300px !important; }
  .osv-method-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .osv-warranty-card { flex-direction: column !important; text-align: center !important; padding: 32px 20px !important; gap: 24px !important; }
  .pricing-security { flex-wrap: wrap !important; justify-content: center !important; gap: 8px !important; font-size: 12px !important; }
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.osv-cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 480px;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(120%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.osv-cookie-banner.active {
  transform: translateY(0);
}

.osv-cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.osv-cookie-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.osv-cookie-actions {
  display: flex;
  gap: 12px;
}

.osv-cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-heading);
}

.osv-cookie-btn.accept {
  background: var(--color-primary);
  color: #fff;
}

.osv-cookie-btn.accept:hover {
  background: var(--color-primary-dark);
  transform: scale(1.02);
}

.osv-cookie-btn.decline {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.osv-cookie-btn.decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
  .osv-cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
  }
  .osv-cookie-actions {
    flex-direction: column;
  }
  .osv-cookie-btn {
    width: 100%;
    text-align: center;
  }
}

/* SCROLL OFFSET FOR ANCHOR LINKS */
section[id] {
  scroll-margin-top: 100px; /* Compensa o header fixo */
}

@media (max-width: 1024px) {
  section[id] {
    scroll-margin-top: 80px;
  }
}

/* SUBTLE MENU ICONS (Optional but professional) */
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::before {
  opacity: 1;
}

/* HEADER NAV ICONS */
.osv-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.osv-nav .nav-link {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.osv-nav .nav-link svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.osv-nav .nav-link:hover svg {
  opacity: 1;
  color: var(--color-primary);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .osv-nav {
    display: none; /* Hide standard nav on mobile if using a hamburger */
  }
}

/* HIDE LOGO IN HEADER ON MOBILE */
@media (max-width: 767px) {
  .osv-header .osv-logo {
    display: none !important;
  }
}

/* MOBILE PHRASE STYLING */
.osv-mobile-phrase {
  display: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1;
}

.osv-mobile-phrase strong {
  color: var(--color-primary);
  font-weight: 900;
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .osv-header .osv-logo {
    display: flex !important;
    flex: 1;
  }
  .osv-header .osv-logo img {
    display: none !important;
  }
  .osv-mobile-phrase {
    display: block;
  }
}

/* ═══════════════════════════════════════════════════
   SEÇÃO: DORES E DESEJOS
   ═══════════════════════════════════════════════════ */
.osv-pain-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0D0D0D 0%, #100D09 50%, #0D0D0D 100%);
  position: relative;
}

.osv-pain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(180, 50, 50, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.osv-pain-eyebrow {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #C04040;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.osv-pain-eyebrow::before,
.osv-pain-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: #C04040;
  opacity: 0.6;
}

.osv-pain-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
}

.osv-pain-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 48px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.osv-pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.5;
}

.osv-pain-item em {
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.osv-pain-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(192, 64, 64, 0.15);
  border: 1px solid rgba(192, 64, 64, 0.35);
  color: #E05050;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.osv-pain-closing {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.osv-pain-closing p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.osv-pain-closing p strong {
  color: #FFFFFF;
  font-weight: 700;
}

@media (max-width: 768px) {
  .osv-pain-section { padding: 60px 0; }
  .osv-pain-item { font-size: 15px; gap: 12px; }
  .osv-pain-closing p { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════
   SEÇÃO: PRA QUEM É
   ═══════════════════════════════════════════════════ */
.osv-target-section {
  padding: 80px 0;
  background: #0D0D0D;
}

.osv-target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.osv-target-col {
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
}

.osv-target-col--yes {
  background: rgba(76, 175, 80, 0.05);
  border: 1px solid rgba(76, 175, 80, 0.20);
}

.osv-target-col--no {
  background: rgba(192, 64, 64, 0.05);
  border: 1px solid rgba(192, 64, 64, 0.20);
}

.osv-target-col-header {
  margin-bottom: 24px;
}

.osv-target-badge {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
}

.osv-target-badge--yes {
  background: rgba(76, 175, 80, 0.12);
  color: #6DC971;
  border: 1px solid rgba(76, 175, 80, 0.25);
}

.osv-target-badge--no {
  background: rgba(192, 64, 64, 0.10);
  color: #E07070;
  border: 1px solid rgba(192, 64, 64, 0.22);
}

.osv-target-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.osv-target-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
  font-weight: 500;
}

.osv-target-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.osv-target-icon--yes {
  background: rgba(76, 175, 80, 0.15);
  color: #6DC971;
}

.osv-target-icon--no {
  background: rgba(192, 64, 64, 0.13);
  color: #E07070;
}

@media (max-width: 768px) {
  .osv-target-section { padding: 60px 0; }
  .osv-target-grid { grid-template-columns: 1fr; gap: 16px; }
  .osv-target-col { padding: 24px 20px; }
  .osv-target-list li { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════
   SEÇÃO: QUEBRA DE OBJEÇÕES
   ═══════════════════════════════════════════════════ */
.osv-objection-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0D0D0D 0%, #0C0B10 50%, #0D0D0D 100%);
  position: relative;
}

.osv-objection-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(44, 74, 124, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.osv-objection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.osv-objection-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s, background 0.3s;
}

.osv-objection-card:hover {
  border-color: rgba(245, 142, 38, 0.25);
  background: rgba(245, 142, 38, 0.03);
}

.osv-objection-doubt {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: rgba(255,255,255,0.60);
  margin-bottom: 14px;
  line-height: 1.45;
}

.osv-objection-answer {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  font-weight: 400;
}

.osv-objection-answer strong {
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .osv-objection-section { padding: 60px 0; }
  .osv-objection-grid { grid-template-columns: 1fr; gap: 14px; }
  .osv-objection-card { padding: 22px 18px; }
  .osv-objection-doubt { font-size: 16px; }
  .osv-objection-answer { font-size: 14px; }
}
