footer {
  position: relative;
}

.hot-reverb-watermark {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(31, 21, 39, .92), rgba(136, 64, 155, .92));
  box-shadow: 0 18px 48px rgba(31, 21, 39, .26);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px) scale(.94);
  transition: opacity .28s ease, transform .28s ease;
  backdrop-filter: blur(18px);
}

.hot-reverb-watermark.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.hot-reverb-watermark span {
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  opacity: .78;
}

.hot-reverb-watermark strong {
  font-size: 1rem;
  font-weight: 950;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    color: var(--ink);
    background:
      linear-gradient(180deg, #fff9e7 0%, #f6fbe9 42%, #eefafa 100%);
  }

  .site-header {
    padding: 9px 10px;
  }

  .site-header.is-scrolled {
    padding-block: 7px;
  }

  .nav-shell {
    width: 100%;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 8px;
    border-radius: 24px;
    background: rgba(255, 252, 244, .88);
    box-shadow: 0 12px 34px rgba(31, 21, 39, .12);
    backdrop-filter: blur(18px);
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    box-shadow: 0 8px 18px rgba(31, 21, 39, .12);
  }

  .brand-name strong {
    max-width: 160px;
    overflow: hidden;
    font-size: .86rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-name span {
    font-size: .58rem;
  }

  .header-actions .icon-link {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    color: #fff;
    background: var(--violet);
    box-shadow: 0 12px 24px rgba(136, 64, 155, .28);
  }

  .menu-toggle:hover {
    background: var(--violet);
    transform: none;
  }

  .main-nav {
    top: 78px;
    left: 10px;
    right: 10px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 24px;
    background: rgba(255, 252, 244, .96);
    box-shadow: 0 20px 50px rgba(31, 21, 39, .16);
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    display: grid;
    min-height: 48px;
    place-items: center;
    padding: 10px 8px;
    border-radius: 16px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 8px 18px rgba(31, 21, 39, .07);
    font-size: .82rem;
    text-align: center;
  }

  .main-nav a.is-active,
  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: #fff;
    background: var(--violet);
    transform: none;
  }

  .hero,
  .hero.compact,
  .monsterfun-home .hero {
    min-height: auto;
    padding: 92px 14px 32px;
    background:
      linear-gradient(150deg, rgba(255, 249, 231, .98), rgba(245, 252, 231, .96) 46%, rgba(235, 250, 248, .98));
    overflow: hidden;
  }

  .hero::before,
  .hero.compact::before,
  .monsterfun-home .hero::before {
    top: 70px;
    height: 118px;
    opacity: .64;
    clip-path: polygon(0 0, 100% 0, 100% 62%, 91% 78%, 82% 62%, 73% 78%, 64% 62%, 55% 78%, 46% 62%, 37% 78%, 28% 62%, 19% 78%, 10% 62%, 0 78%);
    animation: tent-breathe 5s ease-in-out infinite;
  }

  .hero::after,
  .hero.compact::after,
  .monsterfun-home .hero::after {
    display: none;
  }

  .hero-grid,
  .monsterfun-home .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    min-height: 0;
  }

  .page-inflables .hero.compact .hero-grid,
  .page-decoracion .hero.compact .hero-grid,
  .page-golosinas .hero.compact .hero-grid,
  .page-mobiliario .hero.compact .hero-grid,
  .page-photobooth .hero.compact .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .hero-grid > .reveal:first-child,
  .monsterfun-home .hero-grid > .reveal:first-child {
    order: 2;
    position: relative;
    z-index: 3;
  }

  .hero-stage,
  .monsterfun-home .hero-stage {
    order: 1;
    position: relative;
    inset: auto;
    width: min(100%, 430px);
    min-height: 344px;
    margin: 0 auto 4px;
    overflow: visible;
    perspective: 900px;
    animation: mobile-stage-pop .72s cubic-bezier(.2, .72, .18, 1) both;
  }

  .page-inflables .hero.compact .hero-stage,
  .page-decoracion .hero.compact .hero-stage,
  .page-golosinas .hero.compact .hero-stage,
  .page-mobiliario .hero.compact .hero-stage,
  .page-photobooth .hero.compact .hero-stage {
    width: min(100%, 430px) !important;
    min-height: 344px !important;
    margin: 0 auto 4px !important;
  }

  .hero-stage::before,
  .monsterfun-home .hero-stage::before {
    content: "";
    position: absolute;
    inset: 24px 8px 18px;
    border-radius: 36px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .64), rgba(255, 255, 255, .22));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72), 0 24px 58px rgba(31, 21, 39, .12);
  }

  .portal-ring,
  .monsterfun-home .portal-ring {
    display: none;
  }

  .stage-card,
  .monsterfun-home .stage-card {
    border-width: 7px;
    box-shadow: 0 18px 44px rgba(31, 21, 39, .2);
  }

  .stage-card.primary,
  .monsterfun-home .stage-card.primary {
    left: 50%;
    right: auto;
    top: 0;
    width: 82%;
    height: 70%;
    border-radius: 34px;
    transform: translateX(-50%) rotateZ(-2deg) translateZ(48px);
  }

  .stage-card.side,
  .monsterfun-home .stage-card.side {
    left: 0;
    bottom: 2%;
    width: 53%;
    height: 35%;
    border-radius: 28px;
    transform: rotateZ(-6deg) translateZ(80px);
  }

  .stage-card.mini,
  .monsterfun-home .stage-card.mini {
    right: 0;
    bottom: 0;
    display: block;
    width: 49%;
    height: 32%;
    border-radius: 28px;
    transform: rotateZ(5deg) translateZ(88px);
  }

  .stats-strip,
  .monsterfun-home .stats-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 5;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    margin: -14px auto 0;
    padding: 7px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 16px 34px rgba(31, 21, 39, .1);
    transform: none;
  }

  .stat {
    padding: 10px 4px;
    border: 1px solid rgba(31, 21, 39, .08);
    border-radius: 16px;
  }

  .stat strong {
    font-size: 1.1rem;
  }

  .stat span {
    font-size: .62rem;
    line-height: 1.15;
  }

  .eyebrow,
  .monsterfun-home .eyebrow {
    max-width: 100%;
    padding: 8px 11px;
    color: var(--ink);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 10px 22px rgba(31, 21, 39, .08);
    font-size: .76rem;
    white-space: normal;
  }

  .hero h1,
  .monsterfun-home .hero h1 {
    max-width: 8.5ch;
    margin: 12px 0 12px;
    font-size: clamp(2.35rem, 13vw, 3.28rem);
    line-height: .92;
    text-shadow: 0 5px 0 rgba(255, 255, 255, .68);
  }

  .hero-copy,
  .monsterfun-home .hero-copy {
    max-width: 30ch;
    margin-bottom: 18px;
    color: #3b3447;
    font-size: 1rem;
    line-height: 1.56;
  }

  .cta-row,
  .monsterfun-home .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn,
  .monsterfun-home .btn {
    width: 100%;
    min-height: 50px;
    padding: 13px 16px;
    border-radius: 18px;
  }

  .section {
    padding: 54px 14px;
    overflow: hidden;
  }

  .container {
    width: 100%;
  }

  .section-head,
  .service-page-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  h2,
  .service-intro h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    line-height: 1.04;
  }

  .service-intro {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-card {
    padding: 18px;
    border-left: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 36px rgba(31, 21, 39, .1);
  }

  .service-grid,
  .gallery-grid,
  .process,
  .service-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 14px 22px;
    margin-inline: -14px;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar,
  .process::-webkit-scrollbar,
  .service-gallery::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .gallery-item,
  .step {
    flex: 0 0 min(82vw, 350px);
    scroll-snap-align: center;
  }

  .service-card {
    min-height: 378px;
    border-radius: 28px;
  }

  .service-card img {
    min-height: 378px;
  }

  .gallery-item {
    aspect-ratio: 4 / 5;
    border-radius: 26px;
  }

  .page-mobiliario .service-gallery,
  .page-photobooth .service-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  .page-mobiliario .service-gallery .gallery-item,
  .page-photobooth .service-gallery .gallery-item {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1.02;
    border: 7px solid #fff;
    border-radius: 30px;
    box-shadow: 0 18px 42px rgba(31, 21, 39, .12);
  }

  .page-mobiliario .service-gallery .gallery-item span,
  .page-photobooth .service-gallery .gallery-item span {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(31, 21, 39, .9), rgba(78, 56, 88, .86));
  }

  .page-golosinas .service-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  .page-golosinas .service-gallery .gallery-item {
    width: 100%;
    aspect-ratio: 1;
    border: 6px solid #fff;
    border-radius: 28px;
  }

  .page-golosinas .service-gallery .gallery-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 1.28 / 1;
  }

  .contact-signal {
    display: grid;
    gap: 10px;
  }

  .contact-signal a,
  .phone-pill {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  footer {
    padding: 34px 16px 96px;
    text-align: center;
  }

  .footer-grid {
    justify-items: center;
  }

  .footer-logo {
    width: 74px;
    height: 74px;
  }

  .footer-links {
    justify-content: center;
    gap: 8px;
  }

  .footer-links a {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
  }

  .hot-reverb-watermark {
    bottom: 86px;
    width: min(calc(100% - 28px), 330px);
    justify-content: center;
    border-radius: 22px;
  }
}

