:root{
  --navy: #202080;   /* azul oscuro del logo */
  --cyan: #00A0E0;   /* azul claro del logo */
  --bg:   #0b1220;   /* fondo elegante */
  --card: #0f1a2f;
  --text: #eaf2ff;
  --muted:#b9c7e6;
  --line: rgba(255,255,255,.08);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 24px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  background:
    radial-gradient(900px 380px at 15% 5%, rgba(0,160,224,.20), transparent 60%),
    radial-gradient(700px 320px at 85% 0%, rgba(32,32,128,.25), transparent 55%),
    linear-gradient(180deg, #060a13, var(--bg));
  color: var(--text);
}

a{color:inherit;text-decoration:none}
.link{color: var(--cyan); text-decoration: underline; text-underline-offset: 3px;}

.topbar{
  position: sticky;
  top:0;
  z-index: 20;
  background: rgba(6,10,19,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.brand{display:flex;align-items:center;gap:12px}
.brand__logo{
  width:44px;height:44px;object-fit:contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
}
.brand__name{font-weight:800; letter-spacing:.3px}
.brand__tag{font-size:12px; color: var(--muted)}

.topbar__actions{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
}

.socialIcon{
  width: 40px;
  height: 40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,.03);
  transition: transform .12s ease, border-color .12s ease, color .12s ease, filter .12s ease;
}
.socialIcon:hover{
  transform: translateY(-1px);
  border-color: rgba(0,160,224,.35);
  color: var(--text);
  filter: brightness(1.02);
}

/* En móvil, que no se rompa */
@media (max-width: 520px){
  .brand__tag{display:none;}
  .socialIcon{width: 38px; height: 38px;}
}

.wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 16px 44px;
}

.hero{padding: 10px 0 18px}
.hero__title{
  font-size: clamp(24px, 4vw, 42px);
  margin: 8px 0 8px;
  letter-spacing: -.4px;
}
.hero__sub{
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 780px;
  line-height: 1.45;
}

.pills{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  font-size: 12px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
}

.card{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(15,26,47,.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.swiper{
  width: 100%;
  background: #060a13;
}

.slide{
  position: relative;
  height: min(64vh, 620px);
  display:flex;
  align-items:center;
  justify-content:center;
  background: #060a13;
}

/* Fondo blur usando la misma imagen */
.slide__bg{
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  filter: blur(18px) brightness(.55);
  transform: scale(1.08);
}

/* Imagen principal completa (sin recorte) */
.slide__img{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;  /* clave: NO recorta */
}

.slide__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55));
}
.slide__label{
  position:absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
}
.slide__labelTitle{
  font-weight: 800;
  font-size: 18px;
}
.slide__labelMini{
  font-size: 12px;
  color: rgba(255,255,255,.85);
}

.swiper-pagination-bullet{background: rgba(255,255,255,.55)}
.swiper-pagination-bullet-active{background: var(--cyan)}
.swiper-button-prev, .swiper-button-next{color: rgba(255,255,255,.85)}
.swiper-button-prev:hover, .swiper-button-next:hover{color: #fff}

.details{
  padding: 18px 16px 18px;
  border-top: 1px solid var(--line);
}

.details__head{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.details__title{font-size: 22px; font-weight: 850}
.details__specs{color: var(--muted); margin-top: 4px; line-height:1.35}
.details__price{
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, rgba(0,160,224,.22), rgba(32,32,128,.22));
  border: 1px solid rgba(0,160,224,.25);
  padding: 10px 12px;
  border-radius: 14px;
}

.badges{display:flex; gap: 10px; flex-wrap:wrap; margin: 12px 0 14px}
.badge{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,.03);
}

.ctaRow{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 720px){
  .ctaRow{grid-template-columns: 1fr 1fr 1fr;}
}

.btn{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 13px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .12s ease, filter .12s ease, border-color .12s ease;
  text-align:center;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.03);}

.btn--primary{
  background: linear-gradient(90deg, var(--cyan), #18b9ff);
  color: #001224;
}
.btn--dark{
  background: linear-gradient(90deg, var(--navy), #2f2fb3);
  color: #fff;
  border-color: rgba(255,255,255,.08);
}
.btn--ghost{
  background: rgba(255,255,255,.03);
  border-color: var(--line);
  color: var(--text);
}

.smallprint{
  margin-top: 12px;
  color: rgba(255,255,255,.70);
  font-size: 12px;
  line-height: 1.35;
}

.foot{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 860px){
  .foot{grid-template-columns: 1fr 1fr 1fr;}
}
.foot__box{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px;
  background: rgba(255,255,255,.03);
}
.foot__k{font-size: 12px; color: var(--muted)}
.foot__v{margin-top: 6px; font-weight: 750}

.locations{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 10px;
}

.locBadge{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
}

.locBadge__t{
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}

.locBadge__d{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.locBadge__m{
  color: rgba(255,255,255,.78);
}

.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #25D366, #1DB954);
  color: #06210f;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .12s ease, filter .12s ease;
}
.wa-float:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}
.wa-float__icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.28);
}
.wa-float__text{
  letter-spacing: .2px;
}

@media (max-width: 520px){
  .wa-float__text{display:none;} /* solo el icono en móvil */
  .wa-float{padding: 12px;}
}

@media (min-width: 1024px){
  .slide{
    height: 560px;
  }
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.btn--primary{
  box-shadow: 0 0 20px rgba(0,160,224,.25);
}
