/* ===========================
   BODABLE — styles.css
   Paleta: Marfil / Aubergine / Dorado / Blush / Salvia
   =========================== */

/* ---- TOKENS ---- */
:root {
  --ivory:     #FAF8F5;
  --aubergine: #3D1F2E;
  --gold:      #C4A35A;
  --gold-light:#F0E6CC;
  --blush:     #E8B8A8;
  --blush-light:#FDF0EC;
  --sage:      #8FAF8A;
  --sage-light:#E8F0E7;
  --green-ok:  #4A9A6A;
  --amber-w:   #C8A030;
  --red-s:     #C04040;

  --text:      #3D1F2E;
  --text-soft: #7A5F6A;
  --border:    rgba(61,31,46,0.1);

  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(61,31,46,0.08);
  --shadow-md: 0 8px 40px rgba(61,31,46,0.12);
  --shadow-lg: 0 20px 60px rgba(61,31,46,0.16);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- SPLASH ---- */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--aubergine);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-rings {
  position: relative; width: 60px; height: 60px;
}
.ring {
  position: absolute; border-radius: 50%;
  border: 2px solid var(--gold);
  animation: ringPulse 1.8s ease-in-out infinite;
}
.ring-1 { width: 40px; height: 40px; top: 10px; left: 2px; }
.ring-2 { width: 40px; height: 40px; top: 10px; left: 18px; animation-delay: 0.15s; }
@keyframes ringPulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.splash-name {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.05em;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.3s;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- REVEAL ---- */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}

/* ---- NAV ---- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 32px;
  padding: 0 40px; height: 68px;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: var(--shadow); }
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex; gap: 28px; margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--aubergine); }
.btn-nav {
  display: inline-flex; align-items: center;
  padding: 9px 22px;
  background: var(--aubergine); color: var(--ivory);
  border-radius: 100px; font-size: 0.875rem; font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-nav:hover { background: #5a2d44; transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ---- MOBILE MENU ---- */
#mobile-menu {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: var(--ivory); border-bottom: 1px solid var(--border);
  padding: 24px 24px 32px;
  transform: translateY(-110%);
  transition: transform 0.35s ease;
  box-shadow: var(--shadow-md);
}
#mobile-menu.open { transform: translateY(0); }
#mobile-menu ul { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
#mobile-menu ul a { font-size: 1.1rem; font-weight: 500; color: var(--text); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px;
  background: var(--aubergine); color: var(--ivory);
  border-radius: 100px; font-size: 1rem; font-weight: 500;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(61,31,46,0.25);
}
.btn-primary:hover { background: #5a2d44; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(61,31,46,0.3); }
.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 14px 24px;
  border: 1.5px solid var(--border);
  border-radius: 100px; font-size: 1rem; font-weight: 400;
  color: var(--text-soft);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--aubergine); color: var(--aubergine); }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 780px; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 120px 80px 80px;
  position: relative; overflow: hidden;
}
.hero-bg-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(196,163,90,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(232,184,168,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 90%, rgba(143,175,138,0.1) 0%, transparent 60%);
  animation: meshShift 8s ease-in-out infinite alternate;
}
@keyframes meshShift {
  from { opacity: 0.8; }
  to   { opacity: 1; }
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(196,163,90,0.12);
  border: 1px solid rgba(196,163,90,0.3);
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; color: #8B6914;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--aubergine); margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-sub {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--text-soft); max-width: 480px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.hero-pills span {
  padding: 5px 12px;
  background: rgba(74,154,106,0.1);
  border: 1px solid rgba(74,154,106,0.25);
  border-radius: 100px;
  font-size: 0.78rem; color: #2D6B47;
}

