@charset "UTF-8";
/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg: #050b14;
  --surface: #0a1628;
  --glass: rgba(10,22,40,0.7);
  --border: rgba(0,200,180,0.15);
  --teal: #00c8b4;
  --teal2: #00e5cc;
  --blue: #0057ff;
  --muted: #4a6a7a;
  --text: #cce8e4;
  --white: #f0faf8;
  --ff-head: 'Syne', sans-serif;
  --ff-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── CURSOR ─────────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  opacity: 0.5;
}

/* ── CANVAS BACKGROUND ──────────────────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5vw;
  transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(5, 11, 20, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo span {
  color: #1f7ab7;
}

.nav-logo img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width 0.3s var(--ease);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.4rem;
  border-radius: 2rem;
  background: var(--teal);
  color: var(--bg);
  border: none;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(0, 200, 180, 0.25);
}

.btn-nav--secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 200, 180, 0.45);
}

.btn-nav--secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 0 24px rgba(0, 200, 180, 0.18);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5vw 6rem;
  overflow: hidden;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(0, 200, 180, 0.07);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero-badge i {
  font-size: 0.7rem;
}

.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  animation: fadeUp 0.8s 0.1s var(--ease) both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  margin-top: 1.4rem;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #7aa8b0;
  max-width: 520px;
  animation: fadeUp 0.8s 0.2s var(--ease) both;
}

.hero-ctas {
  margin-top: 2.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  border: none;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0, 87, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 87, 255, 0.45);
}

.btn-ghost {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 0.6rem;
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
  cursor: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero-visual {
  position: absolute;
  right: clamp(1rem, 3vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 42vw, 620px);
  max-width: 90vw;
  animation: fadeIn 0.8s 0.4s var(--ease) both;
  pointer-events: none;
}

/* Floating dashboard mockup */
.dash-mock {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.6rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 200, 180, 0.05);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.r {
  background: #ff5f57;
}

.dot.y {
  background: #febc2e;
}

.dot.g {
  background: #28c840;
}

.dash-title {
  font-family: var(--ff-head);
  font-size: 0.82rem;
  color: var(--muted);
  margin-left: auto;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.dash-card {
  background: rgba(0, 200, 180, 0.05);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 1rem;
}

.dash-card-num {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.dash-card-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dash-card-tag {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.68rem;
  padding: 0.15rem 0.5rem;
  border-radius: 1rem;
  background: rgba(0, 200, 180, 0.15);
  color: var(--teal);
}

.dash-bar-row {
  margin-top: 1rem;
}

.dash-bar-label {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.dash-bar-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.dash-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dash-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.dash-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.dash-item-info {
  flex: 1;
}

.dash-item-name {
  font-size: 0.78rem;
  color: var(--white);
  font-weight: 500;
}

.dash-item-sub {
  font-size: 0.68rem;
  color: var(--muted);
}

.dash-item-status {
  font-size: 0.65rem;
  padding: 0.15rem 0.45rem;
  border-radius: 1rem;
}

.status-ok {
  background: rgba(0, 200, 100, 0.15);
  color: #00c864;
}

.status-pend {
  background: rgba(255, 180, 0, 0.12);
  color: #ffb400;
}

/* ── STATS BAND ──────────────────────────────────────────── */
.stats-band {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.1rem;
  padding: 3rem 5vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, transparent, rgba(0, 200, 180, 0.03), transparent);
}

.stat-item {
  flex: 1;
  min-width: 160px;
  max-width: 240px;
  text-align: center;
  padding: 1.5rem;
}

.stat-num {
  font-family: var(--ff-head);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ── SECTION BASE ────────────────────────────────────────── */
section {
  position: relative;
  z-index: 1;
  padding: 7rem 5vw;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 560px;
}

.section-title em {
  font-style: normal;
  color: var(--teal);
}

.brand-word {
  color: var(--white);
  white-space: nowrap;
}

.brand-word__vet {
  color: #1f7ab7;
}

.brand-word--updates .brand-word__noah {
  color: var(--white);
  text-shadow: 0 0 10px rgba(31, 122, 183, 0.55), 0 0 2px rgba(31, 122, 183, 0.85);
}

.brand-word sup {
  margin-left: 0.08em;
  font-size: 0.42em;
  color: var(--muted);
  vertical-align: super;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 1rem;
}

/* ── FEATURES ────────────────────────────────────────────── */
.features-wrap {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.feat-card {
  border: 1px solid var(--border);
  background: var(--glass);
  border-radius: 1rem;
  padding: 1.8rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.feat-card.visible {
  animation: fadeUp 0.6s var(--ease) forwards;
}

.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 200, 180, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 200, 180, 0.1);
}

.feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, rgba(0, 200, 180, 0.2), rgba(0, 87, 255, 0.1));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 1.2rem;
}

.feat-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feat-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-wrap {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: flex-start;
}

.price-card {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2.2rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease);
  opacity: 0;
  transform: translateY(30px);
}

