:root{
  --brand-red:#D92554;
  --brand-purple:#605EBA;
  --text:#121826;
  --muted:#6b7280;
  --bg:#ffffff;
  --soft:#f6f7fb;
  --card:#ffffff;
  --border: rgba(18,24,38,.10);
  --shadow: 0 10px 30px rgba(18,24,38,.10);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:"Commissioner",system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:var(--bg);
}

/* HEADER */
.lx-header{
  position:sticky; top:0; z-index:999;
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.lx-header__row{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:12px 0;
}
.lx-brand img{height:38px; display:block}

.lx-header__meta{display:flex; gap:18px; align-items:center}
.lx-meta{display:flex; gap:6px; align-items:center; font-size:14px; color:#374151}
.lx-meta a{color:#374151; text-decoration:none}
.lx-meta .material-symbols-outlined{font-size:18px; color:var(--brand-red)}

.lx-header__cta{display:flex; align-items:center; gap:10px; flex-wrap:wrap}

/* BUTTONS */
.lx-btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  border:1px solid transparent;
  transition:.18s ease;
  white-space:nowrap;
}
.lx-btn--primary{
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-purple) 100%);
  color:#fff;
  box-shadow: 0 12px 30px rgba(217,37,84,.22);
}
.lx-btn--primary:hover{transform: translateY(-1px)}
.lx-btn--ghost{
  background:#fff;
  border-color: var(--border);
  color:#111827;
}
.lx-btn--ghost:hover{border-color: rgba(18,24,38,.25)}
.lx-btn--wa{background:#25D366; color:#fff}
.lx-btn--wa:hover{filter: brightness(.96)}
.lx-btn--call{background:var(--brand-purple); color:#fff}
.lx-btn--call:hover{filter: brightness(.96)}
.lx-btn--full{width:100%}

/* HERO */
.lx-hero{
  padding:44px 0 26px;
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(217,37,84,.14), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(96,94,186,.16), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}
.lx-badges{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:12px}
.lx-badge{
  font-size:12px; font-weight:800;
  padding:6px 10px; border-radius:999px;
  background:#fff; border:1px solid var(--border);
}
.lx-badge--alt{background: rgba(96,94,186,.10); border-color: rgba(96,94,186,.25)}
.lx-badge--alt2{background: rgba(217,37,84,.10); border-color: rgba(217,37,84,.25)}

.lx-title{
  font-size:44px; line-height:1.06; margin:0 0 12px;
  letter-spacing:-.02em;
}
.lx-title span{color:var(--brand-red)}
.lx-sub{font-size:18px; color:#374151; margin:0 0 16px; max-width:52ch}

.lx-trust{
  display:flex; flex-wrap:wrap; gap:10px; margin-top:14px
}
.lx-trust__item{
  display:flex; gap:8px; align-items:center;
  background:#fff; border:1px solid var(--border);
  padding:10px 12px; border-radius:12px;
  font-size:14px; color:#374151;
}
.lx-trust__item .material-symbols-outlined{font-size:18px; color:var(--brand-purple)}

/* Seg switch */
.lx-seg{
  display:inline-flex; gap:6px;
  background:#fff; border:1px solid var(--border);
  border-radius:12px; padding:6px;
}
.lx-seg__btn{
  border:0; background:transparent;
  padding:10px 12px; border-radius:10px;
  font-weight:800; color:#374151;
}
.lx-seg__btn.is-active{
  background: linear-gradient(90deg, rgba(217,37,84,.12), rgba(96,94,186,.12));
  color:#111827;
}

/* Cards */
.lx-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:16px;
}
.lx-card__head{margin-bottom:10px}
.lx-card__title{margin:0 0 6px; font-size:18px}
.lx-card__note{margin:0; color:var(--muted); font-size:14px}
.lx-card--plain{box-shadow:none}

.lx-alert{
  background: rgba(217,37,84,.10);
  border:1px solid rgba(217,37,84,.25);
  color:#7a0b2a;
  padding:10px 12px;
  border-radius:12px;
  margin:12px 0;
  font-weight:700;
}

/* Fields */
.lx-grid{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin:12px 0}
.lx-grid--4{grid-template-columns: repeat(4, 1fr)}
.lx-field label{display:block; font-size:13px; font-weight:800; margin-bottom:6px}
.lx-field input, .lx-field select{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 12px;
  font-weight:700;
  outline:none;
}
.lx-field input:focus, .lx-field select:focus{
  border-color: rgba(96,94,186,.55);
  box-shadow: 0 0 0 4px rgba(96,94,186,.12);
}
.lx-hint{display:block; margin-top:6px; color:var(--muted); font-size:12px}

/* Type buttons */
.lx-type{display:flex; gap:8px; margin-top:12px}
.lx-type__btn{
  flex:1;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:12px;
  font-weight:900;
}
.lx-type__btn.is-active{
  border-color: rgba(217,37,84,.35);
  background: rgba(217,37,84,.08);
}

/* Mini text */
.lx-mini{
  display:flex; gap:8px; align-items:flex-start;
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--border);
  color:#374151; font-size:13px;
}
.lx-mini a{color:var(--brand-red); font-weight:900; text-decoration:none}
.lx-mini .material-symbols-outlined{font-size:18px; color:var(--brand-purple)}

/* Sections */
.lx-section{padding:44px 0}
.lx-section--soft{background:var(--soft)}
.lx-headline{text-align:center; max-width:720px; margin:0 auto 18px}
.lx-headline h2{margin:0 0 8px; font-size:30px}
.lx-headline p{margin:0; color:var(--muted)}

.lx-promo{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
  display:flex;
  gap:12px;
  height:100%;
}
.lx-promo__icon{
  width:44px; height:44px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(90deg, rgba(217,37,84,.14), rgba(96,94,186,.14));
}
.lx-promo h3{margin:0 0 4px; font-size:16px}
.lx-promo p{margin:0; color:#374151}

.lx-cta-row{
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
  margin-top:18px;
}

/* Map */
.lx-map{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#fff;
  height:100%;
  min-height:320px;
}
.lx-map iframe{width:100%; height:100%; border:0}

.lx-hours{
  margin-top:10px;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:#374151;
}
.lx-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

/* FAQ */
.lx-faq{max-width:820px; margin:0 auto}
.lx-faq details{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px 14px;
  margin-bottom:10px;
}
.lx-faq summary{
  font-weight:900; cursor:pointer;
}
.lx-faq p{margin:10px 0 0; color:#374151}

/* Footer */
.lx-footer{
  background:#0b0b0b;
  padding:22px 0;
  color:#fff;
}
.lx-footer__row{
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  flex-wrap:wrap;
}
.lx-footer__logo{height:26px}

/* Responsive */
@media (max-width: 992px){
  .lx-title{font-size:36px}
  .lx-grid--4{grid-template-columns: 1fr 1fr}
}
@media (max-width: 576px){
  .lx-title{font-size:30px}
  .lx-grid{grid-template-columns: 1fr}
  .lx-brand img{height:34px}
}
/* =========================================
   ENVIOEXPRESS SUBDOMINIO FUNNEL STYLE
   (Agregar al final del style.css)
========================================= */

/* Variables identidad */
:root{
  --ee-primary:#605EBA;
  --ee-accent:#D92554;
  --ee-dark:#121826;
  --ee-gray:#6B7280;
  --ee-light:#F6F7FB;
}

/* Reset ligero moderno */
body{
  font-family: "Commissioner", system-ui, -apple-system, sans-serif;
  color: var(--ee-dark);
  background:#fff;
}

/* =========================================
   HERO LOCAL
========================================= */

.hero-local{
  padding: 80px 20px 90px;
  background: linear-gradient(
    135deg,
    rgba(96,94,186,0.08),
    rgba(217,37,84,0.05)
  );
}

.hero-local__content{
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.hero-local h1{
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.hero-local p{
  font-size: 18px;
  color: var(--ee-gray);
  margin-bottom: 35px;
}

/* Mini cotizador */
.hero-quote-mini{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.hero-quote-mini input{
  padding: 14px 16px;
  border-radius: 12px;
  border:1px solid rgba(0,0,0,.1);
  min-width:140px;
  font-weight:600;
}

.hero-quote-mini input:focus{
  outline:none;
  border-color: var(--ee-primary);
  box-shadow: 0 0 0 3px rgba(96,94,186,.15);
}

.hero-quote-mini button{
  background: var(--ee-accent);
  color:#fff;
  border:none;
  padding:14px 24px;
  border-radius:12px;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
}

.hero-quote-mini button:hover{
  filter: brightness(.95);
  transform: translateY(-1px);
}

/* Botones secundarios */
.hero-actions{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.btn-wa{
  background:#25D366;
  color:#fff;
  padding:12px 22px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
  transition:.2s;
}

.btn-wa:hover{
  filter:brightness(.95);
}

.btn-secondary{
  background:#fff;
  border:1px solid rgba(0,0,0,.15);
  padding:12px 22px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
  color:var(--ee-dark);
}

/* =========================================
   BENEFITS
========================================= */

.benefits{
  padding:70px 20px;
}

.benefits__grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:30px;
}

.benefit{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:30px;
  text-align:center;
  transition:.2s ease;
}

.benefit:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.benefit h3{
  font-size:20px;
  margin-bottom:10px;
  font-weight:900;
  color: var(--ee-primary);
}

.benefit p{
  color:var(--ee-gray);
  font-weight:600;
}

/* =========================================
   B2B SECTION
========================================= */

.b2b{
  background: var(--ee-primary);
  padding:70px 20px;
  text-align:center;
  color:#fff;
}

.b2b h2{
  font-size:30px;
  font-weight:900;
  margin-bottom:15px;
}

.b2b p{
  margin-bottom:20px;
}

.b2b ul{
  list-style:none;
  padding:0;
  margin:0 0 25px;
}

.b2b li{
  font-weight:700;
  margin-bottom:8px;
}

.btn-primary{
  background:#fff;
  color:var(--ee-primary);
  padding:14px 28px;
  border-radius:14px;
  font-weight:900;
  text-decoration:none;
}

/* =========================================
   RESEÑAS
========================================= */

.reviews{
  padding:70px 20px;
  background:var(--ee-light);
  text-align:center;
}

.review{
  max-width:600px;
  margin:auto;
  background:#fff;
  padding:30px;
  border-radius:18px;
  font-weight:600;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* =========================================
   UBICACIÓN
========================================= */

.location-section{
  padding:70px 20px;
}

.location-box{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.location-info h3{
  font-weight:900;
  margin-bottom:15px;
}

.location-info p{
  margin-bottom:8px;
  font-weight:600;
}

.location-map iframe{
  width:100%;
  border-radius:18px;
  min-height:350px;
  border:none;
}

/* =========================================
   COTIZAR LISTADO MEJORADO
========================================= */

.modal-list{
  margin-top:20px;
}

.modal-list table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
}

.modal-list tr{
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,.05);
  border-radius:14px;
}

.modal-list td{
  padding:18px;
  vertical-align:middle;
  font-weight:600;
}

.modal-list img{
  max-height:40px;
}

.text-Purple500{
  color:var(--ee-primary);
  font-weight:800;
}

.text-red400{
  color:var(--ee-accent);
  font-weight:900;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:1024px){
  .benefits__grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:768px){

  .hero-local h1{
    font-size:28px;
  }

  .hero-quote-mini{
    flex-direction:column;
  }

  .hero-quote-mini input,
  .hero-quote-mini button{
    width:100%;
  }

  .benefits__grid{
    grid-template-columns:1fr;
  }

  .location-box{
    grid-template-columns:1fr;
  }

  .modal-list td{
    display:block;
    width:100%;
  }

  .modal-list tr{
    display:block;
  }

}

/* =========================================
   BOTÓN FLOTANTE WHATSAPP
========================================= */

.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  background:#25D366;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,.2);
  z-index:999;
  transition:.2s;
}

.whatsapp-float:hover{
  transform:scale(1.08);
}

.whatsapp-float img{
  width:32px;
}
/* ======================================
   UBICACIÓN PRO ENVIOEXPRESS
====================================== */

.location-pro{
  padding:80px 20px;
  background:#f8f9fc;
}

.location-pro__header{
  text-align:center;
  max-width:700px;
  margin:0 auto 50px;
}

.location-pro__header h2{
  font-size:32px;
  font-weight:900;
  margin-bottom:10px;
}

.location-pro__header p{
  color:#6B7280;
  font-weight:600;
}

.location-pro__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.location-pro__name{
  font-size:22px;
  font-weight:900;
  margin-bottom:20px;
}

.location-pro__card{
  background:#fff;
  padding:25px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  margin-bottom:25px;
}

.location-pro__item{
  display:flex;
  gap:15px;
  margin-bottom:18px;
}

.location-pro__item .icon{
  font-size:20px;
}

.location-pro__item strong{
  display:block;
  margin-bottom:4px;
}

.location-pro__actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.location-pro__map iframe{
  width:100%;
  height:400px;
  border-radius:20px;
  border:none;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* Responsive */
@media(max-width:768px){
  .location-pro__grid{
    grid-template-columns:1fr;
  }
}
/* ======================================
   PROMOCIONES ENVIOEXPRESS PRO
====================================== */

.promo-ee{
  padding:100px 20px;
  background:#f7f9ff;
}

.promo-ee__header{
  text-align:center;
  max-width:700px;
  margin:0 auto 60px;
}

.promo-ee__header h2{
  font-size:34px;
  font-weight:900;
  margin-bottom:12px;
}

.promo-ee__header p{
  font-weight:600;
  color:#6B7280;
}

.promo-ee__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
  max-width:1200px;
  margin:0 auto 60px;
}

.promo-ee__card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.07);
  transition:.3s ease;
  display:flex;
  flex-direction:column;
}

.promo-ee__card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.promo-ee__card img{
  width:100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display:block;
}

.promo-ee__content{
  padding:25px;
  text-align:center;
}

.promo-ee__content h3{
  font-size:20px;
  font-weight:900;
  margin-bottom:8px;
}

.promo-ee__content p{
  font-weight:600;
  color:#6B7280;
}

.promo-ee__card--highlight{
  border:2px solid #D92554;
}

.promo-ee__cta{
  text-align:center;
}

.promo-ee__btn{
  display:inline-block;
  background:#D92554;
  color:#fff;
  padding:18px 42px;
  border-radius:16px;
  font-weight:900;
  text-decoration:none;
  transition:.2s;
}

.promo-ee__btn:hover{
  transform:translateY(-2px);
  filter:brightness(.95);
}

/* Responsive */

@media(max-width:1100px){
  .promo-ee__grid{
    grid-template-columns:repeat(2,1fr);
  }
}

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

  .promo-ee__card img{
    height:180px;
  }
}
/* ================================
   PROMOS MOBILE OPTIMIZADO
================================ */

@media(max-width:768px){

  .promo-ee__grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .promo-ee__card{
    flex-direction:row;
    align-items:center;
    padding:12px;
    max-width:100%;
  }

  .promo-ee__card img{
    width:85px;
    height:85px;
    aspect-ratio:unset;
    border-radius:14px;
    flex-shrink:0;
  }

  .promo-ee__content{
    padding:0 0 0 15px;
    text-align:left;
  }

  .promo-ee__content h3{
    font-size:16px;
    margin-bottom:4px;
  }

  .promo-ee__content p{
    font-size:13px;
    margin:0;
  }

}
/* ======================================
   ALIANZAS ENVIOEXPRESS
====================================== */

.alliances-ee{
  padding:100px 20px;
  background:#ffffff;
  text-align:center;
}

.alliances-ee__header{
  max-width:700px;
  margin:0 auto 60px;
}

.alliances-ee__header h2{
  font-size:34px;
  font-weight:900;
  margin-bottom:12px;
}

.alliances-ee__header p{
  font-weight:600;
  color:#6B7280;
}

.alliances-ee__logos{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  align-items:center;
  max-width:1100px;
  margin:0 auto;
}

.alliances-ee__logo{
  padding:25px;
  background:#f7f9ff;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s ease;
}

.alliances-ee__logo:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.alliances-ee__logo img{
  max-height:55px;
  width:auto;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:.8;
  transition:.3s ease;
}

.alliances-ee__logo:hover img{
  filter:none;
  opacity:1;
}

/* Responsive */

@media(max-width:1100px){
  .alliances-ee__logos{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:768px){
  .alliances-ee__logos{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }

  .alliances-ee__logo{
    padding:15px;
  }

  .alliances-ee__logo img{
    max-height:40px;
  }
}