/* ============================================
   14defebrero.com · Stylesheet
   Fuentes: Playfair Display + DM Sans
   ============================================ */

:root {
  --pink-50: #FBEAF0;
  --pink-100: #F4C0D1;
  --pink-300: #ED93B1;
  --pink-500: #D4537E;
  --pink-700: #993556;
  --pink-900: #4B1528;
  --teal-100: #E1F5EE;
  --teal-500: #1D9E75;
  --teal-700: #0F6E56;
  --amber-100: #FAEEDA;
  --amber-500: #BA7517;
  --green-100: #EAF3DE;
  --green-700: #27500A;
  --gray-50: #FAF9F7;
  --gray-100: #F1EFE8;
  --gray-200: #E2E0D8;
  --gray-400: #888780;
  --gray-700: #444441;
  --gray-900: #1A1917;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVIGATION ─────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--pink-700);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-heart { color: var(--pink-500); }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--gray-700);
}
.nav-links a:hover { color: var(--pink-700); }

.btn-nav {
  padding: 8px 20px;
  background: var(--pink-700);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  transition: background .15s, transform .1s;
}
.btn-nav:hover { background: var(--pink-900); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: .2s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; color: var(--gray-700); }
.btn-mobile-cta {
  padding: 12px;
  background: var(--pink-700);
  color: #fff !important;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 500;
}

/* ── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 32px 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, var(--pink-50) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, var(--pink-50) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 6px 14px;
  background: var(--pink-50);
  color: var(--pink-700);
  border-radius: var(--radius-full);
  border: 1px solid var(--pink-100);
  margin-bottom: 20px;
  font-weight: 500;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--pink-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--pink-700);
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.6;
}

.hero-search {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  max-width: 520px;
}
.hero-search input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: #fff;
  transition: border-color .15s;
  outline: none;
}
.hero-search input:focus { border-color: var(--pink-300); }
.hero-search input::placeholder { color: var(--gray-400); }

.btn-hero {
  padding: 13px 22px;
  background: var(--pink-700);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .15s, transform .1s;
  cursor: pointer;
}
.btn-hero:hover { background: var(--pink-900); transform: translateY(-1px); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-400);
}
.trust-avatars { display: flex; }
.ta {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500;
  border: 2px solid #fff;
  margin-left: -8px;
}
.ta:first-child { margin-left: 0; }
.ta1 { background: var(--pink-100); color: var(--pink-700); }
.ta2 { background: var(--teal-100); color: var(--teal-700); }
.ta3 { background: var(--amber-100); color: var(--amber-500); }
.ta4 { background: var(--green-100); color: var(--green-700); }

/* Hero visual side */
.hero-visual {
  flex: 0 0 380px;
  position: relative;
  z-index: 1;
  height: 480px;
}

.hero-phone {
  width: 230px;
  height: 420px;
  background: var(--gray-900);
  border-radius: 36px;
  padding: 12px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone-screen {
  background: #fff;
  border-radius: 28px;
  height: 100%;
  overflow: hidden;
  padding: 16px;
}
.phone-chat { display: flex; flex-direction: column; gap: 10px; }

.chat-msg {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 12px;
  max-width: 88%;
  line-height: 1.4;
}
.chat-msg.ai {
  background: var(--pink-50);
  color: var(--pink-900);
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--pink-700);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg.typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 14px;
}
.chat-msg.typing span {
  width: 6px; height: 6px;
  background: var(--pink-300);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.chat-msg.typing span:nth-child(2) { animation-delay: .2s; }
.chat-msg.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.chat-chips span {
  font-size: 10px;
  padding: 4px 8px;
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-full);
  color: var(--pink-700);
  background: #fff;
  cursor: pointer;
}

.card-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.card-float-1 { top: 20px; right: 0; animation-delay: 0s; }
.card-float-2 { bottom: 80px; left: -20px; animation-delay: 1s; }
.card-float-3 { top: 180px; right: -10px; animation-delay: .5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.cf-icon { font-size: 20px; }
.cf-text { display: flex; flex-direction: column; gap: 2px; }
.cf-text strong { font-size: 11px; font-weight: 500; color: var(--gray-900); }
.cf-text span { font-size: 10px; color: var(--gray-400); }

/* ── FEATURES ────────────────────────────── */
.features {
  padding: 80px 0;
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pink-500);
  font-weight: 500;
  margin-bottom: 8px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--gray-900);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.fc-icon { font-size: 28px; }
.feature-card h3 { font-size: 16px; font-weight: 500; color: var(--gray-900); }
.feature-card p { font-size: 14px; color: var(--gray-400); line-height: 1.6; flex: 1; }
.fc-link { font-size: 13px; color: var(--pink-700); font-weight: 500; }