.price-card.visible {
  animation: fadeUp 0.6s var(--ease) forwards;
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-card.featured {
  border-color: var(--teal);
  background: linear-gradient(160deg, rgba(0, 200, 180, 0.1), rgba(0, 87, 255, 0.05));
  box-shadow: 0 0 0 1px rgba(0, 200, 180, 0.2), 0 30px 80px rgba(0, 200, 180, 0.1);
  position: relative;
  overflow: hidden;
}

.price-card.featured::before {
  content: "★ MÁS ELEGIDO";
  position: absolute;
  top: 1.2rem;
  right: -2.5rem;
  background: var(--teal);
  color: var(--bg);
  font-family: var(--ff-head);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.3rem 3rem;
  transform: rotate(35deg);
  letter-spacing: 0.08em;
}

.price-period {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.price-name {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin: 0.4rem 0 1.2rem;
}

.price-amount {
  font-family: var(--ff-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.price-amount sup {
  font-size: 1rem;
  vertical-align: super;
  color: var(--teal);
}

.price-amount span {
  display: block;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.15rem;
}

.price-saving {
  font-size: 0.8rem;
  color: var(--teal);
  margin: 0.5rem 0 1.4rem;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 1.4rem 0;
}

.price-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.price-perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text);
}

.price-perks li i {
  color: var(--teal);
  font-size: 0.8rem;
}

.btn-pricing {
  width: 100%;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem;
  border-radius: 0.6rem;
  border: none;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.price-card.featured .btn-pricing {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 87, 255, 0.3);
}

.price-card:not(.featured) .btn-pricing {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-pricing:hover {
  transform: translateY(-2px);
}

/* ── FEATURES MARQUEE ────────────────────────────────────── */
.fmarquee-wrap {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.fmarquee-row {
  display: flex;
  gap: 1.2rem;
}

.fmarquee-inner {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0;
}

.fmarquee-inner.left {
  animation: marquee-left 38s linear infinite;
}

.fmarquee-inner.right {
  animation: marquee-right 38s linear infinite;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.fm-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 0.9rem 1.4rem;
  background: var(--glass);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.fm-card:hover {
  border-color: rgba(0, 200, 180, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 200, 180, 0.08);
}

.fm-icon {
  width: 34px;
  height: 34px;
  border-radius: 0.5rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0, 200, 180, 0.18), rgba(0, 87, 255, 0.1));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--teal);
}

.fm-title {
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.fm-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ── SOPORTE ─────────────────────────────────────────────── */
.support-band {
  position: relative;
  z-index: 1;
  margin: 0 5vw 5rem;
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  padding: 3rem 3.5rem;
  background: linear-gradient(135deg, rgba(0, 200, 180, 0.06), rgba(0, 87, 255, 0.04));
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.support-left {
  max-width: 520px;
}

.support-left h3 {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.support-left p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.support-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text);
}

.support-item i {
  color: var(--teal);
  width: 16px;
}

.support-right {
  text-align: center;
}

.support-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 200, 180, 0.15), rgba(0, 87, 255, 0.1));
  border: 2px solid rgba(0, 200, 180, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0, 200, 180, 0.15);
  animation: float 4s ease-in-out infinite;
}

.support-badge-num {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
}

.support-badge-sub {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 0 0.4rem;
}

/* ── PRÓXIMAS ACTUALIZACIONES ────────────────────────────── */
.coming-soon-section {
  position: relative;
  z-index: 1;
  padding: 7rem 5vw;
  overflow: hidden;
}

.coming-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.coming-card {
  border: 1px dashed rgba(0, 200, 180, 0.2);
  border-radius: 1rem;
  padding: 1.6rem;
  background: rgba(0, 200, 180, 0.02);
  opacity: 0.6;
  transition: opacity 0.3s, border-color 0.3s;
}

.coming-card:hover {
  opacity: 0.9;
  border-color: rgba(0, 200, 180, 0.4);
}

.coming-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: rgba(0, 200, 180, 0.08);
  border: 1px solid rgba(0, 200, 180, 0.15);
  border-radius: 1rem;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.9rem;
}

.coming-icon {
  font-size: 1.4rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.coming-title {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.coming-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.coming-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(0, 200, 180, 0.1), rgba(0, 87, 255, 0.06));
  border: 1px solid rgba(0, 200, 180, 0.25);
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  margin-bottom: 1.4rem;
  font-size: 0.8rem;
  color: var(--teal);
  letter-spacing: 0.06em;
}

