/* =============================================
   TuPedido — Design System (tupedido.co style)
   ============================================= */

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

:root {
  --primary-color:   #6366f1;
  --secondary-color: #8b5cf6;
  --accent-color:    #ec4899;
  --dark-bg:         #0f172a;
  --darker-bg:       #020617;
  --light-bg:        #f8fafc;
  --text-dark:       #1e293b;
  --text-light:      #94a3b8;
  --success-color:   #10b981;
  --warning-color:   #f59e0b;
  --white:           #ffffff;

  --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-2: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
  --gradient-3: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);

  --shadow-sm:  0 4px 6px rgba(0,0,0,0.07);
  --shadow-md:  0 10px 30px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
  --shadow-xl:  0 30px 80px rgba(0,0,0,0.20);

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  30px;
  --radius-pill: 50px;

  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-badge {
  display: inline-block;
  padding: 0.45rem 1.4rem;
  background: var(--gradient-1);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gradient-text {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  min-height: 52px;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-2);
  color: #fff;
  box-shadow: 0 10px 30px rgba(236,72,153,0.30);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(236,72,153,0.45);
}

.btn-secondary {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.20);
  transform: translateY(-3px);
}

.btn-light {
  background: #fff;
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-outline-primary:hover { background: var(--primary-color); color: #fff; transform: translateY(-2px); }

.btn-gradient-1 {
  background: var(--gradient-1);
  color: #fff;
  box-shadow: 0 10px 30px rgba(99,102,241,0.30);
}
.btn-gradient-1:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(99,102,241,0.45); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.12); }

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand-logo {
  display: none;
}

.nav-brand-logo img {
  max-height: 42px;
  max-width: 120px;
  object-fit: contain;
}

.nav-brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-tagline {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 400;
  display: block;
  margin-top: -2px;
  -webkit-text-fill-color: var(--text-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-menu a:hover { color: var(--primary-color); }

.nav-cta {
  background: var(--gradient-2) !important;
  color: #fff !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  box-shadow: 0 4px 15px rgba(236,72,153,0.30);
  transition: var(--transition);
  white-space: nowrap;
  min-height: 42px;
  display: flex !important;
  align-items: center;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(236,72,153,0.45) !important;
  color: #fff !important;
}

.btn-pedido {
  background: var(--gradient-1);
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
  min-height: 40px;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-pedido:hover { transform: scale(1.05); }

.cart-badge {
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  font-family: inherit;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--darker-bg);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-1);
  opacity: 0.08;
  z-index: 0;
}

/* Glowing orbs */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
  border-radius: 50%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
  bottom: -50px;
  left: -100px;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.10) 0%, transparent 70%);
  top: 30%;
  left: 40%;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
  padding: 4rem 2rem;
}

.hero-text { animation: fadeInUp 0.8s ease both; }

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.30);
  color: #a5b4fc;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success-color);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-text h1 {
  font-size: 3.4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  font-weight: 800;
  animation: fadeInUp 0.8s ease both;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.75;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number.gradient-text {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.3;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-note {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  animation: fadeInUp 0.8s ease 0.65s both;
}

.hero-note span { margin: 0 0.4rem; }

/* Hero media / video */
.hero-media {
  position: relative;
  animation: fadeInRight 0.8s ease both;
}

.hero-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: floatDevice 6s ease-in-out infinite;
  aspect-ratio: 9 / 16;
  width: 100%;
}

.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video-mute-btn {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 4;
  background: rgba(15,23,42,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.video-mute-btn:hover {
  background: rgba(99,102,241,0.8);
  transform: scale(1.1);
}

.hero-video-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--success-color);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

/* Floating cards on hero */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.2rem;
  font-size: 0.82rem;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 3;
}

.hero-float-card.card-tl { top: -20px; left: -30px; animation: floatCard1 4s ease-in-out infinite; }
.hero-float-card.card-br { bottom: 30px; right: -25px; animation: floatCard2 5s ease-in-out infinite; }

@keyframes floatCard1 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes floatCard2 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

