/* assets/css/vibra-components.css */

/* Navbar */
.vb-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.vb-nav--scrolled {
  background: rgba(3, 3, 3, 0.85);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--vb-border);
}

.vb-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  transition: height 0.4s ease;
}

.vb-nav--scrolled .vb-nav-inner {
  height: 70px;
}

.vb-logo-text {
  font-family: var(--vb-head);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

.vb-nav-logo img {
  max-height: 35px !important;
  width: auto !important;
  max-width: 220px !important;
  display: block;
  object-fit: contain;
}

.vb-nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.vb-nav-links a {
  font-family: var(--vb-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vb-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.vb-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--vb-green);
  transition: width 0.3s ease;
}

.vb-nav-links a:hover,
.vb-nav-links a.active {
  color: #fff;
}

.vb-nav-links a:hover::after,
.vb-nav-links a.active::after {
  width: 100%;
}

.vb-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.vb-nav-portal-link {
  color: var(--vb-green);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--vb-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--vb-green-border);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.vb-nav-portal-link:hover {
  background: var(--vb-green-dim);
  border-color: var(--vb-green);
}

.vb-nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.vb-nav-burger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--vb-text);
  transition: all 0.3s;
  left: 0;
}

.vb-nav-burger span:nth-child(1) {
  top: 0;
}

.vb-nav-burger span:nth-child(2) {
  top: 11px;
}

.vb-nav-burger span:nth-child(3) {
  top: 22px;
}

.vb-nav-burger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

.vb-nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.vb-nav-burger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

.vb-nav-mobile {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  /* Absolute viewport height */
  background: #000;
  /* Pure black to avoid transparency issues with layered backgrounds */
  backdrop-filter: blur(25px);
  padding: 100px 30px 60px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  z-index: 999999 !important;
  /* Extremely high z-index to stay above everything */
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  transform: translateY(-10px);
  overflow-y: auto;
  overflow-x: hidden;
  /* Allow menu scrolling if links are many */
}

.vb-nav-mobile.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Prevent content behind from showing during transition if gap exists */
.vb-nav-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  z-index: -1;
}

.vb-nav-mobile-close {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000000;
  /* Higher than menu content */
}

.vb-nav-mobile-close:active {
  transform: scale(0.9);
}

.vb-nav-mobile-close:hover {
  background: var(--vb-green);
  color: #000;
  border-color: var(--vb-green);
  box-shadow: 0 0 30px var(--vb-green-glow);
}

.vb-nav-mobile.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.vb-nav-mobile .vb-nav-links {
  gap: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  width: 100%;
}

.vb-nav-mobile .vb-nav-links a {
  font-size: 1.8rem;
  font-family: var(--vb-head);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.3s;
}

.vb-nav-mobile .vb-nav-links a:hover {
  color: var(--vb-green);
  text-shadow: 0 0 20px var(--vb-green-glow);
}

.vb-nav-mobile .vb-nav-actions {
  display: flex !important;
  flex-direction: column !important;
  width: 100%;
  max-width: 280px;
  gap: 15px;
  margin-top: 30px;
  align-items: center;
}

.vb-nav-mobile .vb-nav-portal-link,
.vb-nav-mobile .vb-btn-ghost,
.vb-nav-mobile .vb-btn-primary {
  display: flex !important;
  /* Force visibility */
  width: 100% !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  padding: 18px !important;
  text-align: center;
}

@media (max-width: 991px) {

  .vb-nav-links,
  .vb-nav-actions {
    display: none;
  }

  .vb-nav-burger {
    display: block;
  }
}

/* Hero Section */
.vb-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0; /* Removed padding-top: 80px */
}

.vb-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(20, 20, 20, 1) 0%, var(--vb-bg) 100%);
  z-index: 0;
}

.vb-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

