/* =========================================================================
   SISTEMA DE ESTILOS HIGH-TICKET (SIN FILTRACIONES)
   ========================================================================= */
:root {
  --bg-dark: #080d1a; 
  --bg-light: #ffffff; 
  --bg-light-alt: #f1f5f9; 
  --bg-slate-dark: #0f172a; 
  --bg-light-warm: #f8fafc;
  --text: #0f172a; 
  --muted: #475569; 
  --line: #e2e8f0;
  --accent: #2563EB; 
  --cta-bg: #c2410c; 
  --cta-bright: #ea580c; 
  --cta-hover: #9a3412; 
  --green: #16a34a;
  --display: 'Montserrat', sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --container-max: 1200px; 
  --radius: 8px;
}

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

body { 
    width: 100%; 
    max-width: 100vw; 
    font-family: var(--body); 
    color: var(--text); 
    background: #fff; 
    line-height: 1.6; 
    font-size: 18px; 
    overflow-x: clip; 
    margin: 0; 
    padding: 0;
} 

main { overflow-x: clip; width: 100%; }
section { scroll-margin-top: 100px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; } 
.bg-dark { background: var(--bg-dark); color: #fff; }
.bg-light { background: var(--bg-light); }
.bg-light-alt { background: var(--bg-light-alt); }
.bg-light-warm { background: var(--bg-light-warm); }
.bg-slate-dark { background: var(--bg-slate-dark); color: #fff; }
.bg-white { background: #fff; }
.text-accent { color: var(--cta-bright); } 
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

h1, h2, h3 { font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(32px, 4.5vw, 50px); margin-bottom: 16px; line-height: 1.1; text-shadow: 0 4px 15px rgba(0,0,0,0.6); color: #fff; max-width: 850px; } 
h2 { font-size: clamp(32px, 4.5vw, 44px); margin-bottom: 20px; line-height: 1.15; }
.centered-h2 { text-align: center; margin-left: auto; margin-right: auto; }
h3 { font-size: 24px; margin-bottom: 12px; letter-spacing: -0.01em;} 
.kicker { display: inline-block; font-size: 15px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; color: var(--cta-bright); }

.btn-primary { display: inline-flex; align-items: center; justify-content: center; min-height: 64px; padding: 0 48px; background: var(--cta-bg); color: #fff; font-size: 18px; font-weight: 700; border: none; border-radius: var(--radius); cursor: pointer; transition: all 0.2s ease; box-shadow: 0 10px 30px rgba(194, 65, 12, 0.2); text-transform: none; letter-spacing: 0.02em;}
.btn-large { min-height: 68px; }
.btn-primary:hover { background: var(--cta-hover); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(194, 65, 12, 0.3); }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; min-height: 64px; padding: 0 48px; background: transparent; border: 1px solid var(--cta-bg); color: var(--cta-bg); font-size: 18px; font-weight: 700; border-radius: var(--radius); cursor: pointer; transition: all 0.2s ease; letter-spacing: 0.02em;}
.btn-ghost:hover { background: rgba(194, 65, 12, 0.05); transform: translateY(-2px); }
.closing-line-box .btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
.closing-line-box .btn-ghost:hover { background: var(--cta-bright); border-color: var(--cta-bright); box-shadow: 0 10px 30px rgba(194, 65, 12, 0.2); }

.circular-arrow-btn { width: 50px; height: 50px; border-radius: 50%; background-color: var(--cta-bright); color: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3); transition: transform 0.2s, background-color 0.2s; flex-shrink: 0;}
.circular-arrow-btn:active { transform: scale(0.95); background-color: var(--cta-hover); }

.mobile-sticky-cta { display: none !important; }
.mobile-case-arrow-fixed { display: none !important; }
.desktop-cta-text { display: block; font-size: 36px;}
.mobile-cta-text { display: none; }

.site-header { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: 0.3s; background: transparent; text-shadow: 0 2px 4px rgba(0,0,0,0.4);}
.site-header.scrolled { background: rgba(8,13,26,0.95); backdrop-filter: blur(12px); padding: 12px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.1); border-bottom: 1px solid rgba(255,255,255,0.05); text-shadow: none;}
.header-logo { padding-top: 4px; max-width: 220px; transition: 0.3s;}
.nav-shell { display: flex; justify-content: space-between; align-items: center; }
.nav-actions { display: flex; gap: 32px; align-items: center; }
.nav-phone { color: #fff; font-weight: 700; font-size: 17px; display: flex; align-items: center; gap: 8px; }
.nav-cta { border: 1px solid rgba(255,255,255,0.3); color: #fff; font-weight: 600; padding: 12px 24px; border-radius: var(--radius); font-size: 15px; transition: 0.2s; cursor: pointer; background: transparent; }
.nav-cta:hover { background: rgba(255,255,255,0.1); }

.hero { position: relative; z-index: 1; height: auto; min-height: 70vh; display: flex; flex-direction: column; color: #fff; overflow: hidden; padding-top: 100px; }
.hero-media { position: absolute; inset: 0; z-index: 1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(8,13,26,0.98) 0%, rgba(8,13,26,0.4) 50%, rgba(8,13,26,0.0) 100%); } 
.hero-content-wrapper { position: relative; z-index: 3; display: flex; flex-grow: 1; align-items: center; padding-bottom: 20px; }
.hero-content { max-width: 900px; } 
.eyebrow { display: inline-block; font-size: 14px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; background: rgba(255,255,255,0.15); padding: 6px 16px; border-radius: 50px; backdrop-filter: blur(4px); }
.hero-micro { font-size: clamp(18px, 2vw, 22px); margin-bottom: 24px; color: #e2e8f0; max-width: 750px; font-weight: 500; line-height: 1.5; text-shadow: 0 2px 10px rgba(0,0,0,0.8);}
.hero-metrics { position: relative; z-index: 3; background: rgba(8,13,26,0.92); padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.08); width: 100%; backdrop-filter: blur(10px); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.metric-item { position: relative; text-align: center;}
.metric-item:not(:last-child)::after { content: ''; position: absolute; right: -15px; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,0.15); }
.metric-item strong { display: block; font-size: 36px; color: var(--cta-bright); font-family: var(--display); line-height: 1; margin-bottom: 4px; font-variant-numeric: tabular-nums;}
.metric-item span { font-size: 15px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.02em; }

.logo-marquee-wrapper { margin-top: 40px; width: 100%; }
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; align-items: center; justify-items: center; list-style: none; width: 100%; padding: 0; margin: 0;}
.logo-grid img { height: 60px; width: auto; max-width: 100%; object-fit: contain; }

.compacted-section { padding-top: 80px; padding-bottom: 80px; }
.eval-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; } 
.benefits-image { height: 100%; min-height: 450px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.04); aspect-ratio: 3/4; }
.benefits-image img { width: 100%; height: 100%; object-fit: cover; }
.cro-punteos { list-style: none; display: flex; flex-direction: column; gap: 32px; margin-top: 30px; margin-bottom: 40px; padding: 0;}
.cro-punteos li { display: flex; align-items: flex-start; gap: 16px; }
.punteo-icon { color: var(--cta-bright); flex-shrink: 0; margin-top: 2px; }
.cro-punteos strong { display: block; font-size: 19px; color: #000; margin-bottom: 4px; font-weight: 800; }
.cro-punteos p { color: var(--muted); font-size: 16px; margin: 0; line-height: 1.5; max-width: 50ch; }

.paradigm-header-compact { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.premium-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; justify-content: center; }
.light-card { background: #fff; padding: 40px 32px; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.04); transition: 0.3s ease; display: flex; flex-direction: column; height: 100%; position: relative; overflow: hidden; border: none; text-align: left !important; }
.light-card:hover { transform: translateY(-5px); box-shadow: 0 25px 50px rgba(0,0,0,0.08); }
.fault-watermark { position: absolute; bottom: -20px; right: -10px; font-family: var(--display); font-size: 140px; font-weight: 900; color: #0f172a; opacity: 0.03; line-height: 1; pointer-events: none; z-index: 0; letter-spacing: -0.05em;}
.card-content-wrapper { position: relative; z-index: 2; display: flex; flex-direction: column; height: 100%;}
.light-card h3 { color: var(--text); font-size: 22px; margin-bottom: 12px; font-weight: 800; }
.micro-insight { color: var(--muted); font-size: 16px; margin: 0; line-height: 1.6;}
.desktop-only-consequence { display: block; margin-top: auto; padding: 16px 20px; background: #fff1f2; border-left: 4px solid #e11d48; border-radius: 6px; position: relative; z-index: 2; margin-bottom: 0;}
.fault-consequence p { font-size: 14px; color: #9f1239; font-weight: 600; margin-bottom: 0; line-height: 1.4;}
.fault-consequence span { font-weight: 800; color: #be123c; display: block; margin-bottom: 4px; text-transform: uppercase; font-size: 12px; letter-spacing: 0.05em;}

.closing-line-box { margin-top: 40px; }

.cases-editorial { border-top: 1px solid rgba(0,0,0,0.05); }
.standardized-cases { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: stretch; margin-bottom: 100px; height: 100%; min-width: 0; }
@media (min-width: 981px) {
  .standardized-cases.reverse-layout { grid-template-columns: 1.3fr 1fr; }
  .standardized-cases.reverse-layout .case-text-content { order: 2; padding-right: 0; padding-left: 50px;}
  .standardized-cases.reverse-layout .case-gallery { order: 1; }
}
.case-text-content { padding-right: 40px; min-width: 0; }
.case-tag { display: inline-block; font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; border: 1px solid var(--line); padding: 4px 12px; border-radius: 4px; background: #f1f5f9; }
.title-with-padding { font-size: 28px; color: #0f172a; margin-bottom: 20px;}

.case-bullets { list-style: none; padding: 0; margin: 0; }
.case-bullets li { position: relative; padding-left: 20px; margin-bottom: 20px; font-size: 16px; color: var(--muted); line-height: 1.6; }
.case-bullets li::before { content: "•"; position: absolute; left: 0; color: var(--cta-bright); font-size: 24px; line-height: 1; top: 0;}
.bullet-label { color: #0f172a; font-weight: 800;}
.case-gallery { display: flex; gap: 16px; height: 100%; min-width: 0; }
.img-large-wrapper { flex: 1.8; border-radius: 12px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.04); height: 100%; position: relative; }
.img-large { position: absolute; width: 100%; height: 100%; object-fit: cover; border: 1px solid rgba(0,0,0,0.05); border-radius: 12px;}
.img-small-col { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.img-small-wrapper { flex: 1; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.03); position: relative; }
.img-small-wrapper img { position: absolute; width: 100%; height: 100%; object-fit: cover; border: 1px solid rgba(0,0,0,0.05); border-radius: 12px; }

.protocol-section { background-color: var(--bg-dark); color: #fff; padding: 110px 0; }
.protocol-header { text-align: center; max-width: 800px; margin: 0 auto 70px; }
.protocol-cards-premium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; justify-content: center; text-align: center; }
.protocol-vip-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); padding: 60px 40px; border-radius: 12px; height: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; transition: 0.3s; }
.protocol-vip-card:hover { background: rgba(255,255,255,0.04); transform: translateY(-3px); border-color: rgba(255,255,255,0.1); }
.protocol-icon-box { margin-bottom: 30px; background: rgba(234, 88, 12, 0.1); display: inline-flex; padding: 16px; border-radius: 50px; color: var(--cta-bright); border: 1px solid rgba(234, 88, 12, 0.15); }
.protocol-icon-box svg { width: 48px; height: 48px; display: block; }
.protocol-vip-card h3 { color: #fff; font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.protocol-vip-card p { color: #94a3b8; font-size: 16px; line-height: 1.6; margin: 0; }

.form-section-grid { display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center; } 
.top-aligned-text { display: flex; flex-direction: column; justify-content: center; padding-top: 0; } 

.friction-bullet-list { list-style: none; margin-top: 20px; border-top: 1px solid #e2e8f0; padding-top: 20px; max-width: 90%; padding-left: 0; margin-bottom: 24px;}
.friction-bullet-list li { font-size: 16px; color: var(--muted); margin-bottom: 12px; font-weight: 500; display: flex; align-items: center; gap: 12px; line-height: 1.5;}
.friction-bullet-list svg { color: var(--cta-bright); flex-shrink: 0; margin-top: 2px; }

.testimonials-stack { display: flex; flex-direction: column; gap: 24px; margin-top: 0; }
.premium-testimonio { background: transparent; padding: 0 0 0 24px; border-left: 3px solid var(--cta-bright); border-radius: 0; box-shadow: none; margin: 0 !important; }
.premium-testimonio .stars { font-size: 14px; margin-bottom: 8px; color: #f59e0b; letter-spacing: 2px;}
.premium-testimonio p { font-size: 17px; font-style: italic; color: #475569; margin-bottom: 8px; line-height: 1.6;}
.premium-testimonio .author { font-size: 14px; font-weight: 800; color: var(--text); display: block; margin-top: 0;}

.ghost-premium-form { background: #ffffff; border-radius: 16px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.04); overflow: hidden;}
.ghost-premium-form .form-header { background: #ffffff; padding: 40px 40px 10px; text-align: left; }
.ghost-premium-form .form-body { background: #ffffff; padding: 10px 40px 40px; }
.ghost-input-group label { color: #475569; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; display: block;}
.ghost-input-group input, .ghost-input-group select, .ghost-input-group textarea { width: 100%; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 16px 20px; font-size: 16px; color: var(--text); font-family: var(--body); transition: 0.3s ease; }
.ghost-input-group input::placeholder, .ghost-input-group textarea::placeholder { color: #94a3b8; }
.ghost-input-group input:focus, .ghost-input-group select:focus, .ghost-input-group textarea:focus { outline: none; background: #ffffff; border-color: var(--cta-bright); box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1); }

.form-step { display: none; animation: fadeIn 0.4s ease; }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.faq-compact .section-header { margin-bottom: 50px;}
.accordion-light { max-width: 800px; margin: 0 auto; border-top: 1px solid #f1f5f9; }
.accordion-light .accordion-header { width: 100%; padding: 24px 16px; background: none; border: none; border-bottom: 1px solid #f1f5f9; color: var(--text); font-size: 18px; font-weight: 800; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--body); transition: 0.2s;}
.accordion-light .accordion-header:hover { color: var(--cta-bright); }
.accordion-light .accordion-header .icon { color: var(--text); transition: 0.3s; }
.accordion-light .accordion-item.is-open .accordion-header .icon { transform: rotate(180deg); }
.accordion-light .accordion-body { max-height: 0; overflow: hidden; transition: 0.4s ease-out; color: var(--muted); padding: 0 16px; font-size: 16px; opacity: 0;}
.accordion-light .accordion-item.is-open .accordion-body { max-height: 600px; padding: 16px 16px 24px; border-bottom: 1px solid #f1f5f9; opacity: 1;}

.final-cta-strip { background-color: var(--bg-dark); padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.cta-strip-shell { display: flex; align-items: center; justify-content: space-between; gap: 40px; max-width: 1000px; margin: 0 auto; }
.cta-strip-text { max-width: 650px; }
.cta-strip-action { flex-shrink: 0; }

.site-footer { background: #03050a; border-top: 1px solid rgba(255,255,255,0.1); padding: 70px 0 30px; }
.footer-logo { max-width: 220px; margin: 0 auto 24px; filter: grayscale(100%); opacity: 0.8;}
.footer-desc { font-size: 15px; color: #94a3b8; line-height: 1.6; margin: 0 auto 20px; max-width: 450px;}
.footer-address { font-weight: 600; font-size: 15px; color: #cbd5e1; margin-bottom: 30px;}
.footer-contact { margin-bottom: 30px; font-weight: 700; color: #fff; font-size: 18px;}
.footer-divider { border-top: 1px solid rgba(255,255,255,0.05); width: 80%; max-width: 400px; margin: 0 auto 24px;}
.footer-bottom { padding-top: 24px; color: #64748b; font-size: 13px;}

.case-gallery img { cursor: zoom-in; transition: transform 0.4s ease; }
.case-gallery img:hover { transform: scale(1.03); }
.lightbox-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(8, 13, 26, 0.95); z-index: 100000; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; backdrop-filter: blur(8px); }
.lightbox-overlay.active { opacity: 1; pointer-events: auto; }
.lightbox-container { position: relative; max-width: 90%; max-height: 90vh; display: flex; flex-direction: column; align-items: center; width: 100%;}
.lightbox-container img { max-height: 75vh; max-width: 100%; border-radius: 8px; box-shadow: 0 25px 50px rgba(0,0,0,0.5); object-fit: contain; transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;}
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.85); border: 2px solid rgba(255,255,255,0.9); color: #fff; font-size: 24px; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center; backdrop-filter: blur(8px); z-index: 100001; box-shadow: 0 4px 10px rgba(0,0,0,0.5);}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--cta-bright); border-color: var(--cta-bright); }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }
.lightbox-close { position: fixed; top: 20px; right: 20px; background: rgba(0,0,0,0.85); border: 2px solid rgba(255,255,255,0.9); color: #fff; font-size: 35px; cursor: pointer; line-height: 1; transition: 0.3s; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 100001; box-shadow: 0 4px 10px rgba(0,0,0,0.5);}
.lightbox-close:hover { background: var(--cta-bright); border-color: var(--cta-bright); }
.lightbox-caption { color: #fff; margin-top: 16px; font-size: 17px; font-weight: 600; text-align: center; }
.lightbox-counter { color: #94a3b8; font-size: 14px; margin-top: 4px; font-weight: 700; letter-spacing: 0.1em;}

/* =========================================================================
   🔥 MÓVIL: CÓDIGO LIMPIO SIN CONFLICTOS CSS
   ========================================================================= */
@media (max-width: 980px) {
  .section-padding { padding: 40px 0; }
  .compacted-section { padding: 40px 0; }
  .header-logo { max-width: 160px; }
  .nav-actions { display: none; }
  
  .mobile-sticky-cta { display: flex !important; flex-direction: row; position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; z-index: 99999; background: #fff; box-shadow: 0 -4px 15px rgba(0,0,0,0.2); box-sizing: border-box;}
  .btn-sticky-wa, .btn-sticky-eval { flex: 1 1 50%; width: 50%; height: 100%; display: flex; align-items: center; justify-content: center; font-weight: 800; text-align: center; padding: 0 10px;}
  .btn-sticky-wa { background: #fff; color: var(--green); gap: 6px; font-size: 15px; border-right: 1px solid #e2e8f0; }
  .btn-sticky-eval { background: var(--cta-bright); color: #fff; text-transform: uppercase; font-size: 14px; }

  .hero { padding-top: 80px; }
  .hero-content-wrapper { padding-top: 10px; padding-bottom: 10px; }
  h1 { font-size: 30px; margin-bottom: 8px; line-height: 1.2; }
  .hero-micro { font-size: 16px; margin-bottom: 20px; }
  .desktop-only-metric { display: none; }
  
  .metrics-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .metric-item::after { display: none; }
  .metric-item strong { font-size: 38px; margin-bottom: 2px; line-height: 1; }
  .metric-item span { font-size: 11px; line-height: 1.2; display: block; }
  
  .trust-header-box { margin-bottom: 20px; }
  .trust-header-box h2 { font-size: 28px; }
  
  .logo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; flex-wrap: wrap; padding-bottom: 10px; width: 100%;}
  .logo-grid li { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 20px; display: flex; align-items: center; justify-content: center;}
  .logo-grid img { width: auto; max-width: 100%; height: 35px; }
  
  .eval-grid { grid-template-columns: 1fr; gap: 30px; }
  .hide-on-mobile { display: none; }
  .benefits-content { display: flex; flex-direction: column; background: #ffffff; border-radius: 16px; padding: 24px; box-shadow: 0 15px 40px rgba(0,0,0,0.06); margin-top: 0; }
  .benefits-content .section-micro { font-size: 16px; margin-bottom: 16px; color: #475569;}
  .benefits-content .cro-punteos { gap: 0; margin-top: 0; margin-bottom: 0; padding-left: 0;}
  .benefits-content .cro-punteos li { padding: 16px 0; border-radius: 0; border-bottom: 1px solid #e2e8f0; }
  .benefits-content .cro-punteos li:last-child { border-bottom: none; }
  .benefits-content .cro-punteos strong { font-size: 16px; margin-bottom: 2px;}
  .benefits-content .cro-punteos p { font-size: 14px; max-width: 100%;}
  
  .premium-cards { display: flex; flex-direction: column; background: #ffffff; border-radius: 16px; padding: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.06); gap: 0; margin: 0; overflow: hidden;}
  .light-card { padding: 16px 0; box-shadow: none; border-radius: 0; border-bottom: 1px solid #e2e8f0; background: transparent; height: auto; display: grid; grid-template-columns: 35px 1fr; gap: 12px;}
  .light-card:first-child { padding-top: 0; }
  .light-card:last-child { border-bottom: none; padding-bottom: 0; }
  .fault-watermark { position: static; font-size: 24px; line-height: 1; color: #cbd5e1; opacity: 1;}
  .card-content-wrapper { margin-bottom: 0;}
  .light-card h3 { font-size: 17px; margin-bottom: 4px; }
  .micro-insight { color: #64748b; font-size: 15px; line-height: 1.4;}
  .desktop-only-consequence { display: none !important; }

  .cases-carousel-wrapper { position: relative; width: 100%; display: block; }
  .mobile-case-arrow-fixed { display: flex !important; position: absolute; right: 10px; z-index: 20; box-shadow: -4px 4px 15px rgba(234, 88, 12, 0.4);}
  .cases-mobile-carousel { display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding-bottom: 10px; }
  .cases-mobile-carousel::-webkit-scrollbar { display: none; }
  
  .standardized-cases { flex: 0 0 100%; width: 100%; scroll-snap-align: center; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 24px 20px; display: flex; flex-direction: column; gap: 16px; }
  .case-text-content { order: 2; padding: 0; display: flex; flex-direction: column;}
  .title-with-padding { font-size: 20px; line-height: 1.2; padding-right: 45px; margin-bottom: 12px; }
  .case-gallery { order: 1; display: block; }
  .img-small-col { display: none; } 
  .img-large-wrapper { aspect-ratio: 16/9; width: 100%; position: relative;}
  .img-large { position: absolute; width: 100%; height: 100%; object-fit: cover;}
  .case-bullets li { margin-bottom: 8px; font-size: 14px;}

  .lightbox-prev, .lightbox-next { width: 45px !important; height: 45px !important; font-size: 20px !important; }
  .lightbox-prev { left: 10px !important; }
  .lightbox-next { right: 10px !important; }

  .protocol-cards-premium { display: flex; flex-direction: column; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 24px; gap: 20px; margin: 0; }
  .protocol-vip-card { width: 100%; display: flex; flex-direction: row; gap: 20px; align-items: flex-start; padding: 24px 20px; background: transparent; border: none; }
  .protocol-icon-box { margin: 0; padding: 14px; flex-shrink: 0;}
  .protocol-icon-box svg { width: 36px; height: 36px; } 
  .protocol-text-box { display: flex; flex-direction: column; }
  .protocol-vip-card h3 { font-size: 18px; margin-bottom: 6px; text-align: left; }
  .protocol-vip-card p { font-size: 14px; line-height: 1.5; text-align: left; margin: 0;}

  /* 🔥 Formulario Móvil: Columna activada y espacios reducidos 🔥 */
  .eval-text-wrapper { display: flex; margin-bottom: 40px; } /* Activamos la columna que antes estaba oculta */
  .form-section-grid { grid-template-columns: 1fr; gap: 0; }
  
  .testimonials-stack { gap: 16px; margin-top: 16px;}
  .premium-testimonio { background: #fff; padding: 20px; border: 1px solid #e2e8f0; border-left: 4px solid var(--cta-bg); border-radius: 8px; margin: 0;}
  .ghost-premium-form .form-header, .ghost-premium-form .form-body { padding: 20px; }
  
  .accordion-light .accordion-header { font-size: 15px; padding: 16px 0;}
  .accordion-light .accordion-body { font-size: 14px; padding: 0;}
  
  .hide-mobile-btn { display: none; } 
  .desktop-cta-text { display: none; }
  .mobile-cta-text { display: block; font-size: 24px; line-height: 1.3; margin-bottom: 0;}
  .btn-ghost { min-height: 58px; padding: 0 30px; font-size: 16px; }
  .final-cta-strip { padding: 50px 0 50px 0; }
  .cta-strip-shell { flex-direction: column; text-align: center; gap: 20px; padding: 0 10px;}

  .site-footer { padding-bottom: 90px; }
}

@media (max-width: 480px) {
    .logo-grid img { flex: 0 0 auto; height: 30px; } 
}