/* === RESET & BASE === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}

body.lp-body{
  font-family:'Poppins',sans-serif;
  color:#2D1407;
  background:#FFFBF5;
  overflow-x:hidden;
  line-height:1.6;
  font-size:16px;
}
body.lp-body a{text-decoration:none;color:inherit}
body.lp-body img{max-width:100%;height:auto;display:block}

/* === VARIABLES === */
:root{
  --red:#E8390E;
  --red-dark:#C42D07;
  --orange:#F97316;
  --yellow:#FACC15;
  --dark:#1A0A00;
  --text:#2D1407;
  --muted:#6B3017;
  --bg:#FFFBF5;
  --bg2:#FFF7ED;
  --white:#FFFFFF;
  --grad:linear-gradient(135deg,#E8390E 0%,#F97316 55%,#FACC15 100%);
  --shadow:0 4px 24px rgba(232,57,14,.18);
  --shadow-lg:0 12px 48px rgba(232,57,14,.28);
  --radius:16px;
  --radius-lg:24px;
  --radius-pill:999px;
  --transition:.28s ease;
}

/* === CONTENEDOR === */
.lp-wrap{
  width:100%;
  max-width:1140px;
  margin:0 auto;
  padding:0 24px;
}

/* === SECCIÓN TÍTULOS === */
.lp-section-title{text-align:center;margin-bottom:52px}
.lp-section-title h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.75rem,3.5vw,2.8rem);
  font-weight:700;
  color:var(--text);
  line-height:1.2;
  margin-bottom:10px;
}
.lp-section-title h2 span{color:var(--red)}
.lp-section-title p{font-size:1.05rem;color:var(--muted)}
.lp-section-title--light h2{color:#fff}
.lp-section-title--light p{color:rgba(255,255,255,.8)}

/* === BOTONES === */
.lp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:'Poppins',sans-serif;
  font-weight:700;
  font-size:1rem;
  padding:15px 32px;
  border-radius:var(--radius-pill);
  border:none;
  cursor:pointer;
  transition:var(--transition);
  text-align:center;
  white-space:nowrap;
}
.lp-btn--primary{
  background:var(--grad);
  color:#fff;
  box-shadow:var(--shadow);
  text-transform:uppercase;
  letter-spacing:.4px;
}
.lp-btn--primary:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-lg);
  color:#fff;
}
.lp-btn--ghost{
  background:rgba(255,255,255,.15);
  color:#fff;
  border:2px solid rgba(255,255,255,.55);
}
.lp-btn--ghost:hover{background:rgba(255,255,255,.25);color:#fff;border-color:#fff}
.lp-btn--xl{font-size:1.15rem;padding:18px 44px}

@keyframes pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(232,57,14,.5),var(--shadow)}
  50%{box-shadow:0 0 0 16px rgba(232,57,14,0),var(--shadow-lg)}
}
.lp-pulse{animation:pulse 2.5s ease infinite}

