/* ============================================================
   CORPORACIÓN LON — Landing Pages CSS
   ============================================================ */

/* Inherit base variables */
:root {
  --gold:      #BF9811;
  --gold-dark: #9A7C0E;
  --dark:      #1A1A1A;
  --dark-2:    #2C2C2C;
  --gray-bg:   #F7F5F0;
  --gray-mid:  #E8E4DC;
  --text:      #333;
  --white:     #fff;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  --nav-h:     68px;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --transition:all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: #fff; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== LANDING NAV (minimal) ===== */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1050;
  height: var(--nav-h); background: var(--dark);
  display: flex; align-items: center;
  transition: box-shadow .3s;
}
.lp-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.45); background: rgba(22,18,10,.97); }
.lp-nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.lp-logo img { height: 40px; width: auto; mix-blend-mode: screen; }
.lp-nav-right { display: flex; align-items: center; gap: .8rem; }
.lang-toggle {
  display: flex; align-items: center; gap: .3rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; padding: .28rem .7rem;
}
.lang-btn {
  font-family: var(--font-head); font-size: .7rem; font-weight: 800;
  color: rgba(255,255,255,.4); background: none; border: none;
  cursor: pointer; letter-spacing: .05em; transition: color .2s;
}
.lang-btn.active { color: var(--gold); }
.lang-sep { color: rgba(255,255,255,.2); font-size: .65rem; }
.lp-back {
  font-family: var(--font-head); font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase;
  display: flex; align-items: center; gap: .35rem; transition: color .2s;
}
.lp-back:hover { color: rgba(255,255,255,.7); }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .78rem 1.9rem; border-radius: 4px; border: 2px solid var(--gold);
  transition: var(--transition); cursor: pointer;
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; transform: translateY(-2px); }
.btn-gold.lg { padding: 1rem 2.4rem; font-size: .9rem; }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: rgba(255,255,255,.85);
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .78rem 1.9rem; border-radius: 4px; border: 2px solid rgba(255,255,255,.3);
  transition: var(--transition); cursor: pointer;
}
.btn-outline-light:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }
.btn-wa {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25D366; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .78rem 1.9rem; border-radius: 4px; border: none;
  transition: var(--transition); cursor: pointer;
}
.btn-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }

/* ===== FLOATING WA ===== */
.wa-float {
  position: fixed; bottom: 5.2rem; right: 1.8rem; z-index: 900;
  background: #25D366; color: #fff; border: none; border-radius: 50%;
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  cursor: pointer; transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}

/* ===== SECTION UTILITIES ===== */
.lp-section { padding: 88px 0; }
.lp-section.alt { background: var(--gray-bg); }
.lp-section.dark { background: var(--dark); background-image: radial-gradient(ellipse at 20% 80%, rgba(191,152,17,.07), transparent 55%); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--gold);
  margin-bottom: .5rem; display: block;
}
.section-label.light { color: rgba(191,152,17,.8); }
.section-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--dark); line-height: 1.15;
}
.section-title span { color: var(--gold); }
.section-title.light { color: #fff; }
.section-title.light span { color: var(--gold); }
.gold-bar { width: 52px; height: 4px; background: var(--gold); border-radius: 2px; margin: 1rem 0 2rem; }
.gold-bar.center { margin-left: auto; margin-right: auto; }

/* ===== FADE ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

.page-template-landing .page-hero { display:none; }

/* ===== 1. HERO ===== */
.lp-hero {
  min-height: 100vh; padding-top: var(--nav-h);
  background: var(--dark); position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.lp-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.lp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,8,2,.93) 45%, rgba(10,8,2,.6) 75%, rgba(10,8,2,.25) 100%);
}
.lp-hero-content { position: relative; z-index: 1; padding: 80px 0; }
.lp-service-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(191,152,17,.15); border: 1px solid rgba(191,152,17,.35);
  color: var(--gold); font-family: var(--font-head); font-size: .68rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .38rem 1rem; border-radius: 20px; margin-bottom: 1.4rem;
}
.lp-hero-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.9rem, 4.5vw, 3.4rem); color: #fff; line-height: 1.08;
  margin-bottom: 1.2rem;
}
.lp-hero-title span { color: var(--gold); }
.lp-hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,.72); line-height: 1.75;
  max-width: 560px; margin-bottom: 2.2rem;
}
.lp-hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.5rem; }
.lp-trust {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.1);
  display: none;
}
.lp-trust-label {
  font-family: var(--font-head); font-size: .68rem; font-weight: 700;
  color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em;
}
.lp-trust-badge {
  display: flex; align-items: center; gap: .4rem;
  font-family: var(--font-head); font-size: .74rem; font-weight: 700;
  color: rgba(255,255,255,.6);
}
.lp-trust-badge i { color: var(--gold); font-size: .8rem; }

