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

:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-hover: #1E40AF;
  --primary-glow: rgba(37,99,235,0.28);
  --accent: #0D9488;
  --accent-light: rgba(13,148,136,0.12);
  --navy: #070F1C;
  --navy-mid: #0D1E36;
  --dark: #0F172A;
  --gray-900: #1E293B;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-400: #94A3B8;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;
  --white: #FFFFFF;
  --red-soft: #FEF2F2;
  --red-stroke: #F87171;
  --amber: #FBBF24;
  --green: #34D399;
  --border: #E2E8F0;
  --shadow-sm: 0 2px 6px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04), 0 0 0 1px rgba(37,99,235,0.015);
  --shadow-md: 0 8px 28px rgba(15,23,42,0.10), 0 2px 8px rgba(15,23,42,0.05);
  --shadow-lg: 0 28px 72px rgba(15,23,42,0.14), 0 10px 28px rgba(15,23,42,0.07);
  --shadow-blue: 0 8px 28px var(--primary-glow);
  --shadow-hero-card: 0 40px 100px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.07);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); font-weight: 800; color: var(--dark); letter-spacing: -0.035em; line-height: 1.06; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 800; color: var(--dark); letter-spacing: -0.025em; line-height: 1.12; }
h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
p { color: var(--gray-600); line-height: 1.72; }
a { text-decoration: none; color: inherit; }

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 108px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--primary);
  margin-bottom: 14px; padding: 5px 14px;
  background: rgba(37,99,235,0.07);
  border-radius: 20px; border: 1px solid rgba(37,99,235,0.16);
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.06rem; color: var(--gray-600); max-width: 560px; }
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  font-size: 0.96rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: all 0.22s ease;
  font-family: inherit; letter-spacing: -0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white); box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-hover) 100%);
  transform: translateY(-2px); box-shadow: 0 14px 40px var(--primary-glow);
}
.btn-mint {
  background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
  color: var(--white); box-shadow: 0 8px 28px rgba(13,148,136,0.35);
}
.btn-mint:hover {
  background: linear-gradient(135deg, #0F766E 0%, #115E59 100%);
  transform: translateY(-2px); box-shadow: 0 14px 40px rgba(13,148,136,0.45);
}
.btn-ghost {
  background: transparent; color: var(--dark);
  border: 1.5px solid rgba(37,99,235,0.22);
}
.btn-ghost:hover {
  background: rgba(37,99,235,0.05);
  border-color: var(--primary); color: var(--primary);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white); color: var(--primary); font-weight: 700;
}
.btn-white:hover {
  background: var(--gray-50); transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid rgba(37,99,235,0.35);
}
.btn-outline:hover {
  background: rgba(37,99,235,0.05); border-color: var(--primary);
  transform: translateY(-2px);
}
.nav-cta .btn { padding: 10px 22px; font-size: 0.9rem; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-login {
  color: var(--gray-600); font-size: 0.91rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-login:hover { color: var(--primary); }
.mobile-menu .nav-login {
  color: var(--gray-700); font-weight: 600; font-size: 1.05rem;
}

/* ── BADGE (hero) ── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: rgba(37,99,235,0.07);
  color: var(--primary);
  border-radius: 24px; font-size: 0.82rem; font-weight: 600;
  border: 1px solid rgba(37,99,235,0.18);
  letter-spacing: 0.2px;
}
.badge-hero {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37,99,235,0.22);
  padding: 8px 18px;
  font-size: 0.84rem;
  box-shadow: 0 6px 24px rgba(37,99,235,0.18), inset 0 1px 0 rgba(255,255,255,0.8);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(52,211,153,0.6);
  animation: blink 2s infinite;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(37,99,235,0.1);
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 6px 28px rgba(15,23,42,0.08), 0 1px 0 rgba(37,99,235,0.06);
  border-bottom-color: rgba(37,99,235,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 1.08rem; color: var(--dark);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease;
}
.nav-logo:hover { transform: translateY(-1px); opacity: 0.94; }
.nav-logo:focus-visible {
  outline: 2px solid rgba(37,99,235,0.5);
  outline-offset: 4px;
  border-radius: 10px;
}
.nav-logo .logo-accent { color: var(--primary); }
.nav-logo .brand-text { white-space: nowrap; }
.brand-icon {
  width: 42px; height: 42px;
  display: block; flex-shrink: 0;
  filter: drop-shadow(0 6px 14px rgba(37,99,235,0.28));
  transition: filter 0.25s ease, transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.nav-logo:hover .brand-icon {
  filter: drop-shadow(0 8px 18px rgba(37,99,235,0.38));
  transform: rotate(-3deg);
}
.brand-icon-sm { width: 38px; height: 38px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { color: var(--gray-600); font-size: 0.91rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; width: 32px; height: 32px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: transform 0.32s cubic-bezier(0.6,0.05,0.28,0.97), opacity 0.2s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0.2); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; background: var(--white); padding: 12px 24px 28px; border-top: 1px solid var(--border); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: var(--gray-600); padding: 13px 0; font-size: 1rem; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ── HERO ── */
#hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 35%, rgba(37,99,235,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(13,148,136,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(37,99,235,0.08) 0%, transparent 60%),
    linear-gradient(165deg, #EFF6FF 0%, #F5F9FF 45%, #FFFFFF 100%);
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 96px; position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(37,99,235,0.09) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 75%);
}
#hero::after {
  content: '';
  position: absolute; top: -120px; right: -160px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(37,99,235,0.22) 0%, transparent 65%);
  pointer-events: none; filter: blur(8px);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.hero-text { animation: heroIn 0.85s ease both; }