/* === TOPBAR === */
.lp-topbar{
  background:var(--dark);
  color:#fff;
  padding:11px 20px;
  font-size:.875rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  text-align:center;
}
.lp-topbar strong{color:var(--yellow)}
.lp-topbar-btn{
  background:var(--red);
  color:#fff;
  padding:4px 16px;
  border-radius:var(--radius-pill);
  font-weight:700;
  font-size:.8rem;
  white-space:nowrap;
  transition:var(--transition);
}
.lp-topbar-btn:hover{background:var(--orange);color:#fff}

/* === HERO === */
.lp-hero{
  background:linear-gradient(135deg,#1A0A00 0%,#7B1500 50%,#C42D07 100%);
  padding:80px 0 0;
  overflow:hidden;
  position:relative;
}
.lp-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at 70% 40%,rgba(250,204,21,.1) 0%,transparent 65%);
  pointer-events:none;
}
.lp-hero-inner{
  max-width:1140px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  gap:48px;
}
.lp-hero-text{
  flex:1;
  color:#fff;
  padding-bottom:80px;
}
.lp-eyebrow{
  display:block;
  font-size:.85rem;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--yellow);
  margin-bottom:18px;
}
.lp-hero-text h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(2.4rem,5vw,4.2rem);
  font-weight:700;
  line-height:1.1;
  color:#fff;
  margin-bottom:22px;
}
.lp-hero-text h1 em{
  font-style:normal;
  background:var(--grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.lp-hero-sub{
  font-size:1.1rem;
  line-height:1.75;
  color:rgba(255,255,255,.88);
  margin-bottom:32px;
}
.lp-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:36px;
}
.lp-trust{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  font-size:.83rem;
  color:rgba(255,255,255,.72);
}
.lp-trust span{display:flex;align-items:center;gap:6px}

.lp-hero-media{
  flex:0 0 400px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.lp-hero-img-box{
  position:relative;
  width:100%;
}
.lp-hero-img-box img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow:0 24px 60px rgba(0,0,0,.4);
  display:block;
}
.lp-badge{
  position:absolute;
  top:-16px;
  right:-16px;
  background:#fff;
  border-radius:50%;
  width:110px;
  height:110px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:4px solid var(--yellow);
  box-shadow:var(--shadow);
  padding:8px;
}
.lp-badge strong{font-size:.6rem;color:var(--muted);text-transform:uppercase;display:block}
.lp-badge span{font-size:1.7rem;font-weight:900;color:var(--red);line-height:1;display:block}
.lp-badge small{font-size:.58rem;color:var(--muted)}

/* === BENEFICIOS === */
.lp-benefits{
  background:var(--grad);
  padding:48px 0;
}
.lp-benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
}
.lp-benefit{
  display:flex;
  align-items:flex-start;
  gap:14px;
  color:#fff;
}
.lp-benefit>span{font-size:2rem;line-height:1;flex-shrink:0;margin-top:2px}
.lp-benefit strong{display:block;font-size:.95rem;font-weight:700;margin-bottom:4px}
.lp-benefit p{font-size:.8rem;opacity:.9;line-height:1.45}

/* === USOS === */
.lp-uses{padding:96px 0;background:var(--bg)}
.lp-uses-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.lp-use-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:40px 28px;
  text-align:center;
  border:2px solid transparent;
  box-shadow:0 2px 12px rgba(232,57,14,.07);
  transition:var(--transition);
  display:block;
}
.lp-use-card:hover{
  border-color:var(--red);
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  color:inherit;
}
.lp-use-card>span{font-size:2.8rem;display:block;margin-bottom:14px;line-height:1}
.lp-use-card h3{font-size:1.05rem;font-weight:700;color:var(--red);margin-bottom:8px}
.lp-use-card p{font-size:.85rem;color:var(--muted);line-height:1.6}

/* === POR QUÉ === */
.lp-why{
  padding:96px 0;
  background:linear-gradient(135deg,#1A0A00 0%,#8B1A00 55%,#C42D07 100%);
  position:relative;
  overflow:hidden;
}
.lp-why::after{
  content:'';position:absolute;
  top:-120px;right:-120px;
  width:420px;height:420px;
  border-radius:50%;
  background:rgba(250,204,21,.07);
  pointer-events:none;
}
.lp-why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  position:relative;z-index:1;
}
.lp-why-card{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.15);
  border-radius:var(--radius-lg);
  padding:36px 22px;
  text-align:center;
  color:#fff;
  transition:var(--transition);
}
.lp-why-card:hover{background:rgba(255,255,255,.15);transform:translateY(-4px);border-color:var(--yellow)}
.lp-why-ico{font-size:2.6rem;margin-bottom:14px;line-height:1}
.lp-why-card h3{font-size:1rem;font-weight:700;color:var(--yellow);margin-bottom:10px}
.lp-why-card p{font-size:.83rem;opacity:.85;line-height:1.6}

