/* ============================================
   Estilos Landing Page - Pedidos IA
   Diseño moderno con estilo restaurantero
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700&display=swap');

:root {
  --primary: #e74c3c;
  --primary-dark: #c0392b;
  --primary-light: #ff6b6b;
  --secondary: #1a1a2e;
  --secondary-light: #16213e;
  --accent: #f39c12;
  --accent-light: #f1c40f;
  --success: #27ae60;
  --warning: #f39c12;
  --danger: #e74c3c;
  --info: #3498db;
  --bg: #fafafa;
  --bg-card: #ffffff;
  --text: #2d3436;
  --text-light: #636e72;
  --text-muted: #b2bec3;
  --border: #e8e8e8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Header ──────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(26, 26, 46, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--accent);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.header-nav a:hover {
  color: white;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: white;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero Section ────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(231, 76, 60, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(52, 152, 219, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #1a1a2e 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: particleFloat 20s infinite linear;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 25s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-duration: 20s; animation-delay: 2s; width: 6px; height: 6px; }
.particle:nth-child(3) { left: 40%; top: 30%; animation-duration: 22s; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; top: 70%; animation-duration: 18s; animation-delay: 1s; width: 3px; height: 3px; }
.particle:nth-child(5) { left: 70%; top: 15%; animation-duration: 24s; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; top: 50%; animation-duration: 21s; animation-delay: 5s; width: 5px; height: 5px; }
.particle:nth-child(7) { left: 15%; top: 80%; animation-duration: 19s; animation-delay: 6s; }
.particle:nth-child(8) { left: 65%; top: 85%; animation-duration: 23s; animation-delay: 2.5s; }
.particle:nth-child(9) { left: 90%; top: 25%; animation-duration: 26s; animation-delay: 4.5s; }
.particle:nth-child(10) { left: 35%; top: 10%; animation-duration: 17s; animation-delay: 3.5s; }

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.3; }
  25% { transform: translateY(-30px) translateX(15px) scale(1.2); opacity: 0.6; }
  50% { transform: translateY(0) translateX(30px) scale(1); opacity: 0.3; }
  75% { transform: translateY(20px) translateX(15px) scale(0.8); opacity: 0.5; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.3; }
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(243, 156, 18, 0.12);
  border: 1px solid rgba(243, 156, 18, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-text h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #e67e22, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 540px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.stat {
  text-align: left;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.6;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
}

/* ─── Hero Visual (Chat Mockup) ───────────── */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-card:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--secondary);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.online-dot {
  color: var(--success);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.online-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  background: #f8f9fa;
}

.chat-msg {
  display: flex;
  animation: msgSlide 0.4s ease;
}

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

.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }

.chat-msg .msg-content {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.chat-msg.bot .msg-content {
  background: white;
  color: var(--text);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.chat-msg.user .msg-content {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-bottom-right-radius: 4px;
}

.chat-msg.typing {
  justify-content: flex-start;
  padding: 8px 0;
}

.chat-msg.typing .typing-dots {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: white;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.chat-msg.typing span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.chat-msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); background: #ccc; }
  30% { transform: translateY(-6px); background: var(--primary); }
}

/* ─── Sections ────────────────────────────── */

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--secondary);
  color: white;
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-header p {
  opacity: 0.6;
}

/* ─── Steps / Cómo funciona ───────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  text-align: center;
  padding: 48px 28px 36px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.step-icon {
  font-size: 52px;
  margin-bottom: 20px;
  margin-top: 10px;
  display: block;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--secondary);
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Features ────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.92rem;
  opacity: 0.7;
  line-height: 1.7;
}

/* ─── Pricing ─────────────────────────────── */

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.pricing-card.featured {
  border-color: rgba(243, 156, 18, 0.4);
  box-shadow: 0 10px 50px rgba(243, 156, 18, 0.15);
  background: rgba(255,255,255,0.08);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent), #e67e22);
  color: white;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-header {
  padding: 36px 32px 28px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-header h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 12px;
}

.pricing-price .price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -2px;
}

.pricing-price .period {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.pricing-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  padding: 28px 32px;
  color: rgba(255,255,255,0.85);
}

.pricing-features li {
  padding: 12px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
  font-size: 1.1rem;
}

.pricing-card .btn-block {
  margin: 0 32px 32px;
  width: auto;
  display: block;
  text-align: center;
}

.pricing-trial {
  text-align: center;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(39, 174, 96, 0.1);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ─── Testimonios ─────────────────────────── */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

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

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

.testimonial-text {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ─── FAQ ─────────────────────────────────── */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: rgba(243, 156, 18, 0.3);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  font-family: inherit;
}

.faq-question:hover {
  background: rgba(255,255,255,0.08);
}

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ─── CTA Section ─────────────────────────── */

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary), #0f3460);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(243, 156, 18, 0.08) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Explorar Restaurantes ─────────────── */

.explorar-container {
  max-width: 900px;
  margin: 0 auto;
}

.explorar-controls {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.restaurantes-grid {
  display: grid;
  gap: 16px;
}

.restaurante-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.restaurante-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.restaurante-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.restaurante-card-header .restaurante-icon {
  font-size: 2rem;
}

.restaurante-card-header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.restaurante-card-header small {
  color: var(--text-light);
}

.restaurante-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.distancia-badge {
  background: var(--primary);
  color: white;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.restaurante-card-footer {
  text-align: right;
}

/* ─── Footer ──────────────────────────────── */

.footer {
  background: #0d1117;
  color: white;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo-text {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.footer-brand p {
  margin-top: 12px;
  opacity: 0.5;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
}

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

.footer-links h4 {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.4;
  font-size: 0.85rem;
}

/* ─── Buttons ─────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #e67e22);
  color: var(--secondary);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: white;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

.btn-success {
  background: linear-gradient(135deg, var(--success), #219a52);
  color: white;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(39, 174, 96, 0.4);
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger), #c0392b);
  color: white;
}

.btn-danger:hover {
  transform: translateY(-3px);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ─── Cards ───────────────────────────────── */

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

/* ─── Formularios ─────────────────────────── */

/* ─── Ofertas / Newsletter ─────────────────── */

#form-ofertas input::placeholder {
  color: rgba(255,255,255,0.4);
}

#form-ofertas input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}

/* ─── Registro Grid ────────────────────────── */

.registro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.registro-beneficios-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.registro-beneficios-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.registro-beneficios-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.registro-beneficios-col ul li span:first-child {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ─── Responsive ───────────────────────────── */

@media (max-width: 768px) {
  .registro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─── Hero Badge Trial (para-dueños) ───────── */

.hero-badge-trial {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}
