/* ============================================================
   welcome.css - TiendaCPU B2B Landing
   Diseño: index_2_modificado_v2 adaptado a Laravel/Blade
   ============================================================ */

/* ===== FUENTES ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Mono:wght@400;500&display=swap');

/* ===== VARIABLES ===== */
:root {
  --b2b-white: #ffffff;
  --b2b-off-white: #F7F8FA;
  --b2b-border: #E8EAED;
  --b2b-border-mid: #D1D5DB;
  --b2b-text: #0F1623;
  --b2b-text-2: #4B5563;
  --b2b-text-3: #9CA3AF;
  --b2b-blue: #1B2E6B;
  --b2b-blue-hover: #142258;
  --b2b-blue-light: #EEF2FF;
  --b2b-blue-mid: #C7D2FE;
  --b2b-accent: #2563EB;
  --b2b-accent-hover: #1D4ED8;
  --b2b-green: #059669;
  --b2b-green-light: #ECFDF5;
  --b2b-radius-sm: 6px;
  --b2b-radius: 10px;
  --b2b-radius-lg: 16px;
  --b2b-shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --b2b-shadow: 0 4px 16px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  --b2b-shadow-lg: 0 12px 40px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --b2b-font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --b2b-mono: 'DM Mono', monospace;
}

/* ===== WRAPPER GLOBAL ===== */
.b2b-landing {
  font-family: var(--b2b-font);
  color: var(--b2b-text);
  background: var(--b2b-white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.b2b-landing *,
.b2b-landing *::before,
.b2b-landing *::after {
  box-sizing: border-box;
}

.b2b-landing h1,
.b2b-landing h2,
.b2b-landing h3,
.b2b-landing h4 {
  font-family: var(--b2b-font);
  color: var(--b2b-text);
}

/* ===== HERO ===== */
.b2b-hero {
  padding: 80px 5%;
  background: var(--b2b-white);
  border-bottom: 1px solid var(--b2b-border);
}
.b2b-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.b2b-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--b2b-green-light);
  color: var(--b2b-green);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .2px;
}
.b2b-hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--b2b-green);
  animation: b2b-blink 2s infinite;
}
@keyframes b2b-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.b2b-hero h1 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--b2b-text);
  margin-bottom: 20px;
}
.b2b-hero h1 em {
  font-style: normal;
  color: var(--b2b-accent);
}
.b2b-hero-sub {
  font-size: 17px;
  color: var(--b2b-text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 460px;
}
.b2b-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.b2b-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--b2b-blue);
  color: white;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: var(--b2b-radius-sm);
  font-weight: 500;
  font-size: 15px;
  transition: background .15s, transform .15s;
  border: none;
  cursor: pointer;
  letter-spacing: -.1px;
  font-family: var(--b2b-font);
}
.b2b-btn-primary:hover {
  background: var(--b2b-blue-hover);
  transform: translateY(-1px);
  color: white;
}
.b2b-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--b2b-text-2);
  text-decoration: none;
  padding: 13px 24px;
  border-radius: var(--b2b-radius-sm);
  font-weight: 400;
  font-size: 15px;
  border: 1px solid var(--b2b-border-mid);
  transition: all .15s;
  cursor: pointer;
  letter-spacing: -.1px;
}
.b2b-btn-ghost:hover {
  border-color: var(--b2b-text-3);
  color: var(--b2b-text);
  background: var(--b2b-off-white);
}
.b2b-hero-metrics {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--b2b-border);
}
.b2b-hero-metric-num {
  font-size: 26px;
  font-weight: 600;
  color: var(--b2b-text);
  letter-spacing: -.8px;
  line-height: 1;
}
.b2b-hero-metric-num sup {
  font-size: 14px;
  font-weight: 400;
  color: var(--b2b-accent);
  vertical-align: super;
}
.b2b-hero-metric-label {
  font-size: 12px;
  color: var(--b2b-text-3);
  margin-top: 4px;
  font-weight: 400;
}

