/* ============================================
   BEHOLDER MÍDIA - Design System
   Premium Dark Theme | WordPress-Ready
   Prefix: .beholder-
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --bh-primary: #6C63FF;
  --bh-primary-light: #8B83FF;
  --bh-primary-dark: #4F46E5;
  --bh-accent: #00D4FF;
  --bh-accent-glow: rgba(0, 212, 255, 0.3);
  --bh-secondary: #A855F7;
  --bh-bg-dark: #0A0A0F;
  --bh-bg-card: #12121A;
  --bh-bg-card-hover: #1A1A2E;
  --bh-bg-surface: #16161F;
  --bh-text-white: #F0F0F5;
  --bh-text-gray: #9CA3AF;
  --bh-text-muted: #6B7280;
  --bh-border: rgba(255, 255, 255, 0.06);
  --bh-border-hover: rgba(108, 99, 255, 0.4);
  --bh-gradient-1: linear-gradient(135deg, #6C63FF 0%, #00D4FF 100%);
  --bh-gradient-2: linear-gradient(135deg, #A855F7 0%, #6C63FF 100%);
  --bh-gradient-3: linear-gradient(135deg, #00D4FF 0%, #6C63FF 50%, #A855F7 100%);
  --bh-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --bh-shadow-glow: 0 0 40px rgba(108, 99, 255, 0.15);
  --bh-radius: 16px;
  --bh-radius-sm: 8px;
  --bh-radius-full: 9999px;
  --bh-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --bh-font-primary: 'Outfit', 'Inter', sans-serif;
  --bh-font-body: 'Inter', sans-serif;
  --bh-max-width: 1200px;
}

/* ── Reset & Base ── */
.beholder-wrapper {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--bh-font-body);
  background: var(--bh-bg-dark);
  color: var(--bh-text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.beholder-wrapper *, .beholder-wrapper *::before, .beholder-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.beholder-wrapper img {
  max-width: 100%;
  height: auto;
}

.beholder-wrapper a {
  text-decoration: none;
  color: inherit;
  transition: var(--bh-transition);
}

/* ── Container ── */
.bh-container {
  max-width: var(--bh-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
.bh-heading {
  font-family: var(--bh-font-primary);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.bh-heading-xl {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.bh-heading-lg {
  font-size: clamp(2rem, 4vw, 3rem);
}

.bh-heading-md {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.bh-heading-sm {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.bh-text-gradient {
  background: var(--bh-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bh-subtitle {
  font-size: 1.125rem;
  color: var(--bh-text-gray);
  line-height: 1.7;
  max-width: 640px;
}

.bh-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(108, 99, 255, 0.1);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: var(--bh-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bh-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* ── Buttons ── */
.bh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--bh-radius-full);
  font-family: var(--bh-font-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--bh-transition);
  position: relative;
  overflow: hidden;
}

.bh-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.bh-btn:hover::after {
  left: 100%;
}

.bh-btn-primary {
  background: var(--bh-gradient-1);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.35);
}

.bh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5);
}

.bh-btn-outline {
  background: transparent;
  color: var(--bh-text-white);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.bh-btn-outline:hover {
  border-color: var(--bh-accent);
  color: var(--bh-accent);
  box-shadow: 0 0 20px var(--bh-accent-glow);
  transform: translateY(-2px);
}

.bh-btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════ */

.bh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--bh-transition);
  background: transparent;
}

.bh-header.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bh-border);
  padding: 10px 0;
}

.bh-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bh-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--bh-font-primary);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--bh-text-white);
}

.bh-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bh-gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.3);
}

.bh-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.bh-nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bh-text-gray);
  position: relative;
}

.bh-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bh-gradient-1);
  transition: width 0.3s ease;
}

.bh-nav-links a:hover {
  color: var(--bh-text-white);
}

.bh-nav-links a:hover::after {
  width: 100%;
}

.bh-nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.bh-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bh-text-white);
  transition: var(--bh-transition);
  border-radius: 2px;
}

.bh-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.bh-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.bh-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Menu ── */
.bh-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.bh-mobile-menu.active {
  display: flex;
}

.bh-mobile-menu a {
  font-family: var(--bh-font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bh-text-white);
}

.bh-mobile-menu a:hover {
  color: var(--bh-accent);
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.bh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.bh-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#bh-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bh-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: 0;
}

.bh-hero-glow-1 {
  top: -200px;
  right: -100px;
  background: var(--bh-primary);
}

.bh-hero-glow-2 {
  bottom: -200px;
  left: -100px;
  background: var(--bh-accent);
}

.bh-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.bh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(108, 99, 255, 0.08);
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-radius: var(--bh-radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bh-accent);
  margin-bottom: 32px;
  animation: bh-float 3s ease-in-out infinite;
}

