
/* ============================================================
   ELYSIAN - HERO IMATGE GRAN + GRAELLA CATEGORIES
   ============================================================ */

/* Hero imatge plena sense text */
.es-hero-img {
  width: 100%;
  padding-top: 64px; /* al&#231;ada de la nav */
  line-height: 0;
  background: #0a0d1a;
}
.es-hero-img-photo {
  width: 100%;
  height: calc(100vh - 64px);
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Secci&#243; categories */
.es-cats-sec {
  background: #fff;
  padding: 0;
}
.es-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #e8ecf2;
}
.es-cat-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e8ecf2;
  border-bottom: 1px solid #e8ecf2;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s;
  overflow: hidden;
}
.es-cat-card:nth-child(3n) {
  border-right: none;
}
.es-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(37,99,235,0.13);
  z-index: 2;
  position: relative;
}
.es-cat-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.es-cat-card:hover .es-cat-card-img {
  transform: scale(1.04);
}
.es-cat-card-body {
  padding: 1.4rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-top: 1px solid #e8ecf2;
}
.es-cat-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0a2540;
  letter-spacing: -0.01em;
}
.es-cat-card-arrow {
  font-size: 1.2rem;
  color: #2563eb;
  transition: transform 0.2s;
}
.es-cat-card:hover .es-cat-card-arrow {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .es-hero-img-photo {
    height: 60vw;
    min-height: 260px;
  }
  .es-cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .es-cat-card:nth-child(3n) {
    border-right: 1px solid #e8ecf2;
  }
  .es-cat-card:nth-child(2n) {
    border-right: none;
  }
}
@media (max-width: 480px) {
  .es-cats-grid {
    grid-template-columns: 1fr;
  }
  .es-cat-card {
    border-right: none !important;
  }
  .es-cat-card-img {
    aspect-ratio: 16 / 9;
  }
}

