/* ==========================================================================
   ONIRA.FLY B2B — PROPOSTA COMERCIAL UNIVERSO SUPRIMENTOS
   Design System Executivo: Dark Slate & Electric Blue
   100% Responsivo para Desktop, Tablet e Mobile Smartphones
   ========================================================================== */

:root {
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Paleta Corporativa Noturna */
  --bg-base: #0B0C10;
  --bg-surface: #14171D;
  --bg-alt: #0F1218;
  --bg-card: #181C24;
  --bg-card-hover: #1E232E;
  
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --border-focus: rgba(198, 123, 46, 0.5);
  
  /* Cores de Ação & Assinatura */
  --primary: #C67B2E;
  --primary-hover: #9E5F1D;
  --primary-glow: rgba(198, 123, 46, 0.35);
  --primary-soft: rgba(198, 123, 46, 0.14);
  
  --accent-green: #25D366;
  --accent-green-glow: rgba(37, 211, 102, 0.3);
  --accent-red: #EF4444;
  --accent-yellow: #FACC15;
  --accent-cyan: #E9B872;
  
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  
  --container-max: 1180px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container Estrutural */
.prop-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

.prop-section {
  padding: 80px 0;
  position: relative;
}

.prop-section.bg-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ==========================================================================
   HEADER / TOP BAR
   ========================================================================== */
.prop-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 12, 16, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.prop-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.prop-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.prop-logo-universo {
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.prop-divider {
  color: var(--text-dim);
  font-size: 1.1rem;
}

.prop-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: #E9B872;
  background: var(--primary-soft);
  border: 1px solid rgba(198, 123, 46, 0.3);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}

.prop-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #E2E8F0;
  border: 1px solid var(--border-strong);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}

.btn-ghost-live:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-cta-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-cta-top:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.prop-hero {
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(198, 123, 46, 0.08) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.prop-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  color: #E9B872;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  align-self: flex-start;
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E9B872;
  box-shadow: 0 0 10px #E9B872;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.hero-title span {
  color: #E9B872;
  background: linear-gradient(135deg, #E9B872 0%, #F4D6A6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.hl-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-strong);
}

.hl-icon {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.hl-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hl-text strong {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 700;
}

.hl-text span {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px var(--primary-glow);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary-glow:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 123, 46, 0.5);
}

.btn-secondary-link {
  color: #E9B872;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.btn-secondary-link:hover {
  color: #F4D6A6;
}

/* ==========================================================================
   PHONE MOCKUP PREVIEW
   ========================================================================== */
.hero-device-col {
  display: flex;
  justify-content: center;
}

.phone-card-wrap {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.phone-frame {
  width: 100%;
  background: #12141A;
  border: 8px solid #232732;
  border-radius: 38px;
  padding: 14px 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(198, 123, 46, 0.15);
  position: relative;
  overflow: hidden;
}

.phone-speaker {
  width: 50px;
  height: 4px;
  background: #323746;
  border-radius: 999px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #FFFFFF;
  border-radius: 22px;
  padding: 12px;
  color: #111;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid #E5E7EB;
}

.mockup-logo {
  height: 20px;
  object-fit: contain;
}

.mockup-badge {
  font-size: 0.6rem;
  font-weight: 800;
  background: #EFF6FF;
  color: #1D4ED8;
  padding: 2px 6px;
  border-radius: 4px;
}

.mockup-search {
  background: #F3F4F6;
  padding: 6px 10px;
  border-radius: 999px;
  color: #6B7280;
  font-size: 0.68rem;
}

.mockup-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: #F9FAFB;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

.mockup-thumb {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  font-size: 1rem;
}

.mockup-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mockup-info strong {
  font-size: 0.68rem;
  color: #111;
  line-height: 1.2;
}

.mockup-info span {
  font-size: 0.58rem;
  color: #6B7280;
}

.mockup-add {
  width: 20px;
  height: 20px;
  background: #C67B2E;
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}

.mockup-bottom-cta {
  margin-top: 4px;
  background: #25D366;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mockup-bottom-cta span {
  font-size: 0.62rem;
  opacity: 0.9;
}

.mockup-bottom-cta strong {
  font-size: 0.68rem;
}

.device-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--text-dim);
  text-align: center;
}