/* ===== 2. PROBLEMA ===== */
.problema-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.problema-card {
  background: #fff; border-radius: 10px; padding: 1.6rem;
  border-left: 4px solid var(--gray-mid); box-shadow: var(--shadow);
  transition: var(--transition);
}
.problema-card:hover { border-left-color: var(--gold); transform: translateX(4px); }
.problema-card .quote-mark { font-size: 2.5rem; color: var(--gold); line-height: 1; margin-bottom: .4rem; font-family: Georgia, serif; }
.problema-card p { font-size: .9rem; color: #555; font-style: italic; line-height: 1.65; margin: 0; }
.problema-intro { font-size: 1.05rem; color: #555; line-height: 1.75; max-width: 700px; }

/* ===== 3. SOLUCIÓN ===== */
.solucion-feature {
  display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.5rem;
}
.solucion-icon {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  background: rgba(191,152,17,.1); display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-size: 1.25rem;
}
.solucion-feature h4 {
  font-family: var(--font-head); font-weight: 700; font-size: .96rem;
  color: var(--dark); margin-bottom: .3rem;
}
.solucion-feature p { font-size: .87rem; color: #666; line-height: 1.65; margin: 0; }
.solucion-img {
  width: 100%; height: 380px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.15); position: relative;
  background: linear-gradient(135deg,#1a1508,#2a2010);
  display: flex; align-items: center; justify-content: center;
}
.solucion-img img { width: 100%; height: 100%; object-fit: cover; }
.solucion-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--gold); color: #fff;
  font-family: var(--font-head); font-size: .72rem; font-weight: 800;
  padding: .55rem 1.1rem; border-radius: 6px;
  display: flex; align-items: center; gap: .5rem;
  box-shadow: 0 4px 16px rgba(191,152,17,.4);
}

/* ===== 4. CÓMO FUNCIONA ===== */
.proceso-steps { position: relative; }
.proceso-steps::before {
  content: ''; position: absolute; left: 28px; top: 40px; bottom: 40px;
  width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(191,152,17,.1));
}
.paso {
  display: flex; gap: 1.5rem; margin-bottom: 2.4rem; position: relative;
}
.paso:last-child { margin-bottom: 0; }
.paso-num {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: #fff;
  font-family: var(--font-head); font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(191,152,17,.35); position: relative; z-index: 1;
}
.paso-body h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  color: var(--dark); margin-bottom: .4rem; padding-top: .8rem;
}
.paso-body p { font-size: .88rem; color: #666; line-height: 1.65; margin: 0; }
.video-embed {
  width: 100%; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden;
  background: #111; position: relative; box-shadow: 0 16px 48px rgba(0,0,0,.2);
}
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.video-placeholder {
  width: 100%; height: 100%; background: linear-gradient(135deg,#1a1508,#2a2010);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; cursor: pointer;
}
.video-play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff; transition: var(--transition);
  box-shadow: 0 0 0 12px rgba(191,152,17,.2);
}
.video-play-btn:hover { transform: scale(1.1); box-shadow: 0 0 0 18px rgba(191,152,17,.15); }
.video-caption { font-family: var(--font-head); font-size: .8rem; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; }

/* ===== 5. PARA QUIÉN ===== */
.perfil-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px; padding: 1.8rem; height: 100%; transition: var(--transition);
  text-align: center;
}
.perfil-card:hover { background: rgba(191,152,17,.1); border-color: rgba(191,152,17,.3); transform: translateY(-4px); }
.perfil-icon-wrap {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(191,152,17,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
  margin: 0 auto 1rem;
}
.perfil-card h3,
.perfil-card h4 {
  font-family: var(--font-head); font-weight: 800; font-size: .95rem;
  color: #fff; margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .05em;
}
.perfil-card p { font-size: .84rem; color: rgba(255,255,255,.58); line-height: 1.6; margin: 0; }

/* ===== 6. BENEFICIOS ===== */
.beneficio-card {
  background: #fff; border-radius: 10px; padding: 2rem 1.6rem;
  box-shadow: var(--shadow); height: 100%; transition: var(--transition);
  border-bottom: 3px solid transparent; text-align: center;
}
.beneficio-card:hover { border-bottom-color: var(--gold); transform: translateY(-5px); }
.beneficio-card .b-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1.1rem;
  background: rgba(191,152,17,.1); display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-size: 1.5rem;
}
.beneficio-card h4 {
  font-family: var(--font-head); font-weight: 800; font-size: .95rem;
  color: var(--dark); margin-bottom: .5rem;
}
.beneficio-card p { font-size: .86rem; color: #777; line-height: 1.65; margin: 0; }
.diferenciador-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: #fff;
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  padding: .4rem 1rem; border-radius: 20px; margin: .25rem;
}
.diferenciador-pill i { font-size: .7rem; }

