:root {
  --brand-navy: #29266f;
  --brand-navy-dark: #17164d;
  --brand-blue: #1589c7;
  --brand-cyan: #54c7dd;
  --brand-magenta: #de217e;
  --brand-orange: #f6a623;
  --bestway-blue: #0781c2;
  --bestway-navy: #1b2d6b;
  --ink: #171b2f;
  --muted: #687084;
  --line: #e4e7ee;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --surface-blue: #edf7fc;
  --container: 1200px;
  --radius: 28px;
  --shadow: 0 28px 80px rgba(32, 38, 88, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(100%, 830px); }
.section { padding: 112px 0; }
.section-soft { background: var(--surface-soft); }
.centered { text-align: center; }
.centered-action { margin-top: 42px; text-align: center; }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 1000;
  transform: translateY(-160%); background: #fff; color: var(--brand-navy);
  padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.dev-banner {
  min-height: 30px;
  padding: 5px 16px;
  text-align: center;
  background: #111133;
  color: #e7e7ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(228,231,238,.9);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 40px rgba(31, 39, 91, .08); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 86px; height: 68px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 27px; font-size: 14px; font-weight: 760; }
.main-nav > a:not(.button), .nav-dropdown > summary {
  position: relative;
  padding: 32px 0;
  color: #35394c;
  cursor: pointer;
}
.main-nav > a:not(.button)::after, .nav-dropdown > summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-magenta));
  transition: right .2s ease;
}
.main-nav > a:hover::after, .main-nav > a.is-active::after, .nav-dropdown > summary:hover::after, .nav-dropdown > summary.is-active::after { right: 0; }
.main-nav > a.is-active, .nav-dropdown > summary.is-active { color: var(--brand-navy); }
.nav-b2c { color: var(--brand-magenta) !important; }
.nav-dropdown { position: relative; }
.nav-dropdown > summary::before { content: "⌄"; position: absolute; right: -14px; top: 31px; color: #888fa1; font-size: 12px; }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% - 12px);
  left: -32px;
  width: 330px;
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.nav-dropdown:not([open]) .nav-dropdown-panel { display: none; }
.nav-dropdown-panel a { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 14px; padding: 13px; border-radius: 14px; transition: background .2s ease, transform .2s ease; }
.nav-dropdown-panel a:hover { background: var(--surface-soft); transform: translateX(2px); }
.nav-dropdown-panel img { width: 58px; height: 44px; object-fit: contain; }
.nav-dropdown-panel strong, .nav-dropdown-panel small { display: block; }
.nav-dropdown-panel small { margin-top: 2px; color: var(--muted); font-weight: 600; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 12px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--brand-navy); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-navy), #39369a);
  color: #fff;
  font-weight: 820;
  line-height: 1.2;
  box-shadow: 0 14px 28px rgba(41,38,111,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(41,38,111,.22); }