.caption-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 8px #25D366;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* ==========================================================================
   SECTION HEADING (PADRÃO EXECUTIVO)
   ========================================================================== */
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-heading .eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: #E9B872;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.section-heading p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   DIFERENCIAL TESE: SITE INSTITUCIONAL VS CATÁLOGO.WEB
   ========================================================================== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.comp-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.comp-card.danger {
  border-color: rgba(239, 68, 68, 0.3);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.06) 0%, rgba(24, 27, 34, 1) 40%);
}

.comp-card.success {
  border-color: rgba(37, 211, 102, 0.35);
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.07) 0%, rgba(24, 27, 34, 1) 40%);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.comp-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  align-self: flex-start;
}

.comp-badge.bad {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.comp-badge.good {
  background: rgba(37, 211, 102, 0.15);
  color: #4ADE80;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.comp-card-intro {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.comp-card-intro h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.comp-card-intro p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.comp-list-rich {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comp-list-rich li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #CBD5E1;
}

.comp-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.comp-item-icon.danger-icon {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.comp-item-icon.success-icon {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.comp-item-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.comp-item-content strong {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.92rem;
}

.comp-item-content span {
  color: #94A3B8;
  font-size: 0.85rem;
}

/* ==========================================================================
   METRICAS DE IMPACTO
   ========================================================================== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all 0.2s ease;
}

.metric-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.metric-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #E9B872;
  margin-bottom: 8px;
}

.metric-num small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.metric-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.metric-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   CONDIÇÕES DE INVESTIMENTO
   ========================================================================== */
.pricing-deck {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  margin-bottom: 32px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-card.featured {
  border-color: rgba(198, 123, 46, 0.4);
  background: linear-gradient(180deg, rgba(198, 123, 46, 0.08) 0%, rgba(24, 27, 34, 1) 40%);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
}

.plan-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: #E9B872;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plan-tag.secondary {
  color: var(--text-dim);
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.plan-price .currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: #E9B872;
}

.plan-price .val {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.plan-price .period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.plan-terms {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.plan-terms strong {
  color: #E2E8F0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.plan-features li {
  font-size: 0.86rem;
  color: #CBD5E1;
  line-height: 1.45;
}

.btn-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px var(--primary-glow);
  transition: all 0.2s ease;
  text-align: center;
}

.btn-plan-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 123, 46, 0.5);
}

.btn-plan-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border: 1px solid var(--border-strong);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  text-align: center;
}

.btn-plan-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
}

/* ==========================================================================
   CARD VISTOSO GOOGLE ADS & TRÁFEGO B2B (FEE R$ 300)
   ========================================================================== */
.google-ads-featured-card {
  background: linear-gradient(145deg, #0B132B 0%, #111C38 50%, #0D162B 100%);
  border: 1.5px solid rgba(66, 133, 244, 0.4);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 35px rgba(66, 133, 244, 0.15);
  margin-top: 24px;
}

.google-card-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.25) 0%, rgba(52, 168, 83, 0.12) 40%, transparent 70%);
  pointer-events: none;
}

.google-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

.google-brand-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.google-status-pill {
  font-size: 0.76rem;
  font-weight: 700;
  color: #34D399;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.google-card-body {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.google-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.google-desc {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #CBD5E1;
  margin-bottom: 24px;
}

.google-desc strong {
  color: #FFFFFF;
}

.google-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.google-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: var(--radius-md);
}

.google-feat-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.google-feat-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.google-feat-item p {
  font-size: 0.78rem;
  color: #94A3B8;
  line-height: 1.45;
  margin: 0;
}