.fc-ai { border-top: 3px solid var(--pink-300); }
.fc-plan { border-top: 3px solid var(--teal-500); }
.fc-regalo { border-top: 3px solid var(--amber-500); }
.fc-dir { border-top: 3px solid var(--teal-700); }

/* ── AI PREVIEW ──────────────────────────── */
.ai-preview {
  padding: 80px 0;
  background: #fff;
}
.ai-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ai-preview-text .section-label { text-align: left; }
.ai-preview-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}
.ai-preview-text > p {
  font-size: 15px;
  color: var(--gray-400);
  margin-bottom: 28px;
  line-height: 1.7;
}

.ai-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.ai-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.afl-icon {
  width: 32px; height: 32px;
  background: var(--pink-50);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--pink-700);
  flex-shrink: 0;
}
.ai-features-list strong { display: block; font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.ai-features-list span { font-size: 13px; color: var(--gray-400); }

.btn-primary {
  display: inline-block;
  padding: 13px 26px;
  background: var(--pink-700);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  transition: background .15s, transform .1s;
}
.btn-primary:hover { background: var(--pink-900); transform: translateY(-1px); }
.btn-large { padding: 16px 36px; font-size: 16px; }

.demo-window {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.demo-header {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.demo-dots { display: flex; gap: 6px; }
.demo-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}
.demo-dots span:nth-child(1) { background: #FF5F57; }
.demo-dots span:nth-child(2) { background: #FFBE2F; }
.demo-dots span:nth-child(3) { background: #2DCA56; }
.demo-title { font-size: 13px; color: var(--gray-400); margin-left: auto; }

.demo-chat {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
}
.demo-msg {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  max-width: 85%;
  line-height: 1.5;
}
.demo-msg.ai {
  background: var(--pink-50);
  color: var(--pink-900);
  border-bottom-left-radius: 4px;
}
.demo-msg.user {
  background: var(--pink-700);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.demo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.demo-chip {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-full);
  color: var(--pink-700);
  background: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .15s;
}
.demo-chip:hover { background: var(--pink-50); }

/* ── DIRECTORY PREVIEW ───────────────────── */
.directory-preview {
  padding: 80px 0;
  background: var(--gray-50);
}
.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.biz-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.biz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.biz-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.biz-info { padding: 18px; }
.biz-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.biz-name { font-size: 15px; font-weight: 500; margin-bottom: 2px; }
.biz-cat { font-size: 12px; color: var(--gray-400); }
.biz-verified {
  font-size: 11px;
  padding: 3px 8px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}
.biz-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.stars { color: var(--amber-500); font-size: 13px; }
.rating-num { font-size: 13px; font-weight: 500; }
.rating-count { font-size: 12px; color: var(--gray-400); }
.biz-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.biz-price { font-size: 13px; color: var(--pink-700); font-weight: 500; }
.btn-biz {
  padding: 7px 16px;
  border: 1px solid var(--pink-300);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--pink-700);
  transition: background .15s;
}
.btn-biz:hover { background: var(--pink-50); }

.dir-cta { text-align: center; margin-top: 36px; }
.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid var(--pink-700);
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--pink-700);
  font-weight: 500;
  transition: background .15s, color .15s;
}
.btn-outline:hover { background: var(--pink-700); color: #fff; }

/* ── PRICING ─────────────────────────────── */
.pricing { padding: 80px 0; background: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  align-items: start;
}
.price-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--pink-700);
  transform: scale(1.02);
}

.plan-badge {
  display: inline-block;
  font-size: 11px;
  padding: 4px 12px;
  background: var(--pink-50);
  color: var(--pink-700);
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  font-weight: 500;
}
.plan-name { font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--gray-400); }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-amount { font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--gray-900); }
.price-usd { font-size: 13px; color: var(--gray-400); }
.plan-period { font-size: 12px; color: var(--gray-400); margin-bottom: 20px; }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.plan-features li { font-size: 13px; color: var(--gray-700); }
.plan-features li::before { content: ''; }

.btn-plan {
  display: block;
  width: 100%;
  padding: 11px;
  text-align: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
  transition: background .15s;
}
.btn-plan:hover { background: var(--gray-50); }
.btn-plan-main {
  background: var(--pink-700);
  color: #fff;
  border-color: var(--pink-700);
}
.btn-plan-main:hover { background: var(--pink-900); }