/* Hero Mockup */
.hero-mockup {
  position: relative; z-index: 1;
}
.mockup-window {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(61,31,46,0.06);
  overflow: hidden;
}
.mockup-bar {
  background: #F4F1EE;
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.mockup-url {
  margin-left: 8px; font-size: 0.72rem;
  color: var(--text-soft);
  background: white; padding: 3px 10px;
  border-radius: 4px; border: 1px solid var(--border);
}
.mockup-dashboard { padding: 20px; }
.mock-header { margin-bottom: 16px; }
.mock-title {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 400; color: var(--aubergine);
  display: block; margin-bottom: 2px;
}
.mock-subtitle { font-size: 0.72rem; color: var(--text-soft); }
.mock-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.mock-card {
  border-radius: 10px; padding: 12px;
  border: 1px solid rgba(0,0,0,0.05);
}
.card-sage { background: rgba(143,175,138,0.12); }
.card-blush { background: rgba(232,184,168,0.18); }
.card-gold { background: rgba(196,163,90,0.1); }
.mock-card-head {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 600;
  color: var(--text); text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 12px;
}
/* Donut */
.mock-donut-wrap { display: flex; align-items: center; gap: 8px; }
.mock-donut { width: 60px; height: 60px; flex-shrink: 0; }
.mock-legend { font-size: 0.65rem; }
.leg-row {
  display: flex; align-items: center; gap: 4px;
  margin-bottom: 3px; color: var(--text-soft);
}
.leg-row strong { color: var(--text); }
.leg-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
/* Logistics grid */
.mock-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mock-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 6px 4px; background: white; border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.04);
}
.stat-icon { font-size: 0.75rem; }
.stat-val { font-size: 1rem; font-weight: 600; color: var(--text); }
.stat-lbl { font-size: 0.58rem; color: var(--text-soft); text-align: center; }
.mock-stat.warn .stat-val { color: var(--amber-w); }
/* Finance */
.mock-finance { font-size: 0.7rem; }
.fin-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px; color: var(--text-soft);
}
.fin-neg { color: var(--red-s); font-weight: 600; }
.fin-pos { color: var(--green-ok); font-weight: 600; }
.fin-divider { height: 1px; background: var(--border); margin: 8px 0; }
.fin-balance {
  display: flex; justify-content: space-between; align-items: center;
}
.fin-big-pos {
  font-size: 1rem; font-weight: 700; color: var(--green-ok);
  font-family: var(--font-serif);
}
/* Float badges */
.float-badge {
  position: absolute;
  background: white;
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 0.78rem; font-weight: 500;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
  animation: floatAnim 4s ease-in-out infinite;
  white-space: nowrap;
}
.float-1 { top: -16px; right: 20px; animation-delay: 0s; }
.float-2 { bottom: 30px; left: -20px; animation-delay: 1.3s; }
.float-3 { top: 40%; right: -20px; animation-delay: 2.6s; }
@keyframes floatAnim {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== TAGLINE STRIP ===== */
.tagline-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--aubergine);
  overflow: hidden;
  padding: 14px 0;
}
.strip-track {
  display: flex; align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: stripScroll 28s linear infinite;
}
.strip-unit {
  display: flex; align-items: center; gap: 40px;
  padding-right: 40px;
}
.strip-unit p {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 300; font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}
.strip-rings { color: var(--gold); font-size: 1rem; letter-spacing: -4px; }
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

/* ===== FEATURES ===== */
#funcionalidades {
  padding: 100px 0;
}
.section-head {
  text-align: center; margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 16px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.15;
  color: var(--aubergine); margin-bottom: 20px;
}
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head p {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--text-soft); max-width: 580px; margin: 0 auto;
}
/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-large { grid-column: span 2; }
.feat-card {
  background: white; border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feat-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 400;
  color: var(--aubergine); margin-bottom: 12px;
}
.feat-card > p { font-size: 0.92rem; line-height: 1.65; color: var(--text-soft); margin-bottom: 24px; }