@media (max-width: 390px) {
  .hero-stage,
  .monsterfun-home .hero-stage {
    min-height: 304px;
  }

  .hero h1,
  .monsterfun-home .hero h1 {
    font-size: clamp(2.08rem, 12vw, 2.76rem);
  }

  .brand-name strong {
    max-width: 130px;
  }
}

@keyframes mobile-stage-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes tent-breathe {
  0%, 100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(1.025);
  }
}

@media (max-width: 760px) {
  body {
    background:
      linear-gradient(180deg, #fff7e4 0%, #f8fbeb 38%, #eefbfa 100%);
  }

  .site-header {
    padding: 8px;
  }

  .nav-shell {
    padding: 7px;
    border-radius: 20px;
    background: rgba(255, 250, 239, .94);
    box-shadow: 0 10px 28px rgba(31, 21, 39, .12);
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name strong {
    font-size: .8rem;
  }

  .brand-name span {
    font-size: .55rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: linear-gradient(135deg, #88409b, #5fa84e);
  }

  .main-nav {
    top: 72px;
    border-radius: 22px;
  }

  .hero,
  .hero.compact,
  .monsterfun-home .hero {
    padding: 82px 16px 34px;
    background:
      radial-gradient(ellipse at 50% -4%, rgba(255, 255, 255, .96) 0 36%, transparent 37%),
      linear-gradient(150deg, #fff6db 0%, #f8fbdf 50%, #eaf9f7 100%);
  }

  .hero::before,
  .hero.compact::before,
  .monsterfun-home .hero::before {
    top: 62px;
    height: 86px;
    opacity: .56;
  }

  .hero-grid,
  .monsterfun-home .hero-grid,
  .page-inflables .hero.compact .hero-grid,
  .page-decoracion .hero.compact .hero-grid,
  .page-golosinas .hero.compact .hero-grid,
  .page-mobiliario .hero.compact .hero-grid,
  .page-photobooth .hero.compact .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    align-items: start;
  }

  .hero-grid > .reveal:first-child,
  .monsterfun-home .hero-grid > .reveal:first-child {
    order: 1;
    padding-top: 6px;
  }

  .eyebrow,
  .monsterfun-home .eyebrow {
    width: fit-content;
    max-width: 100%;
    border: 1px solid rgba(136, 64, 155, .13);
    background: rgba(255, 255, 255, .92);
  }

  .hero h1,
  .monsterfun-home .hero h1 {
    max-width: 9ch;
    margin: 14px 0 12px;
    font-size: clamp(2.55rem, 14vw, 3.42rem);
    line-height: .88;
    text-wrap: balance;
  }

  .hero-copy,
  .monsterfun-home .hero-copy {
    max-width: 34ch;
    color: #473f52;
    font-size: 1.02rem;
  }

  .cta-row,
  .monsterfun-home .cta-row {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .btn,
  .monsterfun-home .btn {
    min-height: 52px;
    border-radius: 18px;
    padding: 12px 11px;
    font-size: .9rem;
    line-height: 1.1;
    box-shadow: 0 14px 24px rgba(225, 112, 130, .22);
  }

  .btn.secondary {
    box-shadow: 0 12px 24px rgba(31, 21, 39, .08);
  }

  .hero-stage,
  .monsterfun-home .hero-stage,
  .page-inflables .hero.compact .hero-stage,
  .page-decoracion .hero.compact .hero-stage,
  .page-golosinas .hero.compact .hero-stage,
  .page-mobiliario .hero.compact .hero-stage,
  .page-photobooth .hero.compact .hero-stage {
    order: 2;
    width: 100% !important;
    min-height: 300px !important;
    margin: 0 auto !important;
  }

  .hero-stage::before,
  .monsterfun-home .hero-stage::before {
    inset: 20px 0 14px;
    border-radius: 34px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .26)),
      linear-gradient(180deg, rgba(168, 204, 69, .14), rgba(114, 209, 208, .1));
  }

  .stage-card,
  .monsterfun-home .stage-card {
    border-width: 6px;
    transition: transform .28s ease, filter .28s ease;
  }

  .stage-card.primary,
  .monsterfun-home .stage-card.primary {
    left: auto;
    right: 0;
    top: 4px;
    width: 72%;
    height: 70%;
    border-radius: 30px;
    transform: rotateZ(2deg) translateZ(48px);
  }

  .stage-card.side,
  .monsterfun-home .stage-card.side {
    left: 0;
    bottom: 5%;
    width: 58%;
    height: 38%;
    border-radius: 28px;
    transform: rotateZ(-5deg) translateZ(82px);
  }

  .stage-card.mini,
  .monsterfun-home .stage-card.mini {
    right: 4%;
    bottom: 0;
    width: 43%;
    height: 32%;
    border-radius: 26px;
    transform: rotateZ(6deg) translateZ(92px);
  }

  .stats-strip,
  .monsterfun-home .stats-strip {
    margin-top: -4px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
  }

  .section {
    padding: 46px 16px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .kicker {
    font-size: .72rem;
  }

  h2,
  .service-intro h2 {
    font-size: clamp(1.9rem, 10vw, 2.62rem);
    line-height: .98;
    text-wrap: balance;
  }

  .section-head p,
  .service-intro p,
  .feature-copy p,
  .contact-copy p {
    font-size: .98rem;
    line-height: 1.58;
  }

  .service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  .service-card {
    min-height: 250px;
    border: 6px solid #fff;
    border-radius: 26px;
  }

  .service-card img {
    min-height: 250px;
  }

  .service-content {
    padding: 16px;
  }

  .service-content h3 {
    font-size: 1.42rem;
  }

  .process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  .step {
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
  }

  .service-page-grid {
    gap: 14px;
  }

  .info-card {
    border-radius: 22px;
    background: #fff;
  }

  .service-gallery,
  .gallery-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    padding: 0;
    margin: 0;
  }

  .page-decoracion .service-gallery,
  .page-inflables .service-gallery,
  .page-mobiliario .service-gallery,
  .page-photobooth .service-gallery {
    display: grid !important;
  }

  .page-decoracion .service-gallery .gallery-item:nth-child(2),
  .page-decoracion .service-gallery .gallery-item:nth-child(5) {
    margin-top: 0 !important;
  }

  .gallery-item,
  .page-mobiliario .service-gallery .gallery-item,
  .page-photobooth .service-gallery .gallery-item,
  .page-golosinas .service-gallery .gallery-item {
    width: 100%;
    aspect-ratio: 1.08 / 1;
    border: 6px solid #fff;
    border-radius: 26px;
    box-shadow: 0 16px 34px rgba(31, 21, 39, .1);
  }

  .gallery-item span,
  .page-mobiliario .service-gallery .gallery-item span,
  .page-photobooth .service-gallery .gallery-item span {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 11px 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(31, 21, 39, .9), rgba(78, 56, 88, .88));
    font-size: .98rem;
  }

  .page-golosinas .service-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .page-golosinas .service-gallery .gallery-item {
    aspect-ratio: 1;
    border-radius: 24px;
  }

  .page-golosinas .service-gallery .gallery-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 1.2 / 1;
  }

  .page-mobiliario .service-gallery,
  .page-photobooth .service-gallery {
    grid-template-columns: 1fr;
  }

  .page-mobiliario .service-gallery .gallery-item,
  .page-photobooth .service-gallery .gallery-item {
    aspect-ratio: 1.18 / 1;
  }

  footer {
    border-radius: 28px 28px 0 0;
  }
}

@media (max-width: 390px) {
  .hero h1,
  .monsterfun-home .hero h1 {
    font-size: clamp(2.28rem, 13vw, 3rem);
  }

  .hero-stage,
  .monsterfun-home .hero-stage,
  .page-inflables .hero.compact .hero-stage,
  .page-decoracion .hero.compact .hero-stage,
  .page-golosinas .hero.compact .hero-stage,
  .page-mobiliario .hero.compact .hero-stage,
  .page-photobooth .hero.compact .hero-stage {
    min-height: 278px !important;
  }
}