.hero-badge { margin-bottom: 28px; }
.hero-text h1 { color: var(--dark); margin-bottom: 24px; }
.gradient-text {
  background: linear-gradient(135deg, #2563EB 0%, #0D9488 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text > p { font-size: 1.18rem; color: var(--gray-700); margin-bottom: 40px; max-width: 500px; line-height: 1.7; font-weight: 400; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 0.81rem; color: var(--gray-400); letter-spacing: 0.3px; }

.hero-trust {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid rgba(37,99,235,0.08);
}
.trust-avatars { display: flex; align-items: center; }
.trust-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.72rem; font-weight: 800;
  border: 2.5px solid var(--white);
  margin-left: -10px; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15,23,42,0.10);
  letter-spacing: 0.2px;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-avatar-more {
  background: var(--gray-100); color: var(--gray-600);
  font-size: 0.84rem; font-weight: 700;
}
.trust-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; }
.trust-rating { display: flex; align-items: center; gap: 8px; }
.trust-stars { color: var(--amber); font-size: 0.86rem; letter-spacing: 1px; }
.trust-rating strong { font-size: 0.84rem; color: var(--dark); font-weight: 700; }
.trust-meta { font-size: 0.78rem; color: var(--gray-600); font-weight: 500; }

/* Hero right column */
.hero-visual {
  position: relative;
  animation: heroIn 0.85s ease 0.18s both;
}
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 16px; padding: 13px 17px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 14px 36px rgba(37,99,235,0.16), 0 2px 8px rgba(15,23,42,0.06);
  z-index: 2;
}
.hero-float-badge strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--dark); line-height: 1.1; font-feature-settings: 'tnum'; }
.hero-float-badge span { display: block; font-size: 0.71rem; color: var(--gray-400); margin-top: 2px; }
.float-icon {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-float-badge-1 { top: -16px; left: -22px; animation: float 6.5s ease-in-out infinite; }
.hero-float-badge-2 { bottom: 24px; right: -16px; animation: float 6.5s ease-in-out -3.2s infinite; }
@media (max-width: 1100px) {
  .hero-float-badge-1 { left: -8px; }
  .hero-float-badge-2 { right: -4px; }
}

/* Chat mockup */
.chat-mockup {
  background: var(--white); border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(37,99,235,0.13), 0 4px 16px rgba(0,0,0,0.05), 0 0 0 1px var(--border);
  position: relative; z-index: 1;
}
.chat-header {
  background: var(--gray-50); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
}
.chat-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #3B82F6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.74rem; font-weight: 800; color: white;
  box-shadow: 0 4px 12px rgba(37,99,235,0.35);
}
.chat-header-info strong { display: block; color: var(--dark); font-size: 0.87rem; font-weight: 700; }
.chat-header-info span { font-size: 0.72rem; color: var(--accent); font-weight: 600; }
.chat-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.msg { max-width: 84%; padding: 11px 15px; border-radius: 16px; font-size: 0.86rem; line-height: 1.55; }
.msg-bot { background: var(--gray-100); color: var(--gray-900); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg-user {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; border-bottom-right-radius: 4px; align-self: flex-end;
}
.chat-input {
  padding: 12px 16px; background: var(--gray-50);
  border-top: 1px solid var(--border); display: flex; gap: 10px; align-items: center;
}
.chat-input-field {
  flex: 1; background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 9px 14px; color: var(--gray-400); font-size: 0.84rem;
}
.chat-send {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 12px rgba(37,99,235,0.35);
}

/* ── STATS ── */
#stats {
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(13,148,136,0.18) 0%, transparent 70%),
    linear-gradient(135deg, #1D4ED8 0%, #2563EB 55%, #0284C7 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}
#stats::after {
  content: '';
  position: absolute; top: -40%; left: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(96,165,250,0.18) 0%, transparent 65%);
  pointer-events: none; filter: blur(20px);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 24px 20px; border-right: 1px solid rgba(255,255,255,0.14); }
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.stat-number {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 800; color: white; line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.035em; font-feature-settings: 'tnum';
}
.stat-number em { font-style: normal; opacity: 0.78; font-size: 0.65em; margin-left: 2px; font-weight: 700; }
.stat-label { color: rgba(255,255,255,0.72); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.2px; }

/* ── HIGHLIGHTS ── */
#highlights {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.highlights-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.highlight-block {
  display: flex; align-items: center; gap: 20px;
  padding: 32px 40px; border-right: 1px solid var(--border);
  transition: background 0.25s ease; cursor: default;
}
.highlight-block:last-child { border-right: none; }
.highlight-block:hover { background: #EFF6FF; }
.highlight-icon {
  width: 52px; height: 52px; background: #EFF6FF; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary); transition: all 0.25s ease;
}
.highlight-block:hover .highlight-icon { background: var(--primary); color: white; box-shadow: var(--shadow-blue); }
.highlight-content strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.highlight-content span { font-size: 0.82rem; color: var(--gray-600); line-height: 1.45; }

/* ── PROBLEMA ── */
#problema { background: var(--gray-50); }
.problema-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pain-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  border-left: 3px solid var(--red-stroke);
  transition: box-shadow 0.22s, transform 0.22s;
}
.pain-item:hover { box-shadow: var(--shadow-md); border-color: rgba(248,113,113,0.4); }
.pain-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--red-soft); color: #EF4444;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pain-item strong { display: block; font-size: 0.93rem; margin-bottom: 4px; color: var(--dark); }
.pain-item span { font-size: 0.87rem; color: var(--gray-600); }