/* Feature table mini */
.feat-table-mini {
  background: var(--ivory); border-radius: 8px;
  overflow: hidden; border: 1px solid var(--border);
  font-size: 0.75rem;
}
.ftm-header {
  display: grid; grid-template-columns: 2fr 1.5fr 1.5fr 0.8fr;
  padding: 8px 12px;
  background: #F0EDE8;
  font-weight: 600; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--text-soft);
}
.ftm-row {
  display: grid; grid-template-columns: 2fr 1.5fr 1.5fr 0.8fr;
  padding: 8px 12px; align-items: center;
  border-top: 1px solid var(--border);
}
.ftm-name { font-weight: 500; color: var(--text); }
.ftm-tag {
  display: inline-flex; padding: 2px 8px;
  border-radius: 100px; font-size: 0.68rem; font-weight: 500;
  width: fit-content;
}
.ftm-badge {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 8px; border-radius: 100px; font-size: 0.68rem; font-weight: 500;
  width: fit-content;
}
.ftm-badge.confirmed { background: rgba(74,154,106,0.12); color: #2D6B47; }
.ftm-badge.pending   { background: rgba(200,160,48,0.12); color: #8B6914; }
.ftm-badge.unseen    { background: rgba(0,0,0,0.06); color: #666; }
.ftm-bus { color: var(--text-soft); font-size: 0.72rem; }

/* Feature seating mini */
.feat-seats-mini {
  background: var(--ivory); border-radius: 8px; padding: 16px;
  border: 1px solid var(--border); position: relative;
}
.seat-table-mini.pres { text-align: center; margin-bottom: 16px; }
.seat-row { display: flex; justify-content: center; gap: 6px; margin-bottom: 4px; }
.seat {
  width: 28px; height: 28px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 600;
  border: 1px solid rgba(196,163,90,0.3);
}
.seat-label { font-size: 0.65rem; color: var(--text-soft); font-weight: 500; }
.seat-circles-row { display: flex; gap: 16px; justify-content: center; margin-bottom: 8px; }
.seat-circle-table { text-align: center; }
.circle-ring {
  position: relative; width: 64px; height: 64px; margin: 0 auto 4px;
}
.cs {
  position: absolute; width: 16px; height: 16px;
  border-radius: 50%; border: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 600; color: #333;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%)
    rotate(var(--a))
    translateY(-24px)
    rotate(calc(-1 * var(--a)));
}
.circle-name { font-size: 0.62rem; font-weight: 600; color: var(--text); }
.circle-count { font-size: 0.58rem; color: var(--text-soft); }
.circle-count.ok { color: var(--green-ok); }
.ia-badge {
  display: inline-flex; padding: 4px 12px;
  background: linear-gradient(135deg, #E8B8A8, #C4A35A);
  border-radius: 100px; font-size: 0.7rem; font-weight: 500;
  color: white;
}

/* Affinity */
.feat-affinity { background: var(--ivory); border-radius: 8px; padding: 12px; border: 1px solid var(--border); }
.aff-row { display: flex; align-items: center; gap: 12px; }
.aff-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.9rem;
}
.aff-lines { display: flex; flex-direction: column; gap: 4px; }
.aff-line { font-size: 0.75rem; font-weight: 500; }
.aff-line.green { color: var(--green-ok); }
.aff-line.red   { color: var(--red-s); }

/* KPIs */
.feat-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.kpi-item {
  background: var(--ivory); border-radius: 8px; padding: 10px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center;
}
.kpi-val { font-size: 1.4rem; font-weight: 700; font-family: var(--font-serif); }
.kpi-val.green { color: var(--green-ok); }
.kpi-val.amber { color: var(--amber-w); }
.kpi-val.blue  { color: #3B82F6; }
.kpi-val.biggreen { font-size: 1rem; color: var(--green-ok); }
.kpi-lbl { font-size: 0.7rem; color: var(--text-soft); margin-top: 2px; text-align: center; }

/* Exports */
.feat-exports { display: flex; gap: 8px; flex-wrap: wrap; }
.exp-item {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: 8px; font-size: 0.8rem; font-weight: 500;
}

/* Privacy */
.feat-privacy {
  display: flex; align-items: center; gap: 12px;
  background: var(--ivory); border-radius: 8px; padding: 12px;
  border: 1px solid var(--border);
}
.priv-icon { font-size: 1.5rem; }
.priv-text { font-size: 0.78rem; color: var(--text-soft); line-height: 1.5; }

/* ===== APP DEMO ===== */
#app-demo { padding: 100px 0; background: #F5F2EF; }
.demo-tabs {
  display: flex; gap: 8px; margin-bottom: 24px;
  justify-content: center;
}
.demo-tab {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-soft);
  border: 1.5px solid var(--border);
  background: white;
  transition: all 0.2s;
}
.demo-tab.active {
  background: var(--aubergine); color: var(--ivory);
  border-color: var(--aubergine);
}
.demo-tab:hover:not(.active) { border-color: var(--aubergine); color: var(--aubergine); }

.demo-screen {
  background: white; border-radius: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(61,31,46,0.06);
  overflow: hidden; min-height: 440px;
}
.demo-panel { display: none; }
.demo-panel.active { display: block; }

/* Demo nav bar */
.demo-nav-bar {
  background: var(--ivory); border-bottom: 1px solid var(--border);
  padding: 10px 20px; display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.demo-brand { display: flex; align-items: center; gap: 8px; }
.demo-logo-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--aubergine);
}
.demo-brand-name { font-family: var(--font-serif); font-size: 0.88rem; font-weight: 400; color: var(--aubergine); }
.demo-brand-tag  { font-size: 0.62rem; color: var(--text-soft); }
.demo-nav-pills { display: flex; gap: 6px; }
.demo-pill {
  padding: 5px 12px; border-radius: 100px;
  font-size: 0.68rem; font-weight: 500;
  border: 1px solid var(--border); color: var(--text-soft);
  cursor: default;
}
.demo-nav-right { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.demo-export-btn {
  padding: 5px 12px; border-radius: 8px;
  font-size: 0.68rem; border: 1px solid var(--border); color: var(--text-soft);
  cursor: default;
}
.demo-add-btn {
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 500;
  background: var(--aubergine); color: white;
  cursor: default;
}
.demo-body { padding: 24px 28px; }
.demo-h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 300; color: var(--aubergine); margin-bottom: 4px;
}
.demo-p { font-size: 0.78rem; color: var(--text-soft); margin-bottom: 20px; }

/* Dashboard cards */
.demo-cards-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.demo-card {
  border-radius: 10px; padding: 14px;
  border: 1px solid rgba(0,0,0,0.06);
}
.dc-sage  { background: rgba(143,175,138,0.12); }
.dc-blush { background: rgba(232,184,168,0.15); }
.dc-gold  { background: rgba(196,163,90,0.1); }
.dc-head {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text); margin-bottom: 12px;
}
.dc-donut-wrap { display: flex; align-items: center; gap: 10px; }
.dc-donut { width: 60px; height: 60px; flex-shrink: 0; }
.anim-dash { transform-origin: 50% 50%; }
.dc-legend { font-size: 0.64rem; line-height: 1.6; }
.dc-legend div { display: flex; align-items: center; gap: 4px; color: var(--text-soft); }
.dc-legend b { color: var(--text); }
.dc-legend small { margin-left: auto; color: var(--text-soft); }
.dcl { display: inline-block; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dc-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.dc-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 6px 4px; background: white; border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.04);
}
.dc-val { font-size: 1rem; font-weight: 700; color: var(--text); }
.dc-val.warn-v { color: var(--amber-w); }
.dc-lbl { font-size: 0.58rem; color: var(--text-soft); text-align: center; margin-top: 2px; }
.dc-finance { font-size: 0.72rem; }
.dcf-row {
  display: flex; justify-content: space-between;
  margin-bottom: 6px; color: var(--text-soft);
}
.dcf-neg { color: var(--red-s); font-weight: 600; }
.dcf-pos { color: var(--green-ok); font-weight: 600; }
.dcf-div { height: 1px; background: var(--border); margin: 8px 0; }
.dcf-bal { display: flex; justify-content: space-between; align-items: center; }
.dcf-big { font-size: 1rem; font-weight: 700; color: var(--green-ok); font-family: var(--font-serif); }