/* === PROCESO === */
.lp-process{padding:96px 0;background:var(--bg2)}
.lp-steps{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.lp-step{
  flex:1;
  min-width:180px;
  max-width:210px;
  text-align:center;
  background:#fff;
  border-radius:var(--radius-lg);
  padding:36px 18px;
  box-shadow:0 2px 12px rgba(232,57,14,.07);
}
.lp-step-n{
  width:60px;height:60px;
  background:var(--grad);
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.6rem;font-weight:900;
  margin:0 auto 16px;
  box-shadow:var(--shadow);
}
.lp-step h3{font-size:.95rem;font-weight:700;color:var(--red);margin-bottom:7px}
.lp-step p{font-size:.8rem;color:var(--muted);line-height:1.5}
.lp-step-sep{font-size:2rem;color:var(--orange);font-weight:300;flex-shrink:0}

/* === TESTIMONIOS === */
.lp-testimonials{padding:96px 0;background:var(--bg)}
.lp-testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  align-items:start;
}
.lp-testi{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:34px 26px;
  border-top:4px solid var(--orange);
  box-shadow:0 2px 12px rgba(232,57,14,.07);
}
.lp-testi--featured{
  border-top-color:var(--red);
  box-shadow:var(--shadow);
  transform:scale(1.04);
}
.lp-testi-stars{font-size:1.1rem;margin-bottom:12px}
.lp-testi p{font-size:.88rem;color:var(--muted);line-height:1.7;font-style:italic;margin-bottom:16px}
.lp-testi strong{display:block;font-size:.9rem;color:var(--text);font-weight:700}
.lp-testi span{font-size:.76rem;color:var(--muted)}

/* === CTA FINAL === */
.lp-cta{
  padding:100px 0;
  background:var(--grad);
  text-align:center;
  position:relative;overflow:hidden;
}
.lp-cta::before,.lp-cta::after{
  content:'';position:absolute;
  border-radius:50%;background:rgba(255,255,255,.07);
}
.lp-cta::before{width:600px;height:600px;top:-280px;left:-180px}
.lp-cta::after{width:440px;height:440px;bottom:-220px;right:-120px}
.lp-cta .lp-wrap{position:relative;z-index:1}
.lp-cta h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,4vw,3rem);
  color:#fff;margin-bottom:12px;
}
.lp-cta>div>p{font-size:1.1rem;color:rgba(255,255,255,.9);margin-bottom:32px}
.lp-cta-contact{margin-top:18px;font-size:.88rem;color:rgba(255,255,255,.72)}
.lp-cta-contact a{color:var(--yellow);font-weight:700}

/* === FOOTER === */
.lp-footer{
  background:var(--dark);
  color:rgba(255,255,255,.55);
  text-align:center;
  padding:36px 24px;
  font-size:.85rem;
  line-height:2.2;
}
.lp-footer strong{color:var(--yellow)}
.lp-footer a{color:var(--orange);font-weight:600;transition:var(--transition)}
.lp-footer a:hover{color:var(--yellow)}

/* ========================================
   RESPONSIVE — TABLET (≤1024px)
   ======================================== */
/* === WHATSAPP BANNER === */
.lp-wa-banner{
  padding:64px 0;
  background:linear-gradient(135deg,#075E54 0%,#128C7E 100%);
}
.lp-wa-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  flex-wrap:wrap;
}
.lp-wa-text{
  display:flex;
  align-items:center;
  gap:24px;
  color:#fff;
  flex:1;
  min-width:260px;
}
.lp-wa-icon{font-size:3.5rem;line-height:1;flex-shrink:0}
.lp-wa-text h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.4rem,2.5vw,2rem);
  color:#fff;
  margin-bottom:8px;
  line-height:1.3;
}
.lp-wa-text p{font-size:.92rem;color:rgba(255,255,255,.85);line-height:1.6}

