/* =========================
   Variables (colores del logo)
   ========================= */
:root{
  --bg-0: #071a2b;
  --bg-1: #081f33;
  --card: rgba(255,255,255,0.06);
  --card-2: rgba(255,255,255,0.09);
  --stroke: rgba(255,255,255,0.12);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);

  --primary: #12a8ff;   /* azul claro */
  --primary-2: #0b6cff; /* azul intenso */
  --accent: #00d7c7;    /* toque turquesa similar al brillo del logo */

  --shadow: 0 14px 40px rgba(0,0,0,0.35);
  --radius: 18px;
  --radius-sm: 12px;

  --container: 1100px;
}

/* =========================
   Base
   ========================= */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);

  /* Fondo acorde al logo: azul profundo + glow */
  background:
    radial-gradient(900px 480px at 20% 0%, rgba(18,168,255,0.22), transparent 55%),
    radial-gradient(700px 420px at 80% 10%, rgba(0,215,199,0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
  min-height: 100vh;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: 0.92; }

.container{
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.muted{ color: var(--muted); }
.accent{ color: var(--primary); }

.section{
  padding: 56px 0;
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h2{
  margin:0;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.3px;
}

.section-head p{
  margin:0;
  max-width: 520px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18,168,255,0.16);
  border: 1px solid rgba(18,168,255,0.22);
}

/* =========================
   Buttons
   ========================= */
.btn{
  appearance:none;
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  font-weight: 600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
}

.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: rgba(255,255,255,0.0);
}

.btn-secondary{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.btn-ghost{
  background: transparent;
}

/* =========================
   Header / Nav
   ========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7,26,43,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}

.brand-logo{
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.brand-name{
  font-weight: 800;
  letter-spacing: 0.5px;
}

.nav-links{
  display:flex;
  gap: 14px;
  align-items:center;
}

.nav-links a{
  padding: 10px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: rgba(255,255,255,0.86);
}

.nav-links a:hover{
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.nav-mobile-btn{
  display:none;
}

.mobile-menu{
  position: absolute;
  top: 62px;              /* debajo del header */
  right: 16px;
  width: min(320px, calc(100% - 32px));
  padding: 10px;

  display: flex;
  flex-direction: column;
  gap: 8px;

  background: rgba(7,26,43,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

/* IMPORTANTE: que hidden funcione aunque .mobile-menu tenga display:flex */
.mobile-menu[hidden]{
  display: none !important;
}



.mobile-menu a{
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}


/* =========================
   Hero
   ========================= */
.hero{
  padding: 46px 0 10px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.hero-copy h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
}

.hero-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.notice{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,215,199,0.10);
  border: 1px solid rgba(0,215,199,0.18);
  width: fit-content;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0,215,199,0.12);
}

.hero-card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card h2{
  margin: 0 0 6px;
  font-size: 18px;
}

.quick-search{
  margin-top: 12px;
  display:flex;
  gap: 10px;
}

.quick-search input{
  flex: 1;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  outline: none;
}

.hero-small-links{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-small-links a{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

/* =========================
   Devices
   ========================= */
.devices{
  display: flex;
  gap: 16px;
  overflow: hidden;
  scroll-behavior: smooth;
}


/* importante: que cada tarjeta sea una “caja” otra vez */
.device-card{
  flex: 0 0 auto;
  min-width: 280px;          /* así en PC también no caben todas */
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}



.device-icon{
  font-size: 26px;
  margin-bottom: 8px;
}

/* =========================
   Plans
   ========================= */
.section-plans{
  padding-top: 46px;
}

.tabs{
  display:flex;
  gap: 10px;
  margin: 8px 0 14px;
}

.tab{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
  cursor:pointer;
  font-weight: 800;
}

.tab.active{
  background: rgba(18,168,255,0.16);
  border-color: rgba(18,168,255,0.26);
}

.filters{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr auto;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 12px;
}

.filter label{
  display:block;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 6px;
}

.filter input,
.filter select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  outline: none;
}

.filter-actions{
  display:flex;
  align-items:flex-end;
}

.results-bar{
  margin: 12px 0 16px;
  display:flex;
  align-items:center;
  gap: 10px;
}

.plans-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.plan-card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.20);
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.plan-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 10px;
}

.plan-name{
  margin: 0;
  font-size: 18px;
}