.solution-box {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--r-xl); padding: 44px;
  box-shadow: 0 28px 72px rgba(37,99,235,0.32);
  position: relative; overflow: hidden;
}
.solution-box::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; background: rgba(255,255,255,0.04); border-radius: 50%;
}
.solution-box::after {
  content: ''; position: absolute; bottom: -80px; left: -40px;
  width: 240px; height: 240px; background: rgba(255,255,255,0.03); border-radius: 50%;
}
.solution-box h3 { color: white; font-size: 1.4rem; margin-bottom: 14px; position: relative; z-index: 1; }
.solution-box > p { color: rgba(255,255,255,0.74); margin-bottom: 28px; position: relative; z-index: 1; }
.solution-points { list-style: none; display: flex; flex-direction: column; gap: 13px; position: relative; z-index: 1; }
.solution-points li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.9); font-size: 0.92rem; font-weight: 500; }
.check {
  width: 22px; height: 22px; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green); font-size: 0.68rem; font-weight: 900;
}

/* ── FUNCIONALIDADES ── */
#funcionalidades { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  background: var(--white); border-radius: var(--r-lg); padding: 36px 32px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: opacity 0.6s ease, transform 0.3s cubic-bezier(0.25,0.8,0.25,1),
              border-color 0.28s, box-shadow 0.28s;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(37,99,235,0.2);
  box-shadow: 0 28px 60px rgba(37,99,235,0.12);
  transform: translateY(-7px);
}
.feature-icon {
  width: 56px; height: 56px; background: #EFF6FF; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--primary);
  transition: all 0.28s ease;
}
.feature-card:hover .feature-icon { background: var(--primary); color: white; box-shadow: var(--shadow-blue); transform: scale(1.08); }
.feature-card h3 { margin-bottom: 10px; font-size: 1.06rem; }
.feature-card p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 22px; }

/* Feature mini-mockups */
.feature-preview {
  margin-top: auto;
  background: linear-gradient(180deg, var(--gray-50) 0%, #FFFFFF 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.feature-card { display: flex; flex-direction: column; }

/* 1) 24/7 timeline */
.preview-247 { padding: 12px 14px; }
.preview-247-label {
  display: flex; justify-content: space-between;
  font-size: 0.6rem; color: var(--gray-400); font-weight: 700;
  letter-spacing: 0.4px; margin-bottom: 6px;
  text-transform: uppercase;
}
.preview-247-track {
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, rgba(37,99,235,0.18), rgba(13,148,136,0.18));
  position: relative; margin-bottom: 8px;
  overflow: hidden;
}
.preview-247-pulse {
  position: absolute; top: 0; bottom: 0; width: 28px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
  animation: pulseSlide 2.6s linear infinite;
}
@keyframes pulseSlide {
  0% { left: -28px; } 100% { left: 100%; }
}
.preview-247-dots {
  display: grid; grid-template-columns: repeat(24, 1fr); gap: 2px;
}
.preview-247-dots > span {
  height: 8px; border-radius: 1px; background: rgba(37,99,235,0.18);
}
.preview-247-dots > span:nth-child(3),
.preview-247-dots > span:nth-child(9),
.preview-247-dots > span:nth-child(14),
.preview-247-dots > span:nth-child(19),
.preview-247-dots > span:nth-child(22) { background: var(--primary); height: 12px; margin-top: -2px; }

/* 2) Calendar mini */
.preview-cal { padding: 10px 12px; }
.preview-cal-head, .preview-cal-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
}
.preview-cal-head { margin-bottom: 6px; }
.preview-cal-head span {
  font-size: 0.58rem; color: var(--gray-400); font-weight: 700;
  text-align: center; letter-spacing: 0.4px;
}
.preview-cal-grid > span {
  height: 18px; border-radius: 4px;
  background: var(--white); border: 1px solid var(--border);
  font-size: 0.55rem; color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.preview-cal-grid .cal-busy { background: rgba(37,99,235,0.10); border-color: rgba(37,99,235,0.18); }
.preview-cal-grid .cal-active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary); color: white; font-weight: 800;
  box-shadow: 0 2px 8px rgba(37,99,235,0.35);
}

/* 3) Lead bars */
.preview-lead { padding: 12px 14px; display: flex; flex-direction: column; gap: 7px; }
.preview-lead-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 10px; align-items: center;
}
.preview-lead-label { font-size: 0.66rem; color: var(--gray-600); font-weight: 600; }
.preview-lead-bar {
  height: 6px; background: var(--gray-100); border-radius: 3px; overflow: hidden;
  position: relative;
}
.preview-lead-bar > span {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--primary), #0D9488);
  border-radius: 3px;
}

/* 4) CRM card */
.preview-crm { padding: 12px 13px; display: flex; flex-direction: column; gap: 7px; }
.preview-crm-head { display: flex; align-items: center; gap: 9px; }
.preview-crm-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.62rem; font-weight: 800; flex-shrink: 0;
  letter-spacing: 0.2px;
}
.preview-crm-head > div { flex: 1; min-width: 0; }
.preview-crm-head strong { display: block; font-size: 0.78rem; color: var(--dark); font-weight: 700; }
.preview-crm-head span { font-size: 0.62rem; color: var(--gray-400); }
.preview-crm-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(52,211,153,0.15);
  animation: blink 2s infinite;
}
.preview-crm-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.66rem; color: var(--gray-600);
  padding: 4px 8px; background: var(--white);
  border: 1px solid var(--border); border-radius: 5px;
}
.preview-crm-row .ok {
  color: #0D9488; font-weight: 800; font-size: 0.7rem;
}