/* ===== PORTAL PREVIEW ===== */
.b2b-portal-preview {
  background: var(--b2b-off-white);
  border: 1px solid var(--b2b-border);
  border-radius: var(--b2b-radius-lg);
  overflow: hidden;
  box-shadow: var(--b2b-shadow-lg);
}
.b2b-portal-bar {
  background: var(--b2b-white);
  border-bottom: 1px solid var(--b2b-border);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.b2b-portal-dots {
  display: flex;
  gap: 5px;
}
.b2b-portal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.b2b-portal-dot.r { background: #FF5F57; }
.b2b-portal-dot.y { background: #FFBD2E; }
.b2b-portal-dot.g { background: #28CA41; }
.b2b-portal-url {
  flex: 1;
  background: var(--b2b-off-white);
  border: 1px solid var(--b2b-border);
  border-radius: 4px;
  padding: 5px 10px;
  font-family: var(--b2b-mono);
  font-size: 11px;
  color: var(--b2b-text-3);
}
.b2b-portal-body { padding: 20px; }
.b2b-portal-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.b2b-portal-greeting {
  font-size: 13px;
  font-weight: 500;
  color: var(--b2b-text);
}
.b2b-portal-greeting span {
  color: var(--b2b-text-3);
  font-weight: 400;
}
.b2b-portal-badge-status {
  background: var(--b2b-green-light);
  color: var(--b2b-green);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
}
.b2b-portal-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.b2b-portal-kpi {
  background: var(--b2b-white);
  border: 1px solid var(--b2b-border);
  border-radius: var(--b2b-radius-sm);
  padding: 12px;
}
.b2b-portal-kpi-label {
  font-size: 10px;
  color: var(--b2b-text-3);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 4px;
}
.b2b-portal-kpi-val {
  font-size: 18px;
  font-weight: 600;
  color: var(--b2b-text);
  letter-spacing: -.5px;
}
.b2b-portal-kpi-val.blue { color: var(--b2b-accent); }
.b2b-portal-kpi-val.green { color: var(--b2b-green); }
.b2b-portal-orders-title {
  font-size: 11px;
  font-weight: 500;
  color: var(--b2b-text-3);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 8px;
}
.b2b-portal-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--b2b-border);
  font-size: 12px;
}
.b2b-portal-order-row:last-child { border-bottom: none; }
.b2b-portal-order-ref {
  font-family: var(--b2b-mono);
  color: var(--b2b-text-3);
  font-size: 11px;
  min-width: 40px;
}
.b2b-portal-order-name {
  color: var(--b2b-text);
  font-weight: 400;
  flex: 1;
  padding: 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.b2b-portal-order-amt {
  font-weight: 600;
  color: var(--b2b-text);
  font-size: 12px;
  min-width: 56px;
  text-align: right;
}
.b2b-portal-order-status {
  min-width: 64px;
  text-align: right;
}
.b2b-status-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 100px;
}
.b2b-status-pill.ok { background: var(--b2b-green-light); color: var(--b2b-green); }
.b2b-status-pill.proc { background: var(--b2b-blue-light); color: var(--b2b-accent); }
.b2b-status-pill.pend { background: #FFF7ED; color: #D97706; }

/* ===== LOGOS STRIP ===== */
.b2b-logos-strip {
  padding: 28px 5%;
  border-bottom: 1px solid var(--b2b-border);
  background: var(--b2b-off-white);
}
.b2b-logos-strip-label {
  text-align: center;
  font-size: 11px;
  color: var(--b2b-text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 500;
}
.b2b-logos-scroll-wrap {
  overflow: hidden;
  position: relative;
}
.b2b-logos-scroll-wrap::before,
.b2b-logos-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.b2b-logos-scroll-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--b2b-off-white), transparent);
}
.b2b-logos-scroll-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--b2b-off-white), transparent);
}
.b2b-logos-scroll {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: b2b-marquee 28s linear infinite;
  width: max-content;
}
@keyframes b2b-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.b2b-logo-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--b2b-text-3);
  letter-spacing: -.2px;
  white-space: nowrap;
  font-family: var(--b2b-font);
}