/* REVIEWS V2 */
.rev2-track{overflow:hidden;border-radius:20px;}
.rev2-card{display:none;background:var(--w);border:1.5px solid var(--w4);border-radius:20px;padding:3rem 3.5rem;box-shadow:0 4px 24px rgba(37,99,235,.07);}
.rev2-card.active{display:block;animation:revFade .4s ease both;}
@keyframes revFade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
.rev2-stars{color:#f59e0b;font-size:1.3rem;letter-spacing:4px;margin-bottom:1.5rem;}
.rev2-text{font-size:1.05rem;color:var(--slate);line-height:1.9;font-style:italic;margin-bottom:2rem;max-width:100%;}
.rev2-author{display:flex;align-items:center;gap:1rem;}
.rev2-av{width:48px;height:48px;border-radius:50%;background:var(--grad2);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1.1rem;color:#fff;flex-shrink:0;}
.rev2-name{font-size:1rem;font-weight:700;color:var(--ink);}
.rev2-co{font-size:.78rem;color:var(--slate2);margin-top:2px;}
.rev2-btn{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;border:1.5px solid var(--w4);background:var(--w);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .25s;color:var(--slate);box-shadow:0 2px 12px rgba(10,13,26,.08);z-index:10;}
.rev2-btn:hover{border-color:var(--blue);color:var(--blue);background:var(--blue-l);transform:translateY(-50%) scale(1.08);}
.rev2-btn svg{width:18px;height:18px;}
.rev2-l{left:-24px;}
.rev2-r{right:-24px;}
.rev2-dots{display:flex;justify-content:center;gap:8px;margin-top:2rem;}
.rev2-dot{width:8px;height:8px;border-radius:50%;background:var(--w4);cursor:pointer;transition:all .3s;border:none;}
.rev2-dot.on{background:var(--blue);width:26px;border-radius:4px;}
:root{
  --w:#ffffff;--w2:#f7f8fc;--w3:#eef0f7;--w4:#e2e5f0;
  --ink:#0a0d1a;--ink2:#1a1f3a;--ink3:#3d4466;
  --blue:#2563eb;--blue2:#1d4ed8;--blue3:#3b82f6;--blue-l:#eff6ff;--blue-ll:#dbeafe;
  --slate:#64748b;--slate2:#94a3b8;--slate3:#cbd5e1;
  --accent:#06b6d4;
  --border:rgba(37,99,235,0.1);--border2:rgba(10,13,26,0.07);
  --grad:linear-gradient(135deg,#eff6ff 0%,#dbeafe 40%,#e0f2fe 100%);
  --grad2:linear-gradient(135deg,#2563eb 0%,#06b6d4 100%);
  --shadow:0 1px 3px rgba(10,13,26,0.08),0 8px 24px rgba(37,99,235,0.06);
  --shadow2:0 4px 16px rgba(37,99,235,0.15),0 24px 64px rgba(37,99,235,0.08);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'Inter',sans-serif;font-weight:400;background:var(--w);color:var(--ink);overflow-x:hidden;line-height:1.7;-webkit-font-smoothing:antialiased;}
.page{display:none;animation:fadeIn 0.45s ease both;}
.page.active{display:block;}
@keyframes fadeIn{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:500;height:64px;display:flex;align-items:center;justify-content:space-between;padding:0 5vw;background:rgba(255,255,255,0.95);backdrop-filter:blur(20px);border-bottom:1px solid var(--border2);transition:box-shadow 0.3s;}
.nav-links{display:flex;list-style:none;height:100%;align-items:center;}
nav.up{box-shadow:var(--shadow);}
.nav-logo{display:flex;align-items:center;gap:10px;cursor:pointer;}
.nav-logo-mark{width:32px;height:32px;background:var(--grad2);border-radius:8px;display:flex;align-items:center;justify-content:center;}
.nav-logo-mark svg{width:16px;height:16px;fill:none;stroke:#fff;stroke-width:2;}
.nav-logo-text{font-size:1rem;font-weight:700;color:var(--ink);letter-spacing:-0.02em;}
.nav-logo-text span{color:var(--blue);}
.nav-links{display:flex;list-style:none;}
.nav-links a{padding:0 1.1rem;height:64px;display:flex;align-items:center;font-size:.88rem;font-weight:700;color:var(--slate);cursor:pointer;transition:color .2s;letter-spacing:-.01em;text-decoration:none;}
.nav-links a:hover,.nav-links a.active{color:var(--ink);}
.nav-right{display:flex;align-items:center;gap:12px;}
.lang-sw{position:fixed;top:120px;right:2rem;z-index:400;display:flex;flex-direction:column;gap:4px;background:rgba(10,13,26,.75);padding:6px;border-radius:12px;backdrop-filter:blur(14px);border:1px solid rgba(255,255,255,.1);}
.lang-btn{padding:8px 14px;font-size:.82rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:rgba(255,255,255,.45);cursor:pointer;border:none;background:transparent;border-radius:8px;transition:all .2s;font-family:'Inter',sans-serif;}
.lang-btn.active{background:var(--blue);color:#fff;box-shadow:0 2px 8px rgba(37,99,235,.4);}
.lang-btn:hover:not(.active){background:rgba(255,255,255,.08);color:#fff;}
.nav-cta{background:var(--blue);color:#fff;padding:10px 22px;font-size:1rem;font-weight:700;border:none;border-radius:8px;cursor:pointer;font-family:'Inter',sans-serif;transition:all .2s;}
.nav-cta:hover{background:var(--blue2);transform:translateY(-1px);}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:6px;}
.hamburger span{width:20px;height:1.5px;background:var(--ink);display:block;}
.mob-menu{display:none;position:fixed;top:64px;left:0;right:0;background:var(--w);border-bottom:1px solid var(--w4);z-index:499;padding:1rem 5vw 1.5rem;flex-direction:column;}
.mob-menu.open{display:flex;}
.mob-menu a{padding:0.85rem 0;font-size:0.85rem;font-weight:500;color:var(--ink2);border-bottom:1px solid var(--w4);cursor:pointer;text-decoration:none;}

/* HERO */
.hero{min-height:100vh;padding-top:64px;display:flex;flex-direction:column;justify-content:center;position:relative;overflow:hidden;background:var(--ink);}
.hero-bg{position:absolute;inset:0;background:var(--ink);}
.hero-orb1{position:absolute;width:650px;height:650px;border-radius:50%;background:radial-gradient(circle,rgba(37,99,235,.22) 0%,transparent 65%);top:-180px;right:-120px;pointer-events:none;animation:fl1 9s ease-in-out infinite;}
.hero-orb2{position:absolute;width:480px;height:480px;border-radius:50%;background:radial-gradient(circle,rgba(6,182,212,.15) 0%,transparent 65%);bottom:-80px;left:5%;pointer-events:none;animation:fl2 11s ease-in-out infinite;}
@keyframes fl1{0%,100%{transform:translateY(0)}50%{transform:translateY(-28px)}}
@keyframes fl2{0%,100%{transform:translateY(0)}50%{transform:translateY(22px)}}
.hero-grid-lines{position:absolute;inset:0;background-image:linear-gradient(rgba(37,99,235,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(37,99,235,.07) 1px,transparent 1px);background-size:56px 56px;}
.hero-inner{position:relative;z-index:2;padding:5vw 5vw 4rem;display:flex;align-items:center;justify-content:center;width:100%;}
.hero-center{max-width:860px;width:100%;text-align:center;display:flex;flex-direction:column;align-items:center;}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(37,99,235,.2);border:1px solid rgba(37,99,235,.3);color:#93c5fd;padding:8px 18px;border-radius:100px;font-size:1rem;font-weight:700;margin-bottom:2rem;}
.hero-badge-dot{width:6px;height:6px;background:#60a5fa;border-radius:50%;animation:pulse 2s infinite;}
@keyframes pulse{0%,100%{opacity:1;}50%{opacity:0.4;}}
.hero-h1{font-family:'Inter',sans-serif;font-size:clamp(3.2rem,5.5vw,5.5rem);font-weight:700;line-height:1.02;letter-spacing:-.05em;color:#fff;margin-bottom:1.5rem;}
.hero-h1 em{font-family:'Playfair Display',serif;font-style:italic;font-weight:400;color:#93c5fd;}
.hero-h1 em{font-family:'Playfair Display',serif;font-style:italic;font-weight:400;color:var(--blue);}
.hero-sub{font-size:1.05rem;color:rgba(255,255,255,.6);line-height:1.85;max-width:640px;margin-bottom:2.5rem;font-weight:300;text-align:center;}
.hero-actions{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;}
.btn-blue{background:var(--blue);color:#fff;padding:15px 32px;font-size:1rem;font-weight:700;border:none;border-radius:10px;cursor:pointer;font-family:'Inter',sans-serif;transition:all .2s;display:inline-flex;align-items:center;gap:8px;}
.btn-blue:hover{background:var(--blue2);transform:translateY(-2px);box-shadow:0 8px 24px rgba(37,99,235,0.3);}
.btn-blue svg{width:16px;height:16px;}
.btn-ghost{background:rgba(255,255,255,.07);color:rgba(255,255,255,.8);padding:15px 28px;font-size:1rem;font-weight:700;border:1px solid rgba(255,255,255,.15);border-radius:10px;cursor:pointer;font-family:'Inter',sans-serif;transition:all .2s;}
.btn-ghost:hover{background:rgba(255,255,255,.13);color:#fff;border-color:rgba(255,255,255,.3);}
.hero-trust{display:flex;align-items:center;gap:1.5rem;margin-top:2.5rem;flex-wrap:wrap;}
.hero-trust-label{font-size:0.7rem;color:var(--slate2);font-weight:500;text-transform:uppercase;letter-spacing:0.06em;}
.trust-chip{background:var(--w);border:1px solid var(--w4);padding:5px 14px;border-radius:6px;font-size:0.68rem;font-weight:600;color:var(--slate);}
.metrics-grid{display:none;}
.hero-card{background:var(--w);border:1px solid var(--w4);border-radius:16px;padding:1.5rem;box-shadow:var(--shadow2);position:relative;}
.hero-card::before{content:'';position:absolute;inset:0;border-radius:16px;background:var(--grad);opacity:0.4;pointer-events:none;}
.metric-box{background:var(--w);border:1px solid var(--w4);border-radius:12px;padding:1.25rem 1rem;text-align:center;}
.metric-n{font-size:2.2rem;font-weight:700;color:var(--ink);letter-spacing:-0.04em;line-height:1;margin-bottom:4px;}
.metric-n span{font-size:1.2rem;}
.metric-l{font-size:0.65rem;color:var(--slate);font-weight:500;line-height:1.4;}
.metric-box.accent{border-color:var(--blue);background:var(--blue-l);}
.metric-box.accent .metric-n{color:var(--blue);}

/* SECTIONS */
.s{padding:7rem 5vw;}
.s-light{background:var(--w);}
.s-off{background:var(--w2);}
.s-blue{background:var(--blue-l);}
.container{max-width:1300px;margin:0 auto;width:100%;}
.chip{display:inline-flex;align-items:center;gap:6px;background:var(--blue-ll);color:var(--blue2);padding:5px 12px;border-radius:100px;font-size:0.68rem;font-weight:600;letter-spacing:0.04em;text-transform:uppercase;margin-bottom:1.25rem;}
.chip-dot{width:5px;height:5px;background:var(--blue);border-radius:50%;}
.s-h2{font-family:'Inter',sans-serif;font-size:clamp(2rem,3.5vw,3.2rem);font-weight:700;line-height:1.1;letter-spacing:-0.04em;color:var(--ink);margin-bottom:1.25rem;}
.s-h2 em{font-family:'Playfair Display',serif;font-style:italic;font-weight:400;color:var(--blue);}
.s-lead{font-size:0.95rem;color:var(--slate);line-height:1.9;max-width:520px;}
.section-intro{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:end;margin-bottom:4rem;}

/* PILLARS */
.pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.pillar{background:var(--w);border:1px solid var(--w4);border-radius:14px;padding:2rem;transition:all 0.25s;position:relative;overflow:hidden;}
.pillar::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--grad2);opacity:0;transition:opacity 0.25s;}
.pillar:hover{box-shadow:var(--shadow2);transform:translateY(-4px);}
.pillar:hover::before{opacity:1;}
.pillar-icon{width:44px;height:44px;background:var(--blue-l);border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;}
.pillar-icon svg{width:20px;height:20px;stroke:var(--blue);fill:none;stroke-width:1.75;}
.pillar h3{font-size:0.95rem;font-weight:600;color:var(--ink);margin-bottom:0.6rem;letter-spacing:-0.02em;}
.pillar p{font-size:0.82rem;color:var(--slate);line-height:1.8;}

/* VS */
.vs-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px;}
.vs-card{background:var(--w);border:1.5px solid var(--w4);border-radius:14px;padding:2rem;transition:all 0.25s;}
.vs-card.featured{border-color:var(--blue);background:var(--blue);}
.vs-card-tag{font-size:0.62rem;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:var(--slate2);margin-bottom:0.75rem;}
.vs-card.featured .vs-card-tag{color:rgba(255,255,255,0.6);}
.vs-card-title{font-size:1.05rem;font-weight:700;color:var(--ink);margin-bottom:1.5rem;letter-spacing:-0.02em;}
.vs-card.featured .vs-card-title{color:#fff;}
.vs-row{display:flex;align-items:flex-start;gap:10px;padding:10px 0;border-bottom:1px solid var(--w4);}
.vs-card.featured .vs-row{border-bottom-color:rgba(255,255,255,0.1);}
.vs-row:last-child{border-bottom:none;}
.vs-icon{width:18px;height:18px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center;margin-top:1px;}
.vs-icon.yes{background:rgba(255,255,255,0.15);}
.vs-icon.no{background:var(--w3);}
.vs-icon svg{width:10px;height:10px;}
.vs-text{font-size:0.78rem;color:var(--slate);line-height:1.5;}
.vs-card.featured .vs-text{color:rgba(255,255,255,0.85);}

/* PROCESO */
.steps-row{display:grid;grid-template-columns:repeat(5,1fr);gap:0;margin-top:4rem;position:relative;}
.steps-row::before{content:'';position:absolute;top:22px;left:5%;right:5%;height:1.5px;background:linear-gradient(90deg,var(--blue-ll),var(--blue3),var(--blue-ll));}
.step-box{padding:0 1rem;text-align:center;position:relative;}
.step-dot{width:44px;height:44px;border-radius:50%;background:var(--w);border:2px solid var(--blue);display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;z-index:1;position:relative;box-shadow:0 0 0 6px var(--blue-l);}
.step-dot svg{width:18px;height:18px;stroke:var(--blue);fill:none;stroke-width:2;}
.step-num{font-size:0.6rem;font-weight:700;letter-spacing:0.1em;color:var(--blue);text-transform:uppercase;margin-bottom:0.5rem;}
.step-t{font-size:0.88rem;font-weight:600;color:var(--ink);margin-bottom:0.5rem;}
.step-b{font-size:0.75rem;color:var(--slate);line-height:1.75;}

/* PAQUETES &mdash; redisseny complet */
.paq-hero{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:end;margin-bottom:5rem;}
.paq-grid-full{display:flex;flex-direction:column;gap:16px;}
.paq-card{background:var(--w);border:1.5px solid rgba(37,99,235,.15);border-radius:16px;overflow:hidden;transition:all 0.3s;cursor:pointer;}
.paq-card:hover{box-shadow:var(--shadow2);transform:translateY(-2px);border-color:var(--blue);}
.paq-card-header{background:linear-gradient(135deg,var(--blue-l),var(--blue-ll));padding:1.75rem 2.5rem;border-bottom:1px solid rgba(37,99,235,.15);}
.paq-card-header::after{display:none;}
.paq-accent-bar{display:none;}
.paq-cat{font-size:.62rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--blue);margin-bottom:.4rem;}
.paq-card h3{font-size:1.5rem;font-weight:700;color:var(--ink);letter-spacing:-.04em;margin-bottom:.4rem;line-height:1.1;}
.paq-card-tagline{font-size:.88rem;color:var(--slate);font-style:italic;line-height:1.6;font-weight:500;}
.paq-card-body{padding:1.75rem 2.5rem;display:flex;flex-direction:column;gap:1.25rem;}
.paq-card-desc{font-size:.85rem;color:var(--slate);line-height:1.9;}
.paq-includes-label{font-size:.62rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--blue2);margin-bottom:.6rem;}
.paq-items{display:flex;flex-direction:column;gap:8px;}
.paq-item{font-size:.82rem;color:var(--ink2);display:flex;align-items:flex-start;gap:10px;line-height:1.6;}
.paq-item-dot{width:18px;height:18px;background:var(--ink);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px;}
.paq-item-dot svg{width:8px;height:8px;stroke:#fff;fill:none;stroke-width:2.5;}
.paq-card-footer{padding:1.25rem 2.5rem 1.75rem;display:flex;flex-direction:column;align-items:center;gap:.75rem;border-top:1px solid rgba(37,99,235,.12);}
.paq-link{font-size:.88rem;font-weight:700;color:#fff;display:inline-flex;align-items:center;gap:8px;transition:all .2s;background:var(--blue);padding:13px 32px;border-radius:10px;border:none;cursor:pointer;font-family:'Inter',sans-serif;box-shadow:0 4px 14px rgba(37,99,235,.3);}
.paq-link:hover{background:var(--blue2);transform:translateY(-1px);}
.paq-card.featured-paq{border-color:var(--blue);border-width:2px;}
.paq-min{display:flex;align-items:center;justify-content:center;gap:6px;font-size:.7rem;font-weight:500;color:var(--slate2);padding:0;}
.paq-min svg{display:none;}
.paq-bottom-banner{background:var(--ink);border-radius:18px;padding:3rem 4vw;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;margin-top:20px;}
.paq-bottom-banner h3{font-size:1.3rem;font-weight:700;color:#fff;letter-spacing:-0.03em;}
.paq-bottom-banner p{font-size:0.85rem;color:var(--slate2);margin-top:6px;line-height:1.7;}
.btn-white{background:#fff;color:var(--blue);padding:13px 28px;font-size:0.82rem;font-weight:700;border:none;border-radius:10px;cursor:pointer;font-family:'Inter',sans-serif;transition:all 0.2s;white-space:nowrap;}
.btn-white:hover{background:var(--blue-ll);}

/* CAT LEG &mdash; nou disseny */
.cat-intro{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:end;margin-bottom:5rem;}
.cat-grid-new{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;}
.cat-card-new{border-radius:16px;overflow:hidden;border:1.5px solid var(--w4);transition:all 0.3s;background:var(--w);display:flex;flex-direction:column;}
.cat-card-new:hover{box-shadow:var(--shadow2);border-color:var(--blue);transform:translateY(-3px);}
.cat-card-visual{height:160px;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;}
.cat-card-visual svg{width:80px;height:80px;position:relative;z-index:1;}
.cat-card-visual-badge{position:absolute;top:14px;right:14px;font-size:0.6rem;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;padding:4px 10px;border-radius:100px;}
.cat-card-content{padding:1.75rem;}
.cat-card-num{font-size:0.6rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;margin-bottom:0.4rem;}
.cat-card-new h4{font-size:1.15rem;font-weight:700;color:var(--ink);margin-bottom:0.5rem;letter-spacing:-0.02em;}
.cat-card-new p{font-size:0.8rem;color:var(--slate);line-height:1.8;margin-bottom:1.1rem;}
.cat-specs{display:flex;gap:8px;flex-wrap:wrap;}
.cat-spec-tag{font-size:0.65rem;font-weight:600;padding:4px 10px;border-radius:100px;background:var(--w3);color:var(--slate);}
.cat-spec-tag.blue{background:var(--blue-l);color:var(--blue2);}
.cat-cta-full{grid-column:1/-1;background:var(--grad2);border-radius:16px;padding:3.5rem 4vw;display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;}
.cat-cta-full h3{font-size:1.75rem;font-weight:700;color:#fff;letter-spacing:-0.03em;}
.cat-cta-full p{font-size:0.9rem;color:rgba(255,255,255,0.75);margin-top:6px;}

/* Cat leg colors per categoria */
.cat-v-blue{background:linear-gradient(135deg,#dbeafe,#eff6ff);}
.cat-v-indigo{background:linear-gradient(135deg,#e0e7ff,#eef2ff);}
.cat-v-cyan{background:linear-gradient(135deg,#cffafe,#ecfeff);}
.cat-v-violet{background:linear-gradient(135deg,#ede9fe,#f5f3ff);}
.cat-v-sky{background:linear-gradient(135deg,#e0f2fe,#f0f9ff);}
.cat-v-teal{background:linear-gradient(135deg,#ccfbf1,#f0fdfa);}
.cat-v-slate{background:linear-gradient(135deg,#f1f5f9,#f8fafc);}
.cat-v-emerald{background:linear-gradient(135deg,#d1fae5,#ecfdf5);}
.cat-v-amber{background:linear-gradient(135deg,#fef3c7,#fffbeb);}
.cat-v-rose{background:linear-gradient(135deg,#ffe4e6,#fff1f2);}
.cat-badge-blue{background:var(--blue-ll);color:var(--blue2);}
.cat-badge-indigo{background:#e0e7ff;color:#4338ca;}
.cat-badge-cyan{background:#cffafe;color:#0e7490;}
.cat-badge-violet{background:#ede9fe;color:#7c3aed;}
.cat-badge-sky{background:#e0f2fe;color:#0369a1;}
.cat-badge-teal{background:#ccfbf1;color:#0f766e;}
.cat-badge-slate{background:#f1f5f9;color:#475569;}
.cat-badge-emerald{background:#d1fae5;color:#065f46;}
.cat-badge-amber{background:#fef3c7;color:#92400e;}
.cat-badge-rose{background:#ffe4e6;color:#be123c;}
.cat-num-blue{color:var(--blue);}
.cat-num-indigo{color:#4338ca;}
.cat-num-cyan{color:#0e7490;}
.cat-num-violet{color:#7c3aed;}
.cat-num-sky{color:#0369a1;}
.cat-num-teal{color:#0f766e;}
.cat-num-slate{color:#475569;}
.cat-num-emerald{color:#065f46;}
.cat-num-amber{color:#92400e;}
.cat-num-rose{color:#be123c;}

/* SECTORES */
.sectores-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
.sector-card{background:var(--w);border:1px solid var(--w4);border-radius:12px;padding:1.75rem;transition:all 0.2s;display:flex;align-items:flex-start;gap:1rem;}
.sector-card:hover{border-color:var(--blue);box-shadow:var(--shadow);}
.sector-icon{width:40px;height:40px;background:var(--blue-l);border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.sector-icon svg{width:18px;height:18px;stroke:var(--blue);fill:none;stroke-width:1.5;}
.sector-card h4{font-size:0.88rem;font-weight:600;color:var(--ink);margin-bottom:0.35rem;}
.sector-card p{font-size:0.76rem;color:var(--slate);line-height:1.7;}

/* NOSOTROS */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:start;}
.about-text p{font-size:0.9rem;color:var(--slate);line-height:1.95;margin-bottom:1.4rem;}
.about-quote{background:var(--blue-l);border-left:3px solid var(--blue);border-radius:0 12px 12px 0;padding:1.5rem 2rem;margin-top:2rem;font-family:'Playfair Display',serif;font-style:italic;font-size:1.05rem;color:var(--ink2);line-height:1.75;}
.team-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.team-card{background:var(--w);border:1px solid var(--w4);border-radius:14px;overflow:hidden;transition:all 0.25s;}
.team-card:hover{box-shadow:var(--shadow2);border-color:var(--blue);}
.team-photo{width:100%;aspect-ratio:3/4;background:var(--w2);display:flex;align-items:center;justify-content:center;font-family:'Playfair Display',serif;font-size:5rem;color:var(--slate3);overflow:hidden;}
.team-photo img{width:100%;height:100%;object-fit:cover;object-position:top;}
.team-info{padding:1.25rem 1.5rem;border-top:3px solid var(--blue);}
.team-name{font-size:0.95rem;font-weight:600;color:var(--ink);margin-bottom:2px;}
.team-role{font-size:0.65rem;font-weight:700;color:var(--blue);text-transform:uppercase;letter-spacing:0.06em;}

/* ECO */
.eco-grid{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:start;}
.eco-certs{display:flex;flex-direction:column;gap:8px;}
.eco-cert{display:flex;align-items:center;gap:1rem;background:var(--w);border:1px solid var(--w4);border-radius:10px;padding:1rem 1.25rem;transition:border-color 0.2s;}
.eco-cert:hover{border-color:var(--blue);}
.eco-cert-badge{font-size:0.68rem;font-weight:700;color:var(--blue);background:var(--blue-l);padding:4px 10px;border-radius:6px;min-width:80px;text-align:center;flex-shrink:0;}
.eco-cert-name{font-size:0.78rem;color:var(--slate);}
.eco-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:3rem;}
.eco-stat{background:var(--w);border:1.5px solid var(--blue);border-radius:14px;padding:2rem;text-align:center;}
.eco-stat-n{font-size:2.5rem;font-weight:700;color:var(--blue);letter-spacing:-0.04em;line-height:1;margin-bottom:6px;}
.eco-stat-l{font-size:0.68rem;font-weight:500;color:var(--slate);text-transform:uppercase;letter-spacing:0.06em;}

/* REVIEWS */
.reviews-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:3rem;flex-wrap:wrap;gap:1.5rem;}
.rating-box{text-align:right;}
.rating-stars{color:#f59e0b;font-size:1rem;letter-spacing:2px;margin-bottom:4px;}
.rating-n{font-size:2.5rem;font-weight:700;color:var(--ink);letter-spacing:-0.04em;line-height:1;}
.rating-sub{font-size:0.65rem;color:var(--slate2);font-weight:500;text-transform:uppercase;letter-spacing:0.06em;}
.rev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.rev-card{background:var(--w);border:1px solid var(--w4);border-radius:14px;display:flex;flex-direction:column;transition:all 0.25s;}
.rev-card:hover{box-shadow:var(--shadow2);border-color:var(--blue);}
.rev-top{padding:2rem;flex:1;}
.rev-stars{color:#f59e0b;font-size:0.8rem;letter-spacing:2px;margin-bottom:1rem;}
.rev-text{font-size:0.85rem;color:var(--slate);line-height:1.9;font-style:italic;}
.rev-bottom{padding:1.25rem 2rem;display:flex;align-items:center;gap:0.75rem;border-top:1px solid var(--w4);background:var(--w2);border-radius:0 0 14px 14px;}
.rev-av{width:38px;height:38px;border-radius:50%;background:var(--blue);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:0.9rem;color:#fff;flex-shrink:0;}
.rev-name{font-size:0.82rem;font-weight:600;color:var(--ink);}
.rev-co{font-size:0.68rem;color:var(--slate2);}

/* FAQ */
.faq-wrap{max-width:760px;margin:0 auto;}
.faq-group-label{font-size:0.65rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:var(--blue);padding:1.5rem 0 0.5rem;border-bottom:1.5px solid var(--blue-ll);margin-bottom:0;}
.faq-item{border-bottom:1px solid var(--w4);}
.faq-q{width:100%;background:none;border:none;padding:1.25rem 0;display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-family:'Inter',sans-serif;font-size:0.88rem;font-weight:500;color:var(--ink);text-align:left;gap:1rem;transition:color 0.2s;}
.faq-q:hover{color:var(--blue);}
.faq-arr{width:22px;height:22px;background:var(--w3);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all 0.3s;}
.faq-arr svg{width:10px;height:10px;stroke:var(--slate);fill:none;stroke-width:2;transition:transform 0.3s;}
.faq-a{max-height:0;overflow:hidden;transition:max-height 0.4s ease;}
.faq-a p{font-size:0.82rem;color:var(--slate);line-height:1.9;padding-bottom:1.25rem;}
.faq-item.open .faq-arr{background:var(--blue);}
.faq-item.open .faq-arr svg{stroke:#fff;transform:rotate(45deg);}

/* CONTACTE */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:start;}
.contact-info p{font-size:0.88rem;color:var(--slate);line-height:1.9;margin-bottom:2.5rem;}
.cp-cards{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px;}
.cp-card{background:var(--w);border:1px solid var(--w4);border-radius:12px;padding:1.5rem;transition:border-color 0.2s;}
.cp-card:hover{border-color:var(--blue);}
.cp-name{font-size:0.88rem;font-weight:600;color:var(--ink);margin-bottom:2px;}
.cp-role{font-size:0.6rem;font-weight:700;color:var(--blue);text-transform:uppercase;letter-spacing:0.08em;margin-bottom:1rem;}
.cp-phone{font-size:1.25rem;font-weight:700;color:var(--ink);letter-spacing:-0.03em;margin-bottom:4px;}
.cp-email{font-size:0.7rem;color:var(--slate2);}
.email-row{background:var(--w2);border:1px solid var(--w4);border-radius:10px;padding:1rem 1.25rem;font-size:0.82rem;color:var(--slate);display:flex;align-items:center;gap:10px;}
.email-dot{width:8px;height:8px;background:var(--blue);border-radius:50%;flex-shrink:0;}
.form-wrap{background:var(--w);border:1px solid var(--w4);border-radius:16px;padding:2.5rem;}
.fg{display:flex;flex-direction:column;gap:5px;margin-bottom:1rem;}
.fg label{font-size:0.65rem;font-weight:600;color:var(--ink2);letter-spacing:0.04em;text-transform:uppercase;}
.fg input,.fg textarea,.fg select{background:var(--w2);border:1.5px solid var(--w4);color:var(--ink);padding:11px 14px;font-family:'Inter',sans-serif;font-size:0.85rem;outline:none;transition:border-color 0.2s;border-radius:8px;width:100%;}
.fg input:focus,.fg textarea:focus,.fg select:focus{border-color:var(--blue);background:var(--w);}
.fg input::placeholder,.fg textarea::placeholder{color:var(--slate2);}
.fg textarea{resize:vertical;min-height:100px;}
.fg select option{background:var(--w);}
.form-submit{width:100%;background:var(--blue);color:#fff;padding:14px;font-family:'Inter',sans-serif;font-size:0.85rem;font-weight:700;border:none;border-radius:10px;cursor:pointer;transition:all 0.2s;display:flex;align-items:center;justify-content:center;gap:8px;}
.form-submit:hover{background:var(--blue2);transform:translateY(-1px);box-shadow:0 8px 24px rgba(37,99,235,0.3);}

/* MODALS LEGALS */
.modal-overlay{position:fixed;inset:0;background:rgba(10,13,26,0.6);backdrop-filter:blur(8px);z-index:900;display:flex;align-items:center;justify-content:center;padding:2rem;opacity:0;visibility:hidden;transition:all 0.3s;}
.modal-overlay.on{opacity:1;visibility:visible;}
.modal{background:var(--w);border-radius:16px;max-width:740px;width:100%;max-height:84vh;overflow-y:auto;box-shadow:0 24px 80px rgba(10,13,26,0.2);}
.modal-hd{padding:1.75rem 2rem 1.5rem;border-bottom:1px solid var(--w4);position:sticky;top:0;background:var(--w);border-radius:16px 16px 0 0;display:flex;justify-content:space-between;align-items:center;}
.modal-hd h2{font-size:1.25rem;font-weight:700;color:var(--ink);letter-spacing:-0.02em;}
.modal-close{background:var(--w3);border:none;color:var(--slate);width:30px;height:30px;border-radius:50%;cursor:pointer;font-size:1.1rem;display:flex;align-items:center;justify-content:center;}
.modal-close:hover{background:var(--w4);}
.modal-body{padding:1.75rem 2rem;}
.modal-body h3{font-size:0.82rem;font-weight:700;color:var(--ink);text-transform:uppercase;letter-spacing:0.06em;margin:1.75rem 0 0.65rem;padding-bottom:0.4rem;border-bottom:1px solid var(--w4);}
.modal-body h3:first-child{margin-top:0;}
.modal-body p{font-size:0.84rem;color:var(--slate);line-height:1.9;margin-bottom:0.75rem;}
.modal-body ul{padding-left:1.4rem;margin-bottom:1rem;}
.modal-body ul li{font-size:0.84rem;color:var(--slate);line-height:1.85;margin-bottom:0.4rem;}
.modal-body .step-block{background:var(--w2);border-left:3px solid var(--blue);padding:0.9rem 1.25rem;margin-bottom:0.75rem;border-radius:0 8px 8px 0;}
.modal-body .step-block strong{font-size:0.72rem;color:var(--blue);letter-spacing:0.08em;text-transform:uppercase;display:block;margin-bottom:0.3rem;}
.modal-body .step-block p{margin-bottom:0;font-size:0.82rem;}

/* FOOTER */
footer{background:var(--ink);padding:3rem 5vw;}
.footer-top{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1.5rem;margin-bottom:2rem;}
.footer-logo{display:flex;align-items:center;gap:10px;}
.footer-logo-mark{width:28px;height:28px;background:var(--grad2);border-radius:7px;display:flex;align-items:center;justify-content:center;}
.footer-logo-mark svg{width:14px;height:14px;fill:none;stroke:#fff;stroke-width:2;}
.footer-logo-text{font-size:0.95rem;font-weight:700;color:#fff;letter-spacing:-0.02em;}
.footer-logo-text span{color:var(--blue3);}
.footer-links{display:flex;gap:2rem;flex-wrap:wrap;}
.footer-links a{font-size:0.68rem;color:var(--slate2);font-weight:500;cursor:pointer;text-decoration:none;transition:color 0.2s;}
.footer-links a:hover{color:#fff;}
.footer-bottom{display:flex;justify-content:space-between;flex-wrap:wrap;gap:1rem;padding-top:2rem;border-top:1px solid rgba(255,255,255,0.06);}
.footer-copy{font-size:0.65rem;color:rgba(255,255,255,0.2);}

/* WA */
.wa-btn{position:fixed;bottom:2rem;right:2rem;z-index:400;width:54px;height:54px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,0.35);transition:transform 0.2s;}
.wa-btn:hover{transform:scale(1.08);}

/* COOKIE */
.cookie{position:fixed;bottom:0;left:0;right:0;z-index:600;background:var(--ink2);padding:1rem 5vw;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;transform:translateY(100%);transition:transform 0.4s;}
.cookie.on{transform:translateY(0);}
.cookie p{font-size:0.78rem;color:var(--slate2);max-width:540px;line-height:1.6;}
.cookie p a{color:var(--blue3);cursor:pointer;}
.cookie-btns{display:flex;gap:8px;flex-shrink:0;}
.c-ok{background:var(--blue);color:#fff;padding:8px 18px;font-size:0.72rem;font-weight:600;border:none;border-radius:8px;cursor:pointer;font-family:'Inter',sans-serif;}
.c-no{background:transparent;border:1px solid rgba(255,255,255,0.15);color:var(--slate2);padding:8px 18px;font-size:0.72rem;border-radius:8px;cursor:pointer;font-family:'Inter',sans-serif;transition:all 0.2s;}
.c-no:hover{border-color:rgba(255,255,255,0.3);color:#fff;}

/* REVEAL */
.r{opacity:0;transform:translateY(14px);transition:opacity 0.6s ease,transform 0.6s ease;}
.r.on{opacity:1;transform:translateY(0);}

/* RESPONSIVE */
@media(max-width:1024px){
  .hero-inner,.section-intro,.about-grid,.eco-grid,.contact-grid,.paq-hero,.cat-intro{grid-template-columns:1fr;gap:3rem;}
  .hero-right{display:none;}
  .pillars,.vs-grid,.paq-grid-full{grid-template-columns:1fr 1fr;}
  .steps-row{grid-template-columns:1fr 1fr 1fr;}.steps-row::before{display:none;}
  .cat-grid-new{grid-template-columns:1fr 1fr;}
  .sectores-grid{grid-template-columns:1fr 1fr;}
  .rev-grid{grid-template-columns:1fr 1fr;}
  .nav-links{display:none;}.hamburger{display:flex;}
  .rating-box{text-align:left;}
}
@media(max-width:640px){
  .pillars,.vs-grid,.paq-grid-full,.cat-grid-new,.sectores-grid,.team-row,.cp-cards,.rev-grid,.eco-stats{grid-template-columns:1fr;}
  .steps-row{grid-template-columns:1fr 1fr;}
  .hero-h1{font-size:2.4rem;}
  .cat-cta-full,.paq-bottom-banner{flex-direction:column;align-items:flex-start;}
}
/* DROPDOWN PRODUCTOS */
.nav-dropdown{position:relative;}
.nav-dropdown-menu{
  position:absolute;
  top:64px;
  left:50%;
  transform:translateX(-50%);
  background:var(--w);
  border:1px solid var(--w4);
  border-radius:12px;
  box-shadow:0 8px 32px rgba(10,13,26,.12);
  padding:.5rem;
  min-width:240px;
  opacity:0;
  visibility:hidden;
  transition:all .25s;
  z-index:600;
}
.nav-dropdown:hover .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
}
.nav-dropdown-item{
  display:flex;
  align-items:center;
  gap:.75rem;
  padding:.65rem 1rem;
  border-radius:8px;
  cursor:pointer;
  transition:background .2s;
  font-size:.78rem;
  font-weight:500;
  color:var(--ink2);
}
.nav-dropdown-item:hover{
  background:var(--bl);
  color:var(--blue);
}
.nav-dropdown-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--blue);
  flex-shrink:0;
}
.nav-dropdown>a::after{content:'';}
.nav-dropdown:hover>a::after{transform:rotate(180deg);}
.paq-min{display:flex;align-items:center;justify-content:center;gap:8px;background:var(--blue-ll);border:1px solid var(--border);border-radius:8px;padding:.65rem 1rem;margin:0 2rem 1.25rem;font-size:.72rem;font-weight:600;color:var(--blue2);text-align:center;}
.paq-min svg{width:14px;height:14px;stroke:var(--blue);fill:none;stroke-width:2;flex-shrink:0;}


/* ============================================================
   PEAKWAY STYLE - Header + Hero
   Basado en el dise o de peakway.eu (misma familia corporativa)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --pw-blue: #1E88E5;
  --pw-blue-2: #1976D2;
  --pw-blue-dark: #0D47A1;
  --pw-navy: #0A2540;
  --pw-white: #ffffff;
  --pw-overlay: rgba(25, 118, 210, 0.75);
  --pw-overlay-dark: rgba(10, 37, 64, 0.65);
  --pw-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --------- HEADER/NAV PEAKWAY STYLE --------- */
#nav {
  background: linear-gradient(90deg, var(--pw-blue-2) 0%, var(--pw-blue) 100%) !important;
  border-bottom: none !important;
  box-shadow: 0 2px 12px rgba(25,118,210,0.15) !important;
  padding: 0 2rem !important;
  height: 100px !important;
  display: flex !important;
  align-items: center !important;
  gap: 2rem !important;
}

#nav .nav-logo {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  height: 100% !important;
  padding: 10px 0 !important;
}

#nav .nav-logo img {
  height: 78px !important;
  width: auto !important;
  /* Convertir el logo oscuro a blanco usando filter */
  filter: brightness(0) invert(1) !important;
  transition: opacity 0.25s !important;
}

#nav .nav-logo:hover img {
  opacity: 0.85 !important;
}

#nav .nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 2rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 1 !important;
  justify-content: center !important;
}

#nav .nav-links > li > a {
  font-family: var(--pw-sans) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--pw-white) !important;
  padding: 0.6rem 0 !important;
  cursor: pointer !important;
  transition: opacity 0.25s !important;
  position: relative !important;
  background: transparent !important;
  border: none !important;
}

#nav .nav-links > li > a:hover,
#nav .nav-links > li > a.active {
  opacity: 0.75 !important;
  color: var(--pw-white) !important;
}

#nav .nav-links > li > a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: var(--pw-white) !important;
  transform: scaleX(0) !important;
  transition: transform 0.3s !important;
}

#nav .nav-links > li > a:hover::after {
  transform: scaleX(1) !important;
}

/* Dropdown chevron indicator - ESTILO PEAKWAY: inline al lado del texto */
#nav .nav-dropdown > a::before {
  content: '' !important;
}

#nav .nav-dropdown > a {
  padding-right: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
}


/* Eliminar el underline en los links con dropdown (Peakway no lo tiene) */
#nav .nav-links > li.nav-dropdown > a::before {
  content: none !important;
}

/* Dropdown menu ESTILO PEAKWAY: fondo blanco, ancho generoso, items azules grandes */
#nav .nav-dropdown-menu {
  background: var(--pw-white) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: 0 10px 40px rgba(10,37,64,0.12) !important;
  padding: 1.2rem 0 !important;
  min-width: 440px !important;
  top: 100% !important;
  margin-top: 0 !important;
}

#nav .nav-dropdown-item {
  color: var(--pw-blue) !important;
  padding: 0.9rem 2.5rem !important;
  font-family: var(--pw-sans) !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  border-radius: 0 !important;
  transition: background 0.2s, color 0.2s !important;
  display: block !important;
  gap: 0 !important;
  line-height: 1.4 !important;
}

#nav .nav-dropdown-item:hover {
  background: rgba(30,136,229,0.06) !important;
  color: var(--pw-blue-dark) !important;
}

/* Ocultar los dots azules (Peakway no los usa) */
#nav .nav-dropdown-dot {
  display: none !important;
}

/* Right side: phone + email buttons (peakway style) */
#nav .nav-right {
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  flex-shrink: 0 !important;
}

#nav .nav-phone {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  background: var(--pw-navy) !important;
  color: var(--pw-white) !important;
  padding: 0.75rem 1.2rem !important;
  border-radius: 6px !important;
  font-family: var(--pw-sans) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background 0.25s, transform 0.25s !important;
}

#nav .nav-phone:hover {
  background: #15324f !important;
  transform: translateY(-1px) !important;
}

#nav .nav-phone svg {
  flex-shrink: 0 !important;
}

#nav .nav-email {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  background: transparent !important;
  color: var(--pw-white) !important;
  padding: 0.7rem 1.2rem !important;
  border: 1.5px solid var(--pw-white) !important;
  border-radius: 6px !important;
  font-family: var(--pw-sans) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background 0.25s, color 0.25s !important;
}

#nav .nav-email:hover {
  background: var(--pw-white) !important;
  color: var(--pw-blue) !important;
}

#nav .nav-email svg, #nav .nav-phone svg {
  width: 18px !important;
  height: 18px !important;
}

/* Ocultar el bot n CTA antiguo si sigue existiendo */
#nav .nav-cta {
  display: none !important;
}

/* Hamburger (mobile) */
#nav .hamburger span {
  background: var(--pw-white) !important;
}

/* Language switcher adaptado */
.lang-switch,
#lang-switch,
[class*="lang"] .active {
  /* Mantener estilo existente pero asegurar visible */
}

/* ============================================================
   HERO PEAKWAY STYLE - Carrusel de 3 slides
   ============================================================ */
.pw-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  min-height: 820px;
  max-height: 1000px;
  overflow: hidden;
  background: var(--pw-blue-dark);
}

.pw-hero-slides {
  position: absolute;
  inset: 0;
}

.pw-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
  background-size: cover;
  background-position: center;
}

.pw-hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.pw-hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25,118,210,0.85) 0%, rgba(13,71,161,0.75) 50%, rgba(10,37,64,0.65) 100%);
  z-index: 1;
}

/* Imagen slide 1 - Equipo colaborando */
.pw-hero-slide-1 {
  background-image: url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1920&q=80");
}

/* Imagen slide 2 - Workspace creativo / productos */
.pw-hero-slide-2 {
  background-image: url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1920&q=80");
}

/* Imagen slide 3 - Branding / identidad */
.pw-hero-slide-3 {
  background-image: url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1920&q=80");
}

.pw-hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5rem 7rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pw-hero-track {
  position: relative;
  width: 100%;
}

.pw-hero-text {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1) 0.3s, transform 0.8s cubic-bezier(.4,0,.2,1) 0.3s, visibility 0s linear 1.1s;
  pointer-events: none;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
}

.pw-hero-text.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  display: flex;
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1) 0.3s, transform 0.8s cubic-bezier(.4,0,.2,1) 0.3s, visibility 0s linear 0s;
}

.pw-hero-h1 {
  font-family: var(--pw-sans);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--pw-white);
  margin: 0 0 2rem;
  max-width: 1000px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.pw-hero-sub {
  font-family: var(--pw-sans);
  font-weight: 500;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  color: var(--pw-white);
  margin: 0 0 3.5rem;
  max-width: 780px;
  opacity: 0.95;
}

.pw-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--pw-blue);
  color: var(--pw-white);
  padding: 1rem 1.8rem;
  border: none;
  border-radius: 4px;
  font-family: var(--pw-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(30,136,229,0.4);
}

.pw-hero-cta:hover {
  background: var(--pw-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,71,161,0.5);
}

.pw-hero-cta-arrow {
  display: inline-flex;
  font-size: 1.1em;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.pw-hero-cta:hover .pw-hero-cta-arrow {
  transform: translateX(5px);
}

/* Flechas laterales de navegaci n del carrusel */
.pw-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: transparent;
  color: var(--pw-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  z-index: 15;
}

.pw-hero-arrow:hover {
  background: var(--pw-white);
  color: var(--pw-blue);
  border-color: var(--pw-white);
}

.pw-hero-arrow svg {
  width: 28px;
  height: 28px;
}

.pw-hero-arrow-left { left: 2rem; }
.pw-hero-arrow-right { right: 2rem; }

/* Indicadores de slide (dots) */
.pw-hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 15;
}

.pw-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.pw-hero-dot.active {
  background: var(--pw-white);
  width: 36px;
  border-radius: 5px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  #nav {
    padding: 0 1.25rem !important;
    gap: 1rem !important;
  }
  #nav .nav-links {
    display: none !important;
  }
  #nav .nav-email span,
  #nav .nav-phone span {
    display: none !important;
  }
  #nav .nav-phone, #nav .nav-email {
    padding: 0.6rem 0.8rem !important;
  }
  #nav .hamburger {
    display: flex !important;
  }
  .pw-hero-content {
    padding: 0 2rem;
  }
  .pw-hero-arrow {
    width: 48px;
    height: 48px;
  }
  .pw-hero-arrow-left { left: 1rem; }
  .pw-hero-arrow-right { right: 1rem; }
}

@media (max-width: 640px) {
  #nav {
    padding: 0 1rem !important;
    height: 70px !important;
  }
  #nav .nav-logo img {
    height: 38px !important;
  }
  #nav .nav-phone {
    display: none !important;
  }
  #nav .nav-email {
    padding: 0.55rem 0.7rem !important;
  }
  .pw-hero {
    height: auto;
    min-height: 560px;
  }
  .pw-hero-content {
    padding: 4rem 1.5rem;
  }
  .pw-hero-arrow {
    width: 40px;
    height: 40px;
  }
  .pw-hero-arrow svg {
    width: 22px;
    height: 22px;
  }
}

/* END PEAKWAY STYLE */



/* ============================================================
   PEAKWAY STYLE - Secciones Home + Footer
   ============================================================ */

/* ---------- SECCI N SERVICIOS (C mo trabajamos) ---------- */
.pw-sec {
  padding: 5.5rem 2rem;
  background: #ffffff;
  position: relative;
}

.pw-sec-intro {
  max-width: 1300px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pw-sec-intro-text {
  padding-right: 2rem;
}

.pw-sec-eyebrow {
  display: block;
  font-family: var(--pw-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--pw-navy);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pw-sec-title {
  font-family: var(--pw-sans);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--pw-blue);
  margin: 0 0 1.8rem;
  letter-spacing: -0.01em;
}

.pw-sec-desc {
  font-family: var(--pw-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  text-align: justify;
}

.pw-sec-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  background-image: url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

/* Grid de 3 tarjetas */
.pw-cards-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pw-card {
  background: #ffffff;
  padding: 2.5rem 2rem 2.2rem;
  border: none;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.pw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(25,118,210,0.12);
}

.pw-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  color: var(--pw-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pw-card-icon svg {
  width: 100%;
  height: 100%;
}

.pw-card-title {
  font-family: var(--pw-sans);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--pw-navy);
  margin: 0 0 1rem;
}

.pw-card-text {
  font-family: var(--pw-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 1.8rem;
  text-align: justify;
  flex: 1;
}

.pw-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--pw-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--pw-blue);
  text-decoration: none;
  cursor: pointer;
  transition: gap 0.25s;
  align-self: flex-start;
}

.pw-card-more:hover {
  gap: 0.8rem;
}

.pw-card-more svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---------- SECCI N SOLUCIONES (Nuestros productos estilo Peakway) ---------- */
.pw-sec-alt {
  background: #f7f9fc;
}

.pw-sec-head-center {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.pw-sec-head-center .pw-sec-title {
  color: var(--pw-blue);
}

.pw-sec-head-center .pw-sec-desc {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

/* Filas de soluciones (imagen + texto) */
.pw-rows {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* L nea vertical conectora */
.pw-rows::before {
  content: '';
  position: absolute;
  left: calc(50% + 30px);
  top: 48px;
  bottom: 48px;
  width: 1px;
  background: #d5dde8;
}

.pw-row {
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  gap: 0;
  align-items: stretch;
  padding: 2.5rem 0;
  position: relative;
}

.pw-row-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

.pw-row-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10px;
  z-index: 2;
}

.pw-row-arrow {
  width: 60px;
  height: 60px;
  background: var(--pw-navy);
  color: var(--pw-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.pw-row:hover .pw-row-arrow {
  transform: scale(1.08);
}

.pw-row-arrow svg {
  width: 24px;
  height: 24px;
}

.pw-row-text {
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pw-row-title {
  font-family: var(--pw-sans);
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--pw-blue);
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
}

.pw-row-desc {
  font-family: var(--pw-sans);
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 1.5rem;
  text-align: justify;
}

/* ---------- SECCI N TESTIMONIOS (OPINIONES estilo Peakway) ---------- */
.pw-reviews {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
  background: var(--pw-navy);
  color: var(--pw-white);
  text-align: center;
}

.pw-reviews-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

.pw-reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,71,161,0.85) 0%, rgba(10,37,64,0.75) 100%);
  z-index: 1;
}

.pw-reviews-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.pw-reviews-eyebrow {
  display: block;
  font-family: var(--pw-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--pw-white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.pw-reviews-title {
  font-family: var(--pw-sans);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--pw-white);
  margin: 0 0 3.5rem;
}

.pw-reviews-stage {
  position: relative;
  min-height: 340px;
}

.pw-review-card {
  display: none;
  padding: 2rem 4rem;
}

.pw-review-card.active {
  display: block;
  animation: pwRevIn 0.6s cubic-bezier(.4,0,.2,1);
}

@keyframes pwRevIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.pw-review-text {
  font-family: var(--pw-sans);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.6;
  color: var(--pw-white);
  margin: 0 0 2.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.pw-review-text::before {
  content: "\201C";
  display: inline;
  margin-right: 0.2em;
}

.pw-review-text::after {
  content: "\201D";
  display: inline;
  margin-left: 0.2em;
}

.pw-review-who {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.pw-review-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pw-blue);
  color: var(--pw-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pw-sans);
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.3);
}

.pw-review-av.has-img {
  background: none !important;
  font-size: 0;
  padding: 0;
  overflow: hidden;
}
.pw-review-av.has-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 50%;
}

.pw-review-info {
  text-align: left;
}

.pw-review-name {
  font-family: var(--pw-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--pw-white);
  margin-bottom: 2px;
}

.pw-review-role {
  font-family: var(--pw-sans);
  font-size: 0.88rem;
  color: var(--pw-white);
  opacity: 0.8;
}

/* Flechas carrusel testimonios */
.pw-review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--pw-white);
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 3;
}

.pw-review-arrow:hover {
  background: var(--pw-white);
  color: var(--pw-blue);
  border-color: var(--pw-white);
}

.pw-review-arrow svg {
  width: 22px;
  height: 22px;
}

.pw-review-arrow-l { left: 0; }
.pw-review-arrow-r { right: 0; }

.pw-review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2.5rem;
}

.pw-review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.pw-review-dot.on {
  background: var(--pw-white);
  width: 36px;
  border-radius: 5px;
}

/* ============================================================
   FOOTER PEAKWAY STYLE (GLOBAL)
   ============================================================ */
.pw-footer {
  background: linear-gradient(90deg, var(--pw-blue-2) 0%, var(--pw-blue) 100%);
  color: var(--pw-white);
  padding: 4.5rem 2rem 2rem;
  display: block !important;
}

.pw-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.pw-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.pw-footer-brand {
  display: flex;
  flex-direction: column;
}

.pw-footer-logo {
  height: 52px;
  margin-bottom: 1.5rem;
}

.pw-footer-logo img {
  height: 100%;
  width: auto;
  filter: brightness(0) invert(1);
}

.pw-footer-tagline {
  font-family: var(--pw-sans);
  font-size: 0.95rem;
  color: var(--pw-white);
  opacity: 0.95;
  line-height: 1.5;
  margin: 0 0 2rem;
  max-width: 280px;
}

.pw-footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: auto;
}

.pw-footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pw-white);
  border-radius: 50%;
  transition: opacity 0.25s;
  text-decoration: none;
  opacity: 0.9;
}

.pw-footer-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.pw-footer-social svg {
  width: 20px;
  height: 20px;
}

.pw-footer-col-title {
  font-family: var(--pw-sans);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--pw-white);
  margin: 0 0 1.5rem;
}

.pw-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pw-footer-list a {
  font-family: var(--pw-sans);
  font-size: 0.95rem;
  color: var(--pw-white);
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: pointer;
  opacity: 0.95;
}

.pw-footer-list a:hover {
  opacity: 0.7;
}

.pw-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--pw-white);
  font-family: var(--pw-sans);
  font-size: 0.92rem;
  text-decoration: none;
}

.pw-footer-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pw-footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.pw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--pw-sans);
  font-size: 0.85rem;
  color: var(--pw-white);
  opacity: 0.9;
}

.pw-footer-legal {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.pw-footer-legal a {
  color: var(--pw-white);
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: pointer;
}

.pw-footer-legal a:hover {
  opacity: 0.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .pw-sec-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pw-sec-intro-text { padding-right: 0; }
  .pw-sec-image { aspect-ratio: 16 / 9; }
  .pw-cards-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pw-rows::before { display: none; }
  .pw-row { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
  .pw-row-center { justify-content: flex-start; padding-top: 0; }
  .pw-row-text { padding-left: 0; }
  .pw-review-card { padding: 1rem 3rem; }
  .pw-review-arrow { width: 44px; height: 44px; }
  .pw-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .pw-sec { padding: 4rem 1.25rem; }
  .pw-card { padding: 2rem 1.5rem; }
  .pw-reviews { padding: 4rem 1rem; }
  .pw-review-card { padding: 1rem 2.2rem; }
  .pw-review-arrow {
    width: 36px;
    height: 36px;
  }
  .pw-review-arrow svg { width: 16px; height: 16px; }
  .pw-footer { padding: 3rem 1.25rem 1.5rem; }
  .pw-footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .pw-footer-bottom { flex-direction: column; align-items: flex-start; }
}



/* ============================================================
   PEAKWAY STYLE - P GINAS INTERNAS (Servicios, Nosotros, etc.)
   ============================================================ */

/* Hero interno (m s peque o que el del Home, con breadcrumb) */
.pw-page-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 4rem 2rem 4.5rem;
  background: var(--pw-blue-dark);
}

.pw-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.pw-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25,118,210,0.88) 0%, rgba(13,71,161,0.78) 50%, rgba(10,37,64,0.72) 100%);
  z-index: 1;
}

