:root{
  --blue-dark:#0d47a1;
  --blue:#1565c0;
  --blue-mid:#1976d2;
  --blue-hero:#0d5ab5;
  --blue-light:#b3d4f5;
  --blue-pale:#e8f4fd;
  --white:#fff;
  --gray-50:#f5f5f5;
  --gray-100:#eee;
  --gray-200:#e0e0e0;
  --gray-500:#757575;
  --gray-800:#212121;
  --navy:#0d1b2e;
  --navy-line:#1e3a5f;
  --navy-muted:rgba(255,255,255,.72);
  --font:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --nav-h:76px;
  --radius:16px;
  --tr:.28s ease;
  --shadow:0 12px 36px rgba(13,71,161,.08);
  --max:1220px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:90px}
body{font-family:var(--font);color:var(--gray-800);background:var(--white);overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%;height:auto}
a{text-decoration:none;color:inherit}
button{font:inherit}
.container{width:min(var(--max),calc(100% - 40px));margin:0 auto}
:focus-visible{outline:3px solid var(--blue-mid);outline-offset:3px;border-radius:6px}

@media (prefers-reduced-motion:reduce){*,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}}

/* HEADER */
.site-header{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.98);border-bottom:1px solid var(--gray-200);transition:box-shadow var(--tr)}
.site-header.scrolled{box-shadow:0 5px 24px rgba(13,71,161,.08)}
.nav-shell{height:var(--nav-h);width:min(1320px,calc(100% - 48px));margin:0 auto;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:28px}
.brand img{width:auto;height:42px}
.desktop-nav{display:flex;justify-content:center}
.nav-list{display:flex;align-items:center;gap:34px;list-style:none}
.nav-link{font-size:13px;font-weight:700;letter-spacing:.6px;text-transform:uppercase;color:var(--blue);position:relative;padding:25px 0}
.nav-link::after{content:"";position:absolute;left:0;right:0;bottom:18px;height:2px;background:var(--blue);transform:scaleX(0);transform-origin:center;transition:transform var(--tr)}
.nav-link:hover::after,.nav-link.active::after{transform:scaleX(1)}
.nav-actions{display:flex;align-items:center;gap:18px}
.socials{display:flex;align-items:center;gap:10px}
.socials a{width:28px;height:28px;display:grid;place-items:center;color:var(--blue);transition:opacity var(--tr)}
.socials a:hover{opacity:.65}
.socials svg{width:18px;height:18px;fill:currentColor}
.has-submenu{position:relative}
.submenu{display:none;position:absolute;top:58px;left:50%;transform:translateX(-50%);min-width:225px;padding:8px;background:var(--white);border:1px solid var(--gray-200);border-radius:14px;box-shadow:0 15px 35px rgba(13,71,161,.12);list-style:none}
.has-submenu:hover .submenu{display:block}
.submenu a{display:block;padding:11px 14px;border-radius:9px;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.4px;color:var(--blue)}
.submenu a:hover{background:var(--blue-pale)}
.menu-toggle{display:none;width:36px;height:36px;border:0;background:transparent;flex-direction:column;justify-content:center;gap:5px;cursor:pointer}
.menu-toggle span{display:block;width:22px;height:2px;background:var(--blue);margin:0 auto;border-radius:2px;transition:var(--tr)}
.menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.open span:nth-child(2){opacity:0}
.menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-nav{display:none}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:0 22px;border-radius:7px;border:2px solid transparent;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.6px;transition:transform var(--tr),background var(--tr),color var(--tr),border-color var(--tr)}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--blue);border-color:var(--blue);color:var(--white)}
.btn-primary:hover{background:var(--blue-dark);border-color:var(--blue-dark)}
.btn-secondary{background:transparent;border-color:var(--white);color:var(--white)}
.btn-secondary:hover{background:var(--white);color:var(--blue)}

/* HERO */
.hero{
  background:var(--blue-hero);
  color:var(--white);
  overflow:hidden;
}

.hero-inner{
  min-height:calc(100vh - var(--nav-h));
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
  align-items:center;
  gap:28px;
  padding-top:42px;
  padding-bottom:42px;
}