/* ===== SECTIONS ===== */
.b2b-section { padding: 88px 5%; }
.b2b-section.b2b-section-alt { background: var(--b2b-off-white); }
.b2b-container { max-width: 1160px; margin: 0 auto; }
.b2b-section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.b2b-section-head-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 56px;
}
.b2b-section-head-split p {
  max-width: 380px;
  font-size: 15px;
  color: var(--b2b-text-2);
  line-height: 1.7;
  font-weight: 300;
}
.b2b-section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--b2b-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  font-family: var(--b2b-font);
}
.b2b-section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--b2b-text);
  margin-bottom: 18px;
}
.b2b-section-sub {
  font-size: 16px;
  color: var(--b2b-text-2);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== VENTAJAS GRID ===== */
.b2b-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.b2b-ventaja {
  background: var(--b2b-white);
  border: 1px solid var(--b2b-border);
  border-radius: var(--b2b-radius-lg);
  padding: 32px 28px;
  transition: all .2s;
}
.b2b-ventaja:hover {
  border-color: var(--b2b-border-mid);
  box-shadow: var(--b2b-shadow);
  transform: translateY(-2px);
}
.b2b-ventaja-icon {
  font-size: 28px;
  margin-bottom: 18px;
  line-height: 1;
}
.b2b-ventaja h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--b2b-text);
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.b2b-ventaja p {
  font-size: 14px;
  color: var(--b2b-text-2);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== STEPS / PROCESO ===== */
.b2b-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.b2b-steps-grid::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--b2b-border), transparent);
  z-index: 0;
}
.b2b-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.b2b-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--b2b-white);
  border: 1px solid var(--b2b-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--b2b-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--b2b-accent);
  letter-spacing: 1px;
}
.b2b-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--b2b-text);
  margin-bottom: 8px;
  letter-spacing: -.2px;
}
.b2b-step p {
  font-size: 13px;
  color: var(--b2b-text-2);
  line-height: 1.6;
  font-weight: 300;
  padding: 0 8px;
}

/* ===== CATEGORÍAS ===== */
.b2b-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.b2b-cat-card {
  background: var(--b2b-white);
  border: 1px solid var(--b2b-border);
  border-radius: var(--b2b-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: all .2s;
  position: relative;
}
.b2b-cat-card:hover {
  border-color: var(--b2b-accent);
  box-shadow: var(--b2b-shadow);
  transform: translateY(-2px);
}
.b2b-cat-icon { font-size: 28px; line-height: 1; }
.b2b-cat-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--b2b-text);
  letter-spacing: -.2px;
}
.b2b-cat-brands {
  font-size: 12px;
  color: var(--b2b-text-3);
  font-weight: 300;
}
.b2b-cat-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--b2b-text-3);
  font-size: 16px;
  transition: all .2s;
}
.b2b-cat-card:hover .b2b-cat-arrow {
  color: var(--b2b-accent);
  transform: translateX(2px);
}

/* ===== PAÍSES ===== */
.b2b-paises-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.b2b-pais-card {
  background: var(--b2b-white);
  border: 1px solid var(--b2b-border);
  border-radius: var(--b2b-radius);
  padding: 20px 18px;
  text-align: center;
  transition: all .2s;
}
.b2b-pais-card:hover {
  border-color: var(--b2b-border-mid);
  transform: translateY(-2px);
}
.b2b-pais-flag {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.b2b-pais-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--b2b-text);
  margin-bottom: 4px;
}
.b2b-pais-vol {
  font-size: 11px;
  color: var(--b2b-text-3);
  font-weight: 400;
}