.vb-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vb-hero p {
  font-size: 1.25rem;
  color: var(--vb-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.vb-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Services / Packs Grid */
.vb-sec-head {
  text-align: center;
  margin-bottom: 80px;
}

.vb-sec-num {
  font-family: var(--vb-head);
  color: var(--vb-green);
  opacity: 0.5;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 15px;
  letter-spacing: 0.2em;
}

.vb-servicios-grid,
.vb-packs-grid,
.vb-eventos-grid {
  display: grid;
  gap: 30px;
  position: relative;
  z-index: 10;
}

.vb-servicios-grid {
  grid-template-columns: 1fr 1fr;
}

.vb-packs-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

/* Servicio Card Component */
.vb-svc-image {
  height: 300px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(5, 5, 5, 1) 100%);
  background-image: repeating-linear-gradient(45deg, var(--vb-border) 0, var(--vb-border) 1px, transparent 1px, transparent 20px);
  position: relative;
  overflow: hidden;
  border-radius: var(--vb-radius) var(--vb-radius) 0 0;
}

.vb-servicio-card {
  display: block;
  text-decoration: none;
  background: var(--vb-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--vb-border);
  border-radius: var(--vb-radius);
  transition: all 0.4s ease;
  overflow: hidden;
}

.vb-servicio-card:hover {
  border-color: var(--vb-green-border);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.vb-svc-content {
  padding: 40px;
}

.vb-svc-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #fff;
}

.vb-svc-content p {
  color: var(--vb-muted);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.vb-svc-link {
  color: var(--vb-green);
  font-family: var(--vb-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vb-svc-link i {
  transition: transform 0.3s;
}

.vb-servicio-card:hover .vb-svc-link i {
  transform: translateX(10px);
}

/* Pack Card Component */
.vb-pack-card {
  background: var(--vb-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--vb-border);
  padding: 50px 40px;
  border-radius: var(--vb-radius);
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.vb-pack-card.vb-pack-premium {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.9) 0%, rgba(5, 5, 5, 0.95) 100%);
  border: 1px solid var(--vb-green-border);
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px var(--vb-green-dim);
  z-index: 2;
}

.vb-pack-card h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #fff;
}

.vb-pack-card.vb-pack-premium h3 {
  color: var(--vb-green);
  text-shadow: 0 0 15px var(--vb-green-glow);
}

.vb-pack-desc {
  color: var(--vb-muted);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.vb-pack-features {
  list-style: none;
  padding: 0;
  text-align: left;
  color: var(--vb-text);
  margin-bottom: 40px;
  flex-grow: 1;
}

.vb-pack-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.vb-pack-features i {
  color: var(--vb-green);
  margin-top: 4px;
}

/* Timeline Process Component */
.vb-proceso-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  position: relative;
}

.vb-proceso-line {
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vb-border), var(--vb-green-border), var(--vb-border), transparent);
  z-index: 1;
}

.vb-proc-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  padding: 0 20px;
}

.vb-proc-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--vb-bg);
  border: 1px solid var(--vb-green-border);
  color: var(--vb-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vb-head);
  font-size: 1.8rem;
  margin: 0 auto 25px;
  box-shadow: 0 0 20px var(--vb-green-dim);
}

.vb-proc-step.vb-proc-final .vb-proc-icon {
  background: var(--vb-green);
  color: #000;
  box-shadow: 0 0 30px var(--vb-green-glow);
}

.vb-proc-step h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.vb-proc-step p {
  color: var(--vb-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Forms */
.vb-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.vb-field label {
  font-family: var(--vb-head);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--vb-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.vb-form input,
.vb-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--vb-border);
  color: #fff;
  padding: 18px 20px;
  border-radius: var(--vb-radius);
  font-family: var(--vb-body);
  font-size: 1rem;
  transition: all 0.3s;
  box-sizing: border-box;
}

.vb-form input:focus,
.vb-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--vb-green);
  box-shadow: 0 0 15px var(--vb-green-dim);
}

/* Footer completely revamped */
.vb-footer-main {
  background: var(--vb-bg-2);
  border-top: 1px solid var(--vb-border);
  padding: 100px 0 40px;
}

.vb-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}

.vb-footer-brand p {
  color: var(--vb-muted);
  line-height: 1.6;
  font-size: 1rem;
  margin: 20px 0;
  max-width: 300px;
}

.vb-footer-logo {
  max-width: 180px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.vb-footer-links h4,
.vb-footer-social h4 {
  font-family: var(--vb-head);
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.vb-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vb-footer-links li {
  margin-bottom: 15px;
}

.vb-footer-links a {
  color: var(--vb-muted);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.vb-footer-links a:hover {
  color: var(--vb-green);
}

.vb-social-icons {
  display: flex;
  gap: 15px;
}

.vb-social-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--vb-bg-3);
  border: 1px solid var(--vb-border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s;
}

.vb-social-icons a:hover {
  background: var(--vb-green);
  border-color: var(--vb-green);
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--vb-green-dim);
}

@media (max-width: 991px) {

  .vb-packs-grid,
  .vb-servicios-grid,
  .vb-eventos-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vb-pack-card.vb-pack-premium {
    transform: scale(1);
  }

  .vb-proceso-timeline {
    flex-direction: column;
    gap: 40px;
  }

  .vb-proceso-line {
    display: none;
  }

  .vb-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vb-footer-brand p {
    margin: 20px auto;
  }

  .vb-social-icons {
    justify-content: center;
  }
}