.button-small { min-height: 42px; padding: 10px 17px; font-size: 13px; }
.button-outline { border-color: #cdd2df; background: transparent; color: var(--brand-navy); box-shadow: none; }
.button-outline:hover { background: #fff; border-color: var(--brand-navy); }
.button-light { background: #fff; color: var(--brand-navy); box-shadow: none; }
.button-dark { background: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--brand-navy); font-weight: 820; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.eyebrow { margin: 0 0 16px; color: #c9eff8; font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.dark { color: var(--brand-magenta); }
.bestway-eyebrow, .bestway-label { color: var(--bestway-blue) !important; }
h1, h2, h3 { margin: 0; color: var(--brand-navy); line-height: 1.04; letter-spacing: -.043em; }
h1 { font-size: clamp(48px, 6.4vw, 88px); }
h2 { font-size: clamp(35px, 4vw, 58px); }
h3 { font-size: 29px; }
p { margin: 0 0 1.2em; }

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 89% 13%, rgba(84,199,221,.22), transparent 24%),
    radial-gradient(circle at 72% 84%, rgba(222,33,126,.16), transparent 25%),
    linear-gradient(135deg, #fafbff 0%, #f3f5fb 55%, #edf9fc 100%);
}
.home-hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  left: -360px;
  top: 15%;
  border-radius: 50%;
  border: 90px solid rgba(41,38,111,.045);
}
.home-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 52px; align-items: center; padding: 92px 0 112px; }
.home-hero-copy { position: relative; z-index: 2; }
.home-hero-copy h1 { max-width: 760px; color: var(--brand-navy-dark); }
.hero-lead { max-width: 690px; margin: 28px 0 34px; color: #4d556a; font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-brand-stage { position: relative; min-height: 590px; }
.stage-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(41,38,111,.11); }
.orbit-a { width: 510px; height: 510px; right: 12px; top: 15px; }
.orbit-b { width: 350px; height: 350px; left: 22px; bottom: 18px; border-color: rgba(7,129,194,.15); }
.stage-card {
  position: absolute;
  display: grid;
  align-content: start;
  border-radius: 34px;
  box-shadow: 0 35px 90px rgba(31,37,82,.17);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stage-card:hover { transform: translateY(-8px) rotate(0deg); box-shadow: 0 44px 100px rgba(31,37,82,.22); }
.stage-marbueno {
  z-index: 3;
  width: 340px;
  min-height: 420px;
  right: 250px;
  top: 18px;
  padding: 30px;
  background:
    radial-gradient(circle at 84% 17%, rgba(246,166,35,.8) 0 8%, transparent 8.5%),
    radial-gradient(circle at 12% 88%, rgba(84,199,221,.28) 0 22%, transparent 22.5%),
    linear-gradient(145deg, #29266f, #17164d);
  color: #fff;
  transform: rotate(-3deg);
}
.stage-marbueno img { width: 188px; height: 188px; margin: 20px auto 12px; filter: drop-shadow(0 12px 18px rgba(0,0,0,.14)); }
.stage-bestway {
  z-index: 2;
  width: 325px;
  min-height: 300px;
  right: -8px;
  bottom: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid #dbe5ed;
  color: var(--bestway-navy);
  transform: rotate(3deg);
}
.stage-bestway .stage-kicker {
  justify-self: end;
  text-align: right;
}

.stage-bestway img { width: 260px; height: 154px; margin: 18px auto 12px; object-fit: contain; }
.stage-kicker { font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; opacity: .72; }
.stage-card strong { margin-top: 6px; font-size: 21px; line-height: 1.2; }
.stage-card small { margin-top: 10px; opacity: .75; font-weight: 650; }
.hero-scroll { position: absolute; left: 50%; bottom: 26px; display: flex; align-items: center; gap: 10px; transform: translateX(-50%); color: #788096; font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.hero-scroll span { width: 28px; height: 1px; background: #9da5b6; }

.trust-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-band-grid > div { padding: 29px 27px; border-right: 1px solid var(--line); }
.trust-band-grid > div:last-child { border-right: 0; }
.trust-band strong, .trust-band span { display: block; }
.trust-band strong { color: var(--brand-navy); font-size: 15px; }
.trust-band span { margin-top: 4px; color: var(--muted); font-size: 13px; }

.section-heading { max-width: 850px; margin: 0 auto 52px; }
.section-heading > p:last-child { max-width: 760px; margin: 24px auto 0; color: var(--muted); font-size: 18px; }
.brand-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.brand-showcase {
  position: relative;
  min-height: 650px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  padding: 34px;
  border-radius: 34px;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.brand-showcase:hover { transform: translateY(-7px); }
.brand-showcase::before, .brand-showcase::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.brand-showcase-marbueno { background: linear-gradient(145deg, #29266f, #17164d); color: #fff; }
.brand-showcase-marbueno::before { width: 370px; height: 370px; right: -180px; top: -130px; background: rgba(84,199,221,.16); }
.brand-showcase-marbueno::after { width: 260px; height: 260px; left: -120px; bottom: -120px; background: rgba(222,33,126,.25); }
.brand-showcase-bestway { background: linear-gradient(145deg, #f7fbfe, #e5f5fc); color: var(--bestway-navy); border: 1px solid #d2e8f3; }
.brand-showcase-bestway::before { width: 420px; height: 420px; right: -170px; bottom: -170px; background: rgba(7,129,194,.11); }
.brand-showcase-bestway::after { width: 190px; height: 190px; left: -85px; top: 80px; border: 34px solid rgba(27,45,107,.08); }
.brand-showcase-top { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; opacity: .78; }
.round-arrow { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid currentColor; font-size: 18px; }
.brand-showcase > img { position: relative; z-index: 1; margin: 45px auto; object-fit: contain; }
.brand-showcase-marbueno > img { width: 260px; height: 260px; }
.brand-showcase-bestway > img {
  width: 410px;
  height: 240px;
  max-width: 82%;
  margin: 28px auto;
}
.brand-showcase h3 { position: relative; z-index: 1; max-width: 540px; color: inherit; font-size: 37px; }
.brand-showcase p { position: relative; z-index: 1; max-width: 520px; margin: 18px 0 0; opacity: .78; font-size: 17px; }

.split-heading { display: grid; grid-template-columns: 1.08fr .92fr; align-items: end; gap: 76px; margin-bottom: 46px; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 18px; }
.family-preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.family-banner {
  position: relative;
  min-height: 360px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  padding: 30px;
  border-radius: 29px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(31,37,82,.1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.family-banner:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.family-banner::before, .family-banner::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.family-banner::before { width: 280px; height: 280px; right: -75px; top: -90px; border: 55px solid rgba(255,255,255,.1); }
.family-banner::after { width: 190px; height: 190px; left: -70px; bottom: -95px; background: rgba(255,255,255,.08); }
.family-banner > * { position: relative; z-index: 1; }
.family-brand { justify-self: end; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.family-banner small { font-weight: 900; opacity: .62; }
.family-banner h3 { margin: 13px 0; color: #fff; font-size: 43px; }
.family-banner p { max-width: 470px; opacity: .85; font-size: 16px; }
.family-link { font-weight: 800; }
.family-playa { background: linear-gradient(145deg, #56358d, #de217e); }
.family-jardin { background: linear-gradient(145deg, #255e5a, #4da785); }
.family-piscina { background: linear-gradient(145deg, #0471af, #27b5d4); }
.family-spa { background: linear-gradient(145deg, #243a8b, #7156b7); }

.capability-section { background: #fff; }
.capability-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 80px; align-items: center; }
.capability-copy > p:not(.eyebrow) { margin: 25px 0 29px; color: var(--muted); font-size: 18px; }
.capability-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.capability-cards article { min-height: 245px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface-soft); }
.capability-cards span { color: var(--brand-magenta); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.capability-cards strong { display: block; margin: 56px 0 12px; color: var(--brand-navy); font-size: 21px; }
.capability-cards p { color: var(--muted); }

.professional-section { padding-top: 0; }
.professional-panel { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; padding: 58px; border-radius: 34px; background: linear-gradient(135deg, #29266f, #17164d); color: #fff; }
.professional-panel h2 { max-width: 820px; color: #fff; }
.professional-panel p:not(.eyebrow) { max-width: 760px; margin-top: 20px; color: #d8d8f3; font-size: 18px; }
.professional-actions { min-width: 220px; display: grid; justify-items: center; gap: 12px; }
.professional-actions span { color: #bfc1df; font-size: 12px; font-weight: 750; }

.page-hero { position: relative; overflow: hidden; padding: 128px 0 120px; background: linear-gradient(135deg, #29266f, #17164d); color: #fff; }
.page-hero::before, .page-hero::after { content: ""; position: absolute; border-radius: 50%; }
.page-hero::before { width: 430px; height: 430px; right: -115px; top: -180px; background: rgba(84,199,221,.19); }
.page-hero::after { width: 250px; height: 250px; right: 17%; bottom: -170px; background: rgba(222,33,126,.2); }
.page-hero h1 { position: relative; color: #fff; }
.page-hero p { position: relative; }
.page-hero p:not(.eyebrow) { max-width: 760px; margin-top: 26px; color: #dcdef2; font-size: 20px; }
.page-hero-families { background: linear-gradient(135deg, #1f2d68, #1385bd); }

.brand-hero { position: relative; overflow: hidden; padding: 94px 0 104px; }
.brand-hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 72px; align-items: center; }
.brand-hero h1 { margin-top: 20px; font-size: clamp(48px, 5.6vw, 78px); }
.brand-hero p:not(.eyebrow) { max-width: 650px; margin-top: 26px; font-size: 20px; }
.brand-hero-logo { object-fit: contain; }
.marbueno-hero-logo { width: 165px; height: 165px; }
.bestway-hero-logo { width: 250px; height: 145px; }
.brand-hero-marbueno { background: linear-gradient(145deg, #29266f, #17164d); color: #fff; }
.brand-hero-marbueno h1 { color: #fff; }
.brand-hero-marbueno p:not(.eyebrow) { color: #d8d8f1; }
.brand-hero-bestway { background: linear-gradient(145deg, #f7fcff, #e7f6fd); color: var(--bestway-navy); }
.brand-hero-bestway h1 { color: var(--bestway-navy); }
.brand-hero-bestway p:not(.eyebrow) { color: #496176; }
.brand-hero-visual { min-height: 530px; border-radius: 34px; }
.placeholder-visual { position: relative; display: grid; place-content: center; text-align: center; overflow: hidden; border: 1px dashed rgba(255,255,255,.36); }
.placeholder-visual::before, .placeholder-visual::after { content: ""; position: absolute; border-radius: 50%; }
.placeholder-visual::before { width: 390px; height: 390px; right: -110px; top: -115px; border: 70px solid rgba(255,255,255,.1); }
.placeholder-visual::after { width: 260px; height: 260px; left: -90px; bottom: -120px; background: rgba(255,255,255,.08); }
.placeholder-visual span, .placeholder-visual small { position: relative; z-index: 1; }
.placeholder-visual span { font-size: 22px; font-weight: 850; }
.placeholder-visual small { margin-top: 8px; opacity: .68; }
.placeholder-marbueno { background: linear-gradient(145deg, rgba(222,33,126,.45), rgba(84,199,221,.22)); color: #fff; }
.placeholder-bestway { border-color: rgba(7,129,194,.35); background: linear-gradient(145deg, #cceefa, #f4fbfe); color: var(--bestway-navy); }

.editorial-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 88px; align-items: start; }
.prose { color: #4e566a; font-size: 18px; }
.prose h1 { margin-bottom: 34px; }
.prose h2 { margin: 42px 0 16px; font-size: 30px; }
.prose a { color: var(--brand-navy); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.brand-families { display: grid; gap: 2px; background: #fff; }
.brand-family-row { position: relative; overflow: hidden; min-height: 335px; display: grid; align-items: center; color: #fff; }
.brand-family-row::before, .brand-family-row::after { content: ""; position: absolute; border-radius: 50%; transition: transform .4s ease; }
.brand-family-row::before { width: 440px; height: 440px; right: 3%; top: -210px; border: 78px solid rgba(255,255,255,.11); }
.brand-family-row::after { width: 280px; height: 280px; right: 22%; bottom: -210px; background: rgba(255,255,255,.07); }
.brand-family-row:hover::before { transform: translate(-18px, 14px); }
.brand-family-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 80px 1fr auto; gap: 34px; align-items: center; }
.family-sequence { font-size: 12px; font-weight: 900; letter-spacing: .16em; opacity: .55; }
.brand-family-inner p { margin: 0 0 8px; font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.brand-family-inner h2 { color: #fff; font-size: clamp(44px, 5.2vw, 72px); }
.brand-family-inner div > span { display: block; margin-top: 14px; opacity: .78; font-size: 16px; }
.brand-family-inner strong { justify-self: end; font-size: 15px; }
.family-row-playa { background: linear-gradient(110deg, #56358d, #de217e); }
.family-row-jardin { background: linear-gradient(110deg, #275f5a, #4fa684); }
.family-row-mobiliario { background: linear-gradient(110deg, #1d4777, #3e86b4); }
.family-row-hogar { background: linear-gradient(110deg, #a94d22, #f09a38); }
.family-row-piscinas { background: linear-gradient(110deg, #056ca7, #29b7d7); }
.family-row-spas { background: linear-gradient(110deg, #263984, #7158b8); }
.family-row-hinchables { background: linear-gradient(110deg, #0e88b9, #4ed1c2); }
.family-row-descanso { background: linear-gradient(110deg, #303f79, #7890cb); }
.family-row-acuatico { background: linear-gradient(110deg, #075c8f, #117fb2); }

.professional-callout { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 48px; border-radius: 30px; background: linear-gradient(135deg, #eef8fc, #f8edf5); border: 1px solid #d5e6ed; }
.professional-callout h2 { max-width: 820px; }
.professional-callout p:not(.eyebrow) { max-width: 760px; margin-top: 18px; color: var(--muted); }
.callout-actions { display: grid; gap: 12px; justify-items: center; min-width: 210px; }
.bestway-callout { background: linear-gradient(135deg, #edf8fd, #f8fbfd); }

.brand-directory { display: grid; gap: 36px; }
.brand-directory-head { display: grid; grid-template-columns: 120px 1fr auto; gap: 30px; align-items: center; }
.brand-directory-head img { width: 104px; height: 104px; object-fit: contain; }
.bestway-directory-head img { width: 165px; height: 100px; }
.brand-directory-head .eyebrow { margin-bottom: 7px; }
.directory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.directory-grid a { min-height: 260px; padding: 26px; border-radius: 24px; transition: transform .2s ease, box-shadow .2s ease; }
.directory-grid a:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.directory-grid span { font-size: 12px; font-weight: 900; letter-spacing: .15em; opacity: .55; }
.directory-grid h3 { margin: 74px 0 12px; color: inherit; }
.directory-grid p { opacity: .72; }
.marbueno-directory a { background: linear-gradient(145deg, #29266f, #1c1a55); color: #fff; }
.marbueno-directory a:nth-child(2) { background: linear-gradient(145deg, #2b655e, #4da380); }
.marbueno-directory a:nth-child(3) { background: linear-gradient(145deg, #274c7e, #3d80ad); }
.marbueno-directory a:nth-child(4) { background: linear-gradient(145deg, #a95329, #ec993c); }
.bestway-directory { grid-template-columns: repeat(5, 1fr); }
.bestway-directory a { background: #fff; border: 1px solid #cde4ef; color: var(--bestway-navy); }
.bestway-directory a:nth-child(even) { background: #eaf7fc; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.values-grid article { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.values-grid article > span { color: var(--brand-magenta); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.values-grid h2 { margin: 40px 0 14px; font-size: 28px; }
.values-grid p { color: var(--muted); }
.no-photo-story { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
.no-photo-visual { min-height: 520px; display: grid; place-content: center; text-align: center; border: 1px dashed #bdc5d3; border-radius: 30px; background: linear-gradient(145deg, #f4f5fa, #e9edf5); color: var(--brand-navy); }
.no-photo-visual span { font-size: 22px; font-weight: 850; }
.no-photo-visual small { max-width: 340px; margin: 10px auto 0; color: var(--muted); }
.no-photo-story > div:last-child > p:not(.eyebrow) { margin: 24px 0 28px; color: var(--muted); font-size: 18px; }

.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; align-items: start; }
.contact-intro > p:not(.eyebrow) { margin-top: 22px; color: var(--muted); font-size: 18px; }
.contact-card { display: grid; gap: 8px; margin-top: 34px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface-soft); color: var(--muted); }
.contact-card strong { color: var(--brand-navy); }
.contact-card a { color: var(--brand-navy); font-weight: 760; }
.form-card { padding: 38px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid label { display: grid; gap: 7px; color: #354156; font-size: 14px; font-weight: 760; }
.form-grid .full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid #cdd6df; border-radius: 12px; background: #fff; color: var(--ink); padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s; }
input:focus, select:focus, textarea:focus { border-color: var(--brand-cyan); box-shadow: 0 0 0 4px rgba(84,199,221,.14); }
textarea { resize: vertical; min-height: 130px; }
.checkbox { grid-template-columns: auto 1fr !important; align-items: start; gap: 10px !important; font-weight: 500 !important; }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; }
.checkbox a { color: var(--brand-navy); text-decoration: underline; }
.form-card .button { margin-top: 24px; border: 0; }
.form-errors, .form-success { margin-bottom: 24px; padding: 16px 18px; border-radius: 14px; }
.form-errors { background: #fff0f2; color: #8b2332; border: 1px solid #f0bdc4; }
.form-errors ul { margin-bottom: 0; }
.form-success { display: grid; gap: 3px; background: #eaf8ef; color: #225e36; border: 1px solid #b9e1c6; }
.hp-field { position: absolute !important; left: -10000px !important; }

.prose-page { color: #465267; font-size: 18px; }
.prose-page h1 { margin-bottom: 34px; }
.prose-page h2 { margin: 42px 0 16px; font-size: 30px; }
.prose-page a { color: var(--brand-navy); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.legal-page { min-height: 60vh; }
.not-found { min-height: 65vh; display: grid; align-items: center; }
.not-found p:not(.eyebrow) { margin: 24px 0 30px; color: var(--muted); font-size: 20px; }

.site-footer { padding: 74px 0 24px; background: #11112d; color: #bfc2d7; }
.footer-brand-row { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.11); }
.footer-brand-row > div:first-child { display: flex; align-items: center; gap: 22px; }
.footer-brand-row > div:first-child p { max-width: 390px; margin: 0; color: #aeb3cc; }
.footer-logo { width: 80px; height: 80px; object-fit: contain; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand-lockup { display: flex; align-items: center; gap: 24px; padding: 12px 18px; border-radius: 20px; background: rgba(255,255,255,.06); }
.footer-brand-lockup span { width: 1px; height: 42px; background: rgba(255,255,255,.15); }
.footer-brand-lockup img { width: 92px; height: 54px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; padding-top: 48px; }
.footer-grid h2 { margin-bottom: 18px; color: #fff; font-size: 16px; letter-spacing: 0; }
.footer-grid > div { display: grid; align-content: start; gap: 10px; }
.footer-grid a:hover { color: #fff; }
.muted-link { color: #707794; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }

@media (max-width: 1120px) {
  .main-nav { gap: 20px; }
  .main-nav > a:not(.button), .nav-dropdown > summary { font-size: 13px; }
  .home-hero-grid { grid-template-columns: .95fr 1.05fr; }
  .stage-marbueno { right: 155px; }
  .capability-grid, .editorial-grid, .contact-layout, .no-photo-story { gap: 52px; }
  .bestway-directory { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 950px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 118px 18px auto;
    display: none;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 138px);
    overflow: auto;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .main-nav > a:not(.button), .nav-dropdown > summary { padding: 14px 10px; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.button)::after, .nav-dropdown > summary::after, .nav-dropdown > summary::before { display: none; }
  .nav-dropdown-panel { position: static; width: auto; padding: 8px 0 10px; border: 0; border-radius: 0; box-shadow: none; }
  .nav-dropdown-panel a { background: var(--surface-soft); }
  .main-nav .button { margin-top: 14px; }
  .home-hero-grid, .brand-hero-grid, .capability-grid, .editorial-grid, .contact-layout, .no-photo-story { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; }
  .home-hero-grid { padding-top: 80px; }
  .home-hero-copy { text-align: center; }
  .home-hero-copy h1, .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-brand-stage { width: min(100%, 620px); margin: 0 auto; }
  .trust-band-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-band-grid > div:nth-child(2) { border-right: 0; }
  .trust-band-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .brand-showcase { min-height: 580px; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .capability-copy { max-width: 760px; }
  .professional-panel, .professional-callout { grid-template-columns: 1fr; }
  .professional-actions, .callout-actions { justify-items: start; }
  .brand-hero-grid { gap: 44px; }
  .brand-hero-visual { min-height: 420px; }
  .brand-family-inner { grid-template-columns: 54px 1fr; }
  .brand-family-inner strong { grid-column: 2; justify-self: start; }
  .directory-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .header-inner { min-height: 72px; }
  .brand img { width: 70px; height: 56px; }
  .main-nav { inset: 102px 12px auto; }
  .home-hero-grid { padding: 68px 0 95px; }
  .home-hero h1 { font-size: 49px; }
  .hero-lead { font-size: 18px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-brand-stage { min-height: 525px; }
  .stage-marbueno { width: 280px; min-height: 355px; right: 72px; padding: 24px; }
  .stage-marbueno img { width: 145px; height: 145px; }
  .stage-bestway { width: 255px; min-height: 245px; right: -4px; padding: 22px; }
  .stage-bestway img { width: 205px; height: 121px; margin: 14px auto 10px; }
  .stage-card strong { font-size: 17px; }
  .orbit-a { width: 420px; height: 420px; right: -80px; }
  .orbit-b { width: 280px; height: 280px; left: -15px; }
  .trust-band-grid { grid-template-columns: 1fr; }
  .trust-band-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .brand-showcase-grid, .family-preview-grid, .capability-cards, .directory-grid, .bestway-directory, .values-grid, .form-grid { grid-template-columns: 1fr; }
  .brand-showcase { min-height: 530px; padding: 27px; }
  .brand-showcase h3 { font-size: 32px; }
  .family-banner { min-height: 310px; padding: 25px; }
  .family-banner h3 { font-size: 37px; }
  .professional-panel, .professional-callout { padding: 30px 24px; }
  .page-hero { padding: 94px 0 88px; }
  .page-hero h1 { font-size: 47px; }
  .page-hero p:not(.eyebrow) { font-size: 18px; }
  .brand-hero { padding: 74px 0 80px; }
  .brand-hero h1 { font-size: 47px; }
  .brand-hero p:not(.eyebrow) { font-size: 18px; }
  .brand-hero-visual { min-height: 350px; }
  .brand-family-row { min-height: 305px; }
  .brand-family-inner { grid-template-columns: 1fr; gap: 17px; }
  .brand-family-inner strong { grid-column: 1; }
  .brand-family-inner h2 { font-size: 43px; }
  .brand-directory-head { grid-template-columns: 88px 1fr; }
  .brand-directory-head > a { grid-column: 1 / -1; }
  .brand-directory-head img { width: 80px; height: 80px; }
  .bestway-directory-head img { width: 100px; height: 68px; }
  .directory-grid a { min-height: 230px; }
  .contact-layout { gap: 36px; }
  .form-card { padding: 24px; }
  .form-grid .full { grid-column: auto; }
  .footer-brand-row { align-items: flex-start; flex-direction: column; }
  .footer-brand-row > div:first-child { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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

/* V2.1 · Fichas de familia */
.family-detail-hero { position: relative; overflow: hidden; color: #fff; padding: clamp(78px, 9vw, 132px) 0; }
.family-detail-hero::before,
.family-detail-hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.family-detail-hero::before { width: 580px; height: 580px; right: -110px; top: -300px; border: 92px solid rgba(255,255,255,.1); }
.family-detail-hero::after { width: 330px; height: 330px; left: 38%; bottom: -260px; background: rgba(255,255,255,.08); }
.family-detail-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr); gap: 70px; align-items: center; }
.family-detail-hero h1 { color: #fff; font-size: clamp(58px, 8vw, 106px); line-height: .93; margin: 20px 0 26px; }
.family-detail-lead { max-width: 760px; font-size: clamp(19px, 2vw, 25px); line-height: 1.55; opacity: .9; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-bottom: 42px; font-size: 13px; font-weight: 750; opacity: .84; }
.breadcrumbs a { color: inherit; }
.family-detail-brand { min-height: 270px; display: grid; place-items: center; align-content: center; gap: 18px; padding: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 30px; background: rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.family-detail-brand img { max-width: 220px; max-height: 145px; object-fit: contain; filter: drop-shadow(0 15px 24px rgba(0,0,0,.15)); }
.family-detail-brand span { font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; opacity: .66; }
.family-detail-playa { background: linear-gradient(115deg, #56358d 0%, #de217e 75%, #ef6ca9 100%); }
.family-detail-jardin { background: linear-gradient(115deg, #1e504e 0%, #4fa684 78%, #7ec6a4 100%); }
.family-detail-mobiliario { background: linear-gradient(115deg, #173b66 0%, #3e86b4 78%, #78bad7 100%); }
.family-detail-hogar { background: linear-gradient(115deg, #963f1d 0%, #f09a38 78%, #ffc26c 100%); }
.family-detail-piscinas { background: linear-gradient(115deg, #045f96 0%, #29b7d7 78%, #74d8e7 100%); }
.family-detail-spas { background: linear-gradient(115deg, #263984 0%, #7158b8 78%, #a592dc 100%); }
.family-detail-hinchables { background: linear-gradient(115deg, #087ba9 0%, #42cbbd 78%, #8ae8dc 100%); }
.family-detail-descanso { background: linear-gradient(115deg, #2c396d 0%, #7890cb 78%, #b1bde2 100%); }
.family-detail-acuatico { background: linear-gradient(115deg, #064e7b 0%, #117fb2 78%, #55b5db 100%); }
.family-detail-intro { align-items: start; }
.subfamily-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.subfamily-card { min-height: 230px; padding: 28px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 30px rgba(24, 34, 61, .05); }
.subfamily-card > span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 11px; font-weight: 900; }
.subfamily-card h3 { margin: 34px 0 12px; font-size: 25px; }
.subfamily-card p { color: var(--muted); }
.catalog-preview-panel { display: grid; grid-template-columns: minmax(0, 1.3fr) auto; gap: 38px; align-items: center; padding: clamp(34px, 5vw, 62px); border-radius: 30px; background: #f3f5fa; border: 1px solid var(--line); }
.catalog-preview-panel h2 { max-width: 760px; }
.catalog-preview-panel p { max-width: 760px; color: var(--muted); }
.catalog-preview-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

@media (max-width: 900px) {
  .family-detail-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .family-detail-brand { min-height: 210px; }
  .subfamily-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-preview-panel { grid-template-columns: 1fr; }
  .catalog-preview-actions { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .family-detail-hero { padding: 62px 0; }
  .family-detail-hero h1 { font-size: 53px; }
  .breadcrumbs { margin-bottom: 28px; }
  .subfamily-grid { grid-template-columns: 1fr; }
  .subfamily-card { min-height: 200px; }
}


/* ==========================================================
   MARBUENO CORPORATIVA V2.3 - REAL PHOTOS
   ========================================================== */

.brand-hero-photo{
    position:relative;
    overflow:hidden;
    min-height:530px;

    border-radius:34px;

    background:#eef1f5;

    box-shadow:
        0 24px 65px
        rgba(22,35,57,.14);
}


.brand-hero-photo img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
    object-position:center;
}


.brand-hero-photo::after{
    content:"";

    position:absolute;
    inset:0;

    pointer-events:none;

    background:
        linear-gradient(
            180deg,
            rgba(17,24,39,0) 55%,
            rgba(17,24,39,.12) 100%
        );
}


.brand-hero-photo-bestway img{
    object-position:center 48%;
}


.company-photo{
    position:relative;

    min-height:520px;

    overflow:hidden;

    border-radius:30px;

    background:#eef1f5;

    box-shadow:
        0 22px 58px
        rgba(22,35,57,.12);
}


.company-photo img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
    object-position:center;
}


@media(max-width:900px){

    .brand-hero-photo{
        min-height:420px;
    }

    .company-photo{
        min-height:430px;
    }

}


@media(max-width:620px){

    .brand-hero-photo{
        min-height:350px;
        border-radius:24px;
    }

    .company-photo{
        min-height:360px;
        border-radius:24px;
    }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.3.6 - HERO MOBILE
   ========================================================== */

@media(max-width:620px){

  .home-hero .hero-brand-stage{
    min-height:610px;
  }


  /*
   * MARBUENO continúa siendo protagonista,
   * pero deja visible la zona derecha de Bestway.
   */

  .home-hero .stage-marbueno{
    left:-4px;
    right:auto;
    top:34px;

    width:250px;
    min-height:340px;

    padding:22px;

    transform:rotate(-2deg);

    z-index:3;
  }


  .home-hero .stage-marbueno img{
    width:138px;
    height:138px;

    margin:16px auto 9px;
  }


  /*
   * BESTWAY permanece detrás pero con
   * etiqueta y logo completamente reconocibles.
   */

  .home-hero .stage-bestway{
    left:auto;
    right:-2px;
    bottom:22px;

    width:245px;
    min-height:268px;

    padding:20px;

    transform:rotate(2deg);

    z-index:2;
  }


  .home-hero
  .stage-bestway
  .stage-kicker{
    justify-self:end;
    text-align:right;
  }


  .home-hero .stage-bestway img{
    justify-self:end;

    width:190px;
    height:112px;

    margin:11px 0 8px;

    object-fit:contain;
  }


  .home-hero .stage-card strong{
    font-size:16px;
  }


  .home-hero .stage-card small{
    font-size:11px;
  }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.3.8 - FOOTER BESTWAY
   ========================================================== */

.site-footer
.footer-brand-lockup
a[href="/marca-bestway.php"]{

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;

    background:transparent;
    border:0;
    border-radius:0;
}


.site-footer
.footer-brand-lockup
a[href="/marca-bestway.php"]
img{

    width:138px !important;
    height:auto !important;

    max-width:none !important;

    opacity:1 !important;

    filter:none !important;

    display:block;
}


@media(max-width:620px){

    .site-footer
    .footer-brand-lockup
    a[href="/marca-bestway.php"]
    img{

        width:122px !important;
    }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.3.9 - FOOTER MARBUENO
   ========================================================== */

.site-footer
.footer-brand-lockup
a[href="/marca-marbueno.php"]{

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;

    background:transparent;
    border:0;
    border-radius:0;
}


.site-footer
.footer-brand-lockup
a[href="/marca-marbueno.php"]
img{

    width:74px !important;
    height:auto !important;

    max-width:none !important;

    opacity:1 !important;

    filter:none !important;

    display:block;
}


@media(max-width:620px){

    .site-footer
    .footer-brand-lockup
    a[href="/marca-marbueno.php"]
    img{

        width:66px !important;
    }

}


/* MARBUENO CORPORATIVA V2.4.3 - HERO PLAYA REAL */
.family-detail-brand-photo{
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  gap: 0;
  align-content: stretch;
  place-items: stretch;
  background: rgba(255,255,255,.10);
}

.family-detail-brand-photo img{
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: none;
}

@media (max-width: 980px){
  .family-detail-brand-photo{
    min-height: 340px;
  }
}

@media (max-width: 640px){
  .family-detail-brand-photo{
    min-height: 250px;
  }
}


/* ==========================================================
   MARBUENO CORPORATIVA V2.4.4 - PLAYA HERO SIZE
   ========================================================== */

@media (min-width: 981px){

  .family-detail-playa
  .family-detail-hero-grid{
    grid-template-columns:
      minmax(0, 1.05fr)
      minmax(480px, .95fr);

    gap: 46px;
  }


  .family-detail-playa
  .family-detail-brand-photo{
    width: 100%;
    min-height: 455px;
  }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.4.5 - PLAYA HERO LARGE
   ========================================================== */

@media (min-width: 981px){

  .family-detail-playa
  .family-detail-hero-grid{
    grid-template-columns:
      minmax(0, .82fr)
      minmax(0, 1.18fr);

    gap: 32px;
    align-items: center;
  }


  .family-detail-playa
  .family-detail-brand-photo{
    width: 100%;
    max-width: 660px;
    min-height: 500px;

    justify-self: center;
    align-self: center;

    margin: 0 auto;
  }


  .family-detail-playa
  .family-detail-brand-photo img{
    width: 100%;
    height: 500px;

    object-fit: cover;
    object-position: 50% 50%;
  }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.4.6 - PLAYA HERO XL
   ========================================================== */

@media (min-width: 981px){

  .family-detail-playa{
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .family-detail-playa
  .family-detail-hero-grid{
    grid-template-columns:
      minmax(360px, .68fr)
      minmax(620px, 1.32fr);

    gap: 26px;
    align-items: center;
  }

  .family-detail-playa
  .family-detail-brand-photo{
    width: calc(100% + 65px);
    max-width: none;
    height: 570px;
    min-height: 570px;

    justify-self: end;
    align-self: center;

    margin: 0 -25px 0 0;
  }

  .family-detail-playa
  .family-detail-brand-photo img{
    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    object-fit: cover;
    object-position: center center;
  }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.4.7 - PLAYA HERO FULL
   ========================================================== */

@media (min-width: 981px){

  .family-detail-playa{
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .family-detail-playa
  .family-detail-hero-grid{
    grid-template-columns:
      minmax(350px, .62fr)
      minmax(0, 1.38fr);

    gap: 0;
    align-items: center;
  }

  .family-detail-playa
  .family-detail-brand-photo{
    width: calc(100% + 145px);
    max-width: none;

    height: 610px;
    min-height: 610px;

    margin: 0 -105px 0 -20px;

    justify-self: stretch;
    align-self: center;

    padding: 0;

    border: 0;
    border-radius: 0;

    background: transparent;
    backdrop-filter: none;

    overflow: hidden;
  }

  .family-detail-playa
  .family-detail-brand-photo img{
    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    object-fit: cover;
    object-position: 50% 50%;

    border: 0;
    border-radius: 0;

    filter: none;

    display: block;
  }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.4.8 - PLAYA HERO QUARTER
   ========================================================== */

@media (min-width: 981px){

  .family-detail-playa{
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .family-detail-playa .family-detail-hero-grid{
    grid-template-columns:
      minmax(0, 1.7fr)
      minmax(260px, .55fr);
    gap: 46px;
    align-items: center;
  }

  .family-detail-playa .family-detail-brand-photo{
    width: 100%;
    max-width: 340px;
    min-height: 280px;
    height: 280px;

    justify-self: center;
    align-self: center;
    margin: 0 auto;

    padding: 14px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 28px;

    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);

    overflow: hidden;
  }

  .family-detail-playa .family-detail-brand-photo img{
    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    object-fit: contain;
    object-position: center center;

    border-radius: 18px;
    display: block;
    filter: none;
    background: transparent;
  }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.4.9 - PLAYA HERO RECTANGULAR
   ========================================================== */

@media (min-width: 981px){

  .family-detail-playa
  .family-detail-hero-grid{
    grid-template-columns:
      minmax(0, 1.7fr)
      minmax(320px, .58fr);

    gap: 46px;
    align-items: center;
  }


  .family-detail-playa
  .family-detail-brand-photo{

    width: 100%;
    max-width: 390px;

    height: auto;
    min-height: 0;

    aspect-ratio: 1400 / 740;

    justify-self: center;
    align-self: center;

    margin: 0 auto;
    padding: 0;

    border: 1px solid rgba(255,255,255,.28);
    border-radius: 26px;

    background: transparent;
    backdrop-filter: none;

    overflow: hidden;
  }


  .family-detail-playa
  .family-detail-brand-photo img{

    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center center;

    display: block;

    border: 0;
    border-radius: 0;

    background: transparent;
    filter: none;
  }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.5.0 - PLAYA HERO RECT PLUS
   ========================================================== */

@media (min-width: 981px){

  .family-detail-playa .family-detail-hero-grid{
    grid-template-columns:
      minmax(0, 1.55fr)
      minmax(380px, .72fr);

    gap: 52px;
    align-items: center;
  }

  .family-detail-playa .family-detail-brand-photo{
    width: 100%;
    max-width: 460px;

    aspect-ratio: 1400 / 740;

    justify-self: center;
    align-self: center;

    margin: 0 auto;
  }

  .family-detail-playa .family-detail-brand-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.5.8 - JARDIN HERO
   ========================================================== */

@media (min-width: 981px){

  .family-detail-jardin
  .family-detail-hero-grid{
    grid-template-columns:
      minmax(0, 1.55fr)
      minmax(380px, .72fr);

    gap: 52px;
    align-items: center;
  }


  .family-detail-jardin
  .family-detail-brand-photo{

    width: 100%;
    max-width: 460px;

    height: auto;
    min-height: 0;

    aspect-ratio: 16 / 9;

    justify-self: center;
    align-self: center;

    margin: 0 auto;
    padding: 0;

    border: 1px solid rgba(255,255,255,.28);
    border-radius: 26px;

    background: transparent;
    backdrop-filter: none;

    overflow: hidden;
  }


  .family-detail-jardin
  .family-detail-brand-photo img{

    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center center;

    display: block;

    border: 0;
    border-radius: 0;

    background: transparent;
    filter: none;
  }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.5.8.1 - JARDIN HERO AJUSTE FINO
   ========================================================== */

@media (min-width: 981px){

  .family-detail-jardin .family-detail-hero-grid{
    grid-template-columns:
      minmax(0, 1.46fr)
      minmax(460px, .84fr);
    gap: 56px;
    align-items: center;
  }

  .family-detail-jardin .family-detail-brand-photo{
    width: 100%;
    max-width: 540px;
    aspect-ratio: 16 / 9;
    justify-self: center;
    align-self: center;
  }

  .family-detail-jardin .family-detail-brand-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}


/* ==========================================================
   MARBUENO CORPORATIVA V2.6.5 - MOBILIARIO HERO
   ========================================================== */

@media (min-width: 981px){

  .family-detail-mobiliario .family-detail-hero-grid{
    grid-template-columns:
      minmax(0, 1.46fr)
      minmax(460px, .84fr);

    gap: 56px;
    align-items: center;
  }

  .family-detail-mobiliario .family-detail-brand-photo{
    width: 100%;
    max-width: 540px;

    height: auto;
    min-height: 0;

    aspect-ratio: 16 / 9;

    justify-self: center;
    align-self: center;

    margin: 0 auto;
    padding: 0;

    border: 1px solid rgba(255,255,255,.28);
    border-radius: 26px;

    background: transparent;
    backdrop-filter: none;

    overflow: hidden;
  }

  .family-detail-mobiliario .family-detail-brand-photo img{
    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center center;

    display: block;

    border: 0;
    border-radius: 0;
    background: transparent;
    filter: none;
  }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.6.9 - HOGAR HERO
   ========================================================== */

@media (min-width: 981px){

  .family-detail-hogar .family-detail-hero-grid{
    grid-template-columns:
      minmax(0, 1.46fr)
      minmax(460px, .84fr);

    gap: 56px;
    align-items: center;
  }

  .family-detail-hogar .family-detail-brand-photo{
    width: 100%;
    max-width: 540px;

    height: auto;
    min-height: 0;

    aspect-ratio: 16 / 9;

    justify-self: center;
    align-self: center;

    margin: 0 auto;
    padding: 0;

    border: 1px solid rgba(255,255,255,.28);
    border-radius: 26px;

    background: transparent;
    backdrop-filter: none;

    overflow: hidden;
  }

  .family-detail-hogar .family-detail-brand-photo img{
    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center center;

    display: block;

    border: 0;
    border-radius: 0;

    background: transparent;
    filter: none;
  }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.7.3 - BESTWAY HERO SIZE
   ========================================================== */

@media (min-width: 981px){

    .brand-hero-bestway .brand-hero-grid{
        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(520px, 1.05fr);

        gap: 72px;
        align-items: center;
    }

    .brand-hero-bestway .brand-hero-photo-bestway{
        width: 100%;
        max-width: 570px;

        height: auto;
        aspect-ratio: 4 / 3;

        justify-self: center;
        align-self: center;

        margin: 0 auto;
        padding: 0;

        border-radius: 28px;
        overflow: hidden;
    }

    .brand-hero-bestway .brand-hero-photo-bestway img{
        width: 100%;
        height: 100%;

        max-width: none;
        max-height: none;

        display: block;

        object-fit: cover;
        object-position: center 42%;

        border-radius: 0;
    }

}


/* Ajuste tablet */
@media (min-width: 761px) and (max-width: 980px){

    .brand-hero-bestway .brand-hero-photo-bestway{
        width: 100%;
        max-width: 560px;
        aspect-ratio: 4 / 3;
        margin-inline: auto;
        overflow: hidden;
    }

    .brand-hero-bestway .brand-hero-photo-bestway img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 42%;
    }

}


/* Móvil: imagen panorámica sin bloque gigantesco */
@media (max-width: 760px){

    .brand-hero-bestway .brand-hero-photo-bestway{
        width: 100%;
        min-height: 0;
        height: auto;

        aspect-ratio: 4 / 3;

        padding: 0;
        margin-top: 28px;

        border-radius: 22px;
        overflow: hidden;
    }

    .brand-hero-bestway .brand-hero-photo-bestway img{
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center 42%;

        display: block;
    }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.7.4 - BESTWAY HORIZONTAL NATURAL
   ========================================================== */

@media (min-width: 981px){

    .brand-hero-bestway .brand-hero-grid{
        grid-template-columns:
            minmax(0, 1fr)
            minmax(540px, 1fr);

        gap: 68px;
        align-items: center;
    }

    .brand-hero-bestway .brand-hero-photo-bestway{
        width: 100%;
        max-width: 650px;

        min-height: 0 !important;
        height: auto !important;
        aspect-ratio: auto !important;

        justify-self: center;
        align-self: center;

        margin: 0 auto;
        padding: 0 !important;

        background: transparent !important;
        box-shadow: none !important;

        border-radius: 26px;
        overflow: hidden;
    }

    .brand-hero-bestway .brand-hero-photo-bestway img{
        width: 100% !important;
        height: auto !important;

        max-width: none;
        max-height: none;

        display: block;

        object-fit: contain !important;
        object-position: center center !important;

        margin: 0;
        padding: 0;

        border-radius: 0;
    }

}


@media (max-width: 980px){

    .brand-hero-bestway .brand-hero-photo-bestway{
        width: 100%;
        max-width: 650px;

        min-height: 0 !important;
        height: auto !important;
        aspect-ratio: auto !important;

        margin: 30px auto 0;
        padding: 0 !important;

        background: transparent !important;
        box-shadow: none !important;

        border-radius: 22px;
        overflow: hidden;
    }

    .brand-hero-bestway .brand-hero-photo-bestway img{
        width: 100% !important;
        height: auto !important;

        object-fit: contain !important;
        object-position: center center !important;

        display: block;
    }

}


/* ==========================================================
   MARBUENO CORPORATIVA V2.7.5 - BESTWAY FOTO VISIBLE
   ========================================================== */

.brand-hero-bestway .brand-hero-photo-bestway{
    display: block !important;
    position: relative !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    aspect-ratio: auto !important;

    padding: 0 !important;
    margin: 0 auto !important;

    background: transparent !important;

    opacity: 1 !important;
    visibility: visible !important;

    overflow: hidden !important;
}


.brand-hero-bestway .brand-hero-photo-bestway img{
    display: block !important;

    position: static !important;
    inset: auto !important;

    width: 100% !important;
    height: auto !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: 100% !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: center center !important;

    transform: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    z-index: auto !important;
}


/* DESKTOP */
@media (min-width: 981px){

    .brand-hero-bestway .brand-hero-grid{
        grid-template-columns:
            minmax(0, .92fr)
            minmax(0, 1.08fr) !important;

        gap: 64px !important;
        align-items: center !important;
    }

    .brand-hero-bestway .brand-hero-photo-bestway{
        max-width: 700px !important;
        justify-self: end !important;

        border-radius: 28px !important;
    }

    .brand-hero-bestway .brand-hero-photo-bestway img{
        border-radius: 28px !important;
    }

}


/* TABLET Y MOVIL */
@media (max-width: 980px){

    .brand-hero-bestway .brand-hero-photo-bestway{
        max-width: 720px !important;
        margin: 30px auto 0 !important;

        border-radius: 22px !important;
    }

    .brand-hero-bestway .brand-hero-photo-bestway img{
        border-radius: 22px !important;
    }

}
.family-row-piscinas{background-image:linear-gradient(90deg,rgba(3,58,91,.94) 0%,rgba(3,74,111,.78) 38%,rgba(3,92,130,.25) 72%,rgba(3,92,130,.08) 100%),url('/assets/img/bestway-piscinas.webp');background-size:cover;background-position:center 53%;}
.family-row-spas{background-image:linear-gradient(90deg,rgba(28,37,82,.94) 0%,rgba(39,50,101,.78) 38%,rgba(55,66,119,.25) 72%,rgba(55,66,119,.08) 100%),url('/assets/img/bestway-spa.webp');background-size:cover;background-position:center 52%;}
.family-row-hinchables{background-image:linear-gradient(90deg,rgba(4,79,108,.94) 0%,rgba(5,103,133,.77) 38%,rgba(8,137,147,.22) 72%,rgba(8,137,147,.06) 100%),url('/assets/img/bestway-hinchables.webp');background-size:cover;background-position:center 55%;}
.family-row-descanso{background-image:linear-gradient(90deg,rgba(39,48,88,.94) 0%,rgba(49,61,107,.78) 38%,rgba(70,81,128,.24) 72%,rgba(70,81,128,.07) 100%),url('/assets/img/bestway-colchones.webp');background-size:cover;background-position:center 51%;}
.family-row-acuatico{background-image:linear-gradient(90deg,rgba(3,61,91,.94) 0%,rgba(4,82,116,.77) 38%,rgba(6,108,143,.22) 72%,rgba(6,108,143,.06) 100%),url('/assets/img/bestway-paddle.webp');background-size:cover;background-position:center 52%;}
.brand-family-row.bestway-family{min-height:402px;}
.family-detail-bestway .family-detail-hero-grid{grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);gap:48px}.family-detail-bestway .family-detail-brand-photo{width:100%;max-width:none}