/* ===== PRICING / PLANES ===== */
.b2b-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.b2b-plan {
  background: var(--b2b-white);
  border: 1px solid var(--b2b-border);
  border-radius: var(--b2b-radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all .2s;
}
.b2b-plan:hover {
  border-color: var(--b2b-border-mid);
  box-shadow: var(--b2b-shadow);
}
.b2b-plan.b2b-featured {
  border-color: var(--b2b-accent);
  box-shadow: 0 8px 32px rgba(37,99,235,.08);
}
.b2b-plan-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--b2b-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.b2b-plan-desc {
  font-size: 14px;
  color: var(--b2b-text-2);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 300;
}
.b2b-plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  border-radius: var(--b2b-radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 24px;
  transition: all .15s;
  cursor: pointer;
  border: none;
  font-family: var(--b2b-font);
}
.b2b-plan-btn.solid {
  background: var(--b2b-blue);
  color: white;
}
.b2b-plan-btn.solid:hover {
  background: var(--b2b-blue-hover);
  color: white;
}
.b2b-plan-btn.outline {
  background: transparent;
  color: var(--b2b-text);
  border: 1px solid var(--b2b-border-mid);
}
.b2b-plan-btn.outline:hover {
  border-color: var(--b2b-text-3);
  background: var(--b2b-off-white);
  color: var(--b2b-text);
}
.b2b-plan-popular {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--b2b-blue);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
}
.b2b-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.b2b-plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 13px;
  color: var(--b2b-text-2);
  border-bottom: 1px solid var(--b2b-border);
}
.b2b-plan-features li:last-child { border-bottom: none; }
.b2b-plan-features li::before {
  content: '✓';
  color: var(--b2b-green);
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== TESTIMONIOS ===== */
.b2b-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.b2b-testi {
  background: var(--b2b-white);
  border: 1px solid var(--b2b-border);
  border-radius: var(--b2b-radius-lg);
  padding: 28px;
}
.b2b-testi-stars {
  color: #F59E0B;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.b2b-testi-text {
  font-size: 14px;
  color: var(--b2b-text-2);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
  font-style: italic;
}
.b2b-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.b2b-testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--b2b-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--b2b-accent);
  flex-shrink: 0;
}
.b2b-testi-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--b2b-text);
}
.b2b-testi-co {
  font-size: 12px;
  color: var(--b2b-text-3);
}

/* ===== CTA BAND ===== */
.b2b-cta-band {
  background: var(--b2b-blue);
  padding: 72px 5%;
  text-align: center;
}
.b2b-cta-band h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.b2b-cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  font-weight: 300;
}
.b2b-cta-band-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.b2b-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--b2b-blue);
  padding: 13px 28px;
  border-radius: var(--b2b-radius-sm);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .15s;
  letter-spacing: -.1px;
  border: none;
  cursor: pointer;
  font-family: var(--b2b-font);
}
.b2b-btn-white:hover {
  background: #F0F4FF;
  transform: translateY(-1px);
  color: var(--b2b-blue);
}
.b2b-btn-white-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 13px 24px;
  border-radius: var(--b2b-radius-sm);
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.35);
  transition: all .15s;
  letter-spacing: -.1px;
}
.b2b-btn-white-ghost:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  color: white;
}

