/* ================================================
   NUMERO VIRTUAL - Clean Modern Layout
   ================================================ */

/* Navbar */
.nv-navbar {
  background: rgba(23, 34, 65, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nv-navbar.nv-scrolled {
  background: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.nv-navbar .nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nv-navbar .nav-link:hover { color: #fff; }
.nv-navbar .navbar-toggler-icon { filter: brightness(10); }

.nv-btn-accent {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
}
.nv-btn-accent:hover {
  background: #00b894;
  color: #fff;
}

/* Hero */
.nv-hero {
  background: linear-gradient(160deg, var(--dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  padding: 140px 0 80px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.nv-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.nv-hero-label {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
}
.nv-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.3px;
}
.nv-grad {
  background: linear-gradient(135deg, var(--accent) 0%, #4fc3f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nv-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* Hero buttons */
.nv-btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.2s;
}
.nv-btn-primary:hover {
  background: #00b894;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,201,167,0.3);
}
.nv-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  font-weight: 500;
  padding: 0.75rem 2rem;
}
.nv-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.nv-btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 10px;
  font-weight: 600;
  padding: 0.5rem 2rem;
}
.nv-btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Hero metrics */
.nv-hero-metrics {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nv-metric strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.nv-metric span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.nv-metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Float cards */
.nv-hero-cards {
  position: relative;
  height: 360px;
  width: 380px;
}
.nv-float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  width: 340px;
  animation: floatCards 4s ease-in-out infinite;
}
.nv-float-1 { top: 0; left: 0; animation-delay: 0s; }
.nv-float-2 { top: 120px; left: 30px; animation-delay: 1.3s; }
.nv-float-3 { top: 240px; left: 10px; animation-delay: 2.6s; }
@keyframes floatCards {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.nv-float-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.nv-float-card strong {
  font-size: 0.95rem;
  color: #1e293b;
}
.nv-float-card small {
  color: #94a3b8;
  font-size: 0.8rem;
}
.nv-float-card .badge {
  flex-shrink: 0;
  margin-left: auto;
  font-weight: 500;
}

/* Sections */
.nv-section { padding: 5rem 0; }
.nv-bg-subtle { background: #f5f7fb; }
.nv-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}
.nv-subtitle {
  color: #6c757d;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0.5rem auto 0;
}

/* Features */
.nv-feature {
  text-align: center;
  padding: 2rem 1.5rem;
}
.nv-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.nv-feature h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark);
}
.nv-feature p {
  color: #6c757d;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Service cards */
.nv-svc-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.nv-svc-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(46,78,173,0.1);
  transform: translateY(-3px);
}
.nv-svc-card img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
}
.nv-svc-card span {
  font-weight: 600;
  font-size: 0.8rem;
  color: #334155;
}

/* Steps */
.nv-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  height: 100%;
  transition: all 0.2s;
}
.nv-step:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(46,78,173,0.08);
}
.nv-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.nv-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark);
}
.nv-step p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* FAQ Accordion */
.nv-accordion .accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.nv-accordion .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  padding: 1.1rem 1.5rem;
  background: #fff;
}
.nv-accordion .accordion-button:not(.collapsed) {
  background: #f8f9ff;
  color: var(--primary);
  box-shadow: none;
}
.nv-accordion .accordion-button::after {
  filter: none;
}
.nv-accordion .accordion-body {
  color: #6c757d;
  line-height: 1.7;
  font-size: 0.95rem;
  padding: 0 1.5rem 1.2rem;
}

/* CTA */
.nv-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 4.5rem 0;
  color: #fff;
}
.nv-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.nv-cta p {
  opacity: 0.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.nv-cta .btn-light {
  color: var(--primary);
  font-weight: 700;
  border-radius: 10px;
}
.nv-cta .btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .nv-hero { padding: 110px 0 50px; }
  .nv-hero-title { font-size: 2rem; }
  .nv-hero-desc { font-size: 1rem; }
  .nv-hero-metrics { gap: 1rem; }
  .nv-metric strong { font-size: 1.2rem; }
  .nv-title { font-size: 1.6rem; }
  .nv-section { padding: 3.5rem 0; }
}
