/* ===== FONTS ===== */
@font-face{font-family:'Versus';src:url('../fonts/Versus-Regular.otf') format('opentype');font-weight:400;font-display:swap}
@font-face{font-family:'Versus';src:url('../fonts/Versus-Medium.otf') format('opentype');font-weight:500;font-display:swap}
@font-face{font-family:'Versus';src:url('../fonts/Versus-SemiBold.otf') format('opentype');font-weight:600;font-display:swap}
@font-face{font-family:'Versus';src:url('../fonts/Versus-Bold.otf') format('opentype');font-weight:700;font-display:swap}
@font-face{font-family:'Versus';src:url('../fonts/Versus-ExtraBold.otf') format('opentype');font-weight:800;font-display:swap}
@font-face{font-family:'Versus';src:url('../fonts/Versus-Ultra.otf') format('opentype');font-weight:900;font-display:swap}

@font-face{font-family:'Proxima Nova';src:url('../fonts/ProximaNova-Regular.woff2') format('woff2'),url('../fonts/ProximaNova-Regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Proxima Nova';src:url('../fonts/ProximaNova-Medium.woff2') format('woff2'),url('../fonts/ProximaNova-Medium.woff') format('woff');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Proxima Nova';src:url('../fonts/ProximaNova-Semibold.woff2') format('woff2'),url('../fonts/ProximaNova-Semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'Proxima Nova';src:url('../fonts/ProximaNova-Bold.woff2') format('woff2'),url('../fonts/ProximaNova-Bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap}

@font-face{font-family:'Manrope';src:url('../fonts/Manrope-ExtraLight.ttf') format('truetype');font-weight:200;font-display:swap}
@font-face{font-family:'Manrope';src:url('../fonts/Manrope-Light.ttf') format('truetype');font-weight:300;font-display:swap}
@font-face{font-family:'Manrope';src:url('../fonts/Manrope-Regular.ttf') format('truetype');font-weight:400;font-display:swap}
@font-face{font-family:'Manrope';src:url('../fonts/Manrope-Medium.ttf') format('truetype');font-weight:500;font-display:swap}
@font-face{font-family:'Manrope';src:url('../fonts/Manrope-SemiBold.ttf') format('truetype');font-weight:600;font-display:swap}
@font-face{font-family:'Manrope';src:url('../fonts/Manrope-Bold.ttf') format('truetype');font-weight:700;font-display:swap}
@font-face{font-family:'Manrope';src:url('../fonts/Manrope-ExtraBold.ttf') format('truetype');font-weight:800;font-display:swap}

/* ===== CSS VARIABLES ===== */
:root {
  --navy:#1a1464; --blue:#0047ba; --blue-dark:#002d7a;
  --yellow:#ffc709; --magenta:#c71782; --purple:#6a1b9a; --orange:#f7941d;
}

/* ===== BASE ===== */
body.hasbro-landing-page{font-family:'Versus',Arial,sans-serif;color:#fff;background:var(--navy);overflow-x:hidden;-webkit-font-smoothing:antialiased;padding-top:clamp(76px,5.3vw,100px)}
/* Hueco de subpíxel entre secciones: deja ver el navy del body como “línea” oscura */
body.hasbro-landing-page .site-main.page-home > section:not(:first-child){margin-top:-1px;position:relative}
.page-home img{max-width:100%;height:auto}
.max-site{max-width:1920px;margin:0 auto}
.max-content{max-width:1100px;margin:0 auto}

/* ===== TIPOGRAFÍA GLOBAL ===== */
.page-home h1 {
  font-family: 'Versus', Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
}
.page-home h2 {
  font-family: 'Versus', Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.page-home h3 {
  font-family: 'Versus', Arial, sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.page-home h4, .page-home h5, .page-home h6 {
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.page-home p {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.6;
  color: #1b1b1b;
}

/* ===== ANIMATIONS ===== */
.anim,.anim-l,.anim-r,.anim-s{transition:opacity .7s cubic-bezier(.16,1,.3,1),transform .7s cubic-bezier(.16,1,.3,1)}
.anim{opacity:0;transform:translateY(30px)}
.anim-l{opacity:0;transform:translateX(-50px)}
.anim-r{opacity:0;transform:translateX(50px)}
.anim-s{opacity:0;transform:scale(.88)}
.anim.vis,.anim-l.vis,.anim-r.vis,.anim-s.vis{opacity:1;transform:none}
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.06)}}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ===== HEADER ===== */
body.hasbro-landing-page .site-header{position:fixed;top:0;left:0;right:0;z-index:1050;background:#0069b4;border-bottom:1px solid rgba(255,255,255,.06);transition:background .3s,box-shadow .3s}
body.hasbro-landing-page .header-inner{display:flex;align-items:center;justify-content:space-between;gap:clamp(12px,2vw,24px);height:clamp(76px,5.3vw,100px);padding:0 clamp(20px,3.4vw,65px);position:relative}
body.hasbro-landing-page .header-logo-left{display:flex;align-items:center;text-decoration:none;z-index:2;flex-shrink:0}
body.hasbro-landing-page .header-logo-left img{width:clamp(160px,11.5vw,220px);height:auto;object-fit:contain}
body.hasbro-landing-page .header-nav{display:flex;align-items:center;gap:clamp(6px,1vw,18px);flex-shrink:0;margin-left:auto}
body.hasbro-landing-page .header-nav > a{width:auto;min-width:0;height:clamp(56px,4.2vw,80px);padding:0 clamp(8px,1.1vw,16px);font-size:clamp(15px,1vw,21px);letter-spacing:0;line-height:clamp(56px,4.2vw,80px);color:#fff;font-weight:bold;font-family:'Versus',Arial,sans-serif;text-align:center;text-decoration:none;transition:opacity .2s;display:inline-block;white-space:nowrap}
body.hasbro-landing-page .header-nav > a:hover{opacity:.8;color:#fff}
body.hasbro-landing-page .btn-header-arrow{width:clamp(130px,8.6vw,165px)!important;height:clamp(42px,2.65vw,50px)!important;border-radius:24px!important;background-color:#ffc709!important;font-size:clamp(16px,1.1vw,21px)!important;letter-spacing:0!important;line-height:clamp(42px,2.65vw,50px)!important;color:#0069b4!important;font-weight:bold!important;font-family:"Versus"!important;text-align:center!important;border:none!important;box-shadow:none!important}
body.hasbro-landing-page .lang-dropdown{position:relative}
body.hasbro-landing-page .lang-toggle{border:none;cursor:pointer;display:inline-flex;align-items:center;justify-content:center}
body.hasbro-landing-page .lang-toggle-icon{width:clamp(40px,2.75vw,52px)!important;min-width:clamp(40px,2.75vw,52px);height:clamp(40px,2.75vw,52px)!important;padding:0!important;border-radius:50%!important}
body.hasbro-landing-page .lang-globe-icon{width:clamp(18px,1.25vw,24px);height:clamp(18px,1.25vw,24px);fill:#0069b4;display:block}
body.hasbro-landing-page .lang-dropdown-menu{position:absolute;top:calc(100% + 8px);right:0;left:auto;min-width:210px;background:#fff;border-radius:14px;box-shadow:0 10px 30px rgba(0,0,0,.15);padding:8px;opacity:0;visibility:hidden;transform:translateY(6px);transition:opacity .2s ease,transform .2s ease,visibility .2s ease;z-index:1060}
body.hasbro-landing-page .lang-dropdown:hover .lang-dropdown-menu,
body.hasbro-landing-page .lang-dropdown:focus-within .lang-dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
body.hasbro-landing-page .country-dropdown-menu{min-width:170px}
body.hasbro-landing-page .country-dropdown .btn-header-arrow{width:clamp(150px,10.5vw,200px)!important}
body.hasbro-landing-page .language-dropdown .lang-dropdown-menu{min-width:170px}
body.hasbro-landing-page .lang-dropdown .hasbro-lang-switcher,
body.hasbro-landing-page .lang-dropdown .lang-country-links{list-style:none;display:flex;flex-direction:column;gap:6px;padding:0;margin:0}
body.hasbro-landing-page .lang-dropdown .hasbro-lang-switcher li a,
body.hasbro-landing-page .lang-dropdown .lang-country-links li a{display:block;width:100%;height:auto;line-height:1;font-size:16px;color:#0069b4;background:#f4f8ff;border-radius:10px;padding:10px 12px;text-decoration:none;border:none;outline:none;font-family:'Versus',Arial,sans-serif;font-weight:700;text-transform:uppercase;letter-spacing:.01em}
body.hasbro-landing-page .lang-dropdown .hasbro-lang-switcher li.active a,
body.hasbro-landing-page .lang-dropdown .lang-country-links li.active a{background:#0069b4;color:#fff}
body.hasbro-landing-page .lang-dropdown .hasbro-lang-switcher li a:hover,
body.hasbro-landing-page .lang-dropdown .lang-country-links li a:hover{opacity:1;background:#e7f1ff}
body.hasbro-landing-page .btn-arrow{display:inline-flex;align-items:center;justify-content:center;background:var(--yellow);color:var(--navy);font-weight:800;font-size:18px;text-transform:uppercase;letter-spacing:.02em;padding:12px 30px;text-decoration:none;border:3px solid var(--navy);border-radius:50px;transition:transform .2s,filter .2s}
body.hasbro-landing-page .btn-arrow:hover{transform:scale(1.04);filter:brightness(1.08);color:var(--navy)}
body.hasbro-landing-page .btn-magenta{display:inline-flex;align-items:center;background:var(--magenta);color:#fff;font-weight:800;font-size:.78rem;text-transform:uppercase;letter-spacing:.04em;padding:14px 32px;border-radius:6px;text-decoration:none;border:none;transition:transform .2s,box-shadow .2s}
body.hasbro-landing-page .btn-magenta:hover{transform:scale(1.05);box-shadow:0 6px 24px rgba(199,23,130,.4);color:#fff}
body.hasbro-landing-page .btn-magenta-arrow{transform:scale(1.3);position:absolute;bottom:40px;margin:0 50px;z-index:3;border-radius:0;padding:18px 42px;padding-right:60px;font-size:clamp(18px,3.25vw,24px);-webkit-clip-path:polygon(0 0,calc(100% - 31px) 0,100% 50%,calc(100% - 31px) 100%,0 100%);clip-path:polygon(0 0,calc(100% - 31px) 0,100% 50%,calc(100% - 31px) 100%,0 100%)}
body.hasbro-landing-page .btn-magenta-arrow:hover{transform:scale(1.365);box-shadow:0 6px 24px rgba(199,23,130,.4);color:#fff}
body.hasbro-landing-page .hamburger{display:none;flex-direction:column;gap:5px;padding:6px;background:none;border:none;z-index:1051;cursor:pointer}
body.hasbro-landing-page .hamburger span{display:block;width:24px;height:2.5px;background:#fff;border-radius:2px;transition:.3s}
body.hasbro-landing-page .hamburger.on span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
body.hasbro-landing-page .hamburger.on span:nth-child(2){opacity:0}
body.hasbro-landing-page .hamburger.on span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
body.hasbro-landing-page .mobile-nav{display:none;position:fixed;inset:0;background:var(--navy);z-index:1049;flex-direction:column;align-items:center;justify-content:center;gap:28px}
body.hasbro-landing-page .mobile-nav.open{display:flex}
body.hasbro-landing-page .mobile-nav a{font-size:1.3rem;font-weight:700;text-transform:uppercase;color:#fff;text-decoration:none}
body.hasbro-landing-page .mobile-country-switcher{display:flex;flex-direction:column;align-items:center;gap:10px}
body.hasbro-landing-page .mobile-country-links{list-style:none;display:flex;flex-direction:column;gap:8px;padding:0;margin:0}
body.hasbro-landing-page .mobile-country-links li a{display:inline-flex;align-items:center;justify-content:center;min-width:220px;padding:12px 18px;border-radius:999px;background:#fff;color:#0069b4;font-size:14px;font-weight:800;line-height:1;text-decoration:none}
body.hasbro-landing-page .mobile-lang-switcher{display:flex;flex-direction:column;align-items:center;gap:10px}
body.hasbro-landing-page .mobile-lang-title{font-size:.95rem;letter-spacing:.04em;text-transform:uppercase;color:rgba(255,255,255,.8)}
body.hasbro-landing-page .mobile-lang-switcher .hasbro-lang-switcher{list-style:none;display:flex;gap:10px;padding:0;margin:0}
body.hasbro-landing-page .mobile-lang-switcher .hasbro-lang-switcher li a{display:inline-flex;align-items:center;justify-content:center;min-width:72px;padding:10px 16px;border-radius:999px;background:#fff;color:#0069b4;font-size:14px;font-weight:800;line-height:1;text-decoration:none}
body.hasbro-landing-page .mobile-lang-switcher .hasbro-lang-switcher li.active a{background:#ffc709;color:#0069b4}

/* ===== HERO ===== */
.page-home .hero{
  position:relative;
  width:100%;
  height: clamp(350px, 45vw, 800px);
  padding-top:0px;
  background:var(--navy);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  overflow:hidden
}

.page-home .hero-video{
  position:absolute;
  top:0;
  left:0;
  min-width:100%;
  min-height:auto;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 50%;
  z-index:0
}

.page-home .hero-vimeo-wrap{
  position:absolute;
  inset:0;
  overflow:hidden;
  z-index:0;
  pointer-events:none
}
.page-home .hero-vimeo-iframe{
  position:absolute;
  top:50%;
  left:50%;
  width:177.78vh;
  min-width:100%;
  height:56.25vw;
  min-height:100%;
  border:0;
  transform:translate(-50%,-50%);
  object-fit:cover
}

.page-home .hero-bg-img{
  position:absolute;
  top:0;
  left:0;
  min-width:100%;
  min-height:auto;
  width:100%;
  height:auto;
  object-fit:cover;
  object-position:50% 50%;
  z-index:0
}

.page-home .hero-bg-hidden{
  display:none!important
}

.page-home .hero-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:40%;
  background:linear-gradient(to top,rgba(26,20,100,.7),transparent);
  pointer-events:none
  z-index:1
}

.page-home .hero-bottom{
  position:relative;
  z-index:2;
  width:93%;
  max-width:100%;
  margin-top:auto;
  margin-right:auto;
  display:flex;
  align-items:stretch;
  overflow:hidden
}

.page-home .hb-text{
  flex:0 0 70%;
  background:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:flex-end;
  min-height:7px;
  position:relative;
  font-family:'Versus',Arial,sans-serif;
  font-size:clamp(0.875rem,2.85vw,3.4375rem);
  color:#c71782;
  letter-spacing:.02em;
  line-height:1.2;
  text-align:right;
  padding-right:2.5rem
}

.page-home h1.hb-text{
  margin:0;
  font-weight:normal
}

.page-home .hb-tex2{
  flex:0 0 30%;
  min-width:0;
  background:var(--magenta);
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:75px;
  position:relative;
  font-size:clamp(0.875rem,2.85vw,3.4375rem);
  clip-path:polygon(0 0,calc(100% - 30px) 0,100% 50%,calc(100% - 30px) 100%,0 100%)
}

.page-home .hb-text::after{
  content:'';
  position:absolute;
  right:-30px;
  top:0;
  bottom:0;
  width:60px;
  background:var(--yellow);
  transform:skewX(-12deg);
  z-index:1
}

.page-home .hb-cta{
  background:transparent;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:clamp(0.7rem, 1.8vw, 2.05rem);
  text-transform:uppercase;
  letter-spacing:.03em;
  text-decoration:none;
  white-space:nowrap;
  position:relative;
  z-index:2;
  transition:filter .2s;
  padding:12px 24px
}

.page-home .hb-cta:hover{
  filter:brightness(1.1);
  color:#fff
}

.gap-12{
  gap:0rem!important
}

.gap-8{
  gap:0rem!important
}

/* ===== STATS ===== */
.page-home .stats{
  background:#0795da;
  min-height:clamp(160px,22vw,200px);
  padding:clamp(20px,3.5vw,36px) clamp(16px,4vw,32px);
  display:flex;
  align-items:center;
  border:0;
  box-shadow:none;
}
.page-home .stats .max-content{width:100%}
.page-home .stats .stats-row-desktop{
  min-height:clamp(120px,16vw,150px);
  align-items:center;
  justify-content:center;
  gap:clamp(1.75rem,4.5vw,4rem);
  flex-wrap:wrap;
}
.page-home .stats .stats-row-mobile{
  gap:clamp(1.35rem,4vw,2.25rem);
  width:100%;
  max-width:32rem;
  margin-left:auto;
  margin-right:auto;
  padding-top:clamp(4px,1.5vw,12px);
  padding-bottom:clamp(4px,1.5vw,12px);
}
.page-home .stat-item{
  display:flex;
  align-items:center;
  gap:clamp(10px,1.5vw,16px);
  padding:clamp(8px,1.5vw,14px) clamp(10px,2vw,18px);
  box-sizing:border-box;
}
.page-home .stat-item-diversion{
  flex-direction:column;
  align-items:center;
  gap:clamp(10px,1.8vw,18px);
  text-align:center;
}
.page-home .stat-item-diversion .stat-val{font-family:'Versus',Arial,sans-serif;font-size:clamp(2rem,5vw,60px);font-weight:900;color:#fff;line-height:1.05}
.page-home .stat-item-diversion .stat-lbl{font-size:clamp(0.5rem,0.95vw,1.8rem);font-weight:800;text-transform:uppercase;letter-spacing:.02em;color:#fff;line-height:1.3}
.page-home .stat-item-universos{
  flex-direction:column;
  align-items:center;
  gap:clamp(10px,1.8vw,18px);
}
.page-home .stat-universos-top{display:flex;align-items:center;gap:clamp(12px,2.2vw,22px)}
.page-home .stat-item-universos .stat-val{font-size:clamp(2rem,5vw,60px);font-weight:900;color:#fff;line-height:1.05}
.page-home .stat-item-universos .stat-lbl{font-size:clamp(0.5rem,0.95vw,1.8rem);font-weight:800;text-transform:uppercase;letter-spacing:.02em;color:#fff;line-height:1.3;text-align:center}
.page-home .stat-item-universos .stat-icon{height:clamp(24px,3.8vw,70px);width:auto;object-fit:contain}
.page-home .stat-item.anim.d2{
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:clamp(8px,1.2vw,14px);
}
.page-home .stat-item.anim.d2 .stat-lbl{
  font-size:clamp(0.65rem,0.85vw,1.05rem);
  font-weight:700;
  color:#fff;
  line-height:1.45;
}
.page-home .stat-item.anim.d2 .stat-lbl.text-justify{display:block;width:100%;text-align:justify}
.page-home .stat-lbl-bold-exp{font-family:'Versus',Arial,sans-serif;font-size:18px;font-weight:900}
.page-home .stat-lbl-bold-expe-2{font-family:'Versus',Arial,sans-serif;font-size:25pt;font-weight:800}
.page-home .stat-val{font-size:clamp(1.6rem,3vw,2.4rem);font-weight:1000;color:var(--magenta);line-height:1;white-space:nowrap}
.page-home .stat-lbl{font-size:clamp(.7rem,1.2vw,1.375rem);font-weight:800;text-transform:uppercase;letter-spacing:.02em;color:var(--magenta);line-height:1.25}
.page-home .stat-icon{height:36px}
.page-home .stat-sep-v{width:1.5px;height:36px;background:rgba(199,23,130,.15)}
.page-home .stat-sep-h{width:min(72px,18vw);height:1.5px;background:rgba(199,23,130,.15);flex-shrink:0}

/* ===== PRICING (tickets) ===== */
.page-home .hasbro-pricing-section{
  padding:clamp(36px,6vw,72px) clamp(16px,4vw,48px);
  border:0;
  box-shadow:none;
  position:relative;
  z-index:0;
}
.page-home .hasbro-pricing-inner.max-content{
  width:100%;
  max-width:min(1720px,100%);
  margin:0 auto;
}
.page-home .hasbro-pricing-top{
  position:relative;
  padding:clamp(10px,1.8vw,22px) clamp(12px,2vw,28px) clamp(26px,4vw,44px);
  background:var(--hasbro-pricing-notch,#6a4ea4);
  box-shadow:0 1px 0 rgba(0,0,0,.07);
}
/* Título: mismas reglas que body.hasbro-landing-page .hasbro-faq h2.faq-heading */
.page-home .hasbro-pricing-title{
  font-family:'Versus',Arial,sans-serif;
  font-weight:900;
  text-align:center;
  font-size:clamp(1.5rem,3vw,2.35rem);
  line-height:1.15;
  color:#fff;
  -webkit-text-stroke:clamp(1px,0.22vw,3px) var(--hasbro-pricing-acento,#d81b60);
  paint-order:stroke fill;
  margin:0;
  letter-spacing:.04em;
  text-transform:lowercase;
}
.page-home .hasbro-pricing-title-image-wrap{
  display:flex;
  justify-content:center;
  margin:clamp(8px,1.3vw,14px) 0 0;
}
.page-home .hasbro-pricing-title-image{
  display:block;
  width:auto;
  max-width:min(100%,520px);
  height:auto;
}
.page-home .hasbro-pricing-title::first-letter{
  text-transform:uppercase;
}
.page-home .hasbro-pricing-notch--title-seam-l{
  bottom:-14px;
  left:clamp(24px,7vw,72px);
  transform:translateX(-50%);
}
.page-home .hasbro-pricing-notch--title-seam-r{
  bottom:-14px;
  right:clamp(24px,7vw,72px);
  transform:translateX(50%);
}
.page-home .hasbro-pricing-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(14px,2.5vw,28px);
  align-items:stretch;
  width:100%;
  max-width:none;
  margin:0;
}
/* Muescas del título: solapan el borde superior del ticket (misma lógica que esquinas). */
.page-home .hasbro-pricing-inner:has(.hasbro-pricing-top) .hasbro-pricing-grid{
  margin-top:-14px;
}
.page-home .hasbro-pricing-ticket{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  border-radius:0;
  overflow:visible;
  z-index:1;
}
.page-home .hasbro-pricing-ticket__body{
  display:flex;
  flex-direction:row;
  align-items:stretch;
  flex:1 1 auto;
  position:relative;
  width:100%;
  min-height:clamp(168px,28vw,228px);
}
.page-home .hasbro-pricing-ticket__body .hasbro-pricing-notch--seam-t{
  top:-14px;
  left:30%;
  transform:translateX(-50%);
}
.page-home .hasbro-pricing-ticket__body .hasbro-pricing-notch--seam-b{
  bottom:-14px;
  left:30%;
  transform:translateX(-50%);
}
.page-home .hasbro-pricing-notch{
  position:absolute;
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--hasbro-pricing-notch,#6a4ea4);
  z-index:4;
  pointer-events:none;
}
.page-home .hasbro-pricing-notch--tl{top:-14px;left:-14px}
.page-home .hasbro-pricing-notch--tr{top:-14px;right:-14px}
.page-home .hasbro-pricing-notch--bl{bottom:-14px;left:-14px}
.page-home .hasbro-pricing-notch--br{bottom:-14px;right:-14px}
.page-home .hasbro-pricing-ticket__banda{
  flex:0 0 30%;
  max-width:30%;
  background:var(--hasbro-pricing-banda,#94d145);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:clamp(12px,2vw,20px) clamp(8px,1.5vw,12px);
  text-align:center;
  gap:.2em;
}
/* Textos del ticket: mismo tamaño que títulos de ítem FAQ (.faq-card__trigger) */
.page-home .hasbro-pricing-banda-line{
  display:block;
  font-family:'Versus',Arial,sans-serif;
  font-weight:600;
  font-size:clamp(1rem,0.78rem + 1.65vw,2.2rem);
  line-height:1.08;
  color:#fff;
  text-transform:lowercase;
  letter-spacing:.03em;
}
.page-home .hasbro-pricing-banda-line::first-letter{
  text-transform:uppercase;
}
.page-home .hasbro-pricing-banda-line--narrow{
  font-weight:600;
  font-size:clamp(1rem,0.78rem + 1.65vw,2.2rem);
}
.page-home .hasbro-pricing-banda-promo{
  font-family:'Versus',Arial,sans-serif;
  font-weight:900;
  font-size:clamp(1rem,0.78rem + 1.65vw,2.2rem);
  line-height:1.08;
  color:#fff;
  margin-top:.15em;
  letter-spacing:.03em;
  text-transform:none;
}
.page-home .hasbro-pricing-ticket__banda--pack{gap:.25em}
.page-home .hasbro-pricing-ticket__main{
  flex:1 1 70%;
  background:var(--hasbro-pricing-tarifa,#fbc215);
  padding:clamp(16px,3vw,28px) clamp(14px,3vw,24px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.page-home .hasbro-pricing-kicker{
  font-family:'Versus',Arial,sans-serif;
  font-weight:900;
  font-size:clamp(1rem,0.78rem + 1.65vw,2.2rem);
  line-height:1.08;
  color:var(--hasbro-pricing-acento,#d81b60);
  margin:0 0 .35em;
  text-transform:lowercase;
  letter-spacing:.03em;
}
.page-home .hasbro-pricing-kicker::first-letter{
  text-transform:uppercase;
}
.page-home .hasbro-pricing-price-row{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  justify-content:center;
  gap:.2em .45em;
}
.page-home .hasbro-pricing-amount{
  font-family:'Versus',Arial,sans-serif;
  font-weight:900;
  font-size:clamp(2.1rem,4.5vw + 1.1rem,5.25rem);
  line-height:1;
  color:var(--hasbro-pricing-acento,#d81b60);
  letter-spacing:-0.02em;
  text-transform:none;
  -webkit-text-stroke:clamp(0.6px,0.14vw,1.35px) var(--hasbro-pricing-acento,#d81b60);
  paint-order:stroke fill;
}
.page-home .hasbro-pricing-moneda{
  font-family:'Versus',Arial,sans-serif;
  font-weight:900;
  font-size:clamp(1rem,0.78rem + 1.65vw,2.2rem);
  line-height:1.08;
  color:var(--hasbro-pricing-acento,#d81b60);
  letter-spacing:.03em;
  text-transform:none;
}
.page-home .hasbro-pricing-total{
  font-family:'Versus',Arial,sans-serif;
  font-weight:900;
  font-size:clamp(1rem,0.78rem + 1.65vw,2.2rem);
  line-height:1.08;
  color:var(--hasbro-pricing-acento,#d81b60);
  margin:.65em 0 0;
  text-align:center;
  letter-spacing:.03em;
  text-transform:none;
}
.page-home .hasbro-pricing-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:clamp(12px,2vw,18px);
  padding:12px clamp(24px,4vw,40px);
  background:var(--hasbro-pricing-acento,#d81b60);
  color:#fff;
  font-family:'Versus',Arial,sans-serif;
  font-weight:600;
  font-size:clamp(1rem,0.78rem + 1.65vw,2.2rem);
  line-height:1.08;
  text-transform:lowercase;
  letter-spacing:.03em;
  text-decoration:none;
  border:none;
  border-radius:999px;
  cursor:pointer;
  transition:transform .2s,filter .2s;
}
.page-home .hasbro-pricing-btn::first-letter{
  text-transform:uppercase;
}
.page-home .hasbro-pricing-btn:hover{
  transform:scale(1.04);
  filter:brightness(1.08);
  color:#fff;
}
/* Portátil ~13" y tablet horizontal: tamaños más contenidos */
@media (max-width:1199.98px){
  .page-home .hasbro-pricing-section{
    padding:clamp(28px,4.5vw,56px) clamp(14px,3.2vw,36px);
  }
  .page-home .hasbro-pricing-title{
    font-size:clamp(1.3rem,2.2vw + 0.72rem,2rem);
    -webkit-text-stroke:clamp(0.8px,0.16vw,2.25px) var(--hasbro-pricing-acento,#d81b60);
  }
  .page-home .hasbro-pricing-top{
    margin:0 0 clamp(18px,3vw,32px);
    padding:clamp(8px,1.5vw,18px) clamp(10px,1.8vw,24px) clamp(22px,3.5vw,38px);
  }
  .page-home .hasbro-pricing-grid{gap:clamp(12px,2vw,20px)}
  .page-home .hasbro-pricing-ticket__body{min-height:clamp(148px,22vw,200px)}
  .page-home .hasbro-pricing-banda-line,
  .page-home .hasbro-pricing-banda-line--narrow,
  .page-home .hasbro-pricing-banda-promo{
    font-size:clamp(0.88rem,0.62rem + 1.05vw,1.72rem);
  }
  .page-home .hasbro-pricing-ticket__main{
    padding:clamp(12px,2.4vw,22px) clamp(12px,2.4vw,20px);
  }
  .page-home .hasbro-pricing-kicker,
  .page-home .hasbro-pricing-moneda,
  .page-home .hasbro-pricing-total,
  .page-home .hasbro-pricing-btn{
    font-size:clamp(0.88rem,0.62rem + 1.05vw,1.72rem);
  }
  .page-home .hasbro-pricing-amount{
    font-size:clamp(1.65rem,2.85vw + 0.65rem,3.35rem);
    -webkit-text-stroke:clamp(0.45px,0.1vw,1.05px) var(--hasbro-pricing-acento,#d81b60);
  }
  .page-home .hasbro-pricing-btn{
    padding:10px clamp(18px,3.2vw,32px);
    margin-top:clamp(10px,1.6vw,14px);
  }
}
@media (max-width:991.98px){
  .page-home .hasbro-pricing-title{
    font-size:clamp(1.2rem,2.4vw + 0.55rem,1.82rem);
  }
  .page-home .hasbro-pricing-banda-line,
  .page-home .hasbro-pricing-banda-line--narrow,
  .page-home .hasbro-pricing-banda-promo{
    font-size:clamp(0.8rem,0.55rem + 1.35vw,1.45rem);
  }
  .page-home .hasbro-pricing-kicker,
  .page-home .hasbro-pricing-moneda,
  .page-home .hasbro-pricing-total,
  .page-home .hasbro-pricing-btn{
    font-size:clamp(0.8rem,0.55rem + 1.35vw,1.45rem);
  }
  .page-home .hasbro-pricing-amount{
    font-size:clamp(1.45rem,3.4vw + 0.5rem,2.65rem);
  }
  .page-home .hasbro-pricing-ticket__body{min-height:clamp(132px,26vw,180px)}
  .page-home .hasbro-pricing-notch{
    width:24px;
    height:24px;
  }
  .page-home .hasbro-pricing-notch--tl,
  .page-home .hasbro-pricing-notch--tr{top:-12px}
  .page-home .hasbro-pricing-notch--bl,
  .page-home .hasbro-pricing-notch--br{bottom:-12px}
  .page-home .hasbro-pricing-notch--tl,
  .page-home .hasbro-pricing-notch--bl{left:-12px}
  .page-home .hasbro-pricing-notch--tr,
  .page-home .hasbro-pricing-notch--br{right:-12px}
  .page-home .hasbro-pricing-notch--title-seam-l,
  .page-home .hasbro-pricing-notch--title-seam-r{bottom:-12px}
  .page-home .hasbro-pricing-ticket__body .hasbro-pricing-notch--seam-t{top:-12px}
  .page-home .hasbro-pricing-ticket__body .hasbro-pricing-notch--seam-b{bottom:-12px}
  .page-home .hasbro-pricing-inner:has(.hasbro-pricing-top) .hasbro-pricing-grid{margin-top:-12px}
}
@media (max-width:767.98px){
  .page-home .hasbro-pricing-grid{grid-template-columns:minmax(0,1fr)}
  .page-home .hasbro-pricing-title{
    font-size:clamp(1.15rem,4.2vw + 0.45rem,1.65rem);
  }
  .page-home .hasbro-pricing-top{
    margin:0 0 clamp(14px,3.5vw,24px);
    padding:clamp(8px,2vw,14px) clamp(8px,3vw,18px) clamp(18px,4vw,30px);
  }
  .page-home .hasbro-pricing-banda-line,
  .page-home .hasbro-pricing-banda-line--narrow,
  .page-home .hasbro-pricing-banda-promo{
    font-size:clamp(0.78rem,2.8vw + 0.4rem,1.28rem);
  }
  .page-home .hasbro-pricing-kicker,
  .page-home .hasbro-pricing-moneda,
  .page-home .hasbro-pricing-total,
  .page-home .hasbro-pricing-btn{
    font-size:clamp(0.78rem,2.8vw + 0.4rem,1.28rem);
  }
  .page-home .hasbro-pricing-amount{
    font-size:clamp(1.35rem,6.5vw + 0.35rem,2.35rem);
  }
  .page-home .hasbro-pricing-ticket__body{min-height:clamp(120px,32vw,168px)}
}

/* ===== TOUR ===== */
.page-home .tour{background-color:#625da3;padding:30px 0}
.page-home .tour h2{font-size:clamp(3.5rem,3vw,5.6rem);font-weight:900;color:#fff;line-height:1.1}
.page-home .city-badge-full-link{display:inline-block;text-decoration:none;color:inherit}
.page-home .city-badge-full-link:hover .city-badge-full{opacity:.95}
.page-home .city-badge-full{display:inline-flex;align-items:stretch;overflow:hidden;max-width:700px;min-height:100px;transition:opacity .2s}
.page-home .city-badge-full .city-badge-img{flex:0 0 23%;min-width:0}
.page-home .city-badge-full .city-badge-img img{width:100%;height:100%;display:block;min-height:100px}
.page-home .city-badge-full .city-badge-txt{flex:0 0 25%;background:#8BC34A;display:flex;flex-direction:column;justify-content:center;align-items:center;font-size:clamp(0.7rem,1.2vw,1rem);font-weight:800;color:#fff}
.page-home .city-badge-full .city-badge-venta{flex:0 0 50%;background:#8BC34A;padding-right:45px;display:flex;align-items:center;justify-content:center;font-family:'Versus',Arial,sans-serif;font-size:50pt;font-weight:200;color:#fff;clip-path:polygon(0 0,calc(100% - 40px) 0,100% 50%,calc(100% - 40px) 100%,0 100%)}
.page-home .city-badge-full-orange .city-badge-txt{background:#f7941d}
.page-home .city-badge-city{font-family:'Versus',Arial,sans-serif;font-size:23pt;font-weight:700;line-height:1;margin:0}
.page-home .city-badge-country{font-family:'Versus',Arial,sans-serif;font-size:23pt;font-weight:900;line-height:1;margin:0}
.page-home .city-badge-full-orange .city-badge-venta{background:#f7941d}

/* ===== ABOUT ===== */
.page-home .about{background-color:#0795da;padding:60px 0;min-height:600px}
.page-home .about-img{border-radius:14px;overflow:hidden;box-shadow:0 8px 32px rgba(0,0,0,.3)}
.page-home .about-img img{width:100%;height:100%;object-fit:cover;min-height:260px}
.page-home .about-txt{padding:0 0 0 30px;color:#fff;font-family:'Manrope',sans-serif;font-size:20px;font-weight:400;text-align:left}
.page-home .about-txt p{font-size:20px;font-weight:400;line-height:1.5;margin-bottom:18px;color:#fff}
.page-home .about-list{padding:0;margin:0;list-style:none}
.page-home .about-list li{font-size:20px;font-weight:400;line-height:1.5;margin-bottom:14px;padding-left:0;list-style:none;color:#fff}
.page-home .about-list li::before{content:none}
.page-home .about-list-emoji{margin-right:8px}

/* ===== UBICACIÓN ===== */
.page-home .ubicacion-section{padding:clamp(40px,6vw,72px) clamp(16px,4vw,65px);color:#fff}
.page-home .ubicacion-inner{max-width:1920px;margin:0 auto}
.page-home .ubicacion-row{align-items:stretch}
.page-home .ubicacion-map-col,.page-home .ubicacion-content-col{display:flex;flex-direction:column}
.page-home .ubicacion-map-frame{position:relative;width:100%;border-radius:18px;overflow:hidden;box-shadow:0 12px 40px rgba(0,0,0,.28);background:rgba(0,0,0,.15);flex:1;min-height:min(420px,55vw)}
.page-home .ubicacion-map-frame::before{content:'';display:block;padding-bottom:62%}
.page-home .ubicacion-map-iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.page-home .ubicacion-heading{font-family:'Versus',Arial,sans-serif;font-weight:900;font-size:clamp(1.75rem,3.2vw,2.75rem);line-height:1.1;text-transform:uppercase;letter-spacing:.02em;color:#fff;margin:0 0 clamp(22px,3vw,36px)}
.page-home .ubicacion-blocks{display:flex;flex-direction:column;gap:clamp(18px,2.5vw,26px)}
.page-home .ubicacion-block{display:flex;flex-direction:column;align-items:flex-start;gap:10px}
.page-home .ubicacion-block__label{display:inline-block;padding:10px 18px;border-radius:10px;font-family:'Versus',Arial,sans-serif;font-weight:800;font-size:clamp(.72rem,1vw,.85rem);letter-spacing:.06em;text-transform:uppercase;color:#fff;line-height:1.2;box-shadow:0 4px 14px rgba(0,0,0,.18)}
.page-home .ubicacion-block__label--green{background:#00a651}
.page-home .ubicacion-block__label--magenta{background:var(--magenta)}
.page-home .ubicacion-block__label--purple{background:var(--purple)}
.page-home .ubicacion-block__label--orange{background:var(--orange)}
.page-home .ubicacion-block__text{font-family:'Manrope',sans-serif;font-size:clamp(.95rem,1.15vw,1.05rem);line-height:1.55;color:#fff;max-width:42rem}
.page-home .ubicacion-block__text p{margin:0 0 .6em}
.page-home .ubicacion-block__text p:last-child{margin-bottom:0}

/* ===== FAQ (acordeón) — body scope: no depender solo de main.page-home; reset de botones nativos ===== */
body.hasbro-landing-page .hasbro-faq.faq-section{
  padding:clamp(40px,6vw,72px) clamp(16px,4vw,65px);
  color:#fff;
  width:100%;
  box-sizing:border-box;
}
body.hasbro-landing-page .hasbro-faq .faq-inner{
  max-width:1920px;
  margin:0 auto;
  width:100%;
}
body.hasbro-landing-page .hasbro-faq h2.faq-heading{
  font-family:'Versus',Arial,sans-serif;
  font-weight:900;
  font-size:clamp(1.5rem,3vw,2.35rem);
  line-height:1.15;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#fff;
  margin:0 0 clamp(28px,4vw,48px);
}
body.hasbro-landing-page .hasbro-faq .faq-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(12px,2vw,18px);
  align-items:start;
  width:100%;
  margin:0;
  padding:0;
  list-style:none;
}
body.hasbro-landing-page .hasbro-faq .faq-card{
  min-width:0;
  width:100%;
  border-radius:12px;
  overflow:hidden;
  margin:0;
}
body.hasbro-landing-page .hasbro-faq .faq-card--accordion{
  display:flex;
  flex-direction:column;
}
body.hasbro-landing-page .hasbro-faq .faq-card__trigger{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  text-align:left;
  padding:clamp(14px,2.5vw,18px) clamp(14px,2.5vw,20px);
  margin:0;
  background:rgba(255,255,255,.18);
  color:#fff;
  font-family:'Versus',Arial,sans-serif;
  font-weight:600;
  font-size:clamp(1rem,0.78rem + 1.65vw,2.2rem);
  text-transform:capitalize;
  letter-spacing:.03em;
  line-height:1.08;
  cursor:pointer;
  transition:background .2s ease;
  border:none;
  border-radius:0;
  box-shadow:none;
  -webkit-appearance:none;
  appearance:none;
  -webkit-tap-highlight-color:transparent;
}
body.hasbro-landing-page .hasbro-faq .faq-card__trigger:hover{
  background:rgba(255,255,255,.26);
  color:#fff;
}
body.hasbro-landing-page .hasbro-faq .faq-card__trigger:focus-visible{
  outline:2px solid #fff;
  outline-offset:2px;
}
body.hasbro-landing-page .hasbro-faq .faq-card__label{
  flex:1;
  min-width:0;
  overflow-wrap:anywhere;
  hyphens:auto;
}
body.hasbro-landing-page .hasbro-faq .faq-card__icon{
  flex-shrink:0;
  width:clamp(28px,5vw,36px);
  height:clamp(28px,5vw,36px);
  border-radius:50%;
  background:rgba(255,255,255,.35);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:clamp(.92rem,2vw,1.25rem);
  font-weight:500;
  line-height:1;
}
body.hasbro-landing-page .hasbro-faq .faq-card__icon::before{content:'+'}
body.hasbro-landing-page .hasbro-faq .faq-card__trigger:not(.collapsed) .faq-card__icon::before{content:'−'}
body.hasbro-landing-page .hasbro-faq .faq-card__panel{
  background:rgba(0,0,0,.14);
  border:none;
  margin:0;
  padding:0;
}
body.hasbro-landing-page .hasbro-faq .faq-card__body{
  padding:14px 20px 18px;
  font-family:'Manrope',sans-serif;
  font-size:clamp(.9rem,1.1vw,1rem);
  font-weight:500;
  line-height:1.55;
  color:#fff;
}
body.hasbro-landing-page .hasbro-faq .faq-card__body p{margin:0 0 .65em}
body.hasbro-landing-page .hasbro-faq .faq-card__body p:last-child{margin-bottom:0}
body.hasbro-landing-page .hasbro-faq a.faq-card--link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  box-sizing:border-box;
  width:100%;
  max-width:100%;
  text-decoration:none;
  color:#fff;
  padding:clamp(14px,2.5vw,18px) clamp(14px,2.5vw,20px);
  background:rgba(255,255,255,.18);
  border-radius:12px;
  font-family:'Versus',Arial,sans-serif;
  font-weight:600;
  font-size:clamp(1rem,0.78rem + 1.65vw,2.2rem);
  text-transform:capitalize;
  letter-spacing:.03em;
  line-height:1.08;
  transition:background .2s ease;
  border:none;
  box-shadow:none;
  margin:0;
}
body.hasbro-landing-page .hasbro-faq a.faq-card--link:hover{
  color:#fff;
  background:rgba(255,255,255,.26);
}
body.hasbro-landing-page .hasbro-faq .faq-card--link .faq-card__icon--link::before{
  content:'›';
  font-size:1.2rem;
  font-weight:600;
}

/* ===== ADVENTURE ===== */
.page-home .adventure{background-color:#625da3;padding:50px 0}
.page-home .adventure-frase-img{margin:0 auto;display:block}
.page-home .adventure-txt{font-family:'Versus',Arial,sans-serif;font-size:52px;font-weight:600;color:#ffc709;text-transform:capitalize;letter-spacing:.03em;line-height:1;text-align:center}

/* ===== MLP ===== */
.page-home .mlp{background-color:#ffc70b;overflow:visible}
.page-home .mlp .mlp-carousel-wrap{position:relative;overflow:hidden}
.page-home .mlp .mlp-carousel-wrap .carousel-track{display:flex;transition:transform .5s cubic-bezier(.16,1,.3,1);will-change:transform}
.page-home .mlp .mlp-carousel-wrap .carousel-track>.mlp-slide{flex:0 0 100%;min-width:100%}
.page-home .mlp .mlp-slide-row{min-height:clamp(520px,46vw,920px);height:auto}
.page-home .mlp .mlp-slide-media-col{min-height:clamp(520px,46vw,920px)}
.page-home .mlp .mlp-slide-row{margin-right:0;margin-left:0}
.page-home .mlp .mlp-slide-image{display:block;width:100%;height:100%;min-height:clamp(520px,46vw,920px);object-fit:cover}
.page-home .mlp-overlap-img{position:absolute;bottom:0;left:-10%;right:2rem;height:50vh;object-fit:cover;object-position:bottom center;z-index:2;pointer-events:none}
@media (max-width:1199.98px){
  .page-home .mlp-overlap-img{display:none!important}
}
.page-home .mlp-carousel-col{min-height:clamp(520px,46vw,920px)}
.page-home .mlp-carousel-col .carousel-wrap{position:absolute;inset:0;overflow:hidden}
.page-home .mlp-carousel-col .carousel-track,
.page-home .mlp-carousel-track{display:flex;height:100%;transition:transform .5s cubic-bezier(.16,1,.3,1);will-change:transform}
.page-home .mlp-carousel-col .carousel-track>div,
.page-home .mlp-carousel-track>div{flex:0 0 100%;min-width:100%;height:100%;overflow:hidden}
.page-home .mlp-carousel-col .carousel-track img,
.page-home .mlp-carousel-track img{display:block;width:100%;height:100%;object-fit:cover}
.page-home .mlp-carousel-nav{z-index:5}
.page-home .mlp h2{
  font-size:clamp(3rem,5vw,5.9rem);
  font-weight:800;
  line-height:.9;
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
}
.page-home .mlp p{font-size:.82rem;line-height:1.6;opacity:.9}
.page-home .car-btn{width:65px;height:65px;border-radius:50%;background:rgba(255,255,255,.92);border:none;box-shadow:0 2px 12px rgba(0,0,0,.2);display:flex;align-items:center;justify-content:center;transition:transform .2s;cursor:pointer}
.page-home .car-btn:hover{transform:scale(1.1)}
.page-home .car-btn img{width:100%}
@media (min-width:1100px) and (max-width:1900px){
  .page-home .mlp .mlp-slide-row{min-height:clamp(500px,44vw,860px)}
  .page-home .mlp .mlp-slide-media-col{min-height:clamp(500px,44vw,860px)}
  .page-home .mlp .mlp-slide-image{min-height:clamp(500px,44vw,860px)}
  .page-home .mlp .mlp-slide-text-col{
    padding-left:clamp(24px,3.2vw,70px)!important;
    padding-top:clamp(18px,2.4vw,34px)!important;
    padding-right:clamp(18px,2vw,32px)!important;
  }
  .page-home .mlp .mlp-slide-text-col h2{
    font-size:clamp(2.35rem,4.6vw,5.25rem);
    margin-bottom:clamp(10px,1.4vw,24px)!important;
  }
  .page-home .mlp .mlp-slide-text-col p{
    font-size:clamp(1rem,1.28vw,1.42rem)!important;
    line-height:1.2!important;
    margin-bottom:clamp(12px,1.7vw,26px)!important;
  }
  .page-home .mlp .btn-magenta-arrow{
    transform:none;
    margin:0;
    bottom:clamp(16px,2vw,34px);
    left:clamp(24px,3.2vw,70px);
    padding:clamp(10px,1.25vw,16px) clamp(24px,2.7vw,36px) clamp(10px,1.25vw,16px) clamp(16px,1.8vw,24px);
    font-size:clamp(1rem,1.22vw,1.35rem);
  }
  .page-home .mlp .btn-magenta-arrow:hover{transform:none}
}

/* ===== LOGOS CAROUSEL ===== */
.page-home .logos-carousel-section{background-color:#fff;padding:35px 0;overflow:hidden}
.page-home .logos-carousel-section .logos-wrap{max-width:1920px;margin:0 auto;overflow:hidden}
.page-home .logos-carousel-section .logos-track{display:flex;width:200%;transition:transform .6s ease}
.page-home .logos-carousel-section .logos-track>div{flex:0 0 calc(100% / 14);display:flex;align-items:center;justify-content:center;padding:0 15px;box-sizing:border-box}
.page-home .logos-carousel-section .logos-track img{height:80px;width:auto;max-width:100%;object-fit:contain}

/* ===== IMAGES CAROUSEL ===== */
.page-home .images-carousel-section{background:var(--navy);padding:0;overflow:hidden}
.page-home .images-carousel-section .images-wrap{max-width:1920px;margin:0 auto;overflow:hidden;height:620px}
.page-home .images-carousel-section.animation-none .images-static-track{display:flex;height:100%}
.page-home .images-carousel-section.animation-none .images-static-slide{height:100%;min-width:0;overflow:hidden}
.page-home .images-carousel-section.animation-none .img-static{display:block;width:100%;height:100%;object-fit:cover}
.page-home .images-carousel-section .images-track{display:flex;transition:transform .6s ease;height:100%}
.page-home .images-carousel-section .images-track>div{flex:0 0 14.2857%;height:620px;position:relative;overflow:hidden;cursor:pointer}
.page-home .images-carousel-section.animation-classic .images-track>div img,
.page-home .images-carousel-section.animation-slide .images-track>div img,
.page-home .images-carousel-section.animation-dice .images-track>div img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;display:block}

/* Animacion 1 - actual */
.page-home .images-carousel-section.animation-classic .images-track>div img{transition:opacity .5s cubic-bezier(.25,.46,.45,.94),transform .6s cubic-bezier(.25,.46,.45,.94)}
.page-home .images-carousel-section.animation-classic .images-track>div .img-hover{opacity:0;transform:scale(1.15);z-index:0}
.page-home .images-carousel-section.animation-classic .images-track>div .img-main{z-index:1}
.page-home .images-carousel-section.animation-classic .images-track>div.has-hover-modal:hover .img-main{opacity:0;transform:scale(1.08)}
.page-home .images-carousel-section.animation-classic .images-track>div.has-hover-modal:hover .img-hover{opacity:1;transform:scale(1)}

/* Animacion 2 - flip card */
.page-home .images-carousel-section.animation-flip .images-track>div{perspective:1000px}
.page-home .images-carousel-section.animation-flip .images-track>div .card{position:absolute;inset:0;width:100%;height:100%;cursor:pointer;perspective:1000px;border-radius:0!important; border: 0 !important;}
.page-home .images-carousel-section.animation-flip .images-track>div .card-inner{position:relative;width:100%;height:100%;transition:transform .6s;transform-style:preserve-3d;will-change:transform;border-radius:0!important}
.page-home .images-carousel-section.animation-flip .images-track>div:hover .card-inner{transform:rotateY(180deg)}
.page-home .images-carousel-section.animation-flip .images-track>div .card-front,
.page-home .images-carousel-section.animation-flip .images-track>div .card-back{position:absolute;inset:0;width:100%;height:100%;backface-visibility:hidden;-webkit-backface-visibility:hidden;transform:translateZ(0);border-radius:0!important;overflow:hidden;display:flex;align-items:center;justify-content:center}
.page-home .images-carousel-section.animation-flip .images-track>div .card-front{background:transparent;border:none}
.page-home .images-carousel-section.animation-flip .images-track>div .card-back{background:transparent;color:#fff;transform:rotateY(180deg)}
.page-home .images-carousel-section.animation-flip .images-track>div .card-front img,
.page-home .images-carousel-section.animation-flip .images-track>div .card-back img{position:static;width:100%;height:100%;object-fit:cover;display:block;border-radius:0!important}

/* Animacion 3 - deslizamiento vertical */
.page-home .images-carousel-section.animation-slide .images-track>div .img-main,
.page-home .images-carousel-section.animation-slide .images-track>div .img-hover{transition:transform .55s cubic-bezier(.22,.61,.36,1),opacity .45s ease}
.page-home .images-carousel-section.animation-slide .images-track>div .img-main{transform:translateY(0);opacity:1;z-index:1}
.page-home .images-carousel-section.animation-slide .images-track>div .img-hover{transform:translateY(100%);opacity:1;z-index:2}
.page-home .images-carousel-section.animation-slide .images-track>div.has-hover-modal:hover .img-main{transform:translateY(-100%)}
.page-home .images-carousel-section.animation-slide .images-track>div.has-hover-modal:hover .img-hover{transform:translateY(0)}

/* Animacion 4 - dado lateral */
.page-home .images-carousel-section.animation-dice .images-track>div{perspective:1200px;transform-style:preserve-3d}
.page-home .images-carousel-section.animation-dice .images-track>div .img-main,
.page-home .images-carousel-section.animation-dice .images-track>div .img-hover{backface-visibility:hidden;-webkit-backface-visibility:hidden;will-change:transform;transition:transform .6s cubic-bezier(.22,.61,.36,1)}
.page-home .images-carousel-section.animation-dice .images-track>div .img-main{z-index:2;transform-origin:left center;transform:rotateY(0)}
.page-home .images-carousel-section.animation-dice .images-track>div .img-hover{z-index:1;transform-origin:right center;transform:rotateY(90deg)}
.page-home .images-carousel-section.animation-dice .images-track>div.has-hover-modal:hover .img-main{transform:rotateY(-90deg)}
.page-home .images-carousel-section.animation-dice .images-track>div.has-hover-modal:hover .img-hover{transform:rotateY(0)}
.page-home .images-carousel-section .images-track>div.has-hover-modal:focus-visible{outline:3px solid #ffc709;outline-offset:-3px}
.page-home .images-carousel-section .images-hover-modal{position:fixed;inset:0;z-index:2000;display:none;align-items:center;justify-content:center;padding:24px}
.page-home .images-carousel-section .images-hover-modal.is-open{display:flex}
.page-home .images-carousel-section .images-hover-modal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.82)}
.page-home .images-carousel-section .images-hover-modal__dialog{position:relative;z-index:2;width:min(92vw,1200px);max-height:90vh}
.page-home .images-carousel-section .images-hover-modal__img{display:block;width:100%;max-height:90vh;object-fit:contain;border-radius:10px;border:2px solid rgba(255,255,255,.35);background:#121212}
.page-home .images-carousel-section .images-hover-modal__close{position:absolute;top:-16px;right:-16px;width:38px;height:38px;border:none;border-radius:999px;background:#fff;color:#1a1464;font-size:28px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center}
.page-home .images-carousel-section .images-carousel-nav{display:none}

/* ===== CONTACT CARD ===== */
.page-home .contact-card-seccion{width:100%;max-width:1920px;min-height:600px;margin:0 auto;background:#2196F3;display:flex;align-items:center;justify-content:center;padding:40px 24px;box-sizing:border-box}
.page-home .contact-card-seccion .contact-card{position:relative;background:#fff;border-radius:24px;padding:48px 56px 56px;max-width:90%;width:100%;max-width:900px;text-align:center;box-shadow:0 8px 32px rgba(0,0,0,.12)}
.page-home .contact-card-seccion .contact-card .contact-card-text{font-family:'Manrope',sans-serif;font-size:24px;font-weight:400;color:#0069b4;margin:0 auto;max-width:660px;text-align:center;line-height:1.2}
.page-home .contact-card-seccion .contact-card .contact-card-text p{margin-bottom:6px}
.page-home .contact-card-seccion .contact-card .contact-card-btn{position:absolute;left:56px;bottom:0;transform:translateY(50%);display:inline-flex;align-items:center;background:var(--magenta);color:#fff;font-weight:800;font-size:2.2rem;text-transform:uppercase;letter-spacing:.04em;padding:16px 48px 16px 32px;text-decoration:none;border:none;border-radius:0;transition:transform .2s,box-shadow .2s;-webkit-clip-path:polygon(0 0,calc(100% - 20px) 0,100% 50%,calc(100% - 20px) 100%,0 100%);clip-path:polygon(0 0,calc(100% - 20px) 0,100% 50%,calc(100% - 20px) 100%,0 100%);z-index:2}
.page-home .contact-card-seccion .contact-card .contact-card-btn:hover{transform:translateY(50%) scale(1.04);box-shadow:0 6px 24px rgba(199,23,130,.35);color:#fff}
.page-home .content-texts{padding:80px 0;}
.page-home .content-texts .content-texts-editor{font-family:'Manrope',sans-serif;font-size:20px;line-height:1.6;color:#1b1b1b}
.page-home .content-texts .content-texts-editor p:last-child{margin-bottom:0}

/* ===== LISTADO ===== */
.page-home .hasbro-listado-section{padding:clamp(30px,4.5vw,68px) clamp(10px,1.8vw,24px)}
.page-home .hasbro-listado-inner.max-content{width:100%;max-width:min(1720px,100%);margin:0 auto}
.page-home .hasbro-listado-inner{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(0,1fr);gap:clamp(18px,2.4vw,36px);align-items:start}
.page-home .hasbro-listado-top-text{margin:0 0 clamp(8px,1.2vw,14px);color:var(--hasbro-listado-text,#ffffff);font-family:'Versus',Arial,sans-serif;font-size:clamp(2rem,4.2vw,3.9rem);font-weight:700;line-height:.92;text-transform:lowercase}
.page-home .hasbro-listado-top-text::first-letter{text-transform:uppercase}
.page-home .hasbro-listado-title{margin:0;color:var(--hasbro-listado-title,#ffc709);font-family:'Versus',Arial,sans-serif;font-weight:900;font-size:clamp(2rem,5vw,4rem);line-height:.95;text-transform:lowercase}
.page-home .hasbro-listado-title::first-letter{text-transform:uppercase}
.page-home .hasbro-listado-description{margin:clamp(14px,2vw,18px) 0 0;color:var(--hasbro-listado-text,#ffffff);font-family:'Manrope',sans-serif;font-size:clamp(1rem,1.65vw,1.55rem);line-height:1.35}
.page-home .hasbro-listado-items{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(14px,1.8vw,20px) clamp(20px,3vw,34px)}
.page-home .hasbro-listado-item{display:flex;flex-direction:column;align-items:flex-start;gap:10px}
.page-home .hasbro-listado-badge{display:inline-flex;align-items:center;justify-content:center;min-width:66px;height:46px;padding:0 16px;border-radius:12px;background:var(--hasbro-listado-badge,#8ea800);color:#fff;font-family:'Versus',Arial,sans-serif;font-size:2rem;line-height:1;font-weight:900}
.page-home .hasbro-listado-item-title{margin:0;color:var(--hasbro-listado-text,#ffffff);font-family:'Manrope',sans-serif;font-size:clamp(1rem,1.42vw,1.3rem);font-weight:900;line-height:1.2}
.page-home .hasbro-listado-item-description{margin:6px 0 0;color:var(--hasbro-listado-text,#ffffff);font-family:'Manrope',sans-serif;font-size:clamp(.92rem,1.25vw,1.15rem);line-height:1.32}
@media(max-width:1399.98px){
  .page-home .hasbro-listado-section{padding:clamp(26px,3.8vw,52px) clamp(8px,1.2vw,18px)}
  .page-home .hasbro-listado-inner{grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:clamp(16px,2.2vw,28px)}
  .page-home .hasbro-listado-top-text{font-size:clamp(1.7rem,4vw,3rem)}
  .page-home .hasbro-listado-title{font-size:clamp(1.9rem,4.4vw,3.2rem)}
}
@media(max-width:1199.98px){
  .page-home .hasbro-listado-section{padding:clamp(24px,3.4vw,42px) 12px}
  .page-home .hasbro-listado-inner{grid-template-columns:minmax(0,1fr)}
  .page-home .hasbro-listado-items{grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(12px,2vw,18px)}
}
@media(max-width:767.98px){
  .page-home .content-texts{padding:56px 0;margin:16px 0}
  .page-home .hasbro-listado-section{padding:26px 10px}
  .page-home .hasbro-listado-inner{grid-template-columns:minmax(0,1fr);gap:16px}
  .page-home .hasbro-listado-items{grid-template-columns:minmax(0,1fr);gap:14px}
  .page-home .hasbro-listado-top-text{font-size:clamp(1.4rem,7.5vw,2.1rem)}
  .page-home .hasbro-listado-title{font-size:clamp(1.8rem,8vw,2.5rem)}
}

/* ===== FOOTER ===== */
body.hasbro-landing-page .site-footer{background-color:#0469b4;padding:48px 24px 32px;text-align:center}
body.hasbro-landing-page .site-footer .footer-inner{max-width:1920px;margin:0 auto}
body.hasbro-landing-page .site-footer .footer-logo{display:block;width:100%;max-width:320px;height:auto;margin:0 auto 0}
body.hasbro-landing-page .site-footer .footer-siguenos{font-size:30px;color:#fff;font-weight:500;font-family:"Proxima Nova"}
body.hasbro-landing-page .site-footer .footer-social{display:flex;justify-content:center;align-items:center;gap:12px;flex-wrap:wrap}
body.hasbro-landing-page .site-footer .footer-social a{display:flex;width:32px;height:32px;align-items:center;justify-content:center;transition:transform .2s}
body.hasbro-landing-page .site-footer .footer-social a:hover{transform:scale(1.1)}
body.hasbro-landing-page .site-footer .footer-social a img{width:100%;height:100%;object-fit:contain;filter:brightness(0) invert(1)}
body.hasbro-landing-page .site-footer .footer-partners{display:flex;justify-content:center;align-items:center;gap:24px;opacity:.9}
body.hasbro-landing-page .site-footer .footer-partners img{width:105px;object-fit:contain;filter:brightness(0) invert(1)}
body.hasbro-landing-page .site-footer .footer-bottom{padding-top:20px}
body.hasbro-landing-page .site-footer .footer-links{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;font-family:'Versus',Arial,sans-serif;font-size:.75rem;font-weight:600;color:rgba(255,255,255,.95)}
body.hasbro-landing-page .site-footer .footer-links a{color:rgba(255,255,255,.95);text-decoration:none;transition:opacity .2s;font-family:'Proxima Nova',Arial,sans-serif;font-weight:600;font-size:17px}
body.hasbro-landing-page .site-footer .footer-links a:hover{opacity:1}
body.hasbro-landing-page .site-footer .footer-links .footer-sep{margin:0 12px;color:rgba(255,255,255,.8);font-weight:400;user-select:none}
body.hasbro-landing-page .site-footer .footer-legal{margin-top:18px;font-family:'Proxima Nova',Arial,sans-serif;font-size:14px;font-weight:400;color:rgba(255,255,255,.85);line-height:1.45}

/* ===== RESPONSIVE ===== */
@media(max-width:1399.98px){
  .page-home .hb-cta{font-size:clamp(.75rem,1.55vw,1.5rem);letter-spacing:.02em;padding:10px 18px}
}
@media(min-width:1100px) and (max-width:1400px){
  body.hasbro-landing-page .header-nav{gap:clamp(4px,.8vw,12px)}
  body.hasbro-landing-page .header-nav > a{padding:0 clamp(6px,.9vw,12px)}
  body.hasbro-landing-page .country-dropdown .btn-header-arrow{width:clamp(140px,12.5vw,170px)!important}
}
@media(max-width:1280px){
  .page-home .hb-cta{
    font-size:clamp(0.7rem, 1.8vw, 2.05rem);
    white-space:normal;
    text-align:center;
    line-height:1.05;
    overflow-wrap:anywhere;
    padding:8px 14px;
  }
}
@media(max-width:991.98px){
  .page-home .about .row{flex-direction:column}
  .page-home .about-img img{min-height:240px}
  .page-home .carousel-track img{height:320px}
  .page-home .hero-bottom{width:95%}
  .page-home .hb-tex2{clip-path:polygon(0 0,calc(100% - 20px) 0,100% 50%,calc(100% - 20px) 100%,0 100%)}
  .page-home .hb-cta{white-space:normal;text-align:center;line-height:1.1;padding:12px 16px;font-size:clamp(.75rem,2vw,1.25rem)}
  .page-home .mlp .mlp-slide-row{min-height:auto}
  .page-home .mlp .mlp-slide-text-col{order:1;flex:0 0 100%;max-width:100%;padding:24px 20px 18px!important}
  .page-home .mlp .mlp-slide-media-col{order:2;flex:0 0 100%;max-width:100%;min-height:auto}
  .page-home .mlp .mlp-slide-image{min-height:0;height:auto;max-height:min(62vh,420px);object-fit:contain;object-position:center top}
  .page-home .mlp .mlp-slide-text-col h2{font-size:clamp(2rem,8vw,3.4rem)}
  .page-home .mlp .mlp-slide-text-col p{font-size:clamp(1rem,2.8vw,1.2rem)!important;line-height:1.2!important}
  .page-home .mlp-overlap-img{display:none}
  .page-home .mlp .mlp-carousel-nav{padding:1rem!important}
}
@media(max-width:1199.98px){
  body.hasbro-landing-page .hasbro-faq .faq-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .page-home .images-carousel-section{padding:0}
  .page-home .images-carousel-section .images-wrap{height:auto;position:relative}
  .page-home .images-carousel-section .images-track{height:auto}
  .page-home .images-carousel-section .images-track>div{height:clamp(260px,56vw,500px)}
  .page-home .images-carousel-section.is-mobile-slider .images-carousel-nav{
    display:flex;
    gap:10px;
    position:absolute;
    right:12px;
    bottom:12px;
    top:auto;
    transform:none;
    z-index:6;
    margin-top:0;
  }
  .page-home .images-carousel-section.is-mobile-slider .images-car-btn{
    width:42px;
    height:42px;
    box-shadow:0 2px 8px rgba(0,0,0,.22);
  }
  .page-home .mlp .btn-magenta-arrow{
    position:static;
    transform:none;
    margin:10px 0 0;
    bottom:auto;
    padding:12px 24px 12px 16px;
    font-size:clamp(.95rem,2.1vw,1.2rem);
    -webkit-clip-path:polygon(0 0,calc(100% - 18px) 0,100% 50%,calc(100% - 18px) 100%,0 100%);
    clip-path:polygon(0 0,calc(100% - 18px) 0,100% 50%,calc(100% - 18px) 100%,0 100%);
  }
  .page-home .mlp .btn-magenta-arrow:hover{transform:none}
}
@media (min-width:1000px) and (max-width:1250px){
  .page-home .mlp .btn-magenta-arrow{
    position:static;
    left:auto;
    bottom:auto;
    transform:none;
    align-self:flex-start;
    width:auto;
    max-width:100%;
    margin:clamp(8px,1.2vw,14px) 0 0;
    padding:clamp(10px,1.05vw,14px) clamp(20px,2.1vw,30px) clamp(10px,1.05vw,14px) clamp(14px,1.5vw,20px);
    font-size:clamp(.9rem,.52rem + .85vw,1.1rem);
    line-height:1.05;
  }
  .page-home .mlp .btn-magenta-arrow:hover{transform:none}
}
@media(max-width:767.98px){
  body.hasbro-landing-page{padding-top:58px}
  body.hasbro-landing-page .header-inner{height:58px;padding:0 16px;justify-content:space-between;align-items:center;gap:12px}
  body.hasbro-landing-page .header-logo-left{margin:0}
  body.hasbro-landing-page .header-logo-left img{width:200px;max-height:85px;object-fit:contain}
  body.hasbro-landing-page .header-nav{display:none!important}
  body.hasbro-landing-page .hamburger{display:flex!important;flex-shrink:0}
  .page-home .hero{min-height:clamp(340px,68vh,560px);padding-top:58px;padding-bottom:0}
  .page-home .hero-bottom{flex-direction:column;width:100%;overflow:visible}
  .page-home .hb-text{display:block;flex:0 0 auto;width:100%;padding:16px 14px;min-height:auto;font-size:clamp(1.05rem,5.6vw,1.8rem);line-height:1.08;text-align:left;word-break:break-word}
  .page-home .hb-text::after{display:none}
  .page-home .hb-tex2{flex:0 0 auto;min-height:auto;clip-path:none;width:100%}
  .page-home .hb-cta{display:flex;width:100%;padding:14px 16px;white-space:normal;text-align:center;line-height:1.1;font-size:clamp(.95rem,4.5vw,1.3rem)}
  .page-home .tour h2{font-size:clamp(1.8rem,8.2vw,2.8rem);line-height:1.1}
  .page-home .city-badge-full{width:100%;max-width:100%;min-height:84px}
  .page-home .city-badge-full .city-badge-img{flex:0 0 28%}
  .page-home .city-badge-full .city-badge-txt{flex:0 0 30%;padding:8px 6px}
  .page-home .city-badge-full .city-badge-venta{flex:1 1 auto;padding-right:26px;font-size:clamp(1.35rem,7.6vw,2.4rem);line-height:1;white-space:nowrap;text-align:center}
  .page-home .city-badge-city{font-size:clamp(1.5rem,5.5vw,2.1rem)}
  .page-home .city-badge-country{font-size:clamp(1.5rem,5.5vw,2.1rem)}
  .page-home .logos-carousel-section{padding:14px 0}
  .page-home .logos-carousel-section .logos-wrap{padding:0 clamp(8px,3vw,16px)}
  .page-home .logos-carousel-section .logos-track>div{padding:0 5px}
  .page-home .logos-carousel-section .logos-track img{height:clamp(40px,10vw,52px);max-height:52px}
  .page-home .mlp .mlp-slide-text-col{padding:18px 14px 14px!important}
  .page-home .mlp .mlp-slide-text-col h2{margin-bottom:10px!important;font-size:clamp(1.7rem,9vw,2.6rem);line-height:.92}
  .page-home .mlp .mlp-slide-text-col p{margin-bottom:14px!important;font-size:clamp(.98rem,5vw,1.2rem)!important;line-height:1.22!important}
  .page-home .mlp .mlp-slide-image{width:100%;height:auto;min-height:0;max-height:56vh;object-fit:contain}
  .page-home .mlp .btn-magenta{font-size:clamp(.85rem,4vw,1rem)}
  .page-home .mlp .btn-magenta-arrow{
    width:100%;
    max-width:280px;
    justify-content:center;
    margin:8px 0 0;
    padding:11px 22px 11px 14px;
    font-size:clamp(.88rem,4.6vw,1rem);
  }
  .page-home .mlp .mlp-carousel-nav{right:8px;bottom:8px;padding:.5rem!important}
  .page-home .mlp .mlp-carousel-nav .car-btn{width:44px;height:44px}
  .page-home .ubicacion-map-frame{min-height:260px;border-radius:14px}
  .page-home .ubicacion-section{padding-top:32px;padding-bottom:32px}
  body.hasbro-landing-page .hasbro-faq .faq-grid{grid-template-columns:minmax(0,1fr)}
  body.hasbro-landing-page .hasbro-faq.faq-section{padding-top:32px;padding-bottom:32px}
  .page-home .carousel-track img{height:220px}
  .page-home .car-btn{width:38px;height:38px}
  .page-home .car-btn img{width:20px}
}
@media(max-width:575.98px){
  .page-home .logos-carousel-section{padding:10px 0}
  .page-home .logos-carousel-section .logos-wrap{padding:0 6px}
  .page-home .logos-carousel-section .logos-track>div{padding:0 3px}
  .page-home .logos-carousel-section .logos-track img{height:clamp(34px,9vw,44px);max-height:44px}
  .page-home .tour h2{font-size:clamp(1.5rem,9vw,2.2rem)}
  .page-home .city-badge-full{min-height:74px}
  .page-home .city-badge-full .city-badge-img{flex:0 0 26%}
  .page-home .city-badge-full .city-badge-txt{flex:0 0 30%;padding:6px 4px}
  .page-home .city-badge-full .city-badge-venta{padding-right:18px;font-size:clamp(1.15rem,8.2vw,1.95rem)}
  .page-home .city-badge-city{font-size:clamp(1.1rem,6.8vw,1.7rem)}
  .page-home .city-badge-country{font-size:clamp(1.1rem,6.8vw,1.7rem)}
  .page-home .hasbro-listado-items{grid-template-columns:minmax(0,1fr)}
  .page-home .hasbro-listado-title{font-size:clamp(1.75rem,9vw,2.7rem)}
  .page-home .hero{min-height:clamp(300px,62vh,500px)}
  .page-home .carousel-track img{height:180px}
  .page-home .hb-text{padding:14px 12px;font-size:clamp(1rem,6vw,1.45rem);line-height:1.08}
  .page-home .hb-cta{padding:12px 14px;font-size:clamp(.9rem,4.8vw,1.1rem)}
}
/* ===== BANNER ===== */
.page-home .banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 0;
    outline: none;
    box-shadow: none;
}
.page-home .banner .banner-media,
.page-home .banner .banner-img,
.page-home .banner .hero-bg-img,
.page-home .banner video.hero-video {
    border: 0;
    outline: none;
    box-shadow: none;
}
.page-home .banner .banner-bottom,
.page-home .banner .banner-text {
    border: 0;
    outline: none;
    box-shadow: none;
}
.page-home .banner .banner-cta {
    border: none;
    outline: none;
    box-shadow: none;
}
.page-home .banner .banner-cta:focus,
.page-home .banner .banner-cta:focus-visible {
    outline: none;
}
/* Imagen: sin min-height forzado (evita hueco bajo la imagen si antes había 100vh en ACF) */
.page-home .banner.banner--intrinsic {
    min-height: 0;
}
.page-home .banner.banner--intrinsic .banner-img {
    height: auto;
    max-height: none;
}
/* Altura ACF (p. ej. 100vh): en pantallas chicas se limita con dvh/clamp para no forzar pantalla completa */
.page-home .banner--dynamic-minh {
    min-height: var(--banner-min-h, 100svh);
}
@media (max-width: 991.98px) {
    .page-home .banner--dynamic-minh {
        min-height: min(var(--banner-min-h, 100svh), clamp(15.5rem, 68dvh, 100dvh));
    }
}
@media (max-width: 575.98px) {
    .page-home .banner--dynamic-minh {
        min-height: min(var(--banner-min-h, 100svh), clamp(13.5rem, 56dvh, 92dvh));
    }
}
.page-home .banner--parallax {
    position: relative;
    isolation: isolate;
}
/* Altura auto: la imagen base está en flujo y define la caja; la capa parallax llena esa caja */
.page-home .banner--parallax.banner--intrinsic .banner-media {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
    z-index: 0;
    line-height: 0;
}
.page-home .banner--parallax.banner--intrinsic .banner-img--base {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: unset;
    object-position: center center;
    line-height: 0;
}
.page-home .banner--parallax.banner--intrinsic .banner-img--parallax {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
}
/* Vídeo con altura auto: proporción por defecto (no hay dimensiones en HTML) */
.page-home .banner--intrinsic:has(> video.hero-video:not(.hero-bg-hidden)) {
    aspect-ratio: 16 / 9;
}
.page-home .banner--parallax .banner-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 100%;
}
/* Misma posición y recorte que la principal (cover + center) en todos los anchos/alturas */
.page-home .banner--parallax .banner-img--base,
.page-home .banner--parallax .banner-img--parallax {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    box-sizing: border-box;
}
.page-home .banner--parallax .banner-img--base {
    z-index: 0;
    display: block;
}
.page-home .banner--parallax .banner-img--parallax {
    z-index: 1;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
}
/* Fuera de la zona visible del viewport: segunda capa oculta; al volver a la sección reaparece */
.page-home .banner--parallax:not(.banner-parallax-visible) .banner-img--parallax {
    opacity: 0 !important;
    transition: opacity 0.45s ease !important;
}
/* 1 — Entrada desde arriba (misma caja; solo transform) */
.page-home .banner--parallax[data-parallax-mode="entrada_superior"] .banner-img--parallax {
    z-index: 2;
    transform: translate3d(0, -110%, 0);
    transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.page-home .banner--parallax.banner-parallax-visible[data-parallax-mode="entrada_superior"] .banner-img--parallax.vis {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
/* 2 — Zoom (origen centro = mismo encuadre que la principal al terminar) */
.page-home .banner--parallax[data-parallax-mode="zoom"] .banner-img--parallax {
    z-index: 2;
    transform: scale(1.48);
    transform-origin: center center;
    opacity: 0.93;
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}
.page-home .banner--parallax.banner-parallax-visible[data-parallax-mode="zoom"] .banner-img--parallax.vis {
    transform: scale(1);
    opacity: 1;
}
/* 3 — Fundido + escala */
.page-home .banner--parallax[data-parallax-mode="fade_escala"] .banner-img--parallax {
    z-index: 2;
    opacity: 0;
    transform: scale(0.85);
    transform-origin: center center;
    transition: opacity 1.05s ease, transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-home .banner--parallax.banner-parallax-visible[data-parallax-mode="fade_escala"] .banner-img--parallax.vis {
    opacity: 1;
    transform: scale(1);
}
/* 4 — Deslizamiento lateral (% del ancho propio = coherente móvil/tablet/desktop) */
.page-home .banner--parallax[data-parallax-mode="deslizar_lateral"] .banner-img--parallax {
    z-index: 2;
    transform: translate3d(100%, 0, 0);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-home .banner--parallax.banner-parallax-visible[data-parallax-mode="deslizar_lateral"] .banner-img--parallax.vis {
    transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .page-home .banner--parallax .banner-img--parallax {
    transition: opacity 0.35s ease !important;
  }
  .page-home .banner--parallax:not(.banner-parallax-visible) .banner-img--parallax {
    opacity: 0 !important;
  }
  .page-home .banner--parallax.banner-parallax-visible .banner-img--parallax {
    opacity: 1 !important;
    transform: none !important;
  }
}
.page-home .banner .banner-img {
    display: block;
    width: 100%;
    height: auto;
}
.page-home .banner .banner-bottom {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
}
.page-home .banner .banner-cta {
    display: inline-flex;
    align-items: center;
    background: #ffc709;
    color: #c71882;
    font-family: 'Versus', Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(1rem, 1.5vw, 1.4rem);
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    transition: transform .2s, filter .2s;
}
.page-home .banner .banner-cta:hover {
    transform: scale(1.04);
    filter: brightness(1.08);
    color: var(--navy);
}

/* ===== MERCH ===== */
.merch-section {
    padding: 24px;
    width: 100%;
}
.merch-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1920px;
    margin: 0 auto;
}
.merch-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    min-width: 300px;
    padding: 8px 0;
}
.merch-titulo {
    font-family: 'Versus', Arial, sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 2;
    margin: 0;
    text-transform: uppercase;
}
.merch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffc709;
    color: #c71882;
    font-family: 'Versus', Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(1rem, 1.5vw, 1.4rem);
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    transition: transform .2s, filter .2s;
    white-space: nowrap;
}
.merch-btn:hover {
    transform: scale(1.04);
    filter: brightness(1.08);
    color: var(--navy);
}
.merch-grid {
    display: flex;
    flex: 1;
    gap: 16px;
    align-items: stretch;
}
.merch-item {
    flex: 1;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: #4ab0d9;
    min-width: 0;
}
.merch-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 767px) {
    .merch-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .merch-grid {
        width: 100%;
        flex-wrap: wrap;
    }
    .merch-item {
        flex: 1 1 calc(50% - 8px);
    }
}