/* Filters */
.demo-filters {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  margin-bottom: 16px;
}
.dfilter-search {
  flex: 1; min-width: 200px; padding: 7px 14px;
  border-radius: 8px; border: 1px solid var(--border);
  font-size: 0.75rem; color: var(--text-soft);
}
.dfilter-btn {
  padding: 6px 12px; border-radius: 8px;
  border: 1px solid var(--border); font-size: 0.72rem;
  color: var(--text-soft); white-space: nowrap;
}
.dfilter-count {
  margin-left: auto; font-size: 0.72rem;
  color: var(--text-soft); font-weight: 500;
}

/* Table */
.demo-table { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; font-size: 0.75rem; }
.dt-head {
  display: grid; grid-template-columns: 2fr 1.5fr 1.5fr 1.2fr 0.8fr 0.8fr;
  padding: 8px 14px; background: #F0EDE8;
  font-weight: 600; font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--text-soft);
}
.dt-row {
  display: grid; grid-template-columns: 2fr 1.5fr 1.5fr 1.2fr 0.8fr 0.8fr;
  padding: 9px 14px; align-items: center;
  border-top: 1px solid var(--border);
  transition: background 0.15s;
}
.dt-row:hover { background: #FDFCFB; }
.dt-name { font-weight: 500; color: var(--text); font-size: 0.78rem; }
.dt-tag {
  display: inline-flex; padding: 2px 8px; border-radius: 100px;
  font-size: 0.65rem; font-weight: 500; width: fit-content;
}
.dt-badge {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 8px; border-radius: 100px; font-size: 0.68rem;
  font-weight: 500; width: fit-content;
}
.dt-badge.confirmed { background: rgba(74,154,106,0.12); color: #2D6B47; }
.dt-badge.pending   { background: rgba(200,160,48,0.12); color: #8B6914; }
.dt-badge.unseen    { background: rgba(0,0,0,0.06); color: #777; }
.dt-dash { color: var(--text-soft); }
.dt-allergy { color: var(--amber-w); font-size: 0.7rem; font-weight: 500; }
.dt-bus  { color: var(--text-soft); font-size: 0.72rem; }
.dt-price{ font-weight: 500; color: var(--text); }

/* Tables panel */
.tables-body { padding: 0 !important; display: flex !important; }
.demo-tables-sidebar {
  width: 220px; flex-shrink: 0;
  border-right: 1px solid var(--border);
  background: var(--blush-light);
  padding: 18px;
}
.dts-head {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--text); margin-bottom: 4px;
}
.dts-count {
  background: var(--aubergine); color: white;
  border-radius: 100px; padding: 1px 7px;
  font-size: 0.65rem;
}
.dts-sub { font-size: 0.65rem; color: var(--text-soft); margin-bottom: 12px; }
.dts-list { display: flex; flex-direction: column; gap: 6px; }
.dts-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px; background: white;
  border: 1px solid var(--border); cursor: grab;
  transition: box-shadow 0.15s;
}
.dts-item:hover, .dts-item.active-item { box-shadow: var(--shadow); }
.dts-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: #DBEAFE; display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem; font-weight: 600;
  flex-shrink: 0;
}
.dts-iname { font-size: 0.72rem; font-weight: 500; color: var(--text); }
.dts-igroup { font-size: 0.62rem; color: var(--text-soft); }
.demo-tables-canvas { flex: 1; padding: 18px; overflow-x: auto; }
.dtc-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 16px;
}
.dtc-ia-btn {
  padding: 8px 18px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  background: linear-gradient(135deg, #E8B8A8, #C4A35A);
  color: white;
  box-shadow: 0 4px 16px rgba(196,163,90,0.4);
  transition: transform 0.2s;
}
.dtc-ia-btn:hover { transform: translateY(-1px); }

/* Presidencial */
.dtc-pres-wrap { text-align: center; margin-bottom: 16px; }
.dtc-pres {
  display: inline-flex; flex-direction: column;
  align-items: center; gap: 4px;
}
.dtc-pres-seats {
  display: flex; gap: 6px;
  background: rgba(196,163,90,0.1);
  border: 1.5px solid rgba(196,163,90,0.4);
  border-radius: 10px; padding: 8px 16px;
}
.pres-seat {
  width: 26px; height: 26px; border-radius: 6px;
  background: white; border: 1px solid rgba(196,163,90,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 600; color: var(--gold);
}
.dtc-table-label {
  font-size: 0.68rem; font-weight: 600; color: var(--text); margin-top: 4px;
}
.dtc-table-label span { color: var(--text-soft); font-weight: 400; margin-left: 4px; }
.ok-count { color: var(--green-ok) !important; }

/* Round tables */
.dtc-rounds { display: flex; gap: 24px; flex-wrap: wrap; padding-bottom: 8px; }
.dtc-rtable { text-align: center; }
.dtr-ring {
  position: relative; width: 90px; height: 90px;
  margin: 0 auto 6px;
  border: 2px solid rgba(143,175,138,0.4);
  border-radius: 50%;
  background: rgba(143,175,138,0.05);
}
.dtr-seat {
  position: absolute; width: 18px; height: 18px; border-radius: 50%;
  background: #E8E8E8; border: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.52rem; font-weight: 700;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%)
    rotate(var(--a))
    translateY(-39px)
    rotate(calc(-1 * var(--a)));
}
.dtr-seat.occ { border: 1.5px solid rgba(0,0,0,0.12); }
.blue-seat   { background: #BFDBFE; color: #1D4ED8; }
.pink-seat   { background: #FCE7F3; color: #9D174D; }
.amber-seat  { background: #FEF3C7; color: #92400E; }
.green-seat  { background: #D1FAE5; color: #065F46; }
.dtr-group-tag {
  display: inline-flex; padding: 2px 8px; border-radius: 100px;
  font-size: 0.6rem; font-weight: 500; margin-top: 4px;
}

/* ===== ECONOMIA FEATURE CARD ===== */
.feat-economy-mini {
  width: 360px; background: var(--ivory);
  border-radius: 10px; border: 1px solid var(--border);
  overflow: hidden;
}
.feco-kpis {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.feco-kpi {
  padding: 10px 12px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 2px;
}
.feco-kpi:last-child { border-right: none; }
.feco-kpi-lbl { font-size: 0.6rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.feco-kpi-val { font-size: 0.9rem; font-weight: 700; font-family: var(--font-serif); }
.feco-neg { color: var(--red-s); }
.feco-pos { color: var(--green-ok); }
.feco-bal { color: var(--green-ok); }
.feco-rows {}
.feco-row {
  display: grid; grid-template-columns: 80px 1fr auto;
  padding: 7px 12px; font-size: 0.72rem;
  border-bottom: 1px solid var(--border);
  align-items: center; gap: 8px;
}
.feco-row:last-child { border-bottom: none; }
.feco-cat-pill {
  display: inline-flex; padding: 1px 8px;
  border-radius: 100px; font-size: 0.6rem; font-weight: 500;
  background: rgba(196,163,90,0.13); color: #8B6914;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.feco-concept { color: var(--text-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.feco-amount { font-weight: 600; color: var(--red-s); white-space: nowrap; font-size: 0.72rem; }

.feat-economy-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.feat-economy-pills span {
  padding: 5px 14px;
  background: rgba(196,163,90,0.1);
  border: 1px solid rgba(196,163,90,0.25);
  border-radius: 100px; font-size: 0.78rem; color: var(--text);
}

/* ===== ECONOMIA DEMO TAB ===== */
.econ-kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 18px; }
.econ-kpi-card {
  border-radius: 10px; padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(0,0,0,0.06);
}
.econ-icon-wrap {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.econ-kpi-danger { background: rgba(192,64,64,0.07); }
.econ-kpi-danger .econ-icon-wrap { background: rgba(192,64,64,0.14); color: var(--red-s); }
.econ-kpi-success { background: rgba(74,154,106,0.07); }
.econ-kpi-success .econ-icon-wrap { background: rgba(74,154,106,0.14); color: var(--green-ok); }
.econ-kpi-balance { background: rgba(74,154,106,0.07); }
.econ-kpi-balance .econ-icon-wrap { background: rgba(74,154,106,0.14); color: var(--green-ok); }
.ekc-lbl { font-size: 0.63rem; color: var(--text-soft); }
.ekc-val { font-size: 1rem; font-weight: 700; font-family: var(--font-serif); }
.ekc-red { color: var(--red-s); }
.ekc-green { color: var(--green-ok); }

.econ-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.econ-block { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.econ-block-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 13px; background: rgba(0,0,0,0.025);
  border-bottom: 1px solid var(--border);
  font-size: 0.74rem; font-weight: 600; color: var(--text);
}
.econ-add-btn {
  padding: 2px 10px; border-radius: 100px;
  background: var(--aubergine); color: white; font-size: 0.6rem;
}
.econ-table-head {
  display: grid; grid-template-columns: 80px 1fr auto;
  padding: 5px 12px; gap: 8px;
  background: #F0EDE8; border-bottom: 1px solid var(--border);
  font-size: 0.6rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-soft);
}
.econ-table-row {
  display: grid; grid-template-columns: 80px 1fr auto;
  padding: 6px 12px; gap: 8px;
  font-size: 0.71rem; border-bottom: 1px solid var(--border); align-items: center;
}
.econ-alt { background: rgba(0,0,0,0.015); }
.econ-cat-tag {
  display: inline-flex; padding: 1px 7px;
  border-radius: 100px; font-size: 0.6rem; font-weight: 500;
  background: rgba(196,163,90,0.12); color: #8B6914;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 76px;
}
.econ-concept { color: var(--text-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.71rem; }
.eco-neg { color: var(--red-s); font-weight: 600; white-space: nowrap; }
.eco-pos { color: var(--green-ok); font-weight: 600; white-space: nowrap; }
.econ-table-total {
  display: flex; justify-content: space-between;
  padding: 7px 12px; font-size: 0.71rem; font-weight: 600;
  background: rgba(192,64,64,0.05); border-top: 1px solid var(--border);
}
.econ-sub-label {
  padding: 6px 12px; font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-soft);
  background: rgba(0,0,0,0.02); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.econ-sub-mt { border-top: 1px solid var(--border); }
.econ-sync-badge {
  padding: 1px 7px; background: rgba(74,154,106,0.14);
  color: var(--green-ok); border-radius: 100px; font-size: 0.58rem;
  text-transform: none; letter-spacing: 0;
}
.econ-gift-row {
  display: flex; justify-content: space-between;
  padding: 5px 12px; font-size: 0.71rem;
  border-bottom: 1px solid var(--border); color: var(--text-soft);
}
.econ-fade { opacity: 0.6; font-style: italic; }
.econ-total-ingresos {
  display: flex; justify-content: space-between;
  padding: 7px 12px; font-size: 0.71rem; font-weight: 600;
  background: rgba(74,154,106,0.07); border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .feat-economy-mini { display: none; }
  .econ-split { grid-template-columns: 1fr; }
  .econ-kpi-row { grid-template-columns: 1fr; }
}

/* ===== PROVEEDORES: badges reutilizados en tarjeta y demo ===== */
.prov-badge {
  display: inline-flex; align-items: center;
  padding: 2px 8px; border-radius: 100px; font-size: 0.62rem;
  font-weight: 500; white-space: nowrap;
}
.prov-badge.sin_contactar { background: rgba(0,0,0,0.05); color: #999; }
.prov-badge.contactado    { background: rgba(59,130,246,0.12); color: #1D4ED8; }
.prov-badge.presupuesto   { background: rgba(200,160,48,0.12); color: #8B6914; }
.prov-badge.recibido      { background: rgba(139,92,246,0.13); color: #6D28D9; }
.prov-badge.contratado    { background: rgba(74,154,106,0.12); color: #2D6B47; }
.prov-badge.descartado    { background: rgba(192,64,64,0.1); color: #B91C1C; }
.prov-stars { color: var(--gold); font-size: 0.72rem; letter-spacing: 1px; white-space: nowrap; }

/* ===== PROVEEDORES FEATURE CARD ===== */
.feat-proveedores-mini {
  width: 360px; background: var(--ivory);
  border-radius: 10px; border: 1px solid var(--border);
  overflow: hidden;
}
.fprov-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-bottom: 1px solid var(--border);
}
.fprov-stat {
  padding: 10px 10px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 2px; text-align: center;
}
.fprov-stat:last-child { border-right: none; }
.fprov-stat-lbl { font-size: 0.56rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.03em; }
.fprov-stat-val { font-size: 1rem; font-weight: 700; font-family: var(--font-serif); color: var(--text); }
.fprov-stat-val.green { color: var(--green-ok); }
.fprov-stat-val.violet { color: #7C3AED; }
.fprov-row {
  display: grid; grid-template-columns: 1fr auto auto;
  padding: 8px 12px; font-size: 0.74rem; gap: 8px;
  border-bottom: 1px solid var(--border); align-items: center;
}
.fprov-row:last-child { border-bottom: none; }
.fprov-name { font-weight: 500; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fprov-price { font-weight: 600; color: var(--text); white-space: nowrap; font-size: 0.72rem; }

.feat-proveedores-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.feat-proveedores-pills span {
  padding: 5px 14px;
  background: rgba(143,175,138,0.12);
  border: 1px solid rgba(143,175,138,0.3);
  border-radius: 100px; font-size: 0.78rem; color: var(--text);
}

/* ===== PROVEEDORES DEMO TAB ===== */
.prov-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 18px; }
.prov-stat-card {
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 12px;
}
.psc-lbl { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-soft); margin-bottom: 4px; }
.psc-val { font-size: 1.15rem; font-weight: 700; font-family: var(--font-serif); color: var(--text); }
.psc-val.green { color: var(--green-ok); }
.psc-val.blue { color: #3B82F6; }
.psc-val.violet { color: #7C3AED; }

.prov-cats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.prov-cat-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.prov-cat-head {
  background: #F0EDE8; padding: 9px 14px;
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 600; font-size: 0.8rem; color: var(--text);
}
.prov-cat-head span { font-size: 0.62rem; color: var(--text-soft); font-weight: 400; }
.prov-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-top: 1px solid var(--border); font-size: 0.75rem;
}
.prov-item-name { flex: 1; font-weight: 500; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.prov-item-price { font-weight: 600; color: var(--text); font-size: 0.75rem; white-space: nowrap; }

@media (max-width: 900px) {
  .feat-proveedores-mini { display: none; }
  .prov-cats-grid { grid-template-columns: 1fr; }
  .prov-stats-row { grid-template-columns: 1fr 1fr; }
}

/* ===== RSVP FEATURE CARD ===== */
.feat-rsvp-mini {
  background: var(--ivory); border-radius: 8px; padding: 14px;
  border: 1px solid var(--border);
}
.rsvp-link {
  font-size: 0.7rem; color: var(--text-soft); background: white;
  border: 1px solid var(--border); border-radius: 6px;
  padding: 7px 10px; margin-bottom: 10px; font-family: monospace;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.rsvp-status {
  font-size: 0.8rem; font-weight: 500; color: var(--green-ok);
  display: flex; align-items: center; gap: 6px; margin-bottom: 6px;
}
.rsvp-status:last-child { margin-bottom: 0; }
.rsvp-status.amber { color: var(--amber-w); }

/* ===== PRICING ===== */
#precio { padding: 100px 0; }
.pricing-wrap {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 60px; align-items: start;
}
.pricing-card {
  background: white; border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(196,163,90,0.25);
}
.pricing-top {
  padding: 40px; text-align: center;
  background: linear-gradient(135deg, rgba(61,31,46,0.03), rgba(196,163,90,0.06));
  border-bottom: 1px solid var(--border);
}
.pricing-badge {
  display: inline-flex; padding: 4px 14px;
  background: rgba(196,163,90,0.12);
  border: 1px solid rgba(196,163,90,0.3);
  border-radius: 100px; font-size: 0.78rem; color: #8B6914;
  margin-bottom: 16px;
}
.pricing-name {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 300; color: var(--aubergine); margin-bottom: 4px;
}
.pricing-desc { font-size: 0.88rem; color: var(--text-soft); margin-bottom: 28px; }
.pricing-price-wrap { margin-bottom: 28px; }
.price-old {
  font-size: 1.3rem; text-decoration: line-through;
  color: var(--text-soft); opacity: 0.6; margin-bottom: 4px;
}
.price-new {
  font-family: var(--font-serif);
  font-size: 3.5rem; font-weight: 300; color: var(--aubergine);
  line-height: 1;
}
.price-tag {
  font-size: 0.82rem; color: var(--text-soft); margin-top: 4px;
}
.btn-pricing {
  width: 100%; margin-bottom: 16px;
  font-size: 1.05rem; padding: 16px;
}
.pricing-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.78rem; color: var(--text-soft);
}
.pricing-features { padding: 32px 40px; }
.pf-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.9rem; color: var(--text);
}
.pf-item:last-child { border-bottom: none; }

/* Pricing context */
.pricing-context h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 300; color: var(--aubergine);
  margin-bottom: 20px;
}
.pricing-context p {
  font-size: 1rem; line-height: 1.7; color: var(--text-soft); margin-bottom: 16px;
}
.context-vs {
  display: flex; align-items: center; gap: 20px;
  margin-top: 32px; flex-wrap: wrap;
}
.vs-item {
  display: flex; flex-direction: column; align-items: center;
  background: white; border-radius: 12px; padding: 20px 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.vs-item.highlight {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(61,31,46,0.02), rgba(196,163,90,0.06));
}
.vs-price { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; }
.vs-price.red { color: var(--red-s); }
.vs-price.green { color: var(--green-ok); }
.vs-lbl { font-size: 0.8rem; color: var(--text-soft); margin-top: 4px; text-align: center; }
.vs-sep { font-size: 0.9rem; color: var(--text-soft); font-style: italic; }

/* ===== FAQ ===== */
#faq { padding: 100px 0; background: #F5F2EF; }
.faq-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: white;
  box-shadow: var(--shadow);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 500; color: var(--text);
  transition: background 0.15s;
}
.faq-q:hover { background: var(--ivory); }
.faq-q.open { color: var(--aubergine); }
.faq-arrow { font-size: 1.1rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 24px;
}
.faq-a.open { max-height: 200px; padding: 0 24px 20px; }
.faq-a p { font-size: 0.92rem; line-height: 1.7; color: var(--text-soft); }

/* ===== FINAL CTA ===== */
#final-cta {
  padding: 120px 0;
  background: var(--aubergine);
  position: relative; overflow: hidden; text-align: center;
}
.cta-bg-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(196,163,90,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(232,184,168,0.12) 0%, transparent 60%);
}
.final-cta-inner { position: relative; z-index: 1; }
.cta-rings-deco {
  font-size: 2rem; letter-spacing: -8px; color: var(--gold);
  margin-bottom: 24px; display: block;
}
.final-cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1;
  color: var(--ivory); margin-bottom: 20px;
}
.final-cta-inner h2 em { font-style: italic; color: var(--gold); }
.final-cta-inner > p {
  font-size: 1.05rem; line-height: 1.7;
  color: rgba(250,248,245,0.7); max-width: 520px;
  margin: 0 auto 36px;
}
.cta-price-display {
  display: flex; align-items: baseline; justify-content: center; gap: 14px;
  margin-bottom: 32px;
}
.cta-old { text-decoration: line-through; color: rgba(250,248,245,0.4); font-size: 1.4rem; }
.cta-new {
  font-family: var(--font-serif);
  font-size: 3rem; font-weight: 300; color: var(--gold);
}
.cta-tag { font-size: 0.82rem; color: rgba(250,248,245,0.5); }
.btn-large { font-size: 1.1rem; padding: 18px 44px; }
.cta-guarantee {
  margin-top: 20px; font-size: 0.85rem;
  color: rgba(250,248,245,0.5);
}

/* ===== FOOTER ===== */
#footer {
  background: #2D1520; padding: 48px 0 28px;
}
.footer-inner {
  display: flex; align-items: flex-start; gap: 48px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-brand img { opacity: 0.8; filter: brightness(2); margin-bottom: 10px; }
.footer-brand p { font-size: 0.82rem; color: rgba(250,248,245,0.4); }
.footer-links, .footer-legal {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links a, .footer-legal a {
  font-size: 0.82rem; color: rgba(250,248,245,0.5);
  transition: color 0.2s;
}
.footer-links a:hover, .footer-legal a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem; color: rgba(250,248,245,0.25);
  border-top: 1px solid rgba(250,248,245,0.06);
  padding-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
    padding: 110px 40px 60px;
  }
  .hero-mockup { max-width: 600px; margin: 0 auto; }
  .mock-cards { grid-template-columns: 1fr 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feat-large { grid-column: span 2; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .pricing-card { max-width: 420px; }
}

@media (max-width: 768px) {
  #nav { padding: 0 20px; }
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }

  #hero { padding: 100px 20px 60px; }
  .hero-title { font-size: 2.8rem; }
  .float-1 { top: -12px; right: 8px; font-size: 0.72rem; }
  .float-2 { display: none; }
  .float-3 { display: none; }
  .mock-cards { grid-template-columns: 1fr; }

  .tagline-strip { display: none; }

  #funcionalidades { padding: 60px 0; }
  .container { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-large { grid-column: span 1; }
  .feat-card-privacy { flex-wrap: wrap; }
  .feat-card-privacy .feat-privacy { flex-basis: 100%; width: 100%; margin-left: 0 !important; margin-top: 12px; }

  #app-demo { padding: 60px 0; }
  .demo-tabs {
    gap: 6px; flex-wrap: nowrap; justify-content: flex-start;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding: 2px 4px 8px; margin: 0 -20px 20px; padding-left: 20px; padding-right: 20px;
    scrollbar-width: none;
  }
  .demo-tabs::-webkit-scrollbar { display: none; }
  .demo-tab { padding: 8px 14px; font-size: 0.8rem; flex-shrink: 0; }
  .demo-cards-row { grid-template-columns: 1fr; }
  .demo-nav-bar { display: none; }
  .tables-body { flex-direction: column; }
  .demo-tables-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }

  #precio { padding: 60px 0; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .pricing-card { max-width: 100%; }
  .context-vs { flex-direction: column; }

  #faq { padding: 60px 0; }
  #final-cta { padding: 80px 0; }
  .cta-price-display { flex-wrap: wrap; }

  .demo-tab { font-size: 0.75rem; padding: 7px 12px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-ghost { text-align: center; }
  .dt-head, .dt-row { grid-template-columns: 2fr 1.2fr 1.2fr; }
  .dt-head span:nth-child(4),
  .dt-head span:nth-child(5),
  .dt-head span:nth-child(6),
  .dt-row span:nth-child(4),
  .dt-row span:nth-child(5),
  .dt-row span:nth-child(6) { display: none; }

  .prov-stars { display: none; }
  .prov-item { gap: 6px; padding: 8px 10px; }
  .prov-cat-head { padding: 8px 10px; font-size: 0.75rem; }
}

/* ===== PRICING SIDE FEATURES ===== */
.pricing-wrap {
  grid-template-columns: 400px 1fr !important;
  align-items: start;
}
.pricing-features-side {
  padding: 40px 0;
}
.pricing-features-side .pf-item {
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.95rem; color: var(--text);
}
.pricing-features-side .pf-item:last-child { border-bottom: none; }
@media (max-width: 768px) {
  .pricing-wrap { grid-template-columns: 1fr !important; }
  .pricing-features-side { padding: 24px 0 0; }
}
