:root{
    --hero1:#0b1220;
    --hero2:#0f172a;
    --soft:#f6f8ff;
    --line:rgba(15,23,42,.10);
  }
  
  body{ background:#fff; }
  
  /* Topbar */
  .topbar{
    background: linear-gradient(90deg, rgba(34,197,94,.22), rgba(59,130,246,.18));
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  
  /* Navbar glow */
  .nav-glow{
    box-shadow: 0 12px 30px rgba(0,0,0,.20);
  }
  .brand-badge{
    display:inline-grid;
    place-items:center;
    width:34px;height:34px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
  }
  
  /* HERO */
  .hero{
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(1200px 600px at 15% 20%, rgba(59,130,246,.30), transparent 55%),
      radial-gradient(900px 500px at 85% 30%, rgba(34,197,94,.22), transparent 55%),
      radial-gradient(900px 500px at 55% 85%, rgba(245,158,11,.16), transparent 55%),
      linear-gradient(135deg, var(--hero1), var(--hero2));
  }
  .hero-title .text-highlight{
    color:#a7f3d0;
  }
  .hero-wave{
    position:absolute;
    left:0; right:0; bottom:-1px;
    width:100%;
    height:120px;
    fill: #ffffff;
    opacity:.95;
  }
  
  .hero-card{
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 55px rgba(0,0,0,.25);
  }
  .pill{
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .8px;
    background: rgba(34,197,94,.20);
    border: 1px solid rgba(34,197,94,.35);
  }
  
  .mini-offer{
    display:flex;
    gap:12px;
    align-items:center;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
  }
  .mini-offer i{ font-size: 1.35rem; }
  
  /* Stats */
  .hero-stats{
    display:flex;
    gap:12px;
    flex-wrap: wrap;
  }
  .stat{
    min-width: 140px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.92);
  }
  .stat__num{ font-weight: 900; font-size: 1.25rem; }
  .stat__txt{ font-size: .85rem; color: rgba(255,255,255,.68); }
  
  /* Section soft */
  .section-soft{ background: var(--soft); }
  
  /* Feature cards */
  .feature-card{
    background:#fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
  }
  .feature-icon{
    width:46px;height:46px;
    border-radius: 16px;
    display:grid;
    place-items:center;
    background: rgba(59,130,246,.10);
    border: 1px solid rgba(59,130,246,.18);
    margin-bottom: 10px;
  }
  .feature-icon i{ font-size: 1.25rem; }
  
  /* Cards productos */
  .product-card{
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.08);
  }
  .lift{
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .lift:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,0,0,.12);
  }
  
  .card-top{
    position:absolute;
    margin: 12px;
    display:flex;
    gap:8px;
    z-index: 2;
  }
  .product-card{ position: relative; }
  
  .tag{
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .72rem;
    display:inline-flex;
    align-items:center;
    gap:6px;
    border: 1px solid rgba(0,0,0,.06);
    background:#fff;
  }
  .tag-hot{ background: rgba(245,158,11,.16); border-color: rgba(245,158,11,.25); }
  .tag-off{ background: rgba(34,197,94,.16); border-color: rgba(34,197,94,.25); }
  .tag-new{ background: rgba(59,130,246,.14); border-color: rgba(59,130,246,.22); }
  
  /* ✅ Caja de imagen estándar + NO recorte */
  .img-box{
    height: 240px;             /* un poco más grande y pro */
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 14px;
  }
  .product-img{
    width: 100%;
    height: 100%;
    object-fit: contain;       /* clave: no recorta */
    object-position: center;
  }
  
  .price{
    letter-spacing: .2px;
    font-size: 1.05rem;
  }
  
  /* Services */
  .service-card{
    border: 1px solid var(--line);
  }
  .service-ico{
    width:46px;height:46px;
    border-radius: 16px;
    display:grid;
    place-items:center;
    background: rgba(34,197,94,.10);
    border: 1px solid rgba(34,197,94,.18);
    margin-bottom: 10px;
  }
  .service-ico i{ font-size: 1.25rem; }
  
  /* Modal producto */
  .pm-imgbox{
    height: 320px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 14px;
  }
  .pm-imgbox img{
    width: 100%;
    height: 100%;
    object-fit: contain; /* sin recorte */
  }
  .pm-price{
    font-weight: 900;
    font-size: 1.4rem;
  }
  
  /* Botón flotante WhatsApp */
  .wa-float{
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    text-decoration: none;
    background: #25d366;
    color: #0b1f12;
    box-shadow: 0 12px 30px rgba(0,0,0,.22);
    font-weight: 800;
    transition: transform .15s ease, filter .15s ease;
  }
  .wa-float:hover{
    transform: translateY(-2px);
    filter: brightness(1.02);
  }
  .wa-float__icon{
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.25);
    border-radius: 999px;
  }