/* === BOTÓN WHATSAPP === */
.lp-btn--whatsapp,.lp-btn--wa{
  background:#25D366;
  color:#fff;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
}
.lp-btn--whatsapp:hover,.lp-btn--wa:hover{
  background:#1ebe5d;
  color:#fff;
  transform:translateY(-3px);
  box-shadow:0 8px 32px rgba(37,211,102,.5);
}

/* === CTA BOTONES === */
.lp-cta-btns{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:20px;
}

/* === WHATSAPP FLOTANTE === */
.lp-wa-float{
  position:fixed;
  bottom:28px;
  right:28px;
  width:60px;
  height:60px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.5);
  z-index:9999;
  transition:var(--transition);
}
.lp-wa-float:hover{
  background:#1ebe5d;
  transform:scale(1.1);
  box-shadow:0 8px 32px rgba(37,211,102,.6);
}
@keyframes wa-bounce{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.12)}
}
.lp-wa-float{animation:wa-bounce 2.5s ease infinite}

/* === RESPONSIVE WA === */
@media(max-width:640px){
  .lp-wa-inner{flex-direction:column;text-align:center}
  .lp-wa-text{flex-direction:column;text-align:center}
  .lp-cta-btns{flex-direction:column;align-items:center}
  .lp-cta-btns .lp-btn{width:100%;justify-content:center}
  .lp-wa-float{bottom:20px;right:16px;width:54px;height:54px}
}
@media(max-width:1024px){
  .lp-hero-inner{flex-direction:column;text-align:center;gap:0;padding:0}
  .lp-hero-text{padding:0 24px 48px;display:flex;flex-direction:column;align-items:center}
  .lp-hero-actions{justify-content:center}
  .lp-trust{justify-content:center}
  .lp-hero-media{width:100%;max-width:500px;margin:0 auto}
  .lp-hero-img-box img{height:380px;border-radius:var(--radius-lg)}
  .lp-benefits-grid{grid-template-columns:repeat(2,1fr);gap:24px}
  .lp-uses-grid{grid-template-columns:repeat(2,1fr)}
  .lp-why-grid{grid-template-columns:repeat(2,1fr)}
  .lp-testi-grid{grid-template-columns:1fr}
  .lp-testi--featured{transform:none}
  .lp-step-sep{display:none}
  .lp-steps{gap:18px}
  .lp-step{max-width:100%;flex:0 0 calc(50% - 10px)}
}

/* ========================================
   RESPONSIVE — MÓVIL (≤640px)
   ======================================== */
@media(max-width:640px){
  .lp-wrap{padding:0 16px}
  .lp-topbar{flex-direction:column;gap:8px;font-size:.8rem}

  .lp-hero{padding:72px 0 0}
  .lp-hero-text{padding:0 16px 40px}
  .lp-hero-text h1{font-size:2.2rem}
  .lp-hero-sub{font-size:1rem}
  .lp-hero-actions{flex-direction:column;width:100%}
  .lp-hero-actions .lp-btn{width:100%;justify-content:center}
  .lp-trust{flex-direction:column;align-items:center;gap:8px}
  .lp-hero-media{max-width:100%}
  .lp-hero-img-box img{height:280px;border-radius:var(--radius)}
  .lp-badge{width:90px;height:90px;top:-12px;right:8px}
  .lp-badge span{font-size:1.4rem}

  .lp-benefits{padding:36px 0}
  .lp-benefits-grid{grid-template-columns:1fr;gap:20px}

  .lp-uses{padding:64px 0}
  .lp-uses-grid{grid-template-columns:1fr}
  .lp-section-title{margin-bottom:36px}

  .lp-why{padding:64px 0}
  .lp-why-grid{grid-template-columns:1fr}

  .lp-process{padding:64px 0}
  .lp-steps{flex-direction:column;align-items:stretch}
  .lp-step{max-width:100%;flex:none}

  .lp-testimonials{padding:64px 0}
  .lp-testi-grid{grid-template-columns:1fr}

  .lp-cta{padding:72px 0}
  .lp-btn--xl{font-size:1rem;padding:16px 28px;white-space:normal;line-height:1.4}

  .lp-section-title h2{font-size:1.6rem}
}