.plan-price{
  font-weight: 900;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.plan-meta{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip{
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);
  font-weight: 700;
  font-size: 12px;
}

.plan-features{
  margin: 0;
  padding-left: 16px;
  color: rgba(255,255,255,0.80);
}

.plan-actions{
  margin-top: auto;
  display:flex;
  gap: 10px;
}

.empty-state{
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
}


/* =========================
   Switch (3 dispositivos / 1 dispositivo)
   ========================= */
.screen-switch{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin: 14px 0 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

.screen-switch span{
  font-weight: 800;
  color: rgba(255,255,255,0.86);
  letter-spacing: .2px;
  font-size: 13px;
}

/* switch base */
.switch{
  position:relative;
  display:inline-block;
  width: 56px;
  height: 30px;
}

.switch input{
  opacity:0;
  width:0;
  height:0;
}

.slider{
  position:absolute;
  inset:0;
  cursor:pointer;
  border-radius:999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  transition: .2s;
}

/* circulito */
.slider:before{
  content:"";
  position:absolute;
  width: 22px;
  height: 22px;
  left: 4px;
  top: 4px;
  border-radius:50%;
  background: var(--primary);
  transition: .2s;
  box-shadow: 0 10px 18px rgba(0,0,0,0.25);
}

/* cuando está en 1 dispositivo (checked) */
.switch input:checked + .slider:before{
  transform: translateX(26px);
}






/* =========================
   Download / Resellers
   ========================= */
.download-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.download-card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 16px;
  display:flex;
  gap: 12px;
  align-items:center;
}

.download-icon{
  font-size: 28px;
}

.info-card{
  background: var(--card-2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.info-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* =========================
   Footer
   ========================= */
.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  align-items:flex-start;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 10px;
}

.footer-logo{
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a{
  color: rgba(255,255,255,0.80);
}

.footer-note{
  margin-top: 10px;
  max-width: 420px;
}

.footer-bottom{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display:flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* =========================
   Modal
   ========================= */
.modal{
  position: fixed;
  inset: 0;
  z-index: 80;
  display:grid;
  place-items:center;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.55);
}

.modal-card{
  position: relative;
  width: min(520px, calc(100% - 32px));
  background: rgba(8,31,51,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.modal-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}

.modal-actions{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-mini{
  margin-top: 12px;
  font-size: 12px;
}

/* =========================
   FAB (WhatsApp / Telegram)
   ========================= */
.fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display:flex;
  flex-direction: column;
  align-items:flex-end;
  gap: 10px;
}

.fab-main{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(18,168,255,0.95), rgba(11,108,255,0.95));
  color: white;
  box-shadow: var(--shadow);
  cursor:pointer;
  font-size: 20px;
}

.fab-menu{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.fab-action{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 140px;
  justify-content: space-between;
}

.fab-action.wa{
  border-color: rgba(0,215,199,0.22);
}

.fab-action.tg{
  border-color: rgba(18,168,255,0.22);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .devices{ grid-template-columns: repeat(2, 1fr); }
  .plans-grid{ grid-template-columns: repeat(2, 1fr); }
  .download-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .filters{ grid-template-columns: 1fr 1fr; }
  .filter-actions{ grid-column: 1 / -1; }
}

@media (max-width: 720px){
  .nav-links{ display:none; }
  .nav-mobile-btn{ display:inline-flex; }
  .filters{ grid-template-columns: 1fr; }
  .plans-grid{ grid-template-columns: 1fr; }
}



/* ===== Desktop (PC): NO mostrar menú móvil ni botón ☰ ===== */
@media (min-width: 721px){
  .mobile-menu{ display: none !important; }
  .nav-mobile-btn{ display: none !important; }
  .nav-links{ display: flex !important; }
}


.chip-badge{
  border-color: rgba(255, 80, 80, 0.45);
  background: rgba(255, 80, 80, 0.18);
  font-weight: 800;
}



/* ===== Descargas PRO, más completo y profesional ===== */
.section-downloads{
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
}


.download-head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;

}


.download-badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 800;
  font-size: 12px;
}

.download-shell{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 18px;
  align-items:start;
}

.block{
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 54px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.block + .block{ margin-top: 16px; }

.block-head h3{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
}
.block-head p{ margin: 0 0 14px; }

.download-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.download-card{
  position: relative;
  overflow:hidden;
  border-radius: 18px;
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items:center;

  background:
    radial-gradient(520px 220px at 10% 0%, rgba(18,168,255,0.16), transparent 55%),
    rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 40px rgba(0,0,0,0.30);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.download-card:hover{
  transform: translateY(-5px);
  border-color: rgba(18,168,255,0.28);
  box-shadow: 0 22px 56px rgba(0,0,0,0.44);
}

.d-ico{ font-size: 28px; }
.d-title{ font-weight: 900; font-size: 16px; }

.d-tags{
  display:flex; gap: 6px; flex-wrap: wrap;
  margin-top: 8px;
}
.tag{
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.14);
  font-weight: 800;
  opacity: .92;
}

.d-cta{
  margin-left:auto;
  font-weight: 900;
  opacity: .9;
  font-size: 12px;
}

.panel{
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 54px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.panel h3{ margin: 0 0 8px; font-weight: 900; font-size: 18px; }

.video-list{ display:grid; gap: 10px; margin-top: 12px; }

.video-item{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform .18s ease, border-color .18s ease;
}
.video-item:hover{
  transform: translateY(-3px);
  border-color: rgba(0,215,199,0.28);
}

.play{
  width: 38px; height: 38px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(18,168,255,0.16);
  border: 1px solid rgba(18,168,255,0.22);
  font-weight: 900;
}

.v-title{ font-weight: 900; }

.panel-divider{
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 14px 0;
}

.faq{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
}
.faq summary{ cursor:pointer; font-weight: 900; }

.support-box{
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(18,168,255,0.10);
  border: 1px solid rgba(18,168,255,0.18);
}
.support-title{ font-weight: 900; font-size: 16px; }
.support-actions{ margin-top: 12px; display:flex; gap: 10px; flex-wrap: wrap; }

/* Tabs sin JS */
.tabs{ margin-top: 8px; }
.tabs input{ display:none; }

.tab-bar{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tab-bar label{
  cursor:pointer;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 900;
  font-size: 12px;
}

.tab-panels .tab-panel{ display:none; }
#tab-android:checked ~ .tab-bar label[for="tab-android"],
#tab-tv:checked ~ .tab-bar label[for="tab-tv"],
#tab-fire:checked ~ .tab-bar label[for="tab-fire"],
#tab-ios:checked ~ .tab-bar label[for="tab-ios"],
#tab-web:checked ~ .tab-bar label[for="tab-web"]{
  border-color: rgba(18,168,255,0.32);
  background: rgba(18,168,255,0.10);
}

#tab-android:checked ~ .tab-panels .tab-panel:nth-child(1),
#tab-tv:checked ~ .tab-panels .tab-panel:nth-child(2),
#tab-fire:checked ~ .tab-panels .tab-panel:nth-child(3),
#tab-ios:checked ~ .tab-panels .tab-panel:nth-child(4),
#tab-web:checked ~ .tab-panels .tab-panel:nth-child(5){
  display:block;
}

.steps{ margin: 0; padding-left: 18px; line-height: 1.7; }

/* Responsive */
@media (max-width: 980px){
  .download-shell{ grid-template-columns: 1fr; }
  .download-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  .download-head{ flex-direction: column; }
  .download-badges{ justify-content:flex-start; }
  .download-grid{ grid-template-columns: 1fr; }
}


/* 1) Cards del grid: misma altura y mejor estructura */
.download-grid{
  align-items: stretch;
}

.download-card{
  height: 100%;
  min-height: 140px;       /* 🔥 todas parejitas */
  display: flex;
  align-items: center;
}

.d-body{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.d-tags{
  margin-top: 8px;
}


.section-divider{
  border: none;
  height: 1px;
  margin: 48px 0;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 18px rgba(0,180,255,0.12);
}


/* Hero con carrusel de fondo */
.hero{
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.active{
  opacity: 1;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero .container{
  position: relative;
  z-index: 1;
}



/* ===== Distribuidores (PRO) ===== */
.dist-panel{
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}

.dist-top{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dist-title{
  margin: 0;
}

.dist-filters{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dist-select, .dist-search{
  height: 42px;
  border-radius: 14px;
  padding: 0 12px;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  outline: none;
}

.dist-search{
  width: min(360px, 70vw);
}

.dist-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 14px;
}

.dist-chip{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  color: #fff;
  padding: 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.dist-chip:hover{
  transform: translateY(-1px);
}

.dist-chip.active{
  background: rgba(0,180,255,0.20);
  border-color: rgba(0,180,255,0.35);
}

.dist-tableWrap{
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}

.dist-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.dist-table thead th{
  text-align: left;
  padding: 12px;
  font-weight: 700;
  position: sticky;
  top: 0;
  background: rgba(8,16,28,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.dist-table td{
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: top;
}

.dist-table tr:hover td{
  background: rgba(255,255,255,0.03);
}

.dist-flag{
  font-size: 18px;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
}


.dist-verified{
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(0,180,255,0.18);
  border: 1px solid rgba(0,180,255,0.35);
}

.dist-note{
  margin-top: 6px;
  font-size: 12px;
}

.dist-badge{
  display: inline-block;
  margin: 4px 6px 0 0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.dist-contact{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dist-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
}

.dist-btn.wa{
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.30);
}

.dist-btn.tg{
  background: rgba(0, 136, 204, 0.16);
  border-color: rgba(0, 136, 204, 0.30);
}

/* Cards en móvil */
.dist-cards{
  display: none;
  gap: 12px;
}

.dist-card{
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
}

.dist-cardTop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dist-cardName{
  margin-top: 10px;
  font-weight: 700;
}

/* Responsive: oculta tabla y usa cards */
@media (max-width: 820px){
  .dist-tableWrap{ display: none; }
  .dist-cards{ display: grid; }
}


.dist-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 14px;
}

.dist-count{
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}

.dist-moreBtn{
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  cursor: pointer;
  color:#fff;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

.dist-moreBtn:hover{
  border-color: rgba(255,255,255,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
}

.dist-moreBtn:active{
  transform: translateY(1px);
}

.dist-moreBtn[disabled]{
  opacity: 0.45;
  cursor: not-allowed;
}
