/* ============================================
   PRODUCT PAGES
   ============================================ */

.prod-hero {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.prod-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.prod-breadcrumb a { color: var(--text); transition: color .15s; }
.prod-breadcrumb a:hover { color: var(--accent); }
.prod-breadcrumb span { color: var(--text-faint); margin: 0 8px; }
.prod-breadcrumb span:last-child { color: var(--ink); font-weight: 500; }

.prod-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.prod-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: 100px;
}
.prod-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.prod-title .accent { color: var(--accent); }
.prod-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.prod-hero-visual {
  position: relative;
}
.prod-mockup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px -12px rgba(0,0,0,0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pm-tab {
  padding: 24px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  transition: all .15s;
}
.pm-tab:last-child { border-right: none; }
.pm-tab-active {
  background: var(--accent);
  color: #fff;
}

/* Features */
.prod-features { padding: 100px 0; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .2s;
}
.feat-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.feat-icon {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: block;
}
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feat-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Detail block */
.prod-detail {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.detail-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 16px 0 20px;
}
.detail-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.detail-list {
  list-style: none;
}
.detail-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text);
}
.detail-list li strong {
  color: var(--ink);
  font-weight: 600;
}
.detail-list li:last-child { border-bottom: none; }

/* Invoice mockup */
.invoice-mock {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
  font-size: 14px;
}
.im-head {
  background: var(--ink);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.im-tipo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.im-num {
  font-family: var(--font-mono);
  color: #b4b4b4;
  font-size: 12.5px;
}
.im-body { padding: 20px; }
.im-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.im-row span { color: var(--text-muted); }
.im-row strong { color: var(--ink); font-weight: 600; }
.im-total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid var(--ink) !important;
  border-bottom: none !important;
}
.im-total strong {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
}
.im-foot {
  background: var(--bg-soft);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}
.im-cae span {
  display: block;
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.im-cae strong {
  font-family: var(--font-mono);
  color: var(--ink);
  font-size: 13px;
}
.im-qr {
  width: 56px; height: 56px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: var(--radius);
}

/* ============================================
   PRECIOS
   ============================================ */
.precios-hero {
  padding: 80px 0 48px;
  text-align: center;
}
.precios-hero h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.05;
}
.precios-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

.billing-toggle {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
}
.billing-toggle button {
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 100px;
  color: var(--text-muted);
  transition: all .15s;
}
.billing-toggle button.active {
  background: var(--ink);
  color: #fff;
}
.billing-badge {
  display: inline-block;
  padding: 2px 6px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
}

.plans {
  padding: 48px 0 100px;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.plan-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card-featured {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 24%);
  transform: scale(1.02);
  box-shadow: 0 20px 48px -12px rgba(230,57,70,0.15);
}
.plan-featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.plan-tagline {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  min-height: 40px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.plan-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.plan-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.plan-period {
  font-size: 14px;
  color: var(--text-muted);
}
.plan-billing-note {
  font-size: 12.5px;
  color: var(--text-faint);
  margin-bottom: 32px;
}
.plan-cta {
  margin-bottom: 32px;
}
.plan-cta .btn { width: 100%; }
.plan-features {
  list-style: none;
  flex: 1;
}
.plan-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.plan-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-features li.muted {
  color: var(--text-faint);
}
.plan-features li.muted::before {
  content: '—';
  color: var(--text-faint);
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.plan-section-title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin: 8px 0;
}

/* ============================================
   CONTACTO
   ============================================ */
.contact-hero {
  padding: 80px 0 64px;
  text-align: center;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.contact-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto 100px;
  padding: 0 24px;
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
  font-family: var(--font-body);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #2a2a2a;
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 32px; height: 32px;
  background: rgba(230,57,70,0.15);
  color: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6a6a6a;
  margin-bottom: 4px;
}
.contact-item-text a,
.contact-item-text span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.contact-hours {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-hours h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-hours div {
  font-size: 13.5px;
  color: var(--text);
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
}
.contact-hours div span { color: var(--text-muted); }

/* ============================================
   APP móvil específico
   ============================================ */
.phone-mockup {
  width: 280px;
  margin: 0 auto;
  aspect-ratio: 9/19;
  background: var(--ink);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.2);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-statusbar {
  height: 24px;
  background: var(--bg-soft);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
}
.phone-header {
  padding: 16px;
  background: var(--accent);
  color: #fff;
}
.phone-header h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.phone-header span {
  font-size: 11px;
  opacity: 0.9;
}
.phone-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-card {
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  padding: 10px;
  border-radius: var(--radius);
  font-size: 11px;
}
.phone-card strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
  font-weight: 600;
}
.phone-card span {
  color: var(--text-muted);
  font-size: 10px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .prod-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .prod-title { font-size: 36px; }
  .feat-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card-featured { transform: none; }
  .precios-hero h1 { font-size: 38px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .pm-tab { padding: 14px 8px; font-size: 12px; }
}