/* ===== 7. CONFIANZA ===== */
.cert-badge {
  background: #fff; border-radius: 10px; padding: 1.4rem 1.2rem;
  text-align: center; box-shadow: var(--shadow);
  transition: var(--transition); height: 100%;
}
.cert-badge:hover { transform: translateY(-3px); }
.cert-badge i { font-size: 2rem; color: var(--gold); margin-bottom: .6rem; display: block; }
.cert-badge h5 { font-family: var(--font-head); font-weight: 800; font-size: .9rem; color: var(--dark); margin-bottom: .3rem; }
.cert-badge p { font-size: .76rem; color: #888; margin: 0; }
.partner-chip {
  background: var(--gray-bg); border-radius: 6px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: .74rem; font-weight: 700;
  color: #666; transition: var(--transition); border: 1px solid transparent;
  padding: .4rem;
}
.partner-chip:hover { background: var(--dark); color: #fff; }
.partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px,1fr)); gap: .7rem; }

/* ===== 8. FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--gray-mid); overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--gray-mid); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.2rem 0; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-head); font-size: .97rem; font-weight: 700;
  color: var(--dark); transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q i { color: var(--gold); font-size: .85rem; flex-shrink: 0; transition: transform .3s; }
.faq-q.open i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease;
}
.faq-a.open { max-height: 300px; padding-bottom: 1.2rem; }
.faq-a p { font-size: .9rem; color: #666; line-height: 1.7; margin: 0; }

/* ===== 9. CTA FORM ===== */
.cta-form-wrap {
  background: var(--dark);
  background-image: radial-gradient(ellipse at 80% 20%, rgba(191,152,17,.1), transparent 55%);
  padding: 88px 0;
}
.form-box {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 2.4rem; max-width: 560px;
}
.form-box h3 {
  font-family: var(--font-head); font-weight: 900; font-size: 1.4rem;
  color: #fff; margin-bottom: .5rem;
}
.form-box .sub { font-size: .9rem; color: rgba(255,255,255,.55); margin-bottom: 1.8rem; }
.form-lbl { font-family: var(--font-head); font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.5); margin-bottom: .3rem; display: block; text-transform: uppercase; letter-spacing: .06em; }
.form-inp {
  width: 100%; border: 1.5px solid rgba(255,255,255,.12); border-radius: 6px;
  background: rgba(255,255,255,.06); color: #fff; padding: .75rem 1rem;
  font-size: .9rem; font-family: var(--font-body); margin-bottom: 1rem;
  transition: border-color .2s;
}
.form-inp:focus { border-color: var(--gold); outline: none; background: rgba(255,255,255,.08); }
.form-inp::placeholder { color: rgba(255,255,255,.25); }
.form-inp option { background: var(--dark-2); color: #fff; }
.form-divider {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--font-head); font-size: .72rem; color: rgba(255,255,255,.3);
  text-transform: uppercase; letter-spacing: .08em; margin: 1rem 0;
}
.form-divider::before, .form-divider::after { content:''; flex:1; height:1px; background:rgba(255,255,255,.1); }
.cta-info h3,
.cta-info-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2rem); color: #fff; margin-bottom: .8rem;
}
.cta-info p,
.cta-info-desc { color: rgba(255,255,255,.65); font-size: .97rem; line-height: 1.7; margin-bottom: .8rem; }
.cta-reassurance {
  display: flex; align-items: center; gap: .6rem; margin-top: .8rem;
  font-size: .8rem; color: rgba(255,255,255,.55); font-family: var(--font-head);
}
.cta-reassurance i { color: var(--gold); font-size: .75rem; }

/* ===== MINIMAL FOOTER ===== */
.lp-footer {
  background: #0d0d0d; padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: center;
}
.lp-footer-inner {
  max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 24px;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: .8rem;
}
.lp-footer p { font-size: .74rem; color: rgba(255,255,255,.25); }
.lp-footer a { font-size: .74rem; color: rgba(255,255,255,.3); transition: color .2s; }
.lp-footer a:hover { color: var(--gold); }
.lp-footer-links { display: flex; gap: 1.2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .lp-section { padding: 64px 0; }
  .proceso-steps::before { left: 22px; }
  .paso-num { width: 44px; height: 44px; font-size: .9rem; }
  .lp-hero-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .form-box { padding: 1.6rem; }
}
@media (max-width: 480px) {
  .lp-hero-ctas { flex-direction: column; }
  .btn-gold, .btn-outline-light, .btn-wa { width: 100%; justify-content: center; }
}

/* ===== MP4 VIDEO DIRECTO ===== */
.lp-video-mp4 {
  width: 100%; border-radius: 10px;
  display: block; background: #000;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
  max-height: 420px; object-fit: cover;
}

/* Hero background — espejo horizontal */
.lp-hero-bg { transform: scaleX(-1); }
