  :root{
    --navy:#0b1730;
    --navy-2:#101d3d;
    --blue:#1a56db;
    --green:#0d9d58;
    --green-light:#e8f8ef;
    --yellow:#f4c518;
    --red:#e12a2f;
    --gray:#5b6478;
    --line:#e7e9f0;
    --bg:#f6f7fb;
    --radius:14px;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    color:var(--navy);
    background:var(--bg);
    line-height:1.5;
  }
  img{max-width:100%;display:block;}
  a{text-decoration:none;color:inherit;}
  .wrap{max-width:1180px;margin:0 auto;padding:0 24px;}

  .country-strip{height:6px;display:flex;}
  .country-strip span{flex:1;}
  .country-strip .y{background:var(--yellow);}
  .country-strip .b{background:var(--blue);}
  .country-strip .r{background:var(--red);}

  /* -------- HEADER -------- */
  header{background:#fff;border-bottom:1px solid var(--line);position:sticky;top:0;z-index:50;}
  .header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 24px;gap:16px;}
  .logo img{height:48px;width:auto;}
  nav{display:flex;align-items:center;gap:28px;}
  nav a.nav-link{font-size:15px;font-weight:600;color:var(--navy);}
  nav a.nav-link:hover{color:var(--blue);}
  .header-cta{
    background:#25D366;color:#fff;padding:11px 20px;border-radius:8px;
    font-weight:700;font-size:14px;display:flex;align-items:center;gap:8px;
    white-space:nowrap;
  }
  .header-cta:hover{background:#1ebc59;}
  .menu-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px;}
  .menu-toggle span{width:24px;height:2px;background:var(--navy);display:block;}

  /* -------- HERO -------- */
  .hero{background:linear-gradient(180deg,#ffffff 0%, var(--bg) 100%);padding:60px 0 48px;border-bottom:1px solid var(--line);}
  .hero-inner{display:grid;grid-template-columns:1.15fr .85fr;gap:44px;align-items:center;}
  .eyebrow-row{display:flex;align-items:center;gap:10px;margin-bottom:16px;}
  .eyebrow-row .dash{width:28px;height:3px;background:var(--blue);border-radius:2px;}
  .eyebrow-row span{font-size:14px;font-weight:700;color:var(--blue);}
  .hero h1{font-size:40px;line-height:1.15;font-weight:800;color:var(--navy);margin-bottom:16px;}
  .hero h1 em{font-style:normal;color:var(--blue);}
  .hero p{font-size:16.5px;color:var(--gray);max-width:480px;margin-bottom:26px;}
  .hero-actions{display:flex;gap:14px;flex-wrap:wrap;}
  .btn-wsp{
    background:#25D366;color:#fff;padding:14px 24px;border-radius:9px;font-weight:700;font-size:15px;
    display:flex;align-items:center;gap:10px;box-shadow:0 8px 20px rgba(37,211,102,.25);
  }
  .btn-wsp:hover{transform:translateY(-2px);}
  .btn-secondary{border:2px solid var(--navy);color:var(--navy);padding:12px 22px;border-radius:9px;font-weight:700;font-size:15px;}
  .btn-secondary:hover{background:var(--navy);color:#fff;}

  .margin-hook{
    background:#fff;border:1px solid var(--line);border-radius:18px;padding:26px;
    box-shadow:0 20px 45px rgba(11,23,48,.08);
  }
  .margin-hook h3{font-size:14px;color:var(--gray);font-weight:700;margin-bottom:18px;}
  .margin-row{display:flex;align-items:center;justify-content:space-between;padding:12px 0;border-bottom:1px dashed var(--line);}
  .margin-row:last-of-type{border-bottom:none;}
  .margin-row span{font-size:14px;color:var(--gray);}
  .margin-row strong{font-size:16px;color:var(--navy);}
  .margin-highlight{
    margin-top:16px;background:var(--green-light);border-radius:12px;padding:16px 18px;
    display:flex;align-items:center;justify-content:space-between;
  }
  .margin-highlight span{font-size:13.5px;color:#0a7a44;font-weight:600;}
  .margin-highlight strong{font-size:22px;color:var(--green);}

  .section{padding:68px 0;}
  .section-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:34px;gap:24px;flex-wrap:wrap;}
  .section-head h2{font-size:30px;font-weight:800;color:var(--navy);}
  .section-head p{color:var(--gray);font-size:15px;max-width:440px;}

  .cat-grid{display:grid;grid-template-columns:repeat(3, 1fr);gap:24px;}
  .cat-card{border-radius:var(--radius);overflow:hidden;background:#fff;border:1px solid var(--line);transition:transform .18s ease, box-shadow .18s ease;display:flex;flex-direction:column;}
  .cat-card:hover{transform:translateY(-6px);box-shadow:0 18px 34px rgba(11,23,48,.12);}
  .cat-card img{width:100%;height:auto;}
  .cat-card .cat-foot{padding:16px 18px;display:flex;align-items:center;justify-content:space-between;}
  .cat-card .cat-foot span{font-weight:700;font-size:14px;color:var(--navy);}
  .cat-card .arrow{width:30px;height:30px;border-radius:50%;background:var(--bg);display:flex;align-items:center;justify-content:center;font-size:15px;color:#25D366;}
  .cat-card:hover .arrow{background:#25D366;color:#fff;}

  .product-grid{display:grid;grid-template-columns:repeat(3, 1fr);gap:24px;}
  .product-card{
    border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff;
    display:flex;flex-direction:column;transition:transform .18s ease, box-shadow .18s ease;
  }
  .product-card:hover{transform:translateY(-6px);box-shadow:0 18px 34px rgba(11,23,48,.12);}
  .product-visual{height:130px;display:flex;align-items:center;justify-content:center;font-size:44px;}
  .product-body{padding:18px 20px 20px;display:flex;flex-direction:column;gap:10px;}
  .product-tag{font-size:11.5px;font-weight:700;color:var(--blue);text-transform:none;}
  .product-body h3{font-size:16.5px;color:var(--navy);margin-bottom:2px;}
  .product-prices{display:flex;justify-content:space-between;gap:10px;padding:10px 0;border-top:1px dashed var(--line);border-bottom:1px dashed var(--line);}
  .product-prices div{display:flex;flex-direction:column;}
  .product-prices small{font-size:11.5px;color:var(--gray);}
  .product-prices strong{font-size:15px;color:var(--navy);}
  .product-gain{
    background:var(--green-light);color:#0a7a44;font-size:13px;font-weight:700;
    padding:8px 12px;border-radius:8px;text-align:center;
  }
  .product-cta{
    margin-top:4px;background:var(--navy);color:#fff;text-align:center;padding:11px;border-radius:8px;
    font-weight:700;font-size:13.5px;
  }
  .product-cta:hover{background:#25D366;}
  .product-note{text-align:center;color:var(--gray);font-size:13.5px;margin-top:28px;}

  .how-section{background:#fff;border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
  .how-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
  .how-item{position:relative;padding-top:8px;}
  .how-num{
    width:38px;height:38px;border-radius:10px;background:var(--navy);color:#fff;
    display:flex;align-items:center;justify-content:center;font-weight:800;font-size:16px;margin-bottom:16px;
  }
  .how-item h3{font-size:16px;margin-bottom:8px;color:var(--navy);}
  .how-item p{font-size:14px;color:var(--gray);}

  .profile-band{
    background:var(--navy);color:#fff;border-radius:20px;padding:44px;
    display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:center;
  }
  .profile-band h2{font-size:26px;margin-bottom:12px;}
  .profile-band p{color:#c7cde0;font-size:15px;margin-bottom:20px;}
  .profile-tags{display:flex;flex-wrap:wrap;gap:10px;}
  .profile-tags span{
    background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
    padding:8px 14px;border-radius:20px;font-size:13px;color:#fff;
  }
  .profile-stat{background:rgba(255,255,255,.06);border-radius:14px;padding:26px;text-align:center;}
  .profile-stat strong{display:block;font-size:34px;font-weight:800;margin-bottom:6px;}
  .profile-stat span{font-size:13.5px;color:#c7cde0;}

  .contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;}
  .contact-info h2{font-size:30px;font-weight:800;margin-bottom:14px;color:var(--navy);}
  .contact-info p{color:var(--gray);font-size:15.5px;margin-bottom:24px;max-width:420px;}
  .contact-wsp-box{
    background:var(--green-light);border-radius:14px;padding:20px;display:flex;align-items:center;gap:14px;margin-bottom:16px;
  }
  .contact-wsp-box .wsp-ic{width:44px;height:44px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;color:#fff;font-size:20px;flex-shrink:0;}
  .contact-wsp-box strong{display:block;font-size:14.5px;color:var(--navy);}
  .contact-wsp-box small{font-size:13px;color:var(--gray);}

  .contact-form{background:#fff;border:1px solid var(--line);border-radius:18px;padding:30px;box-shadow:0 20px 45px rgba(11,23,48,.06);}
  .form-row{margin-bottom:16px;}
  .form-row label{display:block;font-size:13px;font-weight:700;color:var(--navy);margin-bottom:6px;}
  .form-row input, .form-row select, .form-row textarea{
    width:100%;padding:12px 14px;border:1px solid var(--line);border-radius:9px;font-size:14px;font-family:inherit;color:var(--navy);
  }
  .form-row input:focus, .form-row select:focus, .form-row textarea:focus{outline:2px solid var(--blue);outline-offset:1px;}
  .form-two{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
  .form-submit{
    width:100%;background:#25D366;color:#fff;border:none;padding:14px;border-radius:9px;
    font-weight:700;font-size:15px;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;
  }
  .form-submit:hover{background:#1ebc59;}
  .form-note{font-size:12px;color:var(--gray);margin-top:10px;text-align:center;}

  footer{background:var(--navy-2);color:#c7cde0;}
  .footer-top{padding:52px 0 30px;}
  .footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;}
  .footer-brand img{height:42px;margin-bottom:16px;filter:brightness(0) invert(1);}
  .footer-brand p{font-size:14px;color:#9aa3ba;max-width:280px;}
  .footer-col h4{color:#fff;font-size:14px;margin-bottom:16px;}
  .footer-col ul{list-style:none;}
  .footer-col li{margin-bottom:10px;}
  .footer-col a{font-size:14px;color:#9aa3ba;}
  .footer-col a:hover{color:#fff;}

  .seal-strip{background:#08101f;border-top:1px solid rgba(255,255,255,.08);padding:26px 0;}
  .seal-row{display:flex;align-items:center;justify-content:center;gap:20px;flex-wrap:wrap;}
  .seal{display:flex;align-items:center;gap:10px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.10);padding:12px 20px;border-radius:10px;min-width:190px;}
  .seal .seal-ic{width:34px;height:34px;border-radius:50%;background:linear-gradient(135deg,var(--yellow),var(--blue));display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:800;color:#fff;flex-shrink:0;}
  .seal strong{display:block;font-size:12.5px;color:#fff;font-weight:700;}
  .seal small{display:block;font-size:11px;color:#8b93aa;}
  .seal-note{text-align:center;font-size:12px;color:#5f6982;margin-top:18px;}

  .bottom-bar{border-top:1px solid rgba(255,255,255,.08);padding:20px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px;}
  .bottom-bar p{font-size:13px;color:#7b849c;}
  .bottom-bar .legal-links{display:flex;gap:20px;}
  .bottom-bar .legal-links a{font-size:13px;color:#7b849c;}
  .bottom-bar .legal-links a:hover{color:#fff;}

  .wsp-float{
    position:fixed;bottom:22px;right:22px;background:#25D366;color:#fff;width:56px;height:56px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;font-size:26px;box-shadow:0 10px 24px rgba(37,211,102,.4);z-index:60;
  }

  @media (max-width: 980px){
    .hero-inner{grid-template-columns:1fr;}
    .how-grid{grid-template-columns:1fr 1fr;}
    .profile-band{grid-template-columns:1fr;}
    .contact-grid{grid-template-columns:1fr;}
  }
  @media (max-width: 900px){
    nav{display:none;}
    .menu-toggle{display:flex;}
    .hero h1{font-size:32px;}
    .cat-grid{grid-template-columns:repeat(2,1fr);}
    .product-grid{grid-template-columns:repeat(2,1fr);}
    .footer-grid{grid-template-columns:1fr 1fr;}
    .profile-band{padding:30px;}
  }
  @media (max-width: 560px){
    .cat-grid{grid-template-columns:1fr;}
    .product-grid{grid-template-columns:1fr;}
    .how-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;}
    .form-two{grid-template-columns:1fr;}
    .seal{min-width:150px;flex:1 1 45%;}
    .header-cta span.cta-text{display:none;}
  }

/* -------- PÁGINAS DE CATEGORÍA -------- */
.cat-banner{width:100%;border-bottom:1px solid var(--line);}
.cat-banner img{width:100%;height:auto;display:block;}
.breadcrumb{padding:18px 0;font-size:13.5px;color:var(--gray);}
.breadcrumb a{color:var(--blue);font-weight:600;}
.cat-intro{padding:8px 0 8px;}
.cat-intro h1{font-size:30px;font-weight:800;color:var(--navy);margin-bottom:10px;}
.cat-intro p{color:var(--gray);font-size:15.5px;max-width:600px;}
.cta-final{
  background:var(--navy);color:#fff;border-radius:20px;padding:40px;text-align:center;margin-top:12px;
}
.cta-final h2{font-size:24px;margin-bottom:10px;}
.cta-final p{color:#c7cde0;font-size:15px;margin-bottom:20px;}