.hero-copy{
  max-width:570px;
  position:relative;
  z-index:2;
}

.eyebrow{
  font-size:11px;
  font-weight:800;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:var(--white);
  margin-bottom:14px;
}

.eyebrow-blue{
  color:var(--blue);
}

.hero h1{
  font-size:clamp(48px,5.1vw,74px);
  line-height:.98;
  letter-spacing:-2.6px;
  font-weight:700;
}

.hero h1 strong{
  display:block;
  font-weight:900;
}

.hero-lead{
  max-width:530px;
  margin-top:23px;
  font-size:16px;
  line-height:1.72;
  color:rgba(255,255,255,.9);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.hero-meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:34px;
  font-size:11px;
  font-weight:600;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:rgba(255,255,255,.75);
}

.hero-meta .dot{
  width:4px;
  height:4px;
  background:rgba(255,255,255,.65);
  border-radius:50%;
}

/* IMAGEN ÚNICA DEL HERO */
.hero-products-single{
  position:relative;
  width:100%;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  z-index:1;
}

.hero-single-image{
  display:block;
  width:100%;
  max-width:820px;
  height:auto;
  max-height:calc(100vh - var(--nav-h) - 40px);
  object-fit:contain;
  margin-left:auto;
}

/* SECTION HEADINGS */
.section-heading{max-width:760px;margin:0 auto 46px;text-align:center}
.section-heading h2{font-size:clamp(34px,4.6vw,58px);line-height:1.08;letter-spacing:-1.5px;color:var(--blue-dark);font-weight:800}
.section-heading>p:last-child{margin-top:14px;color:var(--gray-500);font-size:15px;line-height:1.7}
.section-heading-row{display:flex;align-items:end;justify-content:space-between;gap:30px;text-align:left;max-width:none}
.section-heading-row>div{max-width:700px}
.text-link{display:inline-flex;align-items:center;gap:9px;color:var(--blue);font-size:12px;font-weight:800;letter-spacing:.5px;text-transform:uppercase;white-space:nowrap}
.text-link:hover{gap:13px}

/* CATEGORIES */
.product-categories{padding:110px 0 112px;background:var(--white)}
.category-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.category-card{border:1px solid var(--gray-200);background:var(--white);border-radius:14px;overflow:hidden;box-shadow:0 5px 22px rgba(13,71,161,.05);transition:transform var(--tr),box-shadow var(--tr),border-color var(--tr)}
.category-card:hover{transform:translateY(-5px);border-color:var(--blue-light);box-shadow:var(--shadow)}
.category-image{aspect-ratio:1/1;background:var(--gray-50);overflow:hidden}
.category-image img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.category-card:hover .category-image img{transform:scale(1.035)}
.category-content{padding:18px 18px 20px}
.category-kicker{font-size:9px;font-weight:800;letter-spacing:1px;text-transform:uppercase;color:var(--gray-500)}
.category-content h3{margin-top:6px;font-size:22px;line-height:1.1;color:var(--blue-dark);font-weight:800;letter-spacing:-.5px}
.category-content>span{display:inline-block;margin-top:16px;color:var(--blue);font-size:10px;font-weight:800;letter-spacing:.7px;text-transform:uppercase}

/* STORY */
.story{padding:110px 0;background:var(--gray-50)}
.story-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:76px;align-items:center}
.story-image-wrap{aspect-ratio:1/1.02;overflow:hidden;background:var(--white);border-radius:16px}
.story-image-wrap img{width:100%;height:100%;object-fit:cover}
.story-copy{max-width:560px}
.story-copy h2{font-size:clamp(36px,4vw,58px);line-height:1.06;letter-spacing:-1.6px;color:var(--blue-dark);font-weight:800}
.story-copy>p:not(.eyebrow){margin:22px 0 26px;font-size:15px;line-height:1.85;color:var(--gray-500)}