.google-pricing-sidebar {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(66, 133, 244, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.google-fee-label {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  color: #E9B872;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.google-fee-val {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.google-fee-val .currency {
  font-size: 1.35rem;
  font-weight: 700;
  color: #E9B872;
}

.google-fee-val .val {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1;
}

.google-fee-val .period {
  font-size: 0.92rem;
  color: #94A3B8;
}

.google-fee-note {
  font-size: 0.8rem;
  color: #94A3B8;
  line-height: 1.45;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.google-budget-simulation {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.budget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #CBD5E1;
}

.budget-row.total-highlight {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  font-weight: 700;
  color: #FFFFFF;
}

.badge-ready {
  background: #10B981;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.btn-activate-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #C67B2E;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(198, 123, 46, 0.4);
}

.btn-activate-google:hover {
  background: #9E5F1D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 123, 46, 0.5);
  color: #FFFFFF;
}

.google-guarantee-text {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: #94A3B8;
  margin-top: 10px;
}

/* ==========================================================================
   DEV CARD MASTER INSTITUCIONAL ONIRA LABS (PADRÃO MONTE CRISTO / LINKEDIN NAVY)
   ========================================================================== */
.dev-card-proposta {
  background: linear-gradient(145deg, #09192E 0%, #061224 100%);
  border: 1px solid rgba(56, 116, 203, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  padding: 38px 42px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.dev-card-proposta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(10, 102, 194, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.dev-card-header {
  display: flex;
  align-items: center;
  gap: 22px;
}

.dev-card-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.dev-card-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2.5px solid #0A66C2;
  box-shadow: 0 0 24px rgba(10, 102, 194, 0.45);
  object-fit: cover;
  display: block;
}

.dev-card-avatar-wrap .status-dot-pulse {
  position: absolute;
  bottom: 2px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22C55E;
  border: 2.5px solid #061224;
  box-shadow: 0 0 10px #22C55E;
}

.dev-card-badge {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: #E9B872;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 4px;
}

.dev-card-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 4px;
}

.dev-card-role {
  font-size: 0.88rem;
  color: #94A3B8;
  margin: 0;
}

.dev-card-role strong {
  color: #F8FAFC;
}

.dev-card-quote {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #E2E8F0;
  border-left: 3.5px solid #0A66C2;
  padding-left: 20px;
  font-style: italic;
  margin: 0;
}

.dev-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 16px;
}

.dev-card-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-exec-wa-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-exec-wa-direct:hover {
  background: #20BA56;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

.dev-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dev-card-link:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #FFFFFF;
  border-color: #E9B872;
}

.dev-card-agency {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .google-card-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .google-features-grid {
    grid-template-columns: 1fr;
  }
  .google-ads-featured-card {
    padding: 24px 20px;
  }
  .dev-card-proposta {
    padding: 24px 20px;
  }
  .dev-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .dev-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-exec-wa-direct {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.prop-footer {
  background: #07080A;
  border-top: 1px solid var(--border);
  padding: 28px 0;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left strong {
  color: #CBD5E1;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-back-top {
  color: #E9B872;
}

.btn-back-top:hover {
  color: #F4D6A6;
}

/* ==========================================================================
   RESPONSIVIDADE COMPLETA: TABLETS & SMARTPHONES
   ========================================================================== */

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-device-col {
    order: 2;
  }
  .hero-copy {
    order: 1;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-deck {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Mobile Smartphones (<= 640px) */
@media (max-width: 640px) {
  .prop-container {
    padding-inline: 16px;
  }
  .prop-section {
    padding: 50px 0;
  }
  
  /* Header Mobile */
  .prop-header {
    padding: 8px 0;
  }
  .prop-header-inner {
    padding-inline: 16px;
    gap: 10px;
  }
  .prop-logo-universo {
    height: 28px;
    max-width: 90px;
  }
  .prop-tag {
    font-size: 0.64rem;
    padding: 2px 6px;
  }
  .btn-ghost-live span {
    display: none;
  }
  .btn-ghost-live {
    padding: 6px 10px;
  }
  .btn-cta-top {
    font-size: 0.76rem;
    padding: 6px 12px;
  }

  /* Hero Mobile */
  .prop-hero {
    padding: 40px 0 35px;
  }
  .prop-badge {
    font-size: 0.68rem;
    padding: 4px 10px;
    margin-bottom: 14px;
  }
  .hero-title {
    font-size: 1.7rem;
    line-height: 1.22;
    margin-bottom: 14px;
  }
  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .hl-item {
    padding: 10px 12px;
    gap: 10px;
  }
  .hl-text strong {
    font-size: 0.84rem;
  }
  .hl-text span {
    font-size: 0.76rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .btn-primary-glow {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.88rem;
    text-align: center;
  }
  .btn-secondary-link {
    justify-content: center;
    font-size: 0.84rem;
    text-align: center;
  }
  .phone-card-wrap {
    max-width: 280px;
  }
  .phone-frame {
    padding: 10px 8px;
    border-radius: 32px;
  }

  /* Section Heading Mobile */
  .section-heading {
    margin-bottom: 32px;
  }
  .section-heading h2 {
    font-size: 1.4rem;
  }
  .section-heading p {
    font-size: 0.85rem;
  }

  /* Comparison Cards Mobile */
  .comp-card {
    padding: 22px 18px;
  }
  .comp-badge {
    font-size: 0.74rem;
    padding: 5px 12px;
    margin-bottom: 16px;
  }
  .comp-list {
    gap: 12px;
  }
  .comp-list li {
    font-size: 0.82rem;
  }

  /* Metrics Mobile */
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .metric-card {
    padding: 16px 12px;
  }
  .metric-num {
    font-size: 1.7rem;
  }
  .metric-card h3 {
    font-size: 0.88rem;
  }
  .metric-card p {
    font-size: 0.74rem;
  }

  /* Pricing Mobile */
  .plan-card {
    padding: 24px 18px;
  }
  .plan-name {
    font-size: 1.25rem;
  }
  .plan-price .val {
    font-size: 2.3rem;
  }
  .plan-terms {
    font-size: 0.78rem;
    margin-bottom: 18px;
  }
  .plan-features {
    gap: 10px;
    margin-bottom: 24px;
  }
  .plan-features li {
    font-size: 0.8rem;
  }
  .btn-plan-cta, .btn-plan-ghost {
    padding: 12px 16px;
    font-size: 0.88rem;
  }

  /* Bonus Mobile */
  .bonus-box {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 12px;
  }
  .bonus-content h4 {
    font-size: 0.95rem;
  }
  .bonus-content p {
    font-size: 0.8rem;
  }

  /* Assinatura Executiva Mobile */
  .exec-signature-widget {
    padding: 22px 16px;
  }
  .exec-widget-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .exec-header-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
  }
  .exec-name {
    font-size: 1.2rem;
  }
  .exec-quote {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid #C67B2E;
    padding-top: 14px;
    font-size: 0.86rem;
  }
  .exec-actions-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .btn-exec-primary {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
  }
  .exec-social-links {
    justify-content: center;
    width: 100%;
  }

  /* Footer Mobile */
  .footer-flex {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-right {
    flex-direction: column;
    gap: 8px;
  }

  /* Floating WhatsApp Mobile */
  .prop-floating-wa {
    bottom: 16px;
    right: 16px;
    padding: 12px;
    border-radius: 50%;
  }
  .prop-floating-label {
    display: none;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP CTA
   ========================================================================== */
.prop-floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.prop-floating-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  background: #20BA5A;
  color: #FFFFFF;
}
.prop-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 2px solid #25D366;
  animation: prop-wa-ripple 2s infinite ease-out;
  pointer-events: none;
}
@keyframes prop-wa-ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.25, 1.4); opacity: 0; }
}

/* Fallback Styles */
.exec-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #C67B2E, #0044AA);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.35rem;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}
.exec-onira-fallback {
  display: inline-block;
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  font-family: var(--font-heading);
}

/* ==========================================================================
   CARDS DE BENEFÍCIOS E DIFERENCIAIS ESTRATÉGICOS B2B (MÁQUINA ONIRA.FLY)
   ========================================================================== */
.benefits-highlights-section {
  padding: 4rem 0;
  background: #11141B;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefits-rich-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .benefits-rich-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .benefits-rich-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-rich-card {
  background: #181B22;
  border: 1px solid #2B313E;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.benefit-rich-card:hover {
  border-color: #C67B2E;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(198, 123, 46, 0.12);
}

.benefit-rich-card.spotlight {
  border-color: rgba(198, 123, 46, 0.45);
  background: linear-gradient(180deg, rgba(198, 123, 46, 0.08) 0%, #181B22 45%);
}

.benefit-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.benefit-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(198, 123, 46, 0.15);
  border: 1px solid rgba(198, 123, 46, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.benefit-tag-pill {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-tag-pill.accent {
  background: rgba(37, 211, 102, 0.15);
  color: #4ADE80;
  border-color: rgba(37, 211, 102, 0.3);
}

.benefit-tag-pill.blue {
  background: rgba(198, 123, 46, 0.18);
  color: #E9B872;
  border-color: rgba(96, 165, 250, 0.35);
}

.benefit-rich-card h4 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.3;
}

.benefit-rich-card p {
  font-size: 0.86rem;
  color: #94A3B8;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.benefit-card-footer {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #CBD5E1;
}

.benefit-card-footer svg {
  color: #4ADE80;
  flex-shrink: 0;
}


.brand-logo-text{font:800 1.05rem 'Plus Jakarta Sans',sans-serif;letter-spacing:.08em;color:#fff;white-space:nowrap}
.brand-logo-text strong{color:#E9B872}
