/* ═══════════════════════════════════════
   VENDY — Components
═══════════════════════════════════════ */

/* ════════════════════════════════
   BLOBS BACKGROUND
════════════════════════════════ */
.blob-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
}

.blob1 {
  width: 600px;
  height: 600px;
  background: var(--v1);
  top: -200px;
  right: -150px;
  animation: blobMove1 12s ease-in-out infinite;
}

.blob2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -100px;
  left: -100px;
  animation: blobMove2 15s ease-in-out infinite;
}

.blob3 {
  width: 300px;
  height: 300px;
  background: var(--v2);
  top: 40%;
  left: 30%;
  animation: blobMove3 18s ease-in-out infinite;
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(102, 35, 211, .1);
  transition: box-shadow .3s;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(102, 35, 211, .1);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 75px;
  width: auto;
}

.nav-logo-fallback {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--v1), var(--v2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
}

.nav-logo-text span {
  color: var(--v1);
}

/* Liens desktop */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #12062a;
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--v1);
}

/* CTA desktop */
.nav-cta {
  background: var(--v1);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  padding: .62rem 1.4rem;
  border: none;
  border-radius: var(--r);
  white-space: nowrap;
  transition: background .2s, transform .15s;
}

.nav-cta:hover {
  background: var(--v2);
  transform: translateY(-1px);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  z-index: 1100;
}

.nav-burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s, width .3s;
}

.nav-burger span:nth-child(1) {
  width: 22px;
}

.nav-burger span:nth-child(2) {
  width: 16px;
}

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

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}

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

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
}

/* Drawer mobile */
.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--v-border);
}

.nav-drawer-links a {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid var(--v-border);
  transition: color .2s;
}

.nav-drawer-links a:hover {
  color: var(--v1);
}

.nav-drawer-cta {
  margin-top: 2rem;
  display: block;
  background: var(--v1);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: .9rem 1.5rem;
  border: none;
  border-radius: var(--r);
  text-align: center;
  transition: background .2s;
}

.nav-drawer-cta:hover {
  background: var(--v2);
}

/* ════════════════════════════════
   BOUTONS
════════════════════════════════ */
.btn-v {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--v1);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: .9rem 2rem;
  border: none;
  border-radius: var(--r);
  transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-v:hover {
  background: var(--v2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102, 35, 211, .3);
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--v1);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: .9rem 2rem;
  border: 2px solid var(--v1);
  border-radius: var(--r);
  transition: background .2s;
}

.btn-o:hover {
  background: var(--v-light);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--r);
  transition: transform .2s, box-shadow .2s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(254, 197, 2, .45);
}

/* ════════════════════════════════
   LABELS DE SECTION
════════════════════════════════ */
.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--v-light);
  color: var(--v1);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.s-tag::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.s-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}

.s-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
}

/* ════════════════════════════════
   FEATURE CARDS
════════════════════════════════ */
.feat-card {
  background: #fff;
  border: 1px solid var(--v-border);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.feat-card:hover {
  border-color: var(--v1);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(102, 35, 211, .12);
}

.fc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--v-light), rgba(102, 35, 211, .15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 1.2rem;
}

.fc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: .5rem;
}

.fc-desc {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
}

/* ════════════════════════════════
   PRICING CARDS
════════════════════════════════ */
.price-card {
  background: #fff;
  border: 2px solid rgba(102, 35, 211, .1);
  border-radius: var(--r-xl);
  padding: 2.2rem;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(102, 35, 211, .12);
}

.price-card.featured {
  border-color: var(--v1);
  background: linear-gradient(145deg, rgba(102, 35, 211, .03), #fff);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--v1), var(--v2));
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  padding: 5px 18px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.price-plan {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--v1);
  margin-bottom: .6rem;
}

.price-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: .2rem;
}

.price-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--ink);
  transition: color .3s;
}

.price-num.annual {
  color: var(--v1);
}

.price-currency {
  font-size: 1.3rem;
  margin-top: .6rem;
  color: var(--ink);
}

.price-per {
  color: var(--muted);
  font-size: .85rem;
}

.price-note {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  min-height: 1.1em;
}

.price-divider {
  height: 1px;
  background: rgba(102, 35, 211, .1);
  margin: 1.5rem 0;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: #444;
}

.pf-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--v-light);
  border: 1.5px solid rgba(102, 35, 211, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--v1);
  flex-shrink: 0;
}

.price-card.featured .pf-dot {
  background: linear-gradient(135deg, var(--v1), var(--v2));
  border-color: transparent;
  color: #fff;
}

.price-btn {
  width: 100%;
  padding: .85rem;
  border-radius: var(--r);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
}

.price-btn-outline {
  background: transparent;
  color: var(--v1);
  border: 2px solid rgba(102, 35, 211, .25);
}

.price-btn-outline:hover {
  border-color: var(--v1);
  background: var(--v-light);
}

.price-btn-fill {
  background: linear-gradient(135deg, var(--v1), var(--v2));
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(102, 35, 211, .3);
}

.price-btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(102, 35, 211, .4);
}

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq-item {
  background: #fff;
  border: 1.5px solid var(--v-border);
  border-radius: var(--r-lg);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: var(--v1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .97rem;
  color: var(--ink);
  cursor: pointer;
  gap: 1rem;
  transition: background .2s;
}

.faq-question:hover {
  background: var(--v-pale);
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--v-light);
  border: 1px solid var(--v-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--v1);
  flex-shrink: 0;
  transition: transform .3s, background .2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.22, 1, .36, 1);
}
button#navDrawerClose {
    color: #ffffff;
    background-color: #6623d3;
    padding: 5px 10px 5px 10px;
    border: none;
}
.nav-drawer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px;
}
.faq-answer p {
  padding: .5rem 1.5rem 1.2rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ════════════════════════════════
   CARRIERS
════════════════════════════════ */
.c-row {
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.c-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  align-items: center;
}

.c-logo {
  height: 60px;
  min-width: 150px;
  border-radius: var(--r);
  border: 1.5px solid var(--v-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.2rem;
  transition: border-color .2s, box-shadow .2s;
}

.c-logo:hover {
  border-color: var(--v1);
  box-shadow: 0 4px 16px rgba(102, 35, 211, .1);
}

.c-logo img {
  max-height: 34px;
  max-width: 110px;
  object-fit: contain;
  opacity: .7;
  transition: opacity .25s;
}

.c-logo:hover img {
  opacity: 1;
}

.c-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  color: var(--muted);
  transition: color .2s;
}

.c-logo:hover .c-logo-text {
  color: var(--v1);
}