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

/* === Reset === */
.lp-header, .lp-header *, .lp-hero, .lp-hero *,
.lp-servicios, .lp-servicios *, .lp-ventajas, .lp-ventajas *,
.lp-b2b, .lp-b2b *, .lp-faqs, .lp-faqs *,
.lp-registros, .lp-registros *, .lp-footer, .lp-footer * {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  box-sizing: border-box;
}

body { margin: 0; background: #fff; }

.lp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* === Header === */
/* Header styles defined in front-moderno.css */

/* === Hero === */
.lp-hero {
  background: #9b1b1b;
  padding: 0;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.lp-hero-text {
  padding: 36px 48px 36px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-hero h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.lp-hero p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 420px;
}

.lp-hero-links { display: flex; flex-direction: column; gap: 6px; }

.lp-hero-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
  transition: color .15s;
}

.lp-hero-links a::before {
  content: '→ ';
  margin-right: 4px;
}

.lp-hero-links a:hover { color: #fff; }

.lp-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
}

.lp-hero-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-hero-stat:last-child {
  border-bottom: none;
}

.lp-hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  min-width: 80px;
}

.lp-hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-text { padding: 40px 24px; }
  .lp-hero h1 { font-size: 1.6rem; }
  .lp-hero-right {
    display: none !important;
  }
  .lp-hero-stat {
    flex-direction: column;
    text-align: center;
    flex: 1;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 16px;
  }
  .lp-hero-stat:last-child { border-right: none; }
  .lp-hero-stat-num { min-width: auto; font-size: 1.5rem; }
  .lp-hero-stat-label { font-size: 0.72rem; }
}

/* === Servicios === */
.lp-servicios {
  background: #f6f6f6;
  padding: 64px 0 72px;
}

.lp-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #111;
  text-align: center;
  letter-spacing: -0.03em;
  margin: 0 0 40px;
}

.lp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .lp-cards { grid-template-columns: 1fr; }
}

.lp-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
  position: relative;
  overflow: hidden;
}

.lp-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.lp-card-top {
  height: 4px;
  background: #9b1b1b;
}

.lp-card-featured .lp-card-top {
  height: 4px;
  background: #111;
}

.lp-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin: 28px 28px 10px;
  letter-spacing: -0.02em;
}

.lp-card p {
  font-size: 0.87rem;
  color: #666;
  line-height: 1.6;
  margin: 0 28px;
  flex-grow: 1;
}

.lp-card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
  margin: 20px 28px 4px;
  letter-spacing: -0.02em;
}

.lp-card-price span {
  font-size: 0.72rem;
  font-weight: 400;
  color: #999;
  display: block;
  margin-top: 2px;
}

.lp-card-btn {
  display: block;
  margin: 20px 28px 0;
  padding: 13px 0;
  text-align: center;
  background: #111;
  color: #fff;
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
}

.lp-card-btn:hover {
  background: #9b1b1b;
  color: #fff;
}

.lp-card-note {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: #aaa;
  margin: 10px 28px 28px;
}

/* === Ventajas === */
.lp-ventajas {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid #eee;
}

.lp-ventajas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.lp-ventaja { }

.lp-ventaja-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #9b1b1b;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.lp-ventaja h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
}

.lp-ventaja p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* === B2B === */
.lp-b2b {
  background: #111;
  padding: 72px 0;
}

.lp-b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

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

.lp-b2b-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9b1b1b;
  display: block;
  margin-bottom: 14px;
}

.lp-b2b-text h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 14px;
}

.lp-b2b-text > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0 0 20px;
}

.lp-b2b-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.lp-b2b-text ul li {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
}

.lp-b2b-text ul li::before {
  content: '— ';
  color: #9b1b1b;
  font-weight: 700;
}

.lp-b2b-btn {
  display: inline-block;
  background: #9b1b1b;
  color: #fff;
  font-size: 0.87rem;
  font-weight: 600;
  padding: 12px 28px;
  text-decoration: none;
  transition: background .15s;
}

.lp-b2b-btn:hover { background: #c0392b; color: #fff; }

.lp-b2b-code pre {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  overflow-x: auto;
  margin: 0;
  font-family: 'SF Mono', Consolas, monospace;
}

.lp-b2b-code .c { color: rgba(255,255,255,0.3); }
.lp-b2b-code .k { color: #e57373; }
.lp-b2b-code .s { color: #81c784; }

/* === FAQs === */
.lp-faqs {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid #eee;
}

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

.lp-faqs .accordion-item {
  border: none !important;
  border-bottom: 1px solid #e8e8e8 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.lp-faqs .accordion-button {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: #111 !important;
  padding: 18px 0 !important;
  background: transparent !important;
}

.lp-faqs .accordion-button:not(.collapsed) {
  color: #9b1b1b !important;
  box-shadow: none !important;
  background: transparent !important;
}

.lp-faqs .accordion-button:focus { box-shadow: none !important; }

.lp-faqs .accordion-body {
  padding: 0 0 16px !important;
}

.lp-faqs .accordion-body p {
  font-size: 0.87rem !important;
  color: #666 !important;
  line-height: 1.7 !important;
  margin: 0;
}

/* === Registros === */
.lp-registros {
  background: #f6f6f6;
  padding: 40px 0;
  border-top: 1px solid #eee;
}

.lp-registros h5 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  margin-bottom: 14px;
}

.lp-registros-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.lp-registros-links a {
  font-size: 0.78rem;
  color: #777;
  padding: 4px 12px;
  border: 1px solid #ddd;
  background: #fff;
  text-decoration: none;
  transition: all .15s;
}

.lp-registros-links a:hover {
  border-color: #9b1b1b;
  color: #9b1b1b;
}

.lp-ver-todos {
  font-weight: 600 !important;
  color: #9b1b1b !important;
  border-color: #9b1b1b !important;
}

/* === Footer === */
.lp-footer {
  background: #111;
  padding: 56px 0 0;
  color: rgba(255,255,255,0.45);
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}

@media (max-width: 768px) {
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}

.lp-footer-brand img {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: 12px;
}

.lp-footer-brand p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  max-width: 240px;
}

.lp-footer h6 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin: 0 0 12px;
}

.lp-footer ul { list-style: none; padding: 0; margin: 0; }
.lp-footer ul li { margin-bottom: 7px; }
.lp-footer ul li a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; }
.lp-footer ul li a:hover { color: #fff; }

.lp-footer-bottom {
  margin-top: 40px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-footer-bottom span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .lp-footer-bottom { flex-direction: column; }
}