/* FEATURED */
.featured{padding:110px 0 112px;background:var(--white)}
.featured-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.featured-card{border:1px solid var(--gray-200);background:var(--white);border-radius:14px;overflow:hidden;transition:transform var(--tr),box-shadow var(--tr)}
.featured-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.featured-image{aspect-ratio:1/.92;background:var(--gray-50);overflow:hidden}
.featured-image img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.featured-card:hover .featured-image img{transform:scale(1.03)}
.featured-copy{padding:20px 20px 23px}
.featured-copy>span{font-size:9px;font-weight:800;letter-spacing:1px;text-transform:uppercase;color:var(--gray-500)}
.featured-copy h3{margin-top:5px;color:var(--blue-dark);font-size:25px;line-height:1.08;letter-spacing:-.5px;font-weight:800}
.featured-copy p{margin-top:8px;font-size:13px;color:var(--gray-500);line-height:1.6}

/* VALUES */
.values{padding:100px 0;background:var(--blue);color:var(--white)}
.values-header{display:flex;justify-content:space-between;align-items:end;gap:30px;margin-bottom:52px}
.values-header .eyebrow{margin-bottom:10px}
.values-header h2{font-size:clamp(34px,4.3vw,56px);line-height:1.06;letter-spacing:-1.5px;font-weight:800}
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid rgba(255,255,255,.22);border-bottom:1px solid rgba(255,255,255,.22)}
.value-item{padding:28px 24px;min-height:150px;border-right:1px solid rgba(255,255,255,.22);display:flex;flex-direction:column;justify-content:center}
.value-item:last-child{border-right:0}
.value-item strong{font-size:36px;line-height:1;font-weight:900}
.value-item span{margin-top:8px;max-width:190px;font-size:11px;line-height:1.55;text-transform:uppercase;letter-spacing:.5px;color:rgba(255,255,255,.78)}

/* DISTRIBUTOR */
.distributor{padding:86px 0;background:var(--blue-pale)}
.distributor-inner{display:flex;justify-content:space-between;align-items:center;gap:40px}
.distributor-inner>div{max-width:780px}
.distributor h2{font-size:clamp(34px,4.2vw,56px);line-height:1.06;letter-spacing:-1.5px;color:var(--blue-dark);font-weight:800}
.distributor p:last-child{margin-top:14px;max-width:680px;color:var(--gray-500);font-size:15px;line-height:1.75}

/* FOOTER */
.site-footer{background:var(--navy);color:var(--white);padding:72px 0 0}
.footer-grid{display:grid;grid-template-columns:1.7fr 1fr 1.25fr 1fr;gap:48px;padding-bottom:58px}
.footer-brand img{width:auto;height:42px}
.footer-brand p{margin-top:16px;max-width:340px;font-size:12px;line-height:1.75;color:var(--navy-muted)}
.footer-grid h3{font-size:11px;letter-spacing:1.2px;text-transform:uppercase;font-weight:800;margin-bottom:17px}
.footer-grid>div:not(.footer-brand)>a,.footer-grid>div:not(.footer-brand)>p{display:block;font-size:12px;line-height:1.9;color:var(--navy-muted)}
.footer-grid>div:not(.footer-brand)>a:hover{color:var(--white)}
.footer-socials{display:flex;flex-direction:column;gap:10px}
.footer-socials a{font-size:12px;color:var(--navy-muted)}
.footer-bottom{padding:18px 20px;border-top:1px solid var(--navy-line);text-align:center;color:rgba(255,255,255,.48);font-size:10px}

/* CALL BUTTON */
.floating-call{position:fixed;right:22px;bottom:22px;z-index:950;display:inline-flex;align-items:center;gap:9px;padding:13px 17px;background:var(--blue);color:var(--white);border:2px solid var(--white);border-radius:999px;box-shadow:0 12px 30px rgba(13,71,161,.25);font-size:12px;font-weight:800;letter-spacing:.4px;text-transform:uppercase;transition:transform var(--tr),background var(--tr)}
.floating-call:hover{transform:translateY(-3px);background:var(--blue-dark)}
.floating-call svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

@media (max-width:1100px){
  .nav-list{gap:24px}
  .hero-inner{gap:24px}
  .hero-single-image{max-width:720px}
  .category-grid{grid-template-columns:repeat(2,1fr)}
  .story-grid{gap:50px}
  .footer-grid{grid-template-columns:1.5fr 1fr 1.2fr 1fr}
}