@keyframes floatDevice {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.proof-bar {
  background: var(--dark-bg);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.proof-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
}

.proof-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.proof-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.proof-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.10);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 6rem 0; position: relative; }
.section-dark { background: var(--dark-bg); color: #fff; }
.section-darker { background: var(--darker-bg); color: #fff; }
.section-light { background: var(--light-bg); }
.section-white { background: #fff; }

.section-dark .section-title,
.section-darker .section-title { color: #fff; }

.section-dark .section-subtitle,
.section-darker .section-subtitle { color: var(--text-light); }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.features-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: default;
  border: 1px solid rgba(0,0,0,0.04);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.section-dark .feature-card,
.section-darker .feature-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

.section-dark .feature-card:hover,
.section-darker .feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(99,102,241,0.30);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(99,102,241,0.12);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.section-dark .feature-title,
.section-darker .feature-title { color: #fff; }

.feature-desc {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.feature-list li::before {
  content: "✓";
  color: var(--success-color);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Big feature card (image + content) */
.feature-card-big {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.feature-card-big:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.feature-card-big .fimg {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.feature-card-big .fimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card-big:hover .fimg img { transform: scale(1.05); }

.feature-card-big .fcontent { padding: 1.8rem; }

.feature-card-big .fcontent h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.7rem;
}

.feature-card-big .fcontent p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ============================================================
   DEMO SECTION
   ============================================================ */
.demo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.demo-split.reverse .demo-media { order: -1; }

.demo-media { position: relative; }

.demo-media img, .demo-media video {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  display: block;
}

.demo-live-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--success-color);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  animation: pulse-glow 2s infinite;
}

.demo-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
}

.demo-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: rgba(99,102,241,0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-color);
  transition: var(--transition);
}

.section-dark .demo-item { background: rgba(255,255,255,0.05); border-left-color: var(--accent-color); }

.demo-item:hover { background: rgba(99,102,241,0.10); transform: translateX(4px); }
.section-dark .demo-item:hover { background: rgba(255,255,255,0.08); }

.demo-item-icon { font-size: 1.6rem; flex-shrink: 0; }

.demo-item h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.section-dark .demo-item h4 { color: #fff; }

.demo-item p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.section-dark .testimonial-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 4.5rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.7;
}

.testimonial-stars {
  color: var(--warning-color);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-light);
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}

.t-name {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--text-dark);
}

.section-dark .t-name { color: #fff; }

.t-role { font-size: 0.8rem; color: var(--text-light); margin-top: 1px; }

.t-result {
  margin-top: 1rem;
  padding: 0.5rem 0.9rem;
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.20);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--success-color);
  font-weight: 600;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
  margin-top: 3rem;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(99,102,241,0.18);
}

.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gradient-2);
  color: #fff;
  padding: 0.4rem 2.5rem;
  transform: rotate(45deg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.pricing-desc {
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-price {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.pricing-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.pricing-period {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.4;
}

.pricing-features .check { color: var(--success-color); font-weight: 700; flex-shrink: 0; }
.pricing-features .cross { color: #ef4444; font-weight: 700; flex-shrink: 0; opacity: 0.5; }
.pricing-features li.disabled { opacity: 0.4; }

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.97rem;
  text-decoration: none;
  transition: var(--transition);
  min-height: 52px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  gap: 6px;
}

.pricing-cta.gradient-1 { background: var(--gradient-1); color: #fff; box-shadow: 0 8px 25px rgba(99,102,241,0.30); }
.pricing-cta.gradient-1:hover { transform: translateY(-2px); box-shadow: 0 14px 35px rgba(99,102,241,0.45); }

.pricing-cta.gradient-2 { background: var(--gradient-2); color: #fff; box-shadow: 0 8px 25px rgba(236,72,153,0.30); }
.pricing-cta.gradient-2:hover { transform: translateY(-2px); box-shadow: 0 14px 35px rgba(236,72,153,0.45); }

.pricing-cta.outline { border: 2px solid var(--primary-color); color: var(--primary-color); background: transparent; }
.pricing-cta.outline:hover { background: var(--primary-color); color: #fff; transform: translateY(-2px); }

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-light);
  font-size: 0.88rem;
}

.pricing-note a { color: var(--primary-color); text-decoration: none; font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.section-dark .faq-item { border-color: rgba(255,255,255,0.10); }

.faq-item.open { border-color: var(--primary-color); }
.section-dark .faq-item.open { border-color: rgba(99,102,241,0.50); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  min-height: 60px;
}

.section-dark .faq-q { color: #fff; }
.faq-q:hover { background: rgba(99,102,241,0.04); }
.section-dark .faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-item.open .faq-q { color: var(--primary-color); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-a p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.93rem;
  padding-bottom: 1.2rem;
}

.faq-item.open .faq-a { max-height: 350px; }

/* ============================================================
   LEAD FORM SECTION
   ============================================================ */
.form-section {
  padding: 6rem 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-1);
  opacity: 0.06;
}

.form-section .container { position: relative; z-index: 1; }

.form-section .section-title { color: #fff; }
.form-section .section-subtitle { color: var(--text-light); }

.form-wrapper {
  max-width: 660px;
  margin: 3rem auto 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.20);
}

.form-header { text-align: center; margin-bottom: 2rem; }

.form-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--success-color);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-header h3 { font-size: 1.55rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-header p  { font-size: 0.9rem; color: var(--text-light); }

.lead-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group label span { color: var(--accent-color); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: #fafbfc;
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}

.form-group textarea { resize: vertical; min-height: 95px; line-height: 1.6; }

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--gradient-2);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(236,72,153,0.30);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0.4rem;
}

.form-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(236,72,153,0.45); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.form-privacy {
  text-align: center;
  font-size: 0.76rem;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.form-error-msg {
  display: none;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: #ef4444;
  font-size: 0.86rem;
  text-align: center;
}

.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success .success-icon { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.form-success h4 { font-size: 1.35rem; color: var(--success-color); margin-bottom: 0.5rem; font-weight: 800; }
.form-success p  { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--gradient-1);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -250px;
  right: -100px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
}

.cta-banner h2 { font-size: 2.4rem; color: #fff; font-weight: 800; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-banner p  { font-size: 1.1rem; color: rgba(255,255,255,0.80); margin-bottom: 2.5rem; position: relative; z-index: 1; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   MENU / HORARIOS / CONTACTO
   ============================================================ */
.menu-section { padding: 5rem 0; background: var(--light-bg); }

.menu-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem 0 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.3rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--primary-color);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  min-height: 42px;
}

.filter-btn:hover,
.filter-btn.active { background: var(--primary-color); color: #fff; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.horarios-section { padding: 4rem 0; background: var(--dark-bg); }
.horarios-section .section-title { color: #fff; }

.horarios-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.horario-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
  border-left: 3px solid var(--primary-color);
  transition: var(--transition);
}

.horario-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-3px); }

.horario-icon { font-size: 2rem; }
.horario-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.horario-time  { color: #a5b4fc; font-weight: 600; font-size: 0.9rem; }

.contacto-section { padding: 4rem 0; background: var(--darker-bg); }
.contacto-section .section-title { color: #fff; }

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  height: 100%;
  z-index: 2000;
  display: none;
}

.cart-sidebar.open { display: block; }

.cart-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.7);
  backdrop-filter: blur(4px);
  z-index: -1;
}

.cart-sidebar-content {
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 40px rgba(0,0,0,0.25);
}

.cart-sidebar-header {
  background: var(--gradient-dark);
  color: #fff;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-sidebar-header h3 { font-size: 1.05rem; font-weight: 700; }

.btn-close-sidebar {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

.btn-close-sidebar:hover { background: rgba(255,255,255,0.22); }

.cart-sidebar-summary { flex: 1; overflow-y: auto; padding: 1.5rem; }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-header h4 { font-size: 0.97rem; font-weight: 600; color: var(--text-dark); }
.cart-total { font-weight: 700; color: var(--primary-color); font-size: 1rem; }
.cart-items { display: flex; flex-direction: column; gap: 0.75rem; }

.cart-sidebar-chat { border-top: 1px solid #eee; background: #fafbfc; }

.chat-toggle-header {
  padding: 0.85rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.chat-toggle-header:hover { background: #f0f2f5; }
.chat-toggle-icon { font-size: 0.75rem; transition: transform 0.3s; }

.bot-chat-section { padding: 0 1rem 1rem; display: none; }
.bot-chat-section.open { display: block; }

.bot-messages { max-height: 200px; overflow-y: auto; margin-bottom: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }

.bot-message {
  background: linear-gradient(135deg, #f0f2f5, #e8ecf0);
  border-radius: 12px 12px 12px 0;
  padding: 0.75rem 1rem;
  font-size: 0.84rem;
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 90%;
}

.bot-message ul { margin: 0.4rem 0 0 1.2rem; font-size: 0.82rem; }

.bot-input-container { display: flex; gap: 0.5rem; }

#botInput {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.87rem;
  transition: var(--transition);
  min-height: 42px;
}

#botInput:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(99,102,241,0.12); }

.btn-enviar {
  background: var(--gradient-1);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-enviar:hover { transform: scale(1.1); }

.bot-quick-actions { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem; }

.cart-sidebar-footer { padding: 1rem 1.5rem; border-top: 1px solid #eee; background: #fff; }

.btn-finalizar-pedido {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-1);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(99,102,241,0.30);
  min-height: 52px;
}

.btn-finalizar-pedido:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(99,102,241,0.45); }

/* ============================================================
   IMAGE MODAL
   ============================================================ */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.92);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.image-modal.open { display: flex; }

.image-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s;
}

.image-modal-close:hover { opacity: 1; color: #fff; }

.image-modal-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.image-modal-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  text-align: center;
  max-width: 80%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--darker-bg);
  color: #fff;
  padding: 4rem 0 1.5rem;
}

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

.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 0.75rem; margin-top: 0.5rem; }

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
  color: #fff;
}

.social-btn:hover { background: var(--primary-color); transform: translateY(-3px); }

.footer-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary-color); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item:hover { color: var(--primary-color); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p { color: var(--text-light); font-size: 0.82rem; }
.footer-bottom a { color: var(--primary-color); text-decoration: none; font-weight: 600; }

/* ============================================================
   WHATSAPP FLOATING BTN
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
  z-index: 900;
  text-decoration: none;
  transition: var(--transition);
  animation: pulse-glow-wa 3s infinite;
}

.whatsapp-float:hover { transform: scale(1.12); }

@keyframes pulse-glow-wa {
  0%,100% { box-shadow: 0 8px 25px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 8px 40px rgba(37,211,102,0.65); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 68px;
    left: -100%;
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    transition: left 0.3s ease;
    z-index: 999;
    gap: 1.2rem;
  }
  .nav-menu.open { left: 0; }
  .nav-toggle { display: block; }

  .hero .container { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }
  .hero-media { order: -1; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .hero-float-card { display: none; }

  .demo-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .demo-split.reverse .demo-media { order: 0; }

  .features-grid-2 { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .section-title { font-size: 1.9rem; }
  .section-subtitle { font-size: 1rem; }

  .hero { min-height: auto; }
  .hero-text h1 { font-size: 1.9rem; }
  .hero-text p  { font-size: 1rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-video-wrap { margin: 0 auto; max-width: 320px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; justify-content: center; }

  .proof-bar .container { gap: 1.5rem; }
  .proof-sep { display: none; }

  .form-wrapper { padding: 2rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .horarios-grid { flex-direction: column; }
  .horario-card { min-width: unset; }

  .cart-sidebar { width: 100%; }

  .cta-banner h2 { font-size: 1.8rem; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 400px) {
  .container { padding: 0 1rem; }
  .hero-text h1 { font-size: 1.7rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.5rem; }
}

/* ============================================================
   VENDEDOR IA — Sección estrella
   ============================================================ */
.vendedor-ia-section { background: var(--gradient-dark); }

.vendedor-ia-grid {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1rem;
}

.vendedor-col-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.vendedor-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vendedor-lista li {
  font-size: 0.92rem;
  line-height: 1.6;
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-light);
}