.bh-hero h1 {
  margin-bottom: 24px;
}

.bh-hero-description {
  font-size: 1.2rem;
  color: var(--bh-text-gray);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 40px;
}

.bh-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bh-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--bh-border);
}

.bh-hero-stat {
  text-align: center;
}

.bh-hero-stat-value {
  font-family: var(--bh-font-primary);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--bh-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bh-hero-stat-label {
  font-size: 0.9rem;
  color: var(--bh-text-muted);
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   SECTIONS GENERAL
   ═══════════════════════════════════════ */

.bh-section {
  padding: 100px 0;
  position: relative;
}

.bh-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.bh-section-header .bh-subtitle {
  margin: 16px auto 0;
}

/* ── Divider ── */
.bh-divider {
  width: 80px;
  height: 3px;
  background: var(--bh-gradient-1);
  border-radius: 3px;
  margin: 20px auto 0;
}

/* ═══════════════════════════════════════
   SERVICES CARDS
   ═══════════════════════════════════════ */

.bh-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.bh-service-card {
  background: var(--bh-bg-card);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  padding: 40px 32px;
  transition: var(--bh-transition);
  position: relative;
  overflow: hidden;
}

.bh-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bh-gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.bh-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--bh-border-hover);
  background: var(--bh-bg-card-hover);
  box-shadow: var(--bh-shadow-glow);
}

.bh-service-card:hover::before {
  transform: scaleX(1);
}

.bh-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  position: relative;
}

.bh-service-icon.icon-marketing {
  background: rgba(108, 99, 255, 0.12);
  color: var(--bh-primary-light);
}

.bh-service-icon.icon-apps {
  background: rgba(0, 212, 255, 0.12);
  color: var(--bh-accent);
}

.bh-service-icon.icon-process {
  background: rgba(168, 85, 247, 0.12);
  color: var(--bh-secondary);
}

.bh-service-icon.icon-erp {
  background: rgba(52, 211, 153, 0.12);
  color: #34D399;
}

.bh-service-card h3 {
  font-family: var(--bh-font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--bh-text-white);
}