.coming-hero-badge i {
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
/* ── ABOUT ───────────────────────────────────────────────── */
.about-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  padding-bottom: 5.5rem;
}

.about-card-main {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2rem;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}

.about-card-float {
  position: absolute;
  bottom: 0.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, rgba(0, 200, 180, 0.15), rgba(0, 87, 255, 0.1));
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem 1.6rem;
  backdrop-filter: blur(12px);
  z-index: 2;
  animation: float 4s 1s ease-in-out infinite;
}

.float-num {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.float-sub {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  margin-bottom: 0.6rem;
}

.about-pill i {
  color: var(--teal);
}

.about-pill span {
  font-size: 0.85rem;
  color: var(--text);
}

.about-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-text strong {
  color: var(--white);
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-wrap {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.6rem;
  background: rgba(0, 200, 180, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.contact-item-text p {
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}

.field input, .field textarea, .field select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.field select option {
  color: #050b14;
  background: #f0faf8;
}

.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 200, 180, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.recaptcha-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  min-height: 86px;
}

.captcha-error {
  min-height: 1rem;
  color: #ff7b7b;
  font-size: 0.78rem;
  line-height: 1.4;
}

.btn-send {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  border: none;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0, 87, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 87, 255, 0.4);
}

/* ── MODAL SUSCRIPCIÓN ──────────────────────────────────── */
.subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(5, 11, 20, 0.74);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease);
}

.subscribe-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.subscribe-modal__panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  border: 1px solid rgba(0, 200, 180, 0.28);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(10, 22, 40, 0.96), rgba(5, 11, 20, 0.98));
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 200, 180, 0.08);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.32s var(--ease);
}

.subscribe-modal.is-open .subscribe-modal__panel {
  transform: none;
}

.subscribe-modal__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(0, 200, 180, 0.18), transparent 34%), radial-gradient(circle at 100% 20%, rgba(0, 87, 255, 0.14), transparent 30%);
}

.subscribe-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 0.7rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.subscribe-modal__close:hover {
  color: var(--teal);
  border-color: rgba(0, 200, 180, 0.45);
  background: rgba(0, 200, 180, 0.08);
}

.subscribe-modal__header,
.subscribe-form {
  position: relative;
  z-index: 1;
}

.subscribe-modal__header {
  padding: 2.4rem 2.4rem 1.2rem;
  max-width: 680px;
}

.subscribe-modal__header h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: var(--white);
}

.subscribe-modal__header p {
  margin-top: 0.9rem;
  color: #7aa8b0;
  line-height: 1.7;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem 2.4rem 2.4rem;
}

body.modal-active {
  overflow: hidden;
}

/* ── AVISO TEMPORAL ─────────────────────────────────────── */
.site-notice-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(5, 11, 20, 0.78);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease);
}

.site-notice-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-notice-modal__panel {
  position: relative;
  width: min(520px, 100%);
  padding: 2.4rem;
  border: 1px solid rgba(0, 200, 180, 0.28);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(10, 22, 40, 0.97), rgba(5, 11, 20, 0.99));
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(0, 200, 180, 0.08);
  text-align: center;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.32s var(--ease);
  overflow: hidden;
}

.site-notice-modal.is-open .site-notice-modal__panel {
  transform: none;
}

.site-notice-modal__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 0%, rgba(0, 200, 180, 0.2), transparent 36%), radial-gradient(circle at 100% 15%, rgba(0, 87, 255, 0.16), transparent 32%);
}

.site-notice-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 0.7rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.site-notice-modal__close:hover {
  color: var(--teal);
  border-color: rgba(0, 200, 180, 0.45);
  background: rgba(0, 200, 180, 0.08);
}

.site-notice-modal__icon,
.site-notice-modal .section-eyebrow,
.site-notice-modal h2,
.site-notice-modal p,
.site-notice-modal__button {
  position: relative;
  z-index: 1;
}

.site-notice-modal__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 1rem;
  background: rgba(0, 200, 180, 0.1);
  color: var(--teal);
  font-size: 1.5rem;
}

.site-notice-modal h2 {
  margin-top: 0.65rem;
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.05;
  color: var(--white);
}

.site-notice-modal p {
  margin-top: 1rem;
  color: #7aa8b0;
  line-height: 1.7;
}

.site-notice-modal__button {
  width: 100%;
  margin-top: 1.5rem;
}