@media (min-width: 900px){
  .hero-products-single{
    min-height:0;
  }

  .hero-single-image{
    width:100%;
    max-width:820px;
    max-height:calc(100vh - var(--nav-h) - 40px);
  }
}

@media (max-width:860px){
  :root{--nav-h:68px}
  .nav-shell{grid-template-columns:auto auto;justify-content:space-between;height:var(--nav-h)}
  .desktop-nav,.socials{display:none}
  .menu-toggle{display:flex}
  .mobile-nav{max-height:0;overflow:hidden;display:flex;flex-direction:column;background:var(--white);border-top:1px solid transparent;transition:max-height .3s ease,border-color .3s ease}
  .mobile-nav.is-open{max-height:520px;border-top-color:var(--gray-200)}
  .mobile-nav>a,.mobile-products-trigger{display:flex;align-items:center;justify-content:space-between;width:100%;padding:15px 24px;border:0;border-bottom:1px solid var(--gray-200);background:transparent;color:var(--blue);font-size:12px;font-weight:800;letter-spacing:.5px;text-transform:uppercase;text-align:left}
  .mobile-products-list{display:none;background:var(--gray-50)}
  .mobile-products.open .mobile-products-list{display:block}
  .mobile-products-list a{display:block;padding:12px 38px;border-bottom:1px solid var(--gray-200);font-size:11px;font-weight:700;letter-spacing:.4px;text-transform:uppercase;color:var(--blue)}
  .hero-inner{
    grid-template-columns:1fr;
    min-height:auto;
    padding-top:48px;
  }
  .hero-copy{max-width:none}
  .hero h1{font-size:clamp(44px,10vw,68px)}

  .hero-products-single{
    width:100%;
    margin-top:18px;
    justify-content:center;
  }

  .hero-single-image{
    width:100%;
    max-width:760px;
    max-height:none;
    margin:0 auto;
  }
  .story-grid{grid-template-columns:1fr}
  .story-copy{max-width:none}
  .section-heading-row{align-items:start;flex-direction:column}
  .values-header{flex-direction:column;align-items:start}
  .distributor-inner{flex-direction:column;align-items:start}
  .footer-grid{grid-template-columns:repeat(2,1fr);gap:40px 28px}
}

@media (max-width:560px){
  .container{width:min(var(--max),calc(100% - 28px))}
  .brand img{height:34px}
  .hero-inner{padding-top:38px;padding-bottom:34px}
  .hero h1{font-size:clamp(40px,11vw,56px);letter-spacing:-1.8px}
  .hero-lead{font-size:14px;line-height:1.7}
  .hero-actions{flex-direction:column;align-items:stretch}
  .btn{width:100%}

  .hero-products-single{
    margin-top:18px;
  }

  .hero-single-image{
    width:100%;
    max-width:100%;
  }
  .product-categories,.story,.featured{padding:78px 0}
  .section-heading{margin-bottom:30px}
  .section-heading h2,.story-copy h2,.distributor h2{font-size:34px}
  .category-grid,.featured-grid{grid-template-columns:1fr}
  .category-content h3{font-size:24px}
  .story-image-wrap{border-radius:12px}
  .values{padding:76px 0}
  .values-grid{grid-template-columns:1fr 1fr}
  .value-item:nth-child(2){border-right:0}
  .value-item:nth-child(3),.value-item:nth-child(4){border-top:1px solid rgba(255,255,255,.22)}
  .value-item{min-height:132px;padding:22px 16px}
  .value-item strong{font-size:30px}
  .value-item span{font-size:10px}
  .distributor{padding:68px 0}
  .footer-grid{grid-template-columns:1fr;text-align:center}
  .footer-brand p{margin-left:auto;margin-right:auto}
  .footer-socials{align-items:center}
  .floating-call{right:14px;bottom:14px;width:52px;height:52px;padding:0;justify-content:center}
  .floating-call span{display:none}
  .floating-call svg{width:20px;height:20px}
}
