/* =========================================================
   PRODUCTOS V2 — PRESENTAR STUDIO
========================================================= */

.products-v2{
  background:#090909;
  color:#fff;
  padding:120px 5vw;
}

.products-v2__wrap{
  width:100%;
  max-width:1380px;
  margin:0 auto;
}

.products-v2__head{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:60px;
  margin-bottom:58px;
}

.products-v2__kicker{
  font:700 11px 'Space Mono',monospace;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.products-v2__head h2{
  font:400 clamp(44px,6vw,86px)/.92 'Archivo Black',sans-serif;
  letter-spacing:-.055em;
  text-transform:uppercase;
}

.products-v2__head p{
  color:#aaa;
  max-width:650px;
  margin-top:20px;
  font-size:17px;
  line-height:1.7;
}

.products-v2__grid{
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:20px;
}

.product-showcase{
  position:relative;
  min-height:640px;
  padding:48px;
  border-radius:32px;
  overflow:hidden;
  isolation:isolate;
}

.product-showcase__content{
  position:relative;
  z-index:5;
  max-width:620px;
}

.product-showcase__label{
  display:block;
  margin-bottom:22px;
 font:700 12px 'DM Sans', sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.product-showcase h3{

    font:400 clamp(42px,5vw,78px)/.92 'Archivo Black',sans-serif;

    letter-spacing:-.05em;
  max-width:720px;
}

.product-showcase p{
  max-width:500px;
  margin-top:24px;
  font-size:17px;
  line-height:1.65;
}

.product-showcase__link{
  display:inline-flex;
  margin-top:30px;
  font-weight:700;
  position:relative;
  z-index:6;
  transition:transform .25s ease;
}

.product-showcase__link:hover{
  transform:translateY(-3px);
}

.product-showcase--presentar{
  background:
    radial-gradient(circle at 82% 18%,rgba(255,255,255,.3),transparent 32%),
    linear-gradient(135deg,#6547ff 0%,#8966ff 56%,#a784ff 100%);
}

.product-showcase--fidelizar{
  background:
    radial-gradient(circle at 80% 24%,rgba(255,255,255,.18),transparent 36%),
    linear-gradient(145deg,#ff6033 0%,#ff754c 60%,#ff916e 100%);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.presentar-device{
  position:absolute;
  z-index:4;
  width:340px;
  height:660px;
  right:30px;
  bottom:-120px;
  border:10px solid #111;
  border-radius:52px;
  background:#f8f8f5;
  transform:rotate(8deg);
  box-shadow:0 40px 100px rgba(0,0,0,.34);
  transition:transform .55s cubic-bezier(.2,.7,.2,1);
}

.product-showcase--presentar:hover .presentar-device{
  transform:rotate(3deg) translateY(-14px);
}

.presentar-device__notch{
  width:104px;
  height:28px;
  margin:0 auto;
  background:#111;
  border-radius:0 0 18px 18px;
}

.presentar-device__screen{
  padding:24px;
}

.presentar-device__profile{
  min-height:190px;
  padding:28px;
  border-radius:30px;
  background:linear-gradient(135deg,#2c194e,#7657db);
  position:relative;
}

.presentar-device__profile strong{
  display:block;
  font-size:20px;
}

.presentar-device__profile span{
  display:block;
  margin-top:6px;
  opacity:.72;
}

.presentar-device__profile i{
  position:absolute;
  width:58px;
  height:58px;
  left:28px;
  bottom:-22px;
  border-radius:18px;
  background:#c7ff00;
  border:5px solid #fff;
}

.presentar-device__lines{
  display:grid;
  gap:12px;
  margin-top:68px;
}

.presentar-device__lines b{
  display:block;
  height:15px;
  border-radius:999px;
  background:#e6e6e1;
}

.presentar-device__lines b:nth-child(2){width:74%}
.presentar-device__lines b:nth-child(4){width:88%}

.product-showcase__glow{
  position:absolute;
  border-radius:50%;
  filter:blur(2px);
  pointer-events:none;
}

.product-showcase__glow--one{
  width:320px;
  height:320px;
  right:-110px;
  top:-90px;
  background:rgba(255,255,255,.14);
}

.product-showcase__glow--two{
  width:190px;
  height:190px;
  left:36%;
  bottom:-105px;
  background:rgba(199,255,0,.18);
}

.fidelizar-stat{
  position:relative;
  z-index:4;
  width:270px;
  height:270px;
  margin:35px auto 0;
  border-radius:50%;
  background:#111;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:
    0 0 0 24px rgba(255,255,255,.12),
    0 0 0 48px rgba(255,255,255,.07);
  transition:transform .45s ease;
}

.product-showcase--fidelizar:hover .fidelizar-stat{
  transform:scale(1.04);
}

.fidelizar-stat strong{
  font:400 72px 'Archivo Black',sans-serif;
  letter-spacing:-.05em;
  color:#c7ff00;
}

.fidelizar-stat span{
  margin-top:6px;
  font-size:13px;
  opacity:.72;
}

.fidelizar-ring{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.13);
  pointer-events:none;
}

.fidelizar-ring--one{
  width:360px;
  height:360px;
  right:-90px;
  bottom:-80px;
}

.fidelizar-ring--two{
  width:430px;
  height:430px;
  right:-125px;
  bottom:-115px;
}

@media(max-width:1050px){
  .products-v2__grid{
    grid-template-columns:1fr;
  }

  .product-showcase--fidelizar{
    min-height:570px;
  }
}

@media(max-width:900px){
  .products-v2{
    padding:90px 22px;
  }

  .products-v2__head{
    grid-template-columns:1fr;
    gap:20px;
  }

  .product-showcase{
    min-height:580px;
    padding:34px;
  }

  .presentar-device{
    right:-80px;
    width:300px;
    height:600px;
    opacity:.72;
  }

  .fidelizar-stat{
    width:230px;
    height:230px;
  }
}

@media(max-width:560px){
  .product-showcase{
    min-height:540px;
    padding:28px;
    border-radius:24px;
  }

  .product-showcase h3{
    font-size:34px;
  }

  .product-showcase p{
    font-size:15px;
  }

  .presentar-device{
    width:260px;
    height:520px;
    right:-115px;
    bottom:-95px;
  }

  .fidelizar-stat{
    width:190px;
    height:190px;
  }

  .fidelizar-stat strong{
    font-size:56px;
  }
}