.pw-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.pw-page-hero-h1 {
  font-family: var(--pw-sans);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--pw-white);
  margin: 0 0 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.pw-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--pw-sans);
  font-size: 0.95rem;
  color: var(--pw-white);
  opacity: 0.95;
  flex-wrap: wrap;
}

.pw-breadcrumb a {
  color: var(--pw-white);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.pw-breadcrumb a:hover {
  opacity: 0.75;
}

.pw-breadcrumb-sep {
  opacity: 0.7;
  display: inline-flex;
  font-size: 0.9em;
}

.pw-breadcrumb-current {
  font-weight: 500;
}

/* Bloque intro centrado (como Peakway "Firmas digitales para cualquier escenario") */
.pw-sec-intro-centered {
  max-width: 1300px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pw-sec-intro-text-centered {
  text-align: left;
}

.pw-sec-intro-centered .pw-sec-title {
  color: var(--pw-blue);
  text-align: left;
  margin-bottom: 1.2rem;
}

.pw-sec-subtitle {
  font-family: var(--pw-sans);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--pw-navy);
  margin: 0 0 1.5rem;
  line-height: 1.4;
}

/* Tarjetas con grid de 4 columnas (para las 4 fases) */
.pw-cards-grid-4 {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pw-cards-grid-4 .pw-card {
  padding: 2rem 1.5rem 1.8rem;
}

.pw-cards-grid-4 .pw-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}

.pw-cards-grid-4 .pw-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.pw-cards-grid-4 .pw-card-text {
  font-size: 0.9rem;
}

/* Secci n con imagen izquierda + filas de valores a la derecha (como Peakway Seguridad/Robustez/Evidencias) */
.pw-split {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.pw-split-image {
  position: sticky;
  top: 120px;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

.pw-split-rows {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pw-split-rows::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 48px;
  bottom: 48px;
  width: 1px;
  background: #d5dde8;
}

.pw-split-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.2rem 0 2rem;
  position: relative;
}

.pw-split-row-arrow {
  width: 60px;
  height: 60px;
  background: var(--pw-navy);
  color: var(--pw-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.pw-split-row:hover .pw-split-row-arrow {
  transform: scale(1.08);
}

.pw-split-row-arrow svg {
  width: 24px;
  height: 24px;
}

.pw-split-row-title {
  font-family: var(--pw-sans);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--pw-blue);
  margin: 0 0 0.8rem;
  letter-spacing: -0.005em;
  padding-top: 0.3rem;
}

.pw-split-row-desc {
  font-family: var(--pw-sans);
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  text-align: justify;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .pw-page-hero { min-height: 280px; padding: 2rem 1.25rem; }
  .pw-sec-intro-centered { grid-template-columns: 1fr; gap: 2.5rem; }
  .pw-cards-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .pw-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .pw-split-image { position: relative; top: 0; aspect-ratio: 16 / 10; max-height: none; }
}

@media (max-width: 640px) {
  .pw-cards-grid-4 { grid-template-columns: 1fr; }
  .pw-split-rows::before { display: none; }
  .pw-split-row { grid-template-columns: 48px 1fr; gap: 1rem; }
  .pw-split-row-arrow { width: 48px; height: 48px; }
  .pw-split-row-title { font-size: 1.3rem; }
}



/* ============================================================
   PEAKWAY STYLE - P GINA PRODUCTOS (Cat logo)
   ============================================================ */

/* Grid de categor as: 2 por fila, limpio y sobrio */
.pw-cat-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.pw-cat-item {
  background: #ffffff;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}

.pw-cat-item:hover {
  border-color: var(--pw-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(25,118,210,0.08);
}

.pw-cat-item-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f4fa;
}

.pw-cat-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

.pw-cat-item:hover .pw-cat-item-visual img {
  transform: scale(1.04);
}

.pw-cat-item-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 37, 64, 0.92);
  color: var(--pw-white);
  padding: 0.4rem 0.9rem;
  border-radius: 3px;
  font-family: var(--pw-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}

.pw-cat-item-content {
  padding: 2rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pw-cat-item-num {
  font-family: var(--pw-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--pw-navy);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  opacity: 0.75;
}

.pw-cat-item-title {
  font-family: var(--pw-sans);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--pw-blue);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.pw-cat-item-desc {
  font-family: var(--pw-sans);
  font-size: 0.94rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 1.5rem;
  text-align: justify;
  flex: 1;
}

.pw-cat-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.pw-cat-item-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  font-family: var(--pw-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(25, 118, 210, 0.08);
  color: var(--pw-blue);
}

.pw-cat-item-tag-plain {
  background: rgba(10, 37, 64, 0.06);
  color: var(--pw-navy);
}

/* Responsive */
@media (max-width: 900px) {
  .pw-cat-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pw-cat-item-content { padding: 1.5rem 1.5rem 1.8rem; }
  .pw-cat-item-title { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .pw-cat-item-visual { aspect-ratio: 3 / 2; }
  .pw-cat-item-tags { gap: 0.4rem; }
  .pw-cat-item-tag { font-size: 0.72rem; padding: 0.3rem 0.6rem; }
}



/* ============================================================
   PEAKWAY STYLE - P GINA SOLUCIONES
   ============================================================ */

/* Grid de soluciones: 2 columnas, espaciado generoso */
.pw-sol-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.pw-sol-card {
  background: #ffffff;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}

.pw-sol-card:hover {
  border-color: var(--pw-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(25,118,210,0.08);
}

/* Header visual con SVG grande + gradiente azul claro */
.pw-sol-card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #eef5fd 0%, #d8ebfb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pw-sol-card-visual svg {
  width: 42%;
  height: 42%;
  color: var(--pw-blue);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.pw-sol-card:hover .pw-sol-card-visual svg {
  transform: scale(1.08);
}

/* Decoraci n de fondo: l neas diagonales sutiles */
.pw-sol-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 30px,
    rgba(25,118,210,0.05) 30px,
    rgba(25,118,210,0.05) 31px
  );
  pointer-events: none;
}

.pw-sol-card-content {
  padding: 2rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pw-sol-card-num {
  font-family: var(--pw-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--pw-navy);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  opacity: 0.75;
}

.pw-sol-card-title {
  font-family: var(--pw-sans);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--pw-blue);
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}

.pw-sol-card-tag {
  font-family: var(--pw-sans);
  font-style: italic;
  font-size: 1rem;
  color: var(--pw-navy);
  margin: 0 0 1.1rem;
  line-height: 1.4;
}

.pw-sol-card-desc {
  font-family: var(--pw-sans);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555;
  margin: 0 0 1.4rem;
  text-align: justify;
  flex: 1;
}

/* Bot n expandible para ver la composici n */
.pw-sol-toggle {
  background: none;
  border: none;
  padding: 0.6rem 0;
  cursor: pointer;
  font-family: var(--pw-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--pw-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  border-top: 1px solid rgba(10,37,64,0.08);
  border-bottom: 1px solid rgba(10,37,64,0.08);
  text-align: left;
  width: 100%;
  transition: color 0.2s;
}

.pw-sol-toggle:hover {
  color: var(--pw-blue-dark);
}

.pw-sol-toggle-arrow {
  margin-left: auto;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  font-size: 1em;
}

.pw-sol-card.is-open .pw-sol-toggle-arrow {
  transform: rotate(180deg);
}

/* Composici n del kit - colapsable */
.pw-sol-items-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.4,0,.2,1);
}

.pw-sol-card.is-open .pw-sol-items-wrap {
  max-height: 800px;
}

.pw-sol-items {
  padding: 1.4rem 0 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pw-sol-items-label {
  font-family: var(--pw-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--pw-navy);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  opacity: 0.75;
}

.pw-sol-item {
  display: flex;
  gap: 0.8rem;
  font-family: var(--pw-sans);
  font-size: 0.88rem;
  line-height: 1.55;
  color: #444;
}

.pw-sol-item-dot {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(25,118,210,0.12);
  color: var(--pw-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.pw-sol-item-dot svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Nota de m nimo + CTA final */
.pw-sol-min {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.4rem;
  padding: 0.8rem 1rem;
  background: rgba(25,118,210,0.04);
  border-left: 3px solid var(--pw-blue);
  font-family: var(--pw-sans);
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

.pw-sol-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  margin-top: 1.2rem;
  background: var(--pw-blue);
  color: var(--pw-white);
  font-family: var(--pw-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  align-self: flex-start;
  box-shadow: 0 3px 10px rgba(25,118,210,0.2);
}

.pw-sol-cta-btn:hover {
  background: var(--pw-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(13,71,161,0.3);
}

.pw-sol-cta-btn-arrow {
  transition: transform 0.3s;
}

.pw-sol-cta-btn:hover .pw-sol-cta-btn-arrow {
  transform: translateX(3px);
}

/* CTA final grande */
.pw-sol-final {
  margin-top: 5rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--pw-blue-2) 0%, var(--pw-blue-dark) 100%);
  color: var(--pw-white);
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.pw-sol-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 40px,
    rgba(255,255,255,0.04) 40px,
    rgba(255,255,255,0.04) 41px
  );
  pointer-events: none;
}

.pw-sol-final-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.pw-sol-final-eyebrow {
  display: block;
  font-family: var(--pw-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.pw-sol-final-h2 {
  font-family: var(--pw-sans);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
}

.pw-sol-final-desc {
  font-family: var(--pw-sans);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 2rem;
  opacity: 0.95;
}

.pw-sol-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  background: var(--pw-white);
  color: var(--pw-blue);
  font-family: var(--pw-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.pw-sol-final-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  color: var(--pw-blue-dark);
}

/* Responsive */
@media (max-width: 900px) {
  .pw-sol-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .pw-sol-card-content { padding: 1.6rem 1.5rem 1.8rem; }
  .pw-sol-final { margin-top: 3rem; padding: 3rem 1.5rem; }
}



/* Desplazar todo el contenido del nav (excepto el logo) 2cm a la izquierda */
#nav .nav-links {
  transform: translateX(-80px) !important;
}
#nav .nav-right {
  transform: translateX(-80px) !important;
}
@media (max-width: 1100px) {
  #nav .nav-links,
  #nav .nav-right {
    transform: none !important;
  }
}



/* ============================================================
   PEAKWAY STYLE - PAGINA NOSOTROS
   ============================================================ */
.pw-nos-intro {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
  padding: 0 2rem;
}
.pw-nos-intro-img {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, #d8ebfb 0%, #a9d2f5 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pw-nos-intro-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(25,118,210,0.08) 30px, rgba(25,118,210,0.08) 31px);
  pointer-events: none;
  z-index: 1;
}
.pw-nos-intro-img-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(10, 37, 64, 0.85);
  color: var(--pw-white);
  padding: 0.7rem 1.1rem;
  font-family: var(--pw-sans);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.pw-nos-intro-img-icon {
  position: relative;
  z-index: 2;
  color: var(--pw-blue);
  opacity: 0.35;
}
.pw-nos-intro-img-icon svg {
  width: 180px;
  height: 180px;
}
.pw-nos-intro-content { padding-top: 1rem; }
.pw-nos-intro-content .pw-sec-eyebrow { margin-bottom: 1.2rem; }
.pw-nos-intro-content .pw-sec-title {
  color: var(--pw-blue);
  margin-bottom: 1.8rem;
  text-align: left;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}
.pw-nos-intro-content p {
  font-family: var(--pw-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 1.1rem;
  text-align: justify;
}
.pw-nos-intro-content p:last-of-type { margin-bottom: 0; }

/* Frase inspiracional + Carrusel de citas */
.pw-nos-inspirational {
  text-align: center;
  padding: 5rem 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.pw-nos-inspirational-tag {
  display: block;
  font-family: var(--pw-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pw-navy);
  margin-bottom: 1.2rem;
  opacity: 0.75;
}
.pw-nos-inspirational-title {
  font-family: var(--pw-sans);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.3;
  color: var(--pw-navy);
  margin: 0;
  letter-spacing: -0.005em;
}
.pw-nos-quote-section {
  padding: 3rem 2rem 6rem;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.pw-nos-quote-stage {
  position: relative;
  min-height: 260px;
  padding: 0 5rem;
}
.pw-nos-quote {
  display: none;
  text-align: center;
  animation: pwNosIn 0.6s cubic-bezier(.4,0,.2,1);
}
.pw-nos-quote.active { display: block; }
@keyframes pwNosIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.pw-nos-quote-text {
  font-family: var(--pw-sans);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: #444;
  margin: 0 auto 2.2rem;
  max-width: 780px;
}
.pw-nos-quote-text::before { content: "\201C"; margin-right: 0.15em; }
.pw-nos-quote-text::after { content: "\201D"; margin-left: 0.15em; }
.pw-nos-quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pw-nos-quote-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--pw-blue);
}
.pw-nos-quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pw-nos-quote-info { text-align: left; }
.pw-nos-quote-name {
  font-family: var(--pw-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pw-navy);
  margin-bottom: 2px;
}
.pw-nos-quote-role {
  font-family: var(--pw-sans);
  font-size: 0.82rem;
  color: #888;
  letter-spacing: 0.02em;
}
/* Flechas estilo Peakway |< >| */
.pw-nos-quote-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--pw-navy);
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0;
  z-index: 2;
}
.pw-nos-quote-arrow:hover {
  opacity: 0.65;
  transform: translateY(-50%) scale(1.05);
}
.pw-nos-quote-arrow svg {
  width: 32px;
  height: 32px;
}
.pw-nos-quote-arrow-l { left: 0; }
.pw-nos-quote-arrow-r { right: 0; }

/* Equipo */
.pw-nos-team-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.pw-nos-team-intro .pw-sec-eyebrow { margin-bottom: 1rem; }
.pw-nos-team-intro .pw-sec-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: var(--pw-blue);
}
.pw-nos-team-intro-text {
  font-family: var(--pw-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  text-align: justify;
}
.pw-nos-person {
  max-width: 1300px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
}
.pw-nos-person.reverse { grid-template-columns: 1.2fr 1fr; }
.pw-nos-person.reverse .pw-nos-person-photo { order: 2; }
.pw-nos-person.reverse .pw-nos-person-content { order: 1; }
.pw-nos-person-photo {
  aspect-ratio: 3 / 4;
  max-height: 520px;
  background: linear-gradient(135deg, #eef5fd 0%, #d8ebfb 100%);
  overflow: hidden;
  position: relative;
}
.pw-nos-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.pw-nos-person-content { padding: 1rem 0; }
.pw-nos-person-name {
  font-family: var(--pw-sans);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--pw-blue);
  margin: 0 0 0.3rem;
}
.pw-nos-person-role {
  font-family: var(--pw-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--pw-navy);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.pw-nos-person-bio p {
  font-family: var(--pw-sans);
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 1rem;
  text-align: justify;
}
.pw-nos-person-bio p:last-child { margin-bottom: 0; }

/* Sectores */
.pw-nos-sectors {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pw-nos-sector {
  background: #ffffff;
  border: 1px solid rgba(10, 37, 64, 0.08);
  padding: 1.8rem 1.6rem;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.pw-nos-sector:hover {
  border-color: var(--pw-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25,118,210,0.08);
}
.pw-nos-sector-icon {
  width: 42px;
  height: 42px;
  color: var(--pw-blue);
  margin-bottom: 1rem;
}
.pw-nos-sector-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pw-nos-sector-name {
  font-family: var(--pw-sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--pw-navy);
  margin: 0 0 0.7rem;
  line-height: 1.3;
}
.pw-nos-sector-desc {
  font-family: var(--pw-sans);
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.pw-nos-sector-special {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--pw-blue) 0%, var(--pw-blue-dark) 100%);
  color: var(--pw-white);
  border: none;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pw-nos-sector-special::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0, transparent 40px, rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 41px);
  pointer-events: none;
}
.pw-nos-sector-special .pw-nos-sector-icon {
  color: var(--pw-white);
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
}
.pw-nos-sector-special .pw-nos-sector-name {
  color: var(--pw-white);
  font-size: 1.5rem;
}
.pw-nos-sector-special .pw-nos-sector-desc {
  color: var(--pw-white);
  opacity: 0.95;
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
}

/* Compromiso ambiental */
.pw-nos-eco {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 3rem;
  background: linear-gradient(135deg, var(--pw-blue-2) 0%, var(--pw-blue-dark) 100%);
  color: var(--pw-white);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pw-nos-eco::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0, transparent 40px, rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 41px);
  pointer-events: none;
}
.pw-nos-eco-content { position: relative; z-index: 2; }
.pw-nos-eco-eyebrow {
  display: block;
  font-family: var(--pw-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.pw-nos-eco-title {
  font-family: var(--pw-sans);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 1.2;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.pw-nos-eco-text {
  font-family: var(--pw-sans);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
  text-align: justify;
}
.pw-nos-eco-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.pw-nos-eco-stat {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255,255,255,0.1);
  border-left: 3px solid var(--pw-white);
  backdrop-filter: blur(6px);
}
.pw-nos-eco-stat-num {
  font-family: var(--pw-sans);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pw-nos-eco-stat-text {
  font-family: var(--pw-sans);
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 1100px) {
  .pw-nos-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .pw-nos-person, .pw-nos-person.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pw-nos-person.reverse .pw-nos-person-photo { order: 0; }
  .pw-nos-person.reverse .pw-nos-person-content { order: 0; }
  .pw-nos-person-photo { aspect-ratio: 4 / 3; max-height: 400px; }
  .pw-nos-sectors { grid-template-columns: repeat(2, 1fr); }
  .pw-nos-sector-special { grid-column: span 2; }
  .pw-nos-eco { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 2rem; }
}
@media (max-width: 640px) {
  .pw-nos-sectors { grid-template-columns: 1fr; }
  .pw-nos-sector-special { grid-column: span 1; }
  .pw-nos-quote-stage { padding: 0 3rem; }
  .pw-nos-quote-arrow { width: 32px; height: 32px; }
  .pw-nos-quote-arrow svg { width: 24px; height: 24px; }
}



/* Imagen real en tarjetas de soluciones */
.pw-sol-card-visual.has-img { background: none; }
.pw-sol-card-visual.has-img::before { display: none; }
.pw-sol-card-visual.has-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.pw-sol-card-visual.has-img svg { display: none; }
.pw-sol-card:hover .pw-sol-card-visual.has-img img {
  transform: scale(1.05);
}



/* ============================================================
   PEAKWAY STYLE - Modales legales
   ============================================================ */
.modal-overlay {
  background: rgba(10, 37, 64, 0.72) !important;
  backdrop-filter: blur(8px) !important;
}

.modal-overlay .modal {
  background: #ffffff !important;
  border-radius: 4px !important;
  box-shadow: 0 30px 80px rgba(10, 37, 64, 0.3) !important;
  max-width: 780px !important;
  font-family: var(--pw-sans) !important;
}

.modal-overlay .modal-hd {
  border-radius: 4px 4px 0 0 !important;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08) !important;
  padding: 1.5rem 2rem 1.25rem !important;
  background: #ffffff !important;
}

.modal-overlay .modal-hd h2 {
  font-family: var(--pw-sans) !important;
  font-weight: 600 !important;
  color: var(--pw-blue) !important;
  font-size: 1.4rem !important;
  letter-spacing: -0.01em !important;
  margin: 0 !important;
}

.modal-overlay .modal-close {
  background: rgba(10, 37, 64, 0.06) !important;
  color: var(--pw-navy) !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  transition: background 0.2s, transform 0.2s !important;
  font-size: 1.2rem !important;
}

.modal-overlay .modal-close:hover {
  background: rgba(25, 118, 210, 0.15) !important;
  color: var(--pw-blue) !important;
  transform: rotate(90deg) !important;
}

.modal-overlay .modal-body {
  padding: 1.75rem 2rem 2rem !important;
  font-family: var(--pw-sans) !important;
}

.modal-overlay .modal-body h3 {
  font-family: var(--pw-sans) !important;
  font-weight: 700 !important;
  color: var(--pw-navy) !important;
  letter-spacing: 0.08em !important;
  font-size: 0.78rem !important;
  margin: 1.75rem 0 0.75rem !important;
  padding-bottom: 0.5rem !important;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08) !important;
  text-transform: uppercase !important;
}

.modal-overlay .modal-body h3:first-child {
  margin-top: 0 !important;
}

.modal-overlay .modal-body p {
  font-family: var(--pw-sans) !important;
  font-size: 0.92rem !important;
  line-height: 1.7 !important;
  color: #555 !important;
  margin: 0 0 1rem !important;
  text-align: justify !important;
}

.modal-overlay .modal-body p strong {
  color: var(--pw-navy) !important;
  font-weight: 600 !important;
}

.modal-overlay .modal-body a {
  color: var(--pw-blue) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.2s !important;
}

.modal-overlay .modal-body a:hover {
  color: var(--pw-blue-dark) !important;
  text-decoration: underline !important;
}

.modal-overlay .modal-body ul,
.modal-overlay .modal-body ol {
  font-family: var(--pw-sans) !important;
  font-size: 0.92rem !important;
  line-height: 1.7 !important;
  color: #555 !important;
  margin: 0 0 1rem 1.5rem !important;
  padding-left: 0.5rem !important;
}

.modal-overlay .modal-body li {
  margin-bottom: 0.4rem !important;
}

@media (max-width: 640px) {
  .modal-overlay { padding: 1rem !important; }
  .modal-overlay .modal-hd { padding: 1.25rem 1.5rem 1rem !important; }
  .modal-overlay .modal-hd h2 { font-size: 1.2rem !important; }
  .modal-overlay .modal-body { padding: 1.25rem 1.5rem 1.5rem !important; }
}



/* ============================================================
   PEAKWAY STYLE - Bloque descarga cat logo PDF (p gina Productos)
   ============================================================ */
.pw-cat-pdf-cta {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 2.2rem 3rem;
  background: linear-gradient(135deg, var(--pw-blue-2) 0%, var(--pw-blue-dark) 100%);
  color: var(--pw-white);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  text-decoration: none !important;
}

.pw-cat-pdf-cta, .pw-cat-pdf-cta * {
  text-decoration: none !important;
}

.pw-cat-pdf-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0, transparent 40px, rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 41px);
  pointer-events: none;
}

.pw-cat-pdf-icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.pw-cat-pdf-icon svg {
  width: 36px;
  height: 36px;
  color: var(--pw-white);
}

.pw-cat-pdf-text {
  position: relative;
  z-index: 2;
}

.pw-cat-pdf-eyebrow {
  display: block;
  font-family: var(--pw-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

.pw-cat-pdf-title {
  font-family: var(--pw-sans);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 0 0 0.3rem;
  letter-spacing: -0.005em;
}

.pw-cat-pdf-sub {
  font-family: var(--pw-sans);
  font-size: 0.88rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

.pw-cat-pdf-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.5rem;
  background: var(--pw-white);
  color: var(--pw-blue);
  font-family: var(--pw-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  white-space: nowrap;
  flex-shrink: 0;
}

.pw-cat-pdf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  color: var(--pw-blue-dark);
}

.pw-cat-pdf-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.pw-cat-pdf-btn:hover svg {
  transform: translateY(2px);
}

@media (max-width: 900px) {
  .pw-cat-pdf-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.2rem;
  }
  .pw-cat-pdf-icon { margin: 0 auto; }
  .pw-cat-pdf-btn { justify-self: center; }
}


/* ============================================================
   ELYSIAN SHOP - CERCA, GRAELLA, CARRET, PRESSUPOST
   ============================================================ */

/* Search bar */
.es-shop-wrap { max-width: 1300px; margin: 0 auto; padding: 0 2rem 4rem; }

.es-search-bar {
  padding: 2rem 0 1.75rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(10,37,64,0.07);
}
.es-search-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
.es-search-inner {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-bottom: 0.6rem;
}
.es-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #94a3b8;
  pointer-events: none;
}
.es-search-inner input {
  width: 100%;
  padding: 13px 44px 13px 44px;
  border: 1.5px solid rgba(10,37,64,0.12);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #0a2540;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.es-search-inner input:focus {
  border-color: #1976d2;
  box-shadow: 0 0 0 3px rgba(25,118,210,0.10);
  background: #fff;
}
.es-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  padding: 4px;
  display: flex;
  align-items: center;
}
.es-search-clear:hover { color: #0a2540; }
.es-search-clear svg { width: 16px; height: 16px; }

/* Category pills */
.es-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.75rem;
}
.es-cat-pill {
  background: #fff
  border: 2px solid #e2e8f0;
  color: #334155;
  padding: 7px 16px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.es-cat-pill:hover { background: #e2e8f0; color: #0a2540; }
.es-cat-pill.active {
  background: #0a2540;
  color: #fff;
  border-color: #0a2540;
}

.es-results-count {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Product grid - 4 columns */
.es-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Product card */
.es-prod-card {
  background: #fff;
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s, border-color 0.22s;
  display: flex;
  flex-direction: column;
}
.es-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,37,64,0.10);
  border-color: #1976d2;
}
.es-prod-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f0f4f8 0%, #dbe7f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.es-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.es-prod-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
}
.es-prod-img-placeholder span {
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.es-prod-body {
  padding: 0.9rem 1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.es-prod-cat-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1976d2;
  margin-bottom: 2px;
}
.es-prod-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0a2540;
  line-height: 1.3;
}
.es-prod-ref {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 500;
}
.es-prod-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
  margin-top: 4px;
  flex: 1;
}
.es-prod-add {
  margin-top: 10px;
  background: #0a2540;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 9px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
}
.es-prod-add:hover { background: #1565c0; }
.es-prod-add svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Empty state */
.es-empty {
  text-align: center;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.es-empty svg { color: #cbd5e1; }
.es-empty p { font-family: 'Inter',sans-serif; color: #64748b; font-size: 0.95rem; }
.es-empty button {
  background: #0a2540; color: #fff; border: none; border-radius: 8px;
  padding: 10px 24px; font-family: 'Inter',sans-serif; font-size: 0.85rem;
  font-weight: 600; cursor: pointer;
}

/* -------- MODALS -------- */
.es-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,13,26,0.55);
  backdrop-filter: blur(6px);
  z-index: 800;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: all 0.25s;
}
.es-modal-overlay.on { opacity: 1; visibility: visible; }

.es-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(10,13,26,0.18);
  animation: modalSlide 0.25s ease;
}
@keyframes modalSlide { from { transform: translateY(16px); opacity:0; } to { transform: translateY(0); opacity:1; } }

.es-modal-hd {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(10,37,64,0.07);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  position: sticky;
  top: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
}
.es-modal-cat {
  font-family: 'Inter',sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #1976d2;
  margin-bottom: 4px;
}
.es-modal-title {
  font-family: 'Inter',sans-serif; font-size: 1.3rem; font-weight: 700;
  color: #0a2540; letter-spacing: -0.02em; margin: 0;
}
.es-modal-ref {
  font-family: 'Inter',sans-serif; font-size: 0.72rem; color: #94a3b8;
  font-weight: 500; margin-top: 2px;
}
.es-modal-close {
  background: #f1f5f9; border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.18s;
}
.es-modal-close:hover { background: #e2e8f0; }

.es-modal-body { padding: 1.5rem 1.75rem 1.75rem; }

.es-modal-img-wrap {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0f4f8 0%, #dbe7f5 100%);
  border-radius: 10px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.es-modal-img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: #94a3b8;
}
.es-modal-img-placeholder span {
  font-family: 'Inter',sans-serif; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.es-modal-desc {
  font-family: 'Inter',sans-serif; font-size: 0.9rem; color: #475569;
  line-height: 1.7; margin-bottom: 1.5rem;
}

.es-modal-add { display: flex; gap: 12px; align-items: center; }
.es-qty-wrap {
  display: flex; align-items: center; border: 1.5px solid rgba(10,37,64,0.12);
  border-radius: 8px; overflow: hidden;
}
.es-qty-btn {
  background: #f8fafc; border: none; width: 36px; height: 42px;
  font-size: 1.1rem; cursor: pointer; color: #0a2540; font-weight: 600;
  transition: background 0.15s;
}
.es-qty-btn:hover { background: #e2e8f0; }
.es-qty-input {
  width: 54px; height: 42px; border: none; text-align: center;
  font-family: 'Inter',sans-serif; font-size: 0.95rem; font-weight: 600;
  color: #0a2540; background: #fff; outline: none;
}
.es-add-btn {
  flex: 1; background: #1976d2; color: #fff; border: none; border-radius: 8px;
  padding: 12px 20px; font-family: 'Inter',sans-serif; font-size: 0.88rem;
  font-weight: 700; cursor: pointer; transition: background 0.18s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.es-add-btn:hover { background: #1565c0; }

/* -------- CARRET FLOTANT -------- */
.es-cart-btn {
  position: fixed !important;
  bottom: 2rem;
  left: 2rem;
  right: auto;
  z-index: 9999 !important;
  background: #0a2540;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 20px 13px 18px;
  display: flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(10,37,64,0.4);
  font-family: 'Inter',sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  visibility: visible !important;
  opacity: 1 !important;
}
.es-cart-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(10,37,64,0.45); background: #1565c0; }
.es-cart-count-wrap {
  background: #ef4444; border-radius: 50px;
  min-width: 22px; height: 22px; padding: 0 6px;
  display: flex; align-items: center; justify-content: center;
}
.es-cart-count {
  color: #fff; font-size: 0.72rem; font-weight: 800; line-height: 1;
}

/* Cart modal */
.es-cart-modal { max-width: 580px; }

.es-cart-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid rgba(10,37,64,0.07);
}
.es-cart-item:last-child { border-bottom: none; }
.es-cart-item-img {
  width: 54px; height: 54px; flex-shrink: 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #dbe7f5 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.es-cart-item-info { flex: 1; min-width: 0; }
.es-cart-item-name {
  font-family: 'Inter',sans-serif; font-size: 0.88rem; font-weight: 600;
  color: #0a2540; margin-bottom: 2px;
}
.es-cart-item-ref {
  font-family: 'Inter',sans-serif; font-size: 0.7rem; color: #94a3b8; margin-bottom: 6px;
}
.es-cart-item-qty-wrap { display: flex; align-items: center; gap: 8px; }
.es-cart-item-qty {
  display: flex; align-items: center;
  border: 1px solid rgba(10,37,64,0.12); border-radius: 6px; overflow: hidden;
}
.es-cart-item-qty button {
  background: #f8fafc; border: none; width: 28px; height: 28px;
  cursor: pointer; font-size: 1rem; color: #0a2540; font-weight: 600;
}
.es-cart-item-qty input {
  width: 42px; height: 28px; border: none; text-align: center;
  font-family: 'Inter',sans-serif; font-size: 0.82rem; font-weight: 600;
  color: #0a2540; background: #fff; outline: none;
}
.es-cart-item-remove {
  background: none; border: none; cursor: pointer; color: #cbd5e1;
  padding: 4px; transition: color 0.15s;
}
.es-cart-item-remove:hover { color: #ef4444; }

.es-cart-total {
  background: #f8fafc; border-radius: 8px; padding: 1rem 1.25rem;
  font-family: 'Inter',sans-serif; font-size: 0.85rem; color: #64748b;
  margin: 1rem 0;
  border: 1px solid rgba(10,37,64,0.07);
}
.es-cart-total strong { color: #0a2540; font-size: 1rem; }

.es-budget-btn {
  width: 100%; background: #1976d2; color: #fff; border: none; border-radius: 10px;
  padding: 14px; font-family: 'Inter',sans-serif; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: background 0.18s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.es-budget-btn:hover { background: #1565c0; }

/* Budget modal */
.es-budget-modal { max-width: 600px; }

.es-budget-summary {
  background: #f0f6ff; border-radius: 10px; padding: 1rem 1.25rem;
  margin-bottom: 1.5rem; border: 1px solid rgba(25,118,210,0.15);
  font-family: 'Inter',sans-serif; font-size: 0.82rem; color: #475569; line-height: 1.8;
}
.es-budget-form { display: flex; flex-direction: column; gap: 14px; }
.es-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.es-fg { display: flex; flex-direction: column; gap: 5px; }
.es-fg label {
  font-family: 'Inter',sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: #0a2540;
}
.es-fg input, .es-fg textarea {
  background: #f8fafc; border: 1.5px solid rgba(10,37,64,0.12);
  border-radius: 8px; padding: 10px 12px;
  font-family: 'Inter',sans-serif; font-size: 0.88rem; color: #0a2540;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.es-fg input:focus, .es-fg textarea:focus { border-color: #1976d2; background: #fff; }
.es-fg textarea { resize: vertical; min-height: 80px; }

.es-send-btn {
  background: #0a2540; color: #fff; border: none; border-radius: 10px;
  padding: 14px; font-family: 'Inter',sans-serif; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: background 0.18s; margin-top: 6px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.es-send-btn:hover { background: #1565c0; }

.es-budget-ok {
  text-align: center; padding: 2rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.es-budget-ok h3 { font-family: 'Inter',sans-serif; font-size: 1.2rem; font-weight: 700; color: #0a2540; }
.es-budget-ok p { font-family: 'Inter',sans-serif; font-size: 0.88rem; color: #64748b; }
.es-budget-ok button {
  background: #f1f5f9; border: none; border-radius: 8px; padding: 10px 24px;
  font-family: 'Inter',sans-serif; font-size: 0.85rem; font-weight: 600;
  color: #0a2540; cursor: pointer;
}

/* Responsive */
@media (max-width: 1100px) { .es-prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .es-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .es-form-row { grid-template-columns: 1fr; }
  .es-cart-btn { bottom: 1rem; right: 1rem; padding: 11px 16px; }
}
@media (max-width: 480px) {
  .es-prod-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .es-shop-wrap { padding: 0 1rem 3rem; }
}



.es-view-cat-btn {
  background: none; border: 1.5px solid var(--pw-blue, #1976d2);
  color: var(--pw-blue, #1976d2); border-radius: 6px;
  padding: 8px 18px; font-family: var(--pw-sans, Inter, sans-serif);
  font-size: 0.82rem; font-weight: 700; cursor: pointer;
  transition: all 0.18s; margin-top: 0.5rem;
  letter-spacing: 0.02em;
}
.es-view-cat-btn:hover {
  background: var(--pw-blue, #1976d2); color: #fff;
}

/* Category filter row */
.es-cat-filter-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.es-cat-filter-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  padding-top: 7px;
  white-space: nowrap;
  flex-shrink: 0;
}
.es-results-count {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
  text-align: center;
}

/* ============================================================
   ECO PAGE - Compromiso Ambiental
   ============================================================ */
.eco-pillar {
  background: #fff;
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: 14px;
  padding: 2rem;
  transition: transform 0.22s, box-shadow 0.22s;
}
.eco-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,37,64,0.10);
}
.eco-pillar-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.eco-pillar-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #0a2540; margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.eco-pillar-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem; color: #64748b; line-height: 1.75;
}
.eco-cert-card {
  background: #fff;
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color 0.2s;
}
.eco-cert-card:hover { border-color: #1976d2; }
.eco-cert-badge {
  background: #fef3c7; color: #92400e;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: 6px;
  white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}
.eco-cert-info strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  color: #0a2540; display: block; margin-bottom: 4px;
}
.eco-cert-info p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; color: #64748b; line-height: 1.6; margin: 0;
}

.pw-pack-cart-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%;
  background: #0a2540; color: #fff;
  border: none; border-radius: 8px;
  padding: 13px 20px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.pw-pack-cart-btn:hover {
  background: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21,101,192,0.35);
}
.pw-pack-cart-btn svg { flex-shrink: 0; }

/* ============================================================
   ECO PAGE
   ============================================================ */
.eco-stat-box {
  background: #f8fafc; border: 1px solid rgba(10,37,64,0.08);
  border-radius: 12px; padding: 1.5rem 1rem; text-align: center;
}
.eco-stat-box--green { border-color: #a7f3d0; background: #ecfdf5; }
.eco-stat-box--blue  { border-color: #bfdbfe; background: #eff6ff; }
.eco-stat-box--dark  { background: #0a2540; }
.eco-stat-box--dark .eco-stat-num  { color: #fff; }
.eco-stat-box--dark .eco-stat-label { color: rgba(255,255,255,0.7); }
.eco-stat-num {
  font-family: 'Inter', sans-serif; font-size: 2.2rem; font-weight: 800;
  color: #0a2540; letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px;
}
.eco-stat-label {
  font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 500;
  color: #64748b; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.4;
}
.eco-pillar {
  background: #fff; border: 1px solid rgba(10,37,64,0.08); border-radius: 14px;
  padding: 1.75rem; transition: transform 0.22s, box-shadow 0.22s;
}
.eco-pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,37,64,0.10); }
.eco-pillar-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.eco-pillar-title {
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700;
  color: #0a2540; margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.eco-pillar-desc {
  font-family: 'Inter', sans-serif; font-size: 0.82rem; color: #64748b; line-height: 1.75;
}
.eco-tag {
  background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0;
  border-radius: 100px; padding: 4px 12px;
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600;
}
.eco-cert-strip {
  background: rgba(255,255,255,0.08); border-radius: 10px; padding: 1.25rem;
  text-align: center;
}
.eco-cert-strip-name {
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 800;
  color: #fff; margin-bottom: 6px;
}
.eco-cert-strip-desc {
  font-family: 'Inter', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
@media(max-width:768px){
  #page-nosotros .pw-sec-intro-grid { grid-template-columns: 1fr; }
  #page-nosotros [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr; }
  #page-nosotros [style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2,1fr); }
  #page-nosotros [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr; }
}


/* ============================================================
   HOME MERCH HIGHLIGHT (estil FaitemPlus)
   ============================================================ */
.pw-merch-highlight {
  background: #f8fafc;
  padding: 6rem 5vw;
}
.pw-merch-highlight-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.pw-merch-highlight-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e2e8f0;
}
.pw-merch-highlight-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pw-merch-highlight-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #94a3b8;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-align: center;
  padding: 1rem;
}
/* Hide placeholder when real image loads */
.pw-merch-highlight-photo[src*="base64"]:not([src*="IMAGEN_BASE64_AQUI"]) + .pw-merch-highlight-img-placeholder,
.pw-merch-highlight-photo[src^="http"] + .pw-merch-highlight-img-placeholder {
  display: none;
}
.pw-merch-highlight-h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: #0a2540;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.75rem 0 1.25rem;
}
.pw-merch-highlight-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
.pw-merch-highlight-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0.5rem;
}
.pw-merch-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #334155;
}
.pw-merch-item svg { color: #0a2540; flex-shrink: 0; }
.pw-merch-cta-main {
  background: #0a2540;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.pw-merch-cta-main:hover { background: #1565c0; transform: translateY(-2px); }
.pw-merch-cta-sec {
  background: transparent;
  color: #0a2540;
  border: 2px solid #0a2540;
  border-radius: 8px;
  padding: 11px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.pw-merch-cta-sec:hover { background: #0a2540; color: #fff; }
@media (max-width: 900px) {
  .pw-merch-highlight-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pw-merch-highlight-img { max-width: 560px; }
}


.es-prod-img-real {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.es-prod-card:hover .es-prod-img-real { transform: scale(1.04); }


/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.pw-clients-section {
  background: #fff;
  padding: 5rem 5vw;
}
.pw-clients-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pw-clients-head {
  margin-bottom: 3rem;
}
.pw-clients-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #0a2540;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.pw-clients-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 400;
}
.pw-clients-logos {
  width: 100%;
}
.pw-clients-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}