/* ===== FORMULARIO ===== */
.b2b-form-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.b2b-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.b2b-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}
.b2b-contact-icon-box {
  width: 36px;
  height: 36px;
  background: var(--b2b-blue-light);
  border-radius: var(--b2b-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.b2b-contact-row strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--b2b-text);
}
.b2b-contact-row span {
  font-size: 13px;
  color: var(--b2b-text-3);
}
.b2b-form-card {
  background: var(--b2b-white);
  border: 1px solid var(--b2b-border);
  border-radius: var(--b2b-radius-lg);
  padding: 36px;
}
.b2b-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.b2b-fgroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.b2b-fgroup.full { grid-column: 1 / -1; }
.b2b-fgroup label {
  font-size: 12px;
  font-weight: 500;
  color: var(--b2b-text-2);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.b2b-fgroup input,
.b2b-fgroup select,
.b2b-fgroup textarea {
  background: var(--b2b-off-white);
  border: 1px solid var(--b2b-border);
  border-radius: var(--b2b-radius-sm);
  padding: 10px 14px;
  color: var(--b2b-text);
  font-size: 14px;
  font-family: var(--b2b-font);
  outline: none;
  transition: border-color .15s, background .15s;
  width: 100%;
  -webkit-appearance: none;
}
.b2b-fgroup input:focus,
.b2b-fgroup select:focus,
.b2b-fgroup textarea:focus {
  border-color: var(--b2b-accent);
  background: var(--b2b-white);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}
.b2b-fgroup input::placeholder,
.b2b-fgroup textarea::placeholder {
  color: var(--b2b-text-3);
}
.b2b-fgroup select { cursor: pointer; }
.b2b-fgroup select option { background: white; color: var(--b2b-text); }
.b2b-fgroup textarea {
  resize: vertical;
  min-height: 88px;
}
.b2b-form-submit {
  margin-top: 16px;
  width: 100%;
  padding: 13px;
  background: var(--b2b-blue);
  color: white;
  border: none;
  border-radius: var(--b2b-radius-sm);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s;
  font-family: var(--b2b-font);
  letter-spacing: -.1px;
}
.b2b-form-submit:hover {
  background: var(--b2b-blue-hover);
}
.b2b-form-note {
  text-align: center;
  font-size: 12px;
  color: var(--b2b-text-3);
  margin-top: 10px;
}

/* ===== SCROLL REVEAL ===== */
.b2b-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.b2b-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/*TABLA DE PRODUCTOS*/

.cpu-products {
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
    }
    .cpu-section-header {
        text-align: center;
        margin-bottom: 32px;
    }
    .cpu-section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: .05em;
        text-transform: uppercase;
        color: #2563eb;
        margin-bottom: 8px;
    }
    .cpu-section-title {
        font-size: 28px;
        font-weight: 700;
        color: #0f172a;
        margin: 0;
    }
    .cpu-table-wrap {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        padding: 20px;
        box-shadow: 0 4px 16px rgba(0,0,0,.04);
        overflow-x: auto;
    }
    #products-table {
        width: 100% !important;
        border-collapse: collapse;
    }
    #products-table thead th {
        text-align: left;
        font-size: 13px;
        font-weight: 600;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: .03em;
        padding: 12px 14px;
        border-bottom: 2px solid #e5e7eb;
    }
    #products-table tbody td {
        padding: 12px 14px;
        font-size: 14px;
        color: #334155;
        border-bottom: 1px solid #f1f5f9;
        vertical-align: middle;
    }
    #products-table tbody tr:hover {
        background: #f8fafc;
    }
    #products-table img {
        max-width: 48px;
        max-height: 48px;
        object-fit: contain;
        border-radius: 6px;
    }
    /* Controles de DataTables */
    .dataTables_wrapper .dataTables_filter input,
    .dataTables_wrapper .dataTables_length select {
        border: 1px solid #d1d5db;
        border-radius: 8px;
        padding: 8px 12px;
        font-size: 14px;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        border-radius: 8px !important;
        padding: 6px 12px !important;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button.current {
        background: #2563eb !important;
        color: #fff !important;
        border: 1px solid #2563eb !important;
    }


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .b2b-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .b2b-portal-preview { display: none; }
  .b2b-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .b2b-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .b2b-paises-grid { grid-template-columns: repeat(3, 1fr); }
  .b2b-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .b2b-steps-grid::after { display: none; }
}
@media (max-width: 768px) {
  .b2b-section { padding: 60px 5%; }
  .b2b-pricing-grid { grid-template-columns: 1fr; }
  .b2b-testi-grid { grid-template-columns: 1fr; }
  .b2b-form-split { grid-template-columns: 1fr; gap: 40px; }
  .b2b-form-grid { grid-template-columns: 1fr; }
  .b2b-section-head-split { flex-direction: column; align-items: flex-start; }
  .b2b-hero { padding: 48px 5%; }
  .b2b-hero-metrics { flex-wrap: wrap; gap: 20px; }
  .b2b-paises-grid { grid-template-columns: repeat(2, 1fr); }
  .b2b-steps-grid { grid-template-columns: 1fr; }
  .b2b-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .b2b-cta-band { padding: 48px 5%; }
}

  