@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap);
/* Conekta Components — shared keyframes & utility classes */

/* ── Navbar ─────────────────────────────────────────────────────────────── */

/* Nav link hover highlight */
.cnav-link:hover {
  background: rgba(0, 0, 0, 0.055) !important;
}


/* Login / secondary CTA hover */
.cnav-cta-login {
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.cnav-cta-login:hover {
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(255, 255, 255, 0.30) !important;
}


/* Submenu item hover */
.cnav-submenu-item:hover {
  background: rgba(0, 0, 0, 0.045) !important;
}

/* Custom SVG icons (Font Awesome pasted as raw SVG) — Safari needs explicit
   sizing because FA SVGs ship with width/height "1em" which renders
   differently across browsers inside flex containers. */
.cnav-custom-svg svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
  fill: currentColor;
}
.cnav-custom-svg svg * {
  fill: currentColor;
}

/* ── Payment showcase: slot layouts ──────────────────────────────────────────
   Webflow projects all slotted children into a single <div slot="name">
   wrapper in light DOM. By default that wrapper is display:block, so its
   children stack vertically as block siblings. We turn the wrapper itself
   into a flex container via ::slotted() so the items lay out properly.

   IMPORTANT: this only works when the user places the slot children directly
   in the slot. An extra wrapper div added in Webflow Designer sits INSIDE
   the projected <div slot=name>, and CSS can't reach through it — items
   will stack again. */

/* Methods grid — wrapping flex row of fixed-size tiles. */
.cpay-methods-slot slot::slotted(*) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

/* Tabs row (tablet/mobile) — wrapping row of pill tabs (no horizontal scroll). */
.cpay-tabs-row slot::slotted(*) {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

/* Tabs column (desktop) — vertical stack of full-width tabs. */
.cpay-tabs-column slot::slotted(*) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

/* Mobile nav item row — applies to both the dropdown button AND the
   no-dropdown anchor, so they render identically on iOS Safari (which
   sometimes ignores inline styles on <a>). */
.cnav-item-mob-row {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 20px 24px !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #0f172a !important;
  background: none !important;
  border: none !important;
  text-align: left !important;
  text-decoration: none !important;
  cursor: pointer !important;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  letter-spacing: -0.01em !important;
}
.cnav-item-mob-row.has-drop {
  justify-content: space-between !important;
}

/* Payment chip hover */
.cnav-paychip-neutral:hover {
  background: rgba(0, 0, 0, 0.06) !important;
}
.cnav-paychip-featured:hover {
  background: #d6e4ff !important;
  border-color: rgba(37, 99, 235, 0.28) !important;
}
.cnav-paychips-viewall:hover {
  color: #0f172a !important;
}

/* Chevron rotates when nav item is hovered */
.cnav-item-wrapper:hover .cnav-chevron {
  transform: rotate(180deg) !important;
}
.cnav-chevron {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Force nav items to lay out horizontally regardless of Webflow's slot wrapper */
.cnav-items-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}
.cnav-items-row > * {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

/* Dropdown panel — hidden by default, shown on hover via CSS.
   --cnav-x-offset is set by JS to keep the panel inside the viewport when
   the natural centered position would push it off-screen. */
.cnav-item-dropdown {
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(-50% + var(--cnav-x-offset, 0px))) translateY(-6px) scale(0.98);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.cnav-item-wrapper:hover .cnav-item-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(calc(-50% + var(--cnav-x-offset, 0px))) translateY(0) scale(1);
}
/* Transparent bridge that fills the gap between the trigger and the panel,
   so the mouse never leaves the hover zone while travelling down. */
.cnav-item-dropdown::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: -40px;
  right: -40px;
  height: 16px;
}

/* ── Logo Marquee ────────────────────────────────────────────────────────── */

/* Animation is RAF-driven in JS — no CSS keyframe needed.
   will-change promotes the track to a GPU compositor layer for smooth movement. */
.clogo-marquee-track {
  will-change: transform;
}

/* Each duplicated set sits side-by-side */
.clogo-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Size every logo image using the CSS var set on the wrapper */
.clogo-marquee-wrapper img {
  height: var(--clogo-h, 28px);
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ── Shared ──────────────────────────────────────────────────────────────── */
@keyframes ccs-pop-in {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Checkout Showcase — floating cards */
@keyframes ccs-drift {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.ccs-floating-card {
  animation-name: ccs-drift;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* Checkout scroll (used by ConektaCheckout) */
.ccs-checkout-scroll {
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 transparent;
}
.ccs-checkout-scroll::-webkit-scrollbar       { width: 6px; }
.ccs-checkout-scroll::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }
.ccs-checkout-scroll::-webkit-scrollbar-track { background: transparent; }

/* Bundle Showcase — animations */
@keyframes cbs-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes cbs-tile-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Bundle Showcase — horizontal tab row (tablet + mobile) */
.cbs-tab-row {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cbs-tab-row::-webkit-scrollbar { display: none; }

/* ── ConektaIndustrias — shell layout helpers ── */
/* Mobile grid: each Webflow slot wrapper fills its grid cell */
.cind-tabs-grid > * { width: 100%; min-width: 0; }
/* Desktop column: each child stretches full width */
.cind-tabs-col > * { width: 100%; }

/* ── ConektaIndustrias — panel entrance animation ── */
@keyframes cind-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cind-panel {
  animation: cind-in 0.32s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Mobile full-screen overlay entrance */
@keyframes cnav-overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cnav-mob-overlay {
  animation: cnav-overlay-in 0.2s ease both;
}

/* ── ConektaCasos — progress bar fill ── */
@keyframes ccaso-fill {
  from { width: 0%; }
  to   { width: 100%; }
}
.ccaso-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3d62ea, #00c2ff);
  border-radius: 999px;
  animation-name: ccaso-fill;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

/* ── ConektaCasos — panel entrance animation ── */
@keyframes ccaso-in {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}
.ccaso-panel {
  animation: ccaso-in 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

/* ── ConektaCasos — visual area keyframes ── */
@keyframes ccaso-blob {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.7; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1;   }
}
@keyframes ccaso-logo-in {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes ccaso-float-in {
  from { opacity: 0; transform: translateY(14px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── ConektaCasos — tab row slot children ── */
.ccaso-tabs-row > * { flex-shrink: 0; }

/* ── Bundle Showcase — category nav button ── */
/* Bundle Showcase — category nav button */
.cbs-cat-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #CBD5E1;
  background: transparent;
  border: 1px solid transparent;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  font-family: Inter, -apple-system, sans-serif;
}
.cbs-cat-button[data-active="true"] {
  background: linear-gradient(135deg, rgba(44,76,245,0.18), rgba(125,240,255,0.06));
  border-color: rgba(125, 240, 255, 0.35);
  color: #FFFFFF;
  font-weight: 600;
}