.bh-service-card p {
  color: var(--bh-text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.bh-service-card .bh-service-list {
  list-style: none;
  margin-top: 16px;
}

.bh-service-card .bh-service-list li {
  padding: 6px 0;
  color: var(--bh-text-gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bh-service-card .bh-service-list li::before {
  content: '✦';
  color: var(--bh-accent);
  font-size: 0.7rem;
}

/* ═══════════════════════════════════════
   ERP PRODUCT SECTION
   ═══════════════════════════════════════ */

.bh-erp-section {
  background: var(--bh-bg-surface);
  border-top: 1px solid var(--bh-border);
  border-bottom: 1px solid var(--bh-border);
}

.bh-erp-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.bh-erp-visual {
  position: relative;
}

.bh-erp-mockup {
  background: var(--bh-bg-card);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  overflow: hidden;
  box-shadow: var(--bh-shadow);
}

.bh-erp-mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--bh-border);
}

.bh-erp-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.bh-erp-mockup-dot:nth-child(1) { background: #FF5F57; }
.bh-erp-mockup-dot:nth-child(2) { background: #FFBD2E; }
.bh-erp-mockup-dot:nth-child(3) { background: #28CA41; }

.bh-erp-mockup-content {
  padding: 24px;
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bh-erp-module-mini {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-sm);
  padding: 16px;
  transition: var(--bh-transition);
}

.bh-erp-module-mini:hover {
  border-color: var(--bh-border-hover);
  background: rgba(108, 99, 255, 0.05);
}

.bh-erp-module-mini .mini-icon {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.bh-erp-module-mini .mini-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bh-text-gray);
}

.bh-erp-module-mini .mini-value {
  font-family: var(--bh-font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bh-text-white);
  margin-top: 4px;
}

.bh-erp-info h2 {
  margin-bottom: 20px;
}

.bh-erp-info .bh-subtitle {
  margin-bottom: 32px;
}

.bh-erp-modules {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.bh-erp-module-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(108, 99, 255, 0.04);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-sm);
  transition: var(--bh-transition);
}

.bh-erp-module-item:hover {
  border-color: var(--bh-border-hover);
  background: rgba(108, 99, 255, 0.08);
  transform: translateX(4px);
}

.bh-erp-module-item .module-icon {
  font-size: 1.2rem;
}

.bh-erp-module-item .module-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.bh-erp-module-item .module-desc {
  font-size: 0.85rem;
  color: var(--bh-text-muted);
  margin-left: auto;
}

/* ═══════════════════════════════════════
   DIFFERENTIALS
   ═══════════════════════════════════════ */

.bh-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bh-diff-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--bh-bg-card);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  transition: var(--bh-transition);
}

.bh-diff-card:hover {
  transform: translateY(-4px);
  border-color: var(--bh-border-hover);
  box-shadow: var(--bh-shadow-glow);
}

.bh-diff-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(108, 99, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
}

.bh-diff-card h3 {
  font-family: var(--bh-font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.bh-diff-card p {
  color: var(--bh-text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   PORTAL / TOOLS
   ═══════════════════════════════════════ */

.bh-portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.bh-portal-card {
  background: var(--bh-bg-card);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--bh-transition);
  position: relative;
  overflow: hidden;
}

.bh-portal-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bh-gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.bh-portal-card:hover {
  transform: translateY(-4px);
  border-color: var(--bh-border-hover);
  box-shadow: var(--bh-shadow-glow);
}

.bh-portal-card:hover::after {
  transform: scaleX(1);
}

.bh-portal-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(108, 99, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.bh-portal-card h3 {
  font-family: var(--bh-font-primary);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.bh-portal-card p {
  color: var(--bh-text-gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════
   CONTACT / CTA SECTION
   ═══════════════════════════════════════ */

.bh-cta-section {
  background: var(--bh-bg-surface);
  border-top: 1px solid var(--bh-border);
}

.bh-cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.bh-cta-info h2 {
  margin-bottom: 16px;
}

.bh-cta-info .bh-subtitle {
  margin-bottom: 32px;
}

.bh-contact-details {
  list-style: none;
  display: grid;
  gap: 20px;
}

.bh-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bh-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(108, 99, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bh-contact-item span {
  color: var(--bh-text-gray);
  font-size: 0.95rem;
}

.bh-contact-form {
  background: var(--bh-bg-card);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius);
  padding: 40px;
}

.bh-form-group {
  margin-bottom: 20px;
}

.bh-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bh-text-gray);
  margin-bottom: 8px;
}

.bh-form-group input,
.bh-form-group textarea,
.bh-form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bh-bg-dark);
  border: 1px solid var(--bh-border);
  border-radius: var(--bh-radius-sm);
  color: var(--bh-text-white);
  font-family: var(--bh-font-body);
  font-size: 0.95rem;
  transition: var(--bh-transition);
  outline: none;
}

.bh-form-group input:focus,
.bh-form-group textarea:focus,
.bh-form-group select:focus {
  border-color: var(--bh-primary);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}

.bh-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.bh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.bh-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--bh-border);
}

.bh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.bh-footer-brand .bh-logo {
  margin-bottom: 16px;
}

.bh-footer-brand p {
  color: var(--bh-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.bh-footer-col h4 {
  font-family: var(--bh-font-primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--bh-text-white);
}

.bh-footer-links {
  list-style: none;
  display: grid;
  gap: 12px;
}

.bh-footer-links a {
  color: var(--bh-text-muted);
  font-size: 0.9rem;
}

.bh-footer-links a:hover {
  color: var(--bh-accent);
  transform: translateX(4px);
  display: inline-block;
}

.bh-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.bh-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--bh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--bh-transition);
}

.bh-footer-social a:hover {
  background: var(--bh-primary);
  border-color: var(--bh-primary);
  transform: translateY(-3px);
}

.bh-footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--bh-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.bh-footer-bottom p {
  color: var(--bh-text-muted);
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════ */

.bh-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--bh-transition);
  cursor: pointer;
  animation: bh-pulse-green 2s ease-in-out infinite;
}

.bh-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */

@keyframes bh-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes bh-pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

@keyframes bh-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bh-scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Reveal */
.bh-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.bh-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.bh-reveal-delay-1 { transition-delay: 0.1s; }
.bh-reveal-delay-2 { transition-delay: 0.2s; }
.bh-reveal-delay-3 { transition-delay: 0.3s; }
.bh-reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .bh-erp-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bh-erp-visual {
    order: -1;
  }

  .bh-diff-grid {
    grid-template-columns: 1fr;
  }

  .bh-cta-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bh-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .bh-nav-links,
  .bh-nav-cta .bh-btn {
    display: none;
  }

  .bh-hamburger {
    display: flex;
  }

  .bh-hero {
    padding: 100px 0 60px;
  }

  .bh-hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .bh-services-grid {
    grid-template-columns: 1fr;
  }

  .bh-diff-grid {
    grid-template-columns: 1fr;
  }

  .bh-portal-grid {
    grid-template-columns: 1fr;
  }

  .bh-form-row {
    grid-template-columns: 1fr;
  }

  .bh-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bh-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .bh-section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .bh-hero-buttons {
    flex-direction: column;
  }

  .bh-btn {
    width: 100%;
  }

  .bh-contact-form {
    padding: 24px;
  }

  .bh-erp-mockup-content {
    grid-template-columns: 1fr;
  }
}