/* 5) Reminder bubble */
.preview-rem { padding: 14px; background: linear-gradient(180deg, #ECFDF5 0%, #F0FDF4 100%); }
.preview-rem-bubble {
  background: #DCFCE7;
  color: #14532D;
  border-radius: 10px 10px 10px 2px;
  padding: 9px 11px;
  font-size: 0.72rem; line-height: 1.5;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.preview-rem-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.58rem; color: rgba(20,83,45,0.55); margin-top: 5px; font-weight: 600;
}
.preview-rem-meta .check-mark { color: #0EA5E9; font-weight: 800; letter-spacing: -1px; }

/* 6) Chat bubbles */
.preview-chat { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.preview-chat-msg {
  font-size: 0.72rem; line-height: 1.45;
  padding: 7px 11px; border-radius: 12px;
  max-width: 85%;
}
.preview-chat-msg.msg-in {
  background: var(--gray-100); color: var(--gray-900);
  border-bottom-left-radius: 3px;
  align-self: flex-start;
}
.preview-chat-msg.msg-out {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-bottom-right-radius: 3px;
  align-self: flex-end;
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}
.features-grid .feature-card:nth-child(1) { transition-delay: 0ms; }
.features-grid .feature-card:nth-child(2) { transition-delay: 80ms; }
.features-grid .feature-card:nth-child(3) { transition-delay: 160ms; }
.features-grid .feature-card:nth-child(4) { transition-delay: 80ms; }
.features-grid .feature-card:nth-child(5) { transition-delay: 160ms; }
.features-grid .feature-card:nth-child(6) { transition-delay: 240ms; }

/* ── CÓMO FUNCIONA ── */
#como-funciona { background: var(--gray-50); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 36px;
  left: calc(16.66% + 44px); right: calc(16.66% + 44px);
  height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: 0.3;
}
.step-card {
  text-align: center; padding: 36px 24px; background: var(--white);
  border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: box-shadow 0.28s, transform 0.28s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.step-number {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: white;
  margin: 0 auto 24px; position: relative; z-index: 1;
  box-shadow: 0 8px 28px rgba(37,99,235,0.38);
}
.step-card h3 { margin-bottom: 12px; }
.step-card p { font-size: 0.9rem; }

/* ── TESTIMONIOS ── */
#testimonios { background: var(--white); }
.testimonios-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonio-card {
  background: var(--white); border-radius: var(--r-lg); padding: 32px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: box-shadow 0.28s, transform 0.28s;
}
.testimonio-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: rgba(37,99,235,0.18); }
.testimonio-quote {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(13,148,136,0.10));
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.stars { color: var(--amber); margin-bottom: 16px; letter-spacing: 2px; font-size: 0.95rem; }
.testimonio-text { font-size: 0.93rem; color: var(--gray-700); font-style: italic; margin-bottom: 24px; line-height: 1.75; }
.testimonio-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.88rem; color: white; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.92rem; color: var(--dark); }
.author-role { font-size: 0.78rem; color: var(--gray-400); margin-top: 2px; }

/* ── PRECIOS ── */
#precios { background: linear-gradient(160deg, var(--gray-50) 0%, #EFF6FF 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.pricing-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 36px 32px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); position: relative;
  transition: box-shadow 0.28s, transform 0.28s;
  display: flex; flex-direction: column;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.pricing-featured {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: transparent;
  box-shadow: 0 28px 72px rgba(37,99,235,0.38);
  transform: translateY(-10px);
}
.pricing-featured:hover { transform: translateY(-16px); box-shadow: 0 36px 88px rgba(37,99,235,0.44); }
.pricing-badge-top {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--green), var(--accent));
  color: white; font-size: 0.74rem; font-weight: 700;
  padding: 4px 18px; border-radius: 20px; white-space: nowrap;
  letter-spacing: 0.8px; text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(13,148,136,0.3);
}
.pricing-tier { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.pricing-featured .pricing-tier { color: white; }
.pricing-for { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 28px; }
.pricing-featured .pricing-for { color: rgba(255,255,255,0.6); }
.pricing-price { font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 28px; letter-spacing: -0.02em; }
.pricing-featured .pricing-price { color: rgba(255,255,255,0.96); }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pricing-featured .pricing-divider { background: rgba(255,255,255,0.15); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--gray-700); line-height: 1.45;
}
.pricing-featured .pricing-features li { color: rgba(255,255,255,0.84); }
.pricing-check {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: #EFF6FF; display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.pricing-featured .pricing-check { background: rgba(255,255,255,0.2); color: var(--green); }
.pricing-cta { width: 100%; justify-content: center; padding: 14px; font-size: 0.94rem; margin-top: auto; }
.pricing-note { text-align: center; margin-top: 36px; font-size: 0.82rem; color: var(--gray-400); }

/* ── CTA BANNER ── */
#cta-banner {
  background: var(--navy); padding: 108px 0;
  text-align: center; position: relative; overflow: hidden;
}
#cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
#cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(37,99,235,0.22) 0%, transparent 68%);
}
#cta-banner .container { position: relative; z-index: 1; }
#cta-banner h2 { color: white; margin-bottom: 16px; }
#cta-banner p { color: rgba(255,255,255,0.62); font-size: 1.06rem; max-width: 510px; margin: 0 auto 40px; }