/* === PULSERAS BORDADAS === */
.lp-bordadas{
  padding:96px 0;
  background:linear-gradient(135deg,#1A0A00 0%,#7B1500 100%);
}
.lp-bordadas-inner{
  display:flex;
  align-items:center;
  gap:60px;
}
.lp-bordadas-text{
  flex:1;
  color:#fff;
}
.lp-bordadas-text h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,3vw,2.6rem);
  color:#fff;
  margin:12px 0 18px;
}
.lp-bordadas-text p{
  font-size:1rem;
  color:rgba(255,255,255,.88);
  line-height:1.75;
  margin-bottom:20px;
}
.lp-bordadas-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.lp-bordadas-list li{
  font-size:.92rem;
  color:rgba(255,255,255,.9);
}
.lp-bordadas-img{
  flex:0 0 420px;
}
.lp-bordadas-img img{
  width:100%;
  border-radius:var(--radius-lg);
  box-shadow:0 20px 50px rgba(0,0,0,.4);
}

/* === FAQ === */
.lp-faq{padding:96px 0;background:var(--bg2)}
.lp-faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.lp-faq-item{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:28px 28px;
  border-left:4px solid var(--red);
  box-shadow:0 2px 12px rgba(232,57,14,.07);
}
.lp-faq-item h3{
  font-size:.95rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:10px;
  line-height:1.4;
}
.lp-faq-item p{
  font-size:.87rem;
  color:var(--muted);
  line-height:1.65;
}
.lp-faq-item strong{color:var(--red)}

/* === RESPONSIVE BORDADAS Y FAQ === */
@media(max-width:1024px){
  .lp-bordadas-inner{flex-direction:column}
  .lp-bordadas-img{flex:none;width:100%;max-width:500px;margin:0 auto}
  .lp-faq-grid{grid-template-columns:1fr}
}
@media(max-width:640px){
  .lp-bordadas{padding:64px 0}
  .lp-faq{padding:64px 0}
  .lp-faq-item{padding:22px 20px}
}
/* === CONDICIONES DESTACADAS === */
.lp-conditions{
  padding:72px 0;
  background:var(--bg);
}
.lp-conditions-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  max-width:860px;
  margin:0 auto;
}
.lp-condition-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:40px 28px;
  text-align:center;
  box-shadow:0 2px 16px rgba(232,57,14,.08);
  border-top:4px solid var(--orange);
}
.lp-condition-card--featured{
  border-top-color:var(--red);
  box-shadow:var(--shadow);
  transform:scale(1.05);
}
.lp-condition-num{
  font-family:'Playfair Display',serif;
  font-size:3.2rem;
  font-weight:700;
  color:var(--red);
  line-height:1;
  margin-bottom:6px;
}
.lp-condition-label{
  font-size:.8rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--muted);
  margin-bottom:12px;
}
.lp-condition-card p{
  font-size:.88rem;
  color:var(--muted);
  line-height:1.6;
}
.lp-condition-card strong{color:var(--red)}

