/* Stitch Artisanal Clarity Theme for poquitotalk.hero-apps.com */
:root {
  --bg-cream: #FBF9F5;
  --surface-card: #FFFFFF;
  --surface-container: #F5F3EF;
  --surface-container-high: #EFEEEA;
  --text-charcoal: #1B1C1A;
  --text-muted: #4D463E;
  --text-outline: #7E766D;
  --brand-taupe: #665A4C;
  --brand-taupe-container: #807264;
  --action-terracotta: #964824;
  --action-terracotta-light: #FD9A6F;
  --action-terracotta-bg: #FFDBCD;
  --sage-green: #4F604E;
  --sage-green-bg: #D5E8D1;
  --whatsapp-green: #25D366;
  --card-border: #E4E2DE;
  --shadow-soft: rgba(142, 128, 113, 0.12);
}

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

body {
  background-color: var(--bg-cream);
  color: var(--text-charcoal);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Navbar */
.navbar {
  border-bottom: 1px solid var(--card-border);
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.logo-bubble {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: var(--action-terracotta-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-family: 'Lexend', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-tag {
  font-size: 11px;
  background: var(--sage-green-bg);
  padding: 3px 10px;
  border-radius: 12px;
  color: var(--sage-green);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--action-terracotta);
}

.btn-primary-nav {
  background: var(--action-terracotta);
  color: #FFF;
  padding: 10px 20px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(150, 72, 36, 0.2);
  transition: transform 0.2s, background 0.2s;
}

.btn-primary-nav:hover {
  background: #7d371b;
  transform: translateY(-1px);
}

.btn-primary-nav:hover .arrow {
  transform: translateX(4px);
}

/* Hero Section */
.hero-section {
  padding: 70px 0 50px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-container);
  border: 1px solid var(--card-border);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  color: var(--brand-taupe);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Lexend', sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-charcoal);
  max-width: 820px;
  margin: 0 auto 20px;
}

.text-terracotta {
  color: var(--action-terracotta);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-hero-primary {
  background: var(--action-terracotta);
  color: #FFF;
  padding: 16px 32px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 8px 24px rgba(150, 72, 36, 0.25);
}

.btn-hero-primary:hover {
  background: #7d371b;
  transform: translateY(-2px);
}

.btn-hero-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-hero-secondary {
  background: var(--surface-card);
  border: 1px solid var(--card-border);
  color: var(--text-charcoal);
  padding: 16px 28px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-hero-secondary:hover {
  border-color: var(--action-terracotta);
  background: var(--surface-container);
}

/* Demo Section */
.demo-section {
  padding: 30px 0 70px;
}

.card-panel {
  background: var(--surface-card);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 12px 32px var(--shadow-soft);
}

.card-header h2 {
  font-family: 'Lexend', sans-serif;
  font-size: 24px;
  color: var(--text-charcoal);
  margin-bottom: 6px;
}

.card-header p {
  color: var(--text-muted);
  font-size: 14px;
}

.demo-box {
  margin-top: 24px;
}

.demo-box label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-outline);
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 8px;
}

textarea {
  width: 100%;
  background: var(--surface-container);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 16px;
  color: var(--text-charcoal);
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
  outline: none;
}

textarea:focus {
  border-color: var(--action-terracotta);
}

.presets-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}

.pill-btn {
  background: var(--surface-container);
  border: 1px solid var(--card-border);
  color: var(--text-charcoal);
  padding: 8px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.pill-btn:hover {
  border-color: var(--action-terracotta);
  background: var(--action-terracotta-bg);
}

.btn-translate {
  width: 100%;
  background: var(--action-terracotta);
  color: #FFF;
  border: none;
  padding: 16px;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(150, 72, 36, 0.2);
  transition: transform 0.2s, background 0.2s;
}

.btn-translate:hover {
  background: #7d371b;
}

.btn-translate:hover .arrow {
  transform: translateX(4px);
}

.result-box {
  margin-top: 24px;
  background: var(--bg-cream);
  border: 1px solid var(--action-terracotta-light);
  border-radius: 20px;
  padding: 20px;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.result-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--action-terracotta);
  letter-spacing: 0.5px;
}

.badge-gemma {
  background: var(--action-terracotta-bg);
  color: var(--action-terracotta);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 8px;
}

.result-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-charcoal);
  line-height: 1.5;
}

.result-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.btn-whatsapp {
  flex: 1.2;
  background: var(--whatsapp-green);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary-action {
  background: var(--surface-card);
  border: 1px solid var(--card-border);
  color: var(--text-charcoal);
  padding: 12px 18px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

/* Pricing Section */
.pricing-section {
  padding: 50px 0 90px;
}

.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-title h2 {
  font-family: 'Lexend', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-charcoal);
}

.section-title p {
  color: var(--text-muted);
  margin-top: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 850px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface-card);
  border: 1px solid var(--card-border);
  border-radius: 26px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px var(--shadow-soft);
}

.pricing-card.featured {
  border: 2px solid var(--action-terracotta);
}

.featured-badge {
  position: absolute;
  top: -12px;
  align-self: center;
  background: var(--action-terracotta);
  color: #FFF;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.plan-header h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 20px;
  color: var(--text-charcoal);
}

.plan-desc {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 4px;
}

.price-box {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.currency {
  font-size: 24px;
  font-weight: 800;
  color: var(--action-terracotta);
}

.amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-charcoal);
  line-height: 1;
}

.period {
  font-size: 13px;
  color: var(--text-muted);
}

.features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.features li {
  font-size: 14px;
  color: var(--text-charcoal);
  margin-bottom: 12px;
}

.btn-checkout {
  width: 100%;
  background: var(--surface-container);
  border: 1px solid var(--card-border);
  color: var(--text-charcoal);
  padding: 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-checkout:hover {
  border-color: var(--action-terracotta);
  background: var(--surface-card);
}

.featured-btn {
  background: var(--action-terracotta);
  color: #FFF;
  border: none;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(150, 72, 36, 0.25);
}

.featured-btn:hover {
  background: #7d371b;
}

/* Footer */
.footer {
  border-top: 1px solid var(--card-border);
  padding: 32px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}