/* ── CONTACTO ── */
#contacto { background: var(--gray-50); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.contacto-info h2 { margin-bottom: 16px; }
.contacto-info > p { color: var(--gray-600); margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
  display: flex; gap: 14px; align-items: center;
  padding: 18px; background: var(--white); border-radius: var(--r-md);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s, transform 0.22s;
}
.contact-detail:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-detail-icon {
  width: 44px; height: 44px; background: #EFF6FF; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.8rem; color: var(--gray-400); font-weight: 600; }
.contact-detail span { font-size: 0.92rem; color: var(--dark); font-weight: 600; }
.contact-form { background: var(--white); border-radius: var(--r-xl); padding: 44px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.contact-form h3 { margin-bottom: 6px; font-size: 1.3rem; }
.form-subtitle { color: var(--gray-600); font-size: 0.88rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: var(--gray-700); }
.form-group input, .form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.94rem; color: var(--dark);
  background: var(--gray-50); transition: all 0.2s;
  outline: none; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
  background: var(--white);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; margin-top: 4px; justify-content: center; }
.form-success { display: none; text-align: center; padding: 40px 16px; }
.form-success-icon {
  width: 72px; height: 72px; background: var(--accent-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: var(--accent);
}
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--gray-600); font-size: 0.93rem; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 72px 0 36px; }
footer .nav-logo { color: rgba(255,255,255,0.88); }
footer .nav-logo .logo-accent { color: #60A5FA; }
footer .brand-icon { filter: drop-shadow(0 8px 22px rgba(96,165,250,0.35)); }
footer .nav-logo:hover .brand-icon { filter: drop-shadow(0 10px 26px rgba(96,165,250,0.5)); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand > p { color: rgba(255,255,255,0.38); font-size: 0.87rem; margin: 18px 0 24px; max-width: 290px; line-height: 1.72; }
.footer-email { color: #60A5FA; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.footer-email:hover { color: #93C5FD; }
.footer-col h4 { color: rgba(255,255,255,0.35); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.62); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.24); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.24); font-size: 0.82rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ── PRODUCTO / DASHBOARD MOCKUP ── */
#producto {
  background: linear-gradient(160deg, #EFF6FF 0%, #F8FAFC 100%);
  padding-bottom: 0;
}
.producto-intro {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: start;
  margin-bottom: 12px;
}
.producto-intro-left .producto-title { margin: 12px 0 16px; max-width: 460px; }
.producto-intro-left .producto-sub { max-width: 460px; }
.producto-intro-right { display: flex; flex-direction: column; gap: 14px; padding-top: 28px; }
.producto-feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--r-md);
  background: var(--white); border: 1px solid rgba(37,99,235,0.10);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.producto-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(37,99,235,0.22);
}
.producto-feature-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(13,148,136,0.10));
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(37,99,235,0.10);
}
.producto-feature strong { display: block; font-size: 0.94rem; color: var(--dark); font-weight: 700; margin-bottom: 3px; }
.producto-feature span { font-size: 0.84rem; color: var(--gray-600); line-height: 1.55; }
@media (max-width: 900px) {
  .producto-intro { grid-template-columns: 1fr; gap: 32px; }
  .producto-intro-right { padding-top: 0; }
}
.product-window-wrap { margin-top: 48px; position: relative; }
.product-window-wrap::before {
  content: ''; position: absolute;
  left: 8%; right: 8%; bottom: 0; height: 80px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.18) 0%, transparent 70%);
  filter: blur(28px); z-index: 0; pointer-events: none;
}
.product-window {
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden; position: relative; z-index: 1;
  box-shadow: 0 -8px 64px rgba(37,99,235,0.18), 0 24px 48px rgba(15,23,42,0.10), 0 0 0 1px rgba(37,99,235,0.10);
}
.product-chrome {
  background: #141926; padding: 11px 18px;
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.product-dots { display: flex; gap: 6px; flex-shrink: 0; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green-c { background: #28C840; }
.product-url {
  flex: 1; background: rgba(255,255,255,0.05); border-radius: 6px;
  padding: 5px 12px; font-size: 0.72rem; color: rgba(255,255,255,0.28);
  display: flex; align-items: center; gap: 6px;
  max-width: 280px; margin: 0 auto;
}
.product-dashboard {
  display: grid; grid-template-columns: 170px 1fr 230px;
  height: 500px;
}
.dash-sidebar {
  background: #0D1626; padding: 18px 12px;
  display: flex; flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.dash-brand {
  font-size: 0.72rem; font-weight: 800; color: #60A5FA;
  letter-spacing: 2px; padding: 0 8px; margin-bottom: 20px;
}
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav-item {
  padding: 8px 10px; border-radius: 7px;
  font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.3);
  cursor: default; display: flex; align-items: center; gap: 7px;
}
.dash-nav-item.dash-active { background: rgba(37,99,235,0.2); color: #93C5FD; font-weight: 600; }
.dash-sidebar-stats {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.dash-mini-stat { text-align: center; }
.dash-mini-num { font-size: 1.3rem; font-weight: 800; color: white; line-height: 1; font-feature-settings: 'tnum'; letter-spacing: -0.02em; }
.dash-mini-num.green-num { color: #34D399; }
.dash-mini-label { font-size: 0.6rem; color: rgba(255,255,255,0.28); margin-top: 2px; }
.dash-main { background: var(--white); display: flex; flex-direction: column; overflow: hidden; }
.dash-main-header {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.dash-main-title { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.dash-main-date { font-size: 0.67rem; color: var(--gray-400); margin-top: 2px; }
.dash-new-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 0.7rem; font-weight: 700; padding: 6px 12px; border-radius: 7px;
  cursor: default; display: inline-flex; align-items: center; gap: 5px;
  box-shadow: 0 4px 12px rgba(37,99,235,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
  letter-spacing: 0.1px;
}
.dash-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: 12px 16px 0;
}
.dash-kpi {
  background: linear-gradient(180deg, var(--gray-50), #FFFFFF);
  border: 1px solid var(--border);
  border-radius: 9px; padding: 9px 11px;
  display: flex; flex-direction: column; gap: 4px;
}
.dash-kpi-label {
  font-size: 0.6rem; color: var(--gray-400); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.dash-kpi-value {
  font-size: 1.2rem; font-weight: 800; color: var(--dark);
  line-height: 1; display: flex; align-items: baseline; gap: 6px;
  font-feature-settings: 'tnum'; letter-spacing: -0.02em;
}
.dash-kpi-unit { font-size: 0.7rem; font-weight: 700; color: var(--gray-400); margin-left: -2px; }
.dash-kpi-trend {
  font-size: 0.6rem; font-weight: 700;
  padding: 2px 5px; border-radius: 4px;
}
.dash-kpi-trend.up { background: rgba(13,148,136,0.12); color: #0D9488; }
.dash-kpi-bar {
  flex: 1; height: 4px; background: var(--gray-100); border-radius: 2px;
  position: relative; overflow: hidden; margin-bottom: 3px;
}
.dash-kpi-bar > span {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--primary), #0D9488);
  border-radius: 2px;
}
.dash-appts {
  padding: 10px 16px 14px; overflow-y: auto; flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.dash-appt {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 9px;
  background: var(--white); border: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.dash-appt:hover { box-shadow: 0 4px 14px rgba(15,23,42,0.06); }
.appt-confirmed { border-left-color: #0D9488; }
.appt-pending { border-left-color: #FBBF24; }
.appt-available { border-left-color: rgba(37,99,235,0.3); border-left-style: dashed; background: var(--gray-50); }
.dash-appt-time { font-size: 0.68rem; font-weight: 700; color: var(--gray-600); width: 32px; flex-shrink: 0; font-feature-settings: 'tnum'; }
.dash-appt-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.6rem; font-weight: 800;
  flex-shrink: 0; letter-spacing: 0.2px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.12);
}
.dash-avatar-empty {
  background: var(--gray-100);
  color: rgba(37,99,235,0.5);
  border: 1.5px dashed rgba(37,99,235,0.3);
  box-shadow: none;
}
.dash-appt-info { flex: 1; min-width: 0; }
.dash-appt-name { font-size: 0.76rem; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-avail-name { color: var(--gray-400); font-style: italic; font-weight: 400; }
.dash-appt-spec { font-size: 0.63rem; color: var(--gray-400); margin-top: 1px; }
.dash-appt-status {
  font-size: 0.6rem; font-weight: 700; padding: 3px 8px;
  border-radius: 10px; white-space: nowrap; flex-shrink: 0;
}
.status-confirmed { background: rgba(13,148,136,0.1); color: #0D9488; }
.status-pending { background: rgba(251,191,36,0.12); color: #D97706; }
.status-ai { background: rgba(37,99,235,0.09); color: var(--primary); }
.dash-ai-panel {
  background: var(--gray-50); border-left: 1px solid var(--border);
  display: flex; flex-direction: column; overflow: hidden;
}
.dash-ai-header {
  padding: 12px 14px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 7px;
  font-size: 0.69rem; font-weight: 600; color: var(--dark); flex-shrink: 0;
}
.dash-ai-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px rgba(52,211,153,0.6);
  animation: blink 2s infinite; flex-shrink: 0;
}
.dash-ai-log {
  padding: 10px; flex: 1; overflow-y: auto;
  display: flex; flex-direction: column; gap: 6px;
}
.dash-ai-event {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 9px 11px;
  display: flex; gap: 9px; align-items: flex-start;
}
.dash-ai-event-dot {
  width: 7px; height: 7px; border-radius: 50%;
  margin-top: 5px; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.06);
}
.dash-ai-event-dot.dot-green { background: #34D399; box-shadow: 0 0 0 3px rgba(52,211,153,0.12); }
.dash-ai-event-dot.dot-blue { background: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
.dash-ai-event-dot.dot-amber { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245,158,11,0.14); }
.dash-ai-event-body { flex: 1; min-width: 0; }
.dash-ai-text { font-size: 0.67rem; color: var(--gray-700); line-height: 1.45; }
.dash-ai-time { font-size: 0.58rem; color: var(--gray-400); margin-top: 3px; font-feature-settings: 'tnum'; }
.dash-ai-footer {
  padding: 9px 12px; border-top: 1px solid var(--border);
  font-size: 0.64rem; color: var(--gray-400);
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.dash-ai-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); opacity: 0.7; animation: blink 1.5s infinite;
}

/* ── TYPING BUBBLE ── */
.typing-bubble {
  display: flex; gap: 5px; align-items: center;
  padding: 11px 15px; background: var(--gray-100);
  border-radius: 16px; border-bottom-left-radius: 4px;
  align-self: flex-start; width: fit-content;
}
.typing-bubble span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gray-400); animation: typingDot 1.4s ease-in-out infinite;
}
.typing-bubble span:nth-child(2) { animation-delay: 0.2s; }
.typing-bubble span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ── INTEGRACIONES ── */
#integraciones {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.integ-label {
  text-align: center; font-size: 0.74rem; font-weight: 600;
  color: var(--gray-400); letter-spacing: 1.8px; text-transform: uppercase;
  margin-bottom: 22px;
}
.integ-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.integ-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 10px;
  background: var(--gray-50); border: 1px solid var(--border);
  font-size: 0.85rem; font-weight: 600; color: var(--gray-700);
  transition: all 0.22s ease; cursor: default;
}
.integ-chip:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.integ-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* ── COMPLIANCE / TRUST BAND ── */
#compliance {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.compliance-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.compliance-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 4px;
}
.compliance-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(13,148,136,0.08));
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(37,99,235,0.10);
}
.compliance-text strong { display: block; font-size: 0.92rem; color: var(--dark); margin-bottom: 3px; font-weight: 700; }
.compliance-text span { font-size: 0.81rem; color: var(--gray-600); line-height: 1.5; }

/* ── STEP CHANNELS ── */
.step-channels {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin: 10px 0 14px;
}
.channel-chip {
  font-size: 0.67rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.1px;
}
.whatsapp-chip { background: rgba(37,211,102,0.1); color: #128C7E; }
.web-chip { background: rgba(37,99,235,0.08); color: var(--primary); }
.sms-chip { background: rgba(139,92,246,0.1); color: #7C3AED; }
.ai-chip { background: rgba(37,99,235,0.1); color: var(--primary); }
.cal-chip { background: rgba(66,133,244,0.1); color: #4285F4; }
.crm-chip { background: rgba(255,122,89,0.1); color: #C0422A; }
.team-chip { background: rgba(13,148,136,0.1); color: #0D9488; }

/* ── TESTIMONIOS STATS ── */
.testimonios-stats {
  display: flex; margin-bottom: 48px;
  background: var(--gray-50); border-radius: var(--r-lg);
  border: 1px solid var(--border); overflow: hidden;
}
.testimonios-stat {
  flex: 1; text-align: center; padding: 20px 16px;
  border-right: 1px solid var(--border);
}
.testimonios-stat:last-child { border-right: none; }
.testimonios-stat strong {
  display: block; font-size: 1.9rem; font-weight: 800;
  color: var(--primary); letter-spacing: -0.03em; margin-bottom: 4px;
  font-feature-settings: 'tnum';
}
.testimonios-stat span { font-size: 0.79rem; color: var(--gray-600); }

/* ── AVATAR VERIFIED BADGE ── */
.avatar-wrap { position: relative; flex-shrink: 0; }
.verified-badge {
  position: absolute; bottom: -1px; right: -1px;
  width: 16px; height: 16px; background: #0D9488; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}

/* ── FAQ ── */
#faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border-radius: var(--r-md);
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow 0.22s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.faq-open { border-color: rgba(37,99,235,0.25); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 0.97rem; font-weight: 600; color: var(--dark);
  text-align: left; gap: 16px; transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-icon {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--primary);
  transition: transform 0.25s ease;
}
.faq-item.faq-open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; border-top: 1px solid var(--border); }
.faq-item.faq-open .faq-answer { display: block; }
.faq-answer p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.72; padding-top: 16px; }

/* ── FORM INLINE VALIDATION ── */
.field-error {
  font-size: 0.78rem; color: #EF4444;
  min-height: 16px; display: block; margin-top: 3px;
}
.form-group input.input-error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.form-privacy {
  font-size: 0.76rem; color: var(--gray-400);
  text-align: center; margin-top: 14px; line-height: 1.5;
}
.form-privacy a { color: var(--primary); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-float-badge { display: none; }
  .chat-mockup { max-width: 440px; margin: 0 auto; }
  .problema-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-5px); }
  .contacto-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .product-dashboard { grid-template-columns: 1fr; height: auto; }
  .dash-sidebar, .dash-ai-panel { display: none; }
  .dash-appts { max-height: 300px; }
  .testimonios-stats { flex-direction: column; }
  .testimonios-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .testimonios-stat:last-child { border-bottom: none; }
  .compliance-grid { grid-template-columns: 1fr; gap: 22px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.14); padding-bottom: 28px; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { padding-top: 28px; }
  .nav-logo { font-size: 1.02rem; gap: 9px; }
  .brand-icon { width: 38px; height: 38px; }
}
@media (max-width: 600px) {
  .nav-logo { font-size: 0.97rem; gap: 8px; }
  .brand-icon { width: 34px; height: 34px; }
  section { padding: 80px 0; }
  #hero { padding: 100px 0 64px; min-height: auto; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.14); padding: 22px 16px; }
  .stat-item:last-child { border-bottom: none; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-wrap: wrap; gap: 12px; }
  .compliance-grid { grid-template-columns: 1fr; gap: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .feature-card { padding: 28px 22px; }
  .pricing-card { padding: 28px 22px; }
  .features-grid .feature-card:nth-child(n) { transition-delay: 0ms; }
  .chat-body { padding: 18px; }
  .msg { font-size: 0.84rem; }
  .product-window { border-radius: var(--r-md) var(--r-md) 0 0; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
}

/* ── LEGAL PAGES (privacy / aviso-legal / cookies / rgpd) ── */
body.legal-body { background: var(--gray-50); }
body.legal-body #navbar { background: rgba(255,255,255,0.92); border-bottom: 1px solid var(--gray-200); }

.legal-hero {
  position: relative;
  padding: 130px 0 60px;
  background:
    radial-gradient(1100px 480px at 50% -10%, rgba(37,99,235,0.10), transparent 60%),
    linear-gradient(180deg, #F8FAFC 0%, #EEF4FF 100%);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.legal-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(37,99,235,0.06) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none; opacity: 0.7;
}
.legal-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 0.84rem; color: var(--gray-600);
  padding: 6px 14px; margin-bottom: 22px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.breadcrumb a { color: var(--primary); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--gray-400); }
.breadcrumb .current { color: var(--gray-700); font-weight: 600; }

.legal-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin-bottom: 14px; color: var(--dark);
  letter-spacing: -0.025em;
}
.legal-lead {
  font-size: 1.1rem; color: var(--gray-700);
  max-width: 720px; line-height: 1.6;
}
.legal-updated {
  margin-top: 22px; font-size: 0.84rem;
  color: var(--gray-600);
  display: inline-flex; gap: 8px; align-items: center;
}
.legal-updated::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(52,211,153,0.18);
}

.legal-main {
  padding: 64px 0 110px;
  background: var(--gray-50);
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
.legal-toc {
  position: sticky; top: 96px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.legal-toc-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--primary);
  margin-bottom: 14px;
}
.legal-toc ol { list-style: none; counter-reset: toc; padding: 0; }
.legal-toc ol li { counter-increment: toc; }
.legal-toc ol li a {
  display: block;
  font-size: 0.9rem; color: var(--gray-700);
  border-left: 2px solid transparent;
  padding: 8px 0 8px 12px;
  transition: all 0.2s ease;
}
.legal-toc ol li a::before {
  content: counter(toc) ".";
  font-weight: 700; color: var(--primary);
  display: inline-block; width: 24px;
}
.legal-toc ol li a:hover {
  color: var(--primary);
  border-left-color: var(--primary);
  background: rgba(37,99,235,0.04);
}

.legal-article {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 48px 52px;
  box-shadow: var(--shadow-sm);
}
.legal-article section + section { margin-top: 36px; }
.legal-article h2 {
  font-size: 1.5rem; margin-bottom: 14px;
  letter-spacing: -0.01em; color: var(--dark);
}
.legal-article h3 {
  font-size: 1.05rem; margin: 22px 0 10px; color: var(--gray-900);
}
.legal-article p {
  color: var(--gray-700); line-height: 1.78;
  margin-bottom: 14px; font-size: 0.98rem;
}
.legal-article ul, .legal-article ol {
  margin: 12px 0 16px 4px; padding-left: 22px;
}
.legal-article li {
  color: var(--gray-700); line-height: 1.78;
  margin-bottom: 6px; font-size: 0.98rem;
}
.legal-article strong { color: var(--dark); font-weight: 700; }
.legal-article a { color: var(--primary); font-weight: 600; }
.legal-article a:hover { text-decoration: underline; }

.legal-placeholder {
  display: inline-block;
  padding: 1px 10px; margin: 0 2px;
  background: rgba(245,158,11,0.10);
  color: #B45309;
  border: 1px dashed rgba(245,158,11,0.45);
  border-radius: 6px;
  font-size: 0.86rem; font-weight: 600;
}

.legal-callout {
  margin: 22px 0;
  padding: 18px 22px;
  background: rgba(37,99,235,0.05);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  font-size: 0.96rem;
  color: var(--gray-700);
}
.legal-callout strong { color: var(--primary); }

.legal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0;
  padding: 22px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
}
.legal-info-grid .info-row { display: flex; flex-direction: column; gap: 4px; }
.legal-info-grid .info-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.6px;
  color: var(--gray-600);
}
.legal-info-grid .info-value {
  font-size: 0.96rem; color: var(--dark); font-weight: 600;
}

/* RGPD trust page */
.rgpd-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 26px 0 16px;
}
.rgpd-trust-card {
  padding: 24px;
  background: linear-gradient(180deg, var(--white) 0%, #F8FAFF 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px;
}
.rgpd-trust-card .trust-card-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(13,148,136,0.10));
  color: var(--primary);
}
.rgpd-trust-card strong { color: var(--dark); font-size: 1rem; }
.rgpd-trust-card span { color: var(--gray-600); font-size: 0.92rem; line-height: 1.55; }

.rgpd-approach { margin: 26px 0; display: grid; gap: 12px; }
.rgpd-step {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
}
.rgpd-step:hover {
  border-color: rgba(37,99,235,0.30);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.rgpd-step-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); font-weight: 800; font-size: 0.95rem;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,99,235,0.22);
}
.rgpd-step h3 { font-size: 1.02rem; margin-bottom: 4px; color: var(--dark); }
.rgpd-step p { font-size: 0.95rem; color: var(--gray-700); margin: 0; }

.rgpd-disclaimer {
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.30);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.rgpd-cta-card {
  margin: 56px auto 0;
  padding: 48px 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-blue);
  position: relative; overflow: hidden;
}
.rgpd-cta-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(380px 220px at 0% 0%, rgba(255,255,255,0.15), transparent 60%),
    radial-gradient(380px 220px at 100% 100%, rgba(13,148,136,0.25), transparent 60%);
  pointer-events: none;
}
.rgpd-cta-card > * { position: relative; z-index: 1; }
.rgpd-cta-card h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: 12px;
}
.rgpd-cta-card p {
  color: rgba(255,255,255,0.86);
  margin: 0 auto 24px;
  max-width: 580px;
  font-size: 1rem;
}
.rgpd-cta-card .btn-white { padding: 15px 30px; font-size: 0.98rem; }

