/* ---------- Base ---------- */
:root{
  --brand:#0d6efd;
  --brand-600:#0b5ed7;
  --bg-hero: radial-gradient(1000px 600px at 10% -10%, rgba(13,110,253,.35), transparent 60%),
             radial-gradient(800px 500px at 90% 10%, rgba(25,135,84,.25), transparent 60%),
             linear-gradient(180deg, #0d6efd 0%, #0a58ca 70%);
}
html { scroll-behavior: smooth; }
body { font-feature-settings: 'liga' on; }
.skip-link{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip-link:focus{ left: 1rem; top: .5rem; width: auto; height: auto; z-index: 9999; background:#fff; padding:.5rem .75rem; border-radius:.5rem; }

/* ---------- Hero ---------- */
.hero{ min-height: 82vh; display: grid; align-items: center; position: relative; }
.hero-bg{ position:absolute; inset:0; background: var(--bg-hero) url('images/licenciaswindows.png') no-repeat right bottom/contain; opacity:.18; filter: saturate(1.2); }
.text-highlight{ background: linear-gradient(90deg,#fff, #cde2ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-card{ border-radius: 1rem; }
.icon-wrap{ color: var(--brand); }

/* ---------- Components ---------- */
.hover-card{ transition: transform .2s ease, box-shadow .2s ease; }
.hover-card:hover{ transform: translateY(-4px); box-shadow: 0 1rem 2rem rgba(0,0,0,.1); }
.product-card .img-contain{ object-fit: contain; max-height: 160px; }
.trustbar .bi{ font-size: 1rem; }

/* ---------- CTA final ---------- */
.cta-final{ background: linear-gradient(180deg,#0a58ca,#0d6efd); }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float{
  position: fixed; right: 18px; bottom: 18px;
  width: 56px; height: 56px; display:grid; place-items:center;
  background:#25D366; color:#fff; border-radius:50%;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  z-index: 1040; text-decoration:none;
}
.whatsapp-float:hover{ filter: brightness(.95); }

/* ---------- Footer ---------- */
footer a{ text-decoration:none; }

/* ---------- Utilities ---------- */
@media (max-width: 991.98px){
  .hero{ min-height: 72vh; }
  .hero-bg{ background-position: 130% 100%; }
}


/* ---------- Headline Accent (improved readability) ---------- */
.headline-accent{
  display: inline-block;
  color: #fff;
  padding: .2em .65em;
  border-radius: .8rem;
  background: linear-gradient(90deg, #0d6efd 0%, #3dd5f3 50%, #0b5ed7 100%);
  box-shadow: 0 .75rem 1.5rem rgba(13,110,253,.25);
  position: relative;
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
  letter-spacing: .2px;
}

/* subtle animated sheen for premium feel (very low intensity) */
.headline-accent::before{
  content: "";
  position: absolute;
  top: -6%;
  bottom: -6%;
  left: -20%;
  width: 28%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.25), rgba(255,255,255,0));
  border-radius: inherit;
  animation: headlineShine 3.6s ease-in-out infinite;
  pointer-events: none;
  opacity: .45;
}

@keyframes headlineShine{
  0%   { left: -30%; }
  50%  { left: 110%; }
  100% { left: 110%; }
}

/* Improve overall hero heading clarity on busy backgrounds */
.hero h1{
  line-height: 1.15;
  text-wrap: balance;
}


/* ---------- Hero Glass Wrapper for Max Readability ---------- */
.hero-copy.glass{
  background: rgba(0, 0, 0, 0.48);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.25rem;
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,.35);
}
.hero .badge{
  background-color: rgba(255,255,255,.92) !important;
  color: #0d6efd !important;
  backdrop-filter: none !important;
}
.hero h1{
  color:#fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.hero-lead{
  color:#fff !important;
  opacity: .98;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.hero .list-inline{
  color: rgba(255,255,255,.95);
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
@media (max-width: 575.98px){
  .hero-copy.glass{ padding: 1rem !important; }
}