@media(max-width:640px){
  .lp-conditions-grid{grid-template-columns:1fr}
  .lp-condition-card--featured{transform:none}
  .lp-conditions{padding:48px 0}
}
/* === USE CARDS CON FOTO === */
.lp-use-card--img{
  padding:0;
  overflow:hidden;
  text-align:left;
}
.lp-use-card--img img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}
.lp-use-card--img:hover img{
  transform:scale(1.05);
}
.lp-use-card-body{
  padding:24px 22px 28px;
}
.lp-use-card-body>span{
  font-size:1.8rem;
  display:block;
  margin-bottom:10px;
  line-height:1;
}
.lp-use-card--img h3{
  font-size:1.05rem;
  font-weight:700;
  color:var(--red);
  margin-bottom:8px;
}
.lp-use-card--img p{
  font-size:.85rem;
  color:var(--muted);
  line-height:1.6;
}
/* ── HEADER CON LOGO ─────────────────────────────────── */
.lp-header{background:#fff;padding:14px 0;border-bottom:2px solid #f0f0f0;position:sticky;top:0;z-index:999;box-shadow:0 2px 8px rgba(0,0,0,.08);}
.lp-header .lp-wrap{display:flex!important;align-items:center;justify-content:center!important;text-align:center;}
.lp-logo-link{display:inline-block;line-height:0;}
.lp-logo{height:60px;width:auto;display:block;margin:0 auto;}
@media(max-width:600px){.lp-logo{height:44px;}}


/* ── MOBILE FIXES 480px ─────────────────────────────── */
@media(max-width:480px){
  /* Logo más pequeño en móvil */
  .lp-logo{height:36px!important;}
  .lp-header{padding:10px 0;}

  /* Topbar compacta */
  .lp-topbar{font-size:.72rem;gap:4px;padding:8px 12px;flex-direction:column;text-align:center;}
  .lp-topbar-btn{font-size:.72rem;padding:4px 10px;}

  /* Hero */
  .lp-hero{padding:48px 0 0;}
  .lp-hero-inner{flex-direction:column!important;gap:0;}
  .lp-hero-text h1{font-size:1.9rem!important;line-height:1.15;}
  .lp-hero-text{padding:0 16px 32px!important;text-align:center;}
  .lp-hero-actions{flex-direction:column!important;align-items:stretch;gap:10px;}
  .lp-btn{font-size:.9rem;padding:12px 18px;}
  .lp-hero-media{max-width:100%;}
  .lp-hero-img-box img{height:220px!important;}
  .lp-badge{width:80px;height:80px;top:8px;right:8px;}
  .lp-badge span:first-child{font-size:.55rem;}
  .lp-badge span:nth-child(2){font-size:1.3rem;}
  .lp-badge span:last-child{font-size:.6rem;}

  /* Benefits grid */
  .lp-benefits-grid{grid-template-columns:1fr 1fr!important;gap:16px;}
  .lp-benefit{padding:16px 12px;}

  /* Uses grid */
  .lp-uses-grid{grid-template-columns:1fr!important;}

  /* Section titles */
  .lp-section-title{font-size:1.6rem;}
  .lp-section-title br{display:none;}

  /* Why grid */
  .lp-why-grid{grid-template-columns:1fr 1fr!important;}
  .lp-why-card{padding:20px 12px;}

  /* Steps */
  .lp-steps{flex-direction:column!important;}
  .lp-step-sep{display:none;}

  /* FAQ */
  .lp-faq-grid{grid-template-columns:1fr!important;}

  /* CTA buttons */
  .lp-cta-btns{flex-direction:column!important;gap:12px;}
  .lp-btn--xl{font-size:.95rem!important;padding:14px 20px!important;text-align:center;}

  /* Conditions */
  .lp-conditions-grid{grid-template-columns:1fr!important;}

  /* Testimonials */
  .lp-testi-grid{grid-template-columns:1fr!important;}

  /* WhatsApp banner */
  .lp-wa-inner{flex-direction:column!important;text-align:center;gap:16px;}

  /* Bordadas */
  .lp-bordadas-inner{flex-direction:column!important;}
  .lp-bordadas-img{max-height:200px;}

  /* Footer */
  .lp-footer{font-size:.8rem;padding:20px 16px;}

  /* Overflow fix */
  .lp-body{overflow-x:hidden;}
  .lp-wrap{padding:0 14px;}
}