.problema-lista li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
}

.solucion-lista li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
}

/* Card central del vendedor IA */
.vendedor-hero-card {
  background: linear-gradient(160deg, #1e1b4b 0%, #0f172a 100%);
  border: 1px solid rgba(99,102,241,0.4);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 40px rgba(99,102,241,0.2);
}

.vendedor-avatar {
  font-size: 3rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2));
  border: 2px solid rgba(99,102,241,0.4);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vendedor-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-align: center;
}

.vendedor-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--success-color);
}

/* Chat demo */
.vendedor-chat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.chat-bubble {
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 90%;
}

.chat-bubble.cliente {
  background: rgba(255,255,255,0.07);
  color: var(--text-light);
  align-self: flex-end;
  border-radius: 12px 12px 2px 12px;
}

.chat-bubble.ia {
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(139,92,246,0.15));
  color: var(--white);
  align-self: flex-start;
  border-radius: 12px 12px 12px 2px;
  border: 1px solid rgba(99,102,241,0.25);
}

/* Métricas del vendedor */
.vendedor-metrics {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.vm-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light);
  flex: 1;
  min-width: 70px;
}

.vm-item span {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.15rem;
}

.vendedor-cta-wrap {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive vendedor IA */
@media (max-width: 968px) {
  .vendedor-ia-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .vendedor-problema { order: 2; }
  .vendedor-hero-card { order: 1; }
  .vendedor-solucion { order: 3; }
}