/* ── AUTH CLIENTES ─────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: radial-gradient(circle at 12% 10%, rgba(0, 200, 180, 0.15), transparent 42%), radial-gradient(circle at 84% 0%, rgba(0, 87, 255, 0.18), transparent 38%), var(--bg);
  cursor: auto;
  overflow-x: hidden;
}

.auth-page * {
  cursor: auto;
}

.auth-shell,
.portal-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 6.5rem 1.2rem 2.4rem;
}

.auth-card,
.portal-card {
  width: min(520px, 100%);
  border: 1px solid rgba(0, 200, 180, 0.25);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(10, 22, 40, 0.96), rgba(5, 11, 20, 0.98));
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 200, 180, 0.08);
  padding: 2rem;
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  font-family: var(--ff-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
}

.auth-brand img {
  width: 1.28rem;
  height: 1.28rem;
  object-fit: contain;
  margin-right: 0.45rem;
  flex-shrink: 0;
}

.auth-brand span {
  color: #1f7ab7;
}

.auth-brand sup {
  margin-left: 0.08em;
  font-size: 0.46em;
  color: var(--muted);
}

.auth-kicker {
  margin-top: 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

.auth-title {
  margin-top: 0.52rem;
  font-family: var(--ff-head);
  color: var(--white);
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.15;
}

.auth-subtitle {
  margin-top: 0.72rem;
  color: #7aa8b0;
  line-height: 1.65;
  font-size: 0.92rem;
}

.auth-form {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.auth-field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.82rem 1rem;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.auth-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 200, 180, 0.14);
}

.auth-input--password {
  padding-right: 3rem;
}

.auth-toggle {
  position: absolute;
  right: 0.65rem;
  width: 34px;
  height: 34px;
  border-radius: 0.55rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.auth-toggle:hover {
  color: var(--teal);
  border-color: rgba(0, 200, 180, 0.45);
  background: rgba(0, 200, 180, 0.08);
}

.auth-alert {
  margin-top: 1rem;
  border: 1px solid;
  border-radius: 0.72rem;
  padding: 0.82rem 0.95rem;
  font-size: 0.88rem;
  line-height: 1.5;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), max-height 0.28s var(--ease), margin 0.28s var(--ease), padding 0.28s var(--ease), border-width 0.28s var(--ease);
  max-height: 180px;
  overflow: hidden;
}

.auth-alert--success {
  border-color: rgba(0, 200, 100, 0.45);
  background: rgba(0, 200, 100, 0.08);
  color: #80f0bd;
}

.auth-alert--error {
  border-color: rgba(255, 95, 95, 0.44);
  background: rgba(255, 95, 95, 0.08);
  color: #ffb1b1;
}

.auth-alert--info {
  border-color: rgba(0, 200, 180, 0.34);
  background: rgba(0, 200, 180, 0.08);
  color: #8fe9de;
}

.auth-alert.is-hidden {
  opacity: 0;
  transform: translateY(-6px);
  max-height: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
}

.auth-submit {
  width: 100%;
  margin-top: 0.3rem;
}

.auth-submit.is-loading {
  opacity: 0.86;
  pointer-events: none;
}

.auth-footer {
  margin-top: 1rem;
  font-size: 0.83rem;
  color: var(--muted);
  text-align: center;
}

.auth-link {
  color: var(--teal);
  font-weight: 600;
}

.portal-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.portal-meta {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.82rem;
}

.portal-meta > div {
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.78rem 0.9rem;
}

.portal-meta dt {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.portal-meta dd {
  margin-top: 0.28rem;
  font-size: 0.9rem;
  color: var(--white);
  word-break: break-word;
}

.portal-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 4rem 5vw 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
  margin-right: 0.4rem;
  flex-shrink: 0;
}

.footer-logo span {
  color: #1f7ab7;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}

.social-btn:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.footer-col h5 {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.83rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-tag {
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-tag span {
  color: var(--teal);
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-visual {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
  .about-grid, .contact-wrap {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .nav-actions {
    gap: 0.45rem;
  }
  .btn-nav {
    padding: 0.5rem 0.85rem;
  }
  .field-group {
    grid-template-columns: 1fr;
  }
  .subscribe-modal {
    padding: 0.8rem;
  }
  .subscribe-modal__header {
    padding: 4rem 1.2rem 0.8rem;
  }
  .site-notice-modal {
    padding: 0.9rem;
  }
  .site-notice-modal__panel {
    padding: 4rem 1.2rem 1.4rem;
  }
  .subscribe-form {
    padding: 1rem 1.2rem 1.4rem;
  }
  .auth-card,
  .portal-card {
    padding: 1.35rem;
  }
  .portal-meta {
    grid-template-columns: 1fr;
  }
  .price-amount {
    font-size: 2.3rem;
  }
  .price-amount span {
    font-size: 0.82rem;
    line-height: 1.2;
  }
}
@media (max-width: 480px) {
  .price-amount {
    font-size: 2.05rem;
  }
  .price-amount span {
    font-size: 0.78rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/*# sourceMappingURL=estilos.css.map */