/* ── TESTIMONIALS ────────────────────────── */
.testimonials { padding: 80px 0; background: var(--pink-50); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.testi-stars { color: var(--amber-500); font-size: 14px; margin-bottom: 12px; }
.testi-card > p { font-size: 14px; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500;
}
.testi-author strong { display: block; font-size: 14px; }
.testi-author span { font-size: 12px; color: var(--gray-400); }

/* ── FOOTER CTA ──────────────────────────── */
.footer-cta {
  padding: 80px 0;
  background: var(--pink-900);
  text-align: center;
}
.footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 28px;
}
.footer-cta h2 em { font-style: italic; color: var(--pink-300); }
.footer-cta .btn-primary { background: #fff; color: var(--pink-900); }
.footer-cta .btn-primary:hover { background: var(--pink-50); }
.footer-cta-sub { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 14px; }

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: var(--gray-900);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 16px;
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-links a:hover { color: #fff; }
.footer-markets { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }

/* ── VALENTINA PAGE ──────────────────────── */
.valentina-hero {
  padding: 100px 24px 60px;
  text-align: center;
  background: var(--pink-50);
  border-bottom: 1px solid var(--pink-100);
}
.valentina-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600;
  color: var(--pink-900);
  margin-bottom: 12px;
}
.valentina-hero p {
  font-size: 16px;
  color: var(--pink-700);
  max-width: 480px;
  margin: 0 auto;
}

.valentina-chat-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 24px;
}
.chat-window {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.chat-header {
  background: var(--pink-700);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 36px; height: 36px;
  background: var(--pink-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.chat-header-info strong { display: block; font-size: 14px; color: #fff; }
.chat-header-info span { font-size: 12px; color: rgba(255,255,255,.7); }
.chat-online {
  width: 8px; height: 8px;
  background: #2DCA56;
  border-radius: 50%;
  margin-left: auto;
}

.chat-messages {
  padding: 20px;
  min-height: 300px;
  max-height: 420px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.msg {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  max-width: 80%;
  line-height: 1.6;
  animation: msgIn .2s ease-out;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.msg.ai-msg {
  background: var(--pink-50);
  color: var(--pink-900);
  border-bottom-left-radius: 4px;
}
.msg.user-msg {
  background: var(--pink-700);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.msg.result-msg {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-900);
  max-width: 100%;
  border-radius: var(--radius-md);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.chip {
  font-size: 13px;
  padding: 7px 14px;
  border: 1.5px solid var(--pink-300);
  border-radius: var(--radius-full);
  color: var(--pink-700);
  background: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .15s;
}
.chip:hover { background: var(--pink-700); color: #fff; border-color: var(--pink-700); }
.chip.selected { background: var(--pink-700); color: #fff; border-color: var(--pink-700); }

.chat-input-area {
  border-top: 1px solid var(--gray-200);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
}
.chat-input-area input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
}
.chat-input-area input:focus { border-color: var(--pink-300); }
.btn-send {
  padding: 10px 18px;
  background: var(--pink-700);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .15s;
}
.btn-send:hover { background: var(--pink-900); }
.btn-send:disabled { background: var(--gray-200); cursor: not-allowed; }

.loading-dots { display: flex; gap: 4px; align-items: center; }
.loading-dots span {
  width: 6px; height: 6px;
  background: var(--pink-300);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.loading-dots span:nth-child(2) { animation-delay: .2s; }
.loading-dots span:nth-child(3) { animation-delay: .4s; }

/* ── DIRECTORY PAGE ──────────────────────── */
.directory-header {
  padding: 100px 24px 40px;
  background: var(--pink-50);
  border-bottom: 1px solid var(--pink-100);
  text-align: center;
}
.directory-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--pink-900);
  margin-bottom: 12px;
}
.directory-header p { font-size: 16px; color: var(--pink-700); }

.dir-filters {
  padding: 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--gray-700);
  background: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .15s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--pink-700);
  color: #fff;
  border-color: var(--pink-700);
}
.dir-search-input {
  flex: 1;
  min-width: 200px;
  padding: 9px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
}
.dir-search-input:focus { border-color: var(--pink-300); }

.dir-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.dir-biz-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.dir-biz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.dir-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}
.dir-card-body { padding: 18px; }
.dir-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}
.dir-card-name { font-size: 15px; font-weight: 500; }
.dir-card-cat { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; }
.dir-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  font-size: 12px;
}
.dir-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dir-card-price { font-size: 13px; font-weight: 500; color: var(--pink-700); }
.btn-reservar {
  padding: 8px 16px;
  background: var(--pink-700);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  transition: background .15s;
}
.btn-reservar:hover { background: var(--pink-900); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 90px 24px 48px; }
  .hero-visual { display: none; }
  .ai-preview-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 14px 20px; }
  .price-card.featured { transform: none; }
}

@media (max-width: 600px) {
  .hero-search { flex-direction: column; }
  .hero-search input { border-radius: var(--radius-md); }
  .btn-hero { border-radius: var(--radius-md); text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 12px; }
}