@media (max-width: 960px) {
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc { position: static; }
  .legal-article { padding: 32px 24px; }
  .legal-info-grid { grid-template-columns: 1fr; }
  .rgpd-trust-grid { grid-template-columns: 1fr; }
  .legal-hero { padding: 110px 0 44px; }
  .legal-main { padding: 40px 0 70px; }
  .rgpd-cta-card { padding: 36px 22px; }
}

/* ── HERO HONEST TRUST POINTS ── */
.hero-trust-honest { display: block; padding-top: 24px; }
.trust-points {
  display: flex; flex-direction: column; gap: 10px;
}
.trust-point {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.86rem; color: var(--gray-700); font-weight: 500;
  line-height: 1.4;
}
.trust-point svg {
  color: var(--accent); flex-shrink: 0;
  width: 14px; height: 14px;
}

/* ── POR QUÉ / CONFIANZA SECTION ── */
#confianza { background: var(--white); }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.trust-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.28s, transform 0.28s, border-color 0.28s;
}
.trust-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(37,99,235,0.18);
}
.trust-card-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: #EFF6FF; color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.trust-card h3 {
  font-size: 1.05rem; margin-bottom: 10px;
}
.trust-card p {
  font-size: 0.92rem; color: var(--gray-600); line-height: 1.7;
}
.trust-note {
  text-align: center; margin-top: 36px;
  font-size: 0.82rem; color: var(--gray-400);
}

/* ── PRICING ADDITIONS ── */
.pricing-price-unit {
  font-size: 0.95rem; font-weight: 600;
  color: var(--gray-400); margin-left: 4px;
  letter-spacing: 0;
}
.pricing-featured .pricing-price-unit { color: rgba(255,255,255,0.7); }
.pricing-secondary {
  text-align: center; margin-top: 36px;
  font-size: 0.94rem; color: var(--gray-600);
}
.pricing-secondary a {
  color: var(--primary); font-weight: 600;
  border-bottom: 1px solid rgba(37,99,235,0.25);
  transition: border-color 0.2s, color 0.2s;
}
.pricing-secondary a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}
.pricing-legal {
  margin: 28px auto 0;
  max-width: 720px;
  display: flex; flex-direction: column; gap: 8px;
}
.pricing-legal p {
  font-size: 0.78rem; color: var(--gray-400);
  text-align: center; line-height: 1.6;
}

@media (max-width: 880px) {
  .trust-grid { grid-template-columns: 1fr; }
}
