
body.ham-shell-active #content,
body.ham-shell-active .site-content{
  margin-top:0!important;
  padding-top:0!important;
}

body.ham-shell-active .site-content>.ast-container,
body.ham-shell-active #primary,
body.ham-shell-active .site-main{
  margin-top:0!important;
  padding-top:0!important;
}


:root{
  --ham-shell-red:#e42020;
  --ham-shell-yellow:#ffd523;
  --ham-shell-dark:#17110e;
  --ham-shell-white:#fff;
  --ham-shell-cream:#fff8e2;
  --ham-shell-muted:#7a6e65;
  --ham-shell-line:rgba(255,255,255,.13);
  --ham-shell-shadow:0 18px 55px rgba(27,13,7,.19);
}

body.ham-shell-active{
  overflow-x:hidden;
}

body.ham-shell-menu-open{
  overflow:hidden;
}

.ham-shell-skip-link{
  position:fixed;
  top:-100px;
  left:18px;
  z-index:100000;
  padding:12px 17px;
  border-radius:0 0 12px 12px;
  color:#fff;
  background:var(--ham-shell-red);
  font-weight:900;
  text-decoration:none;
}

.ham-shell-skip-link:focus{
  top:0;
}

.ham-shell-container{
  width:min(1260px,calc(100% - 34px));
  margin-inline:auto;
}

.ham-shell-header{
  position:sticky;
  top:0;
  z-index:9998;
  width:100%;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  transition:box-shadow .25s ease,transform .25s ease;
}

.admin-bar .ham-shell-header{
  top:32px;
}

.ham-shell-header.is-scrolled{
  box-shadow:0 14px 40px rgba(21,11,7,.2);
}

.ham-shell-topbar{
  color:#2b1c05;
  background:var(--ham-shell-yellow);
}

.ham-shell-topbar-inner{
  min-height:37px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.03em;
}

.ham-shell-topbar p{
  margin:0;
}

.ham-shell-topbar a{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#681114;
  font-weight:950;
  text-decoration:none;
}

.ham-shell-mainbar{
  position:relative;
  color:#fff;
  background:
    radial-gradient(circle at 88% 0,rgba(228,32,32,.28),transparent 22rem),
    linear-gradient(115deg,#130d09,#28130f 58%,#5b1116);
  border-bottom:1px solid rgba(255,255,255,.1);
}

.ham-shell-mainbar::after{
  position:absolute;
  right:5%;
  bottom:-22px;
  width:125px;
  height:44px;
  border:7px solid rgba(255,213,35,.12);
  border-radius:50%;
  content:"";
  pointer-events:none;
}

.ham-shell-mainbar-inner{
  min-height:82px;
  display:grid;
  grid-template-columns:260px 1fr auto;
  align-items:center;
  gap:22px;
}

.ham-shell-brand{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  text-decoration:none;
}

.ham-shell-logo-frame{
  display:grid;
  width:250px;
  height:64px;
  place-items:center;
  overflow:visible;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  transform:none;
}

.ham-shell-logo-frame img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 5px 12px rgba(0,0,0,.42));
}

.ham-shell-desktop-nav{
  min-width:0;
}

.ham-shell-menu,
.ham-shell-menu ul{
  margin:0;
  padding:0;
  list-style:none;
}

.ham-shell-menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2px;
}

.ham-shell-menu>li{
  position:relative;
}

.ham-shell-menu>li>a{
  position:relative;
  display:flex;
  min-height:82px;
  align-items:center;
  gap:6px;
  padding:0 13px;
  color:rgba(255,255,255,.86);
  font-size:.86rem;
  font-weight:850;
  text-decoration:none;
  white-space:nowrap;
  transition:color .2s ease,background .2s ease;
}

.ham-shell-menu>li>a::after{
  position:absolute;
  right:13px;
  bottom:18px;
  left:13px;
  height:3px;
  border-radius:10px;
  background:var(--ham-shell-yellow);
  content:"";
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .2s ease;
}

.ham-shell-menu>li:hover>a,
.ham-shell-menu>li.current-menu-item>a,
.ham-shell-menu>li.current-menu-ancestor>a{
  color:var(--ham-shell-yellow);
  background:rgba(255,255,255,.04);
}

.ham-shell-menu>li:hover>a::after,
.ham-shell-menu>li.current-menu-item>a::after,
.ham-shell-menu>li.current-menu-ancestor>a::after{
  transform:scaleX(1);
}

.ham-shell-menu .menu-item-has-children>a::before{
  order:2;
  color:var(--ham-shell-yellow);
  content:"⌄";
  font-size:.8rem;
}

.ham-shell-menu .sub-menu{
  position:absolute;
  top:calc(100% - 7px);
  left:50%;
  width:245px;
  padding:10px;
  opacity:0;
  visibility:hidden;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:#1b110d;
  box-shadow:0 22px 55px rgba(0,0,0,.32);
  transform:translate(-50%,10px);
  transition:opacity .2s ease,visibility .2s ease,transform .2s ease;
}

.ham-shell-menu li:hover>.sub-menu,
.ham-shell-menu li:focus-within>.sub-menu{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,0);
}

.ham-shell-menu .sub-menu::before{
  position:absolute;
  top:-7px;
  left:50%;
  width:14px;
  height:14px;
  background:#1b110d;
  content:"";
  transform:translateX(-50%) rotate(45deg);
}

.ham-shell-menu .sub-menu a{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:44px;
  padding:10px 12px;
  border-radius:11px;
  color:rgba(255,255,255,.78);
  font-size:.82rem;
  font-weight:800;
  text-decoration:none;
}

.ham-shell-menu .sub-menu a::after{
  color:var(--ham-shell-yellow);
  content:"→";
  opacity:0;
  transform:translateX(-5px);
  transition:.2s ease;
}

.ham-shell-menu .sub-menu a:hover{
  color:#fff;
  background:rgba(255,213,35,.1);
}

.ham-shell-menu .sub-menu a:hover::after{
  opacity:1;
  transform:none;
}

.ham-shell-menu-highlight>a{
  color:var(--ham-shell-yellow)!important;
}

.ham-shell-header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:9px;
}

.ham-shell-action{
  display:inline-flex;
  min-height:44px;
  align-items:center;
  justify-content:center;
  gap:7px;
  padding:10px 16px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:950;
  text-decoration:none;
  white-space:nowrap;
  transition:transform .2s ease,background .2s ease;
}

.ham-shell-action:hover{
  transform:translateY(-2px);
}

.ham-shell-action-primary{
  color:#211307;
  background:var(--ham-shell-yellow);
  box-shadow:0 10px 26px rgba(255,213,35,.2);
}

.ham-shell-action-secondary{
  color:#fff;
  border:1px solid rgba(255,255,255,.21);
  background:rgba(255,255,255,.07);
}

.ham-shell-toggle{
  width:46px;
  height:46px;
  display:none;
  place-items:center;
  gap:4px;
  padding:11px;
  border:1px solid rgba(255,255,255,.19);
  border-radius:13px;
  color:#fff;
  background:rgba(255,255,255,.07);
  cursor:pointer;
}

.ham-shell-toggle span:not(.screen-reader-text){
  width:22px;
  height:2px;
  display:block;
  border-radius:4px;
  background:#fff;
  transition:.2s ease;
}

.ham-shell-toggle[aria-expanded="true"] span:nth-of-type(1){
  transform:translateY(6px) rotate(45deg);
}

.ham-shell-toggle[aria-expanded="true"] span:nth-of-type(2){
  opacity:0;
}

.ham-shell-toggle[aria-expanded="true"] span:nth-of-type(3){
  transform:translateY(-6px) rotate(-45deg);
}

.ham-shell-mobile-overlay{
  position:fixed;
  inset:0;
  z-index:9998;
  background:rgba(11,6,4,.72);
  backdrop-filter:blur(5px);
}

.ham-shell-mobile-panel{
  position:fixed;
  top:0;
  right:0;
  z-index:9999;
  width:min(420px,92vw);
  height:100dvh;
  overflow-y:auto;
  color:#fff;
  background:
    radial-gradient(circle at 100% 0,rgba(228,32,32,.24),transparent 19rem),
    #17100c;
  box-shadow:-22px 0 60px rgba(0,0,0,.32);
  transform:translateX(104%);
  transition:transform .27s ease;
}

.ham-shell-mobile-panel.is-open{
  transform:none;
}

.ham-shell-mobile-head{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 19px;
  border-bottom:1px solid rgba(255,255,255,.1);
  color:var(--ham-shell-yellow);
  font-size:.78rem;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.ham-shell-mobile-head button{
  width:40px;
  height:40px;
  border:0;
  border-radius:50%;
  color:#fff;
  background:rgba(255,255,255,.08);
  cursor:pointer;
  font-size:1.7rem;
  line-height:1;
}

.ham-shell-mobile-menu,
.ham-shell-mobile-menu ul{
  margin:0;
  padding:0;
  list-style:none;
}

.ham-shell-mobile-nav{
  padding:16px;
}

.ham-shell-mobile-menu>li{
  border-bottom:1px solid rgba(255,255,255,.09);
}

.ham-shell-mobile-menu li{
  position:relative;
}

.ham-shell-mobile-menu a{
  display:block;
  padding:15px 46px 15px 6px;
  color:rgba(255,255,255,.88);
  font-weight:850;
  text-decoration:none;
}

.ham-shell-mobile-menu .sub-menu{
  display:none;
  padding:0 0 11px 14px;
}

.ham-shell-mobile-menu li.is-submenu-open>.sub-menu{
  display:block;
}

.ham-shell-mobile-menu .sub-menu a{
  padding:10px 12px;
  border-left:3px solid rgba(255,213,35,.28);
  color:rgba(255,255,255,.68);
  font-size:.83rem;
}

.ham-shell-submenu-toggle{
  position:absolute;
  top:8px;
  right:0;
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:11px;
  color:var(--ham-shell-yellow);
  background:rgba(255,255,255,.06);
  cursor:pointer;
  transition:transform .2s ease;
}

.ham-shell-mobile-menu li.is-submenu-open>.ham-shell-submenu-toggle{
  transform:rotate(180deg);
}

.ham-shell-mobile-ctas{
  display:grid;
  gap:9px;
  padding:0 16px 17px;
}

.ham-shell-mobile-ctas a{
  display:flex;
  min-height:48px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  color:#fff;
  font-size:.85rem;
  font-weight:950;
  text-decoration:none;
}

.ham-shell-mobile-ctas .ham-shell-mobile-primary{
  color:#211307;
  border-color:var(--ham-shell-yellow);
  background:var(--ham-shell-yellow);
}

.ham-shell-mobile-contact{
  display:grid;
  gap:8px;
  padding:18px 20px 35px;
  border-top:1px solid rgba(255,255,255,.1);
}

.ham-shell-mobile-contact a{
  color:rgba(255,255,255,.66);
  font-size:.82rem;
  text-decoration:none;
  word-break:break-word;
}

/* FOOTER */
.ham-shell-footer{
  position:relative;
  z-index:2;
  color:#fff;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.ham-shell-footer-cta{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    linear-gradient(115deg,rgba(228,32,32,.98),rgba(135,15,20,.98));
}

.ham-shell-footer-cta::after{
  position:absolute;
  top:-130px;
  right:-60px;
  width:390px;
  height:390px;
  border:52px solid rgba(255,213,35,.16);
  border-radius:50%;
  content:"";
}

.ham-shell-footer-cta-inner{
  position:relative;
  z-index:1;
  min-height:235px;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:30px;
  padding-block:45px;
}

.ham-shell-footer-cta span{
  color:var(--ham-shell-yellow);
  font-size:.76rem;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.ham-shell-footer-cta h2{
  max-width:800px;
  margin:8px 0 0;
  color:#fff;
  font-family:Impact,Haettenschweiler,"Arial Black",sans-serif;
  font-size:clamp(2.5rem,5vw,4.6rem);
  letter-spacing:-.035em;
  line-height:.95;
  text-transform:uppercase;
}

.ham-shell-footer-cta p{
  max-width:700px;
  margin:12px 0 0;
  color:rgba(255,255,255,.74);
}

.ham-shell-footer-cta-actions{
  display:grid;
  gap:10px;
}

.ham-shell-footer-cta-actions a{
  display:flex;
  min-width:220px;
  min-height:49px;
  align-items:center;
  justify-content:center;
  padding:11px 18px;
  border-radius:999px;
  font-size:.84rem;
  font-weight:950;
  text-decoration:none;
}

.ham-shell-footer-yellow{
  color:#211307;
  background:var(--ham-shell-yellow);
}

.ham-shell-footer-outline{
  color:#fff;
  border:1px solid rgba(255,255,255,.27);
  background:rgba(255,255,255,.06);
}

.ham-shell-footer-main{
  background:
    radial-gradient(circle at 7% 100%,rgba(228,32,32,.13),transparent 24rem),
    var(--ham-shell-dark);
}

.ham-shell-footer-grid{
  display:grid;
  grid-template-columns:1.15fr .75fr 1fr .85fr;
  gap:42px;
  padding-block:64px 55px;
}

.ham-shell-footer h3{
  margin:0 0 18px;
  color:#fff;
  font-size:1.02rem;
}

.ham-shell-footer-brand p{
  max-width:370px;
  margin:19px 0 0;
  color:rgba(255,255,255,.61);
  font-size:.86rem;
}

.ham-shell-footer-logo{
  display:grid;
  width:min(100%,310px);
  height:82px;
  place-items:center;
  overflow:visible;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.ham-shell-footer-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 5px 12px rgba(0,0,0,.44));
}

.ham-shell-socials{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:20px;
}

.ham-shell-socials a{
  width:39px;
  height:39px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  color:var(--ham-shell-yellow);
  background:rgba(255,255,255,.05);
  font-size:.72rem;
  font-weight:950;
  text-decoration:none;
  transition:.2s ease;
}

.ham-shell-socials a:hover{
  color:#211307;
  background:var(--ham-shell-yellow);
  transform:translateY(-2px);
}

.ham-shell-footer-menu,
.ham-shell-contact-list{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}

.ham-shell-footer-menu a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.65);
  font-size:.83rem;
  text-decoration:none;
}

.ham-shell-footer-menu a::before{
  color:var(--ham-shell-yellow);
  content:"›";
  font-size:1.15rem;
}

.ham-shell-footer-menu a:hover{
  color:#fff;
}

.ham-shell-contact-list li{
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.ham-shell-contact-list a{
  display:grid;
  grid-template-columns:25px 1fr;
  gap:9px;
  color:rgba(255,255,255,.67);
  font-size:.8rem;
  text-decoration:none;
}

.ham-shell-contact-list strong{
  font-weight:650;
  word-break:break-word;
}

.ham-shell-footer-highlight{
  align-self:start;
  padding:22px;
  border:1px solid rgba(255,213,35,.24);
  border-radius:21px;
  background:rgba(255,213,35,.07);
}

.ham-shell-footer-highlight-label{
  color:var(--ham-shell-yellow);
  font-size:.7rem;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.ham-shell-footer-highlight h3{
  margin:8px 0 9px;
  font-size:1.25rem;
  line-height:1.12;
}

.ham-shell-footer-highlight p{
  margin:0 0 15px;
  color:rgba(255,255,255,.6);
  font-size:.82rem;
}

.ham-shell-footer-highlight a{
  display:block;
  padding:8px 0;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--ham-shell-yellow);
  font-size:.8rem;
  font-weight:900;
  text-decoration:none;
}

.ham-shell-footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.5);
  background:#100a07;
}

.ham-shell-footer-bottom-inner{
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  font-size:.72rem;
}

.ham-shell-footer-bottom p{
  margin:0;
}

.ham-shell-footer-bottom nav{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.ham-shell-footer-bottom a{
  color:rgba(255,255,255,.55);
  text-decoration:none;
}

.ham-shell-footer-bottom a:hover{
  color:var(--ham-shell-yellow);
}

/* FLOATING */
.ham-shell-floating{
  position:fixed;
  right:17px;
  bottom:18px;
  z-index:9990;
  display:grid;
  gap:9px;
}

.ham-shell-floating a{
  display:flex;
  min-height:47px;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  color:#fff;
  box-shadow:0 12px 32px rgba(0,0,0,.24);
  font-size:.78rem;
  text-decoration:none;
  transition:transform .2s ease;
}

.ham-shell-floating a:hover{
  transform:translateY(-3px);
}

.ham-shell-float-whatsapp{
  background:#168b4f;
}

.ham-shell-float-book{
  background:var(--ham-shell-red);
}

.ham-shell-back-top{
  position:fixed;
  right:18px;
  bottom:135px;
  z-index:9989;
  width:43px;
  height:43px;
  display:grid;
  place-items:center;
  opacity:0;
  visibility:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:50%;
  color:#fff;
  background:var(--ham-shell-dark);
  box-shadow:0 10px 28px rgba(0,0,0,.23);
  cursor:pointer;
  transform:translateY(8px);
  transition:.2s ease;
}

.ham-shell-back-top.is-visible{
  opacity:1;
  visibility:visible;
  transform:none;
}

@media(max-width:1180px){
  .ham-shell-mainbar-inner{
    grid-template-columns:220px 1fr auto;
  }

  .ham-shell-logo-frame{
    width:215px;
    height:59px;
  }

  .ham-shell-menu>li>a{
    padding-inline:9px;
    font-size:.79rem;
  }

  .ham-shell-action-secondary{
    display:none;
  }

  .ham-shell-footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:920px){
  .ham-shell-mainbar-inner{
    grid-template-columns:minmax(180px,235px) 1fr;
  }

  .ham-shell-desktop-nav,
  .ham-shell-action-secondary{
    display:none;
  }

  .ham-shell-header-actions{
    justify-self:end;
  }

  .ham-shell-toggle{
    display:grid;
  }

  .ham-shell-footer-cta-inner{
    grid-template-columns:1fr;
  }

  .ham-shell-footer-cta-actions{
    grid-template-columns:repeat(2,minmax(0,230px));
  }
}

@media(max-width:782px){
  .admin-bar .ham-shell-header{
    top:46px;
  }
}

@media(max-width:660px){
  .ham-shell-container{
    width:min(100% - 22px,1260px);
  }

  .ham-shell-topbar-inner{
    min-height:42px;
    justify-content:flex-start;
    overflow-x:auto;
    white-space:nowrap;
  }

  .ham-shell-topbar p{
    font-size:.68rem;
  }

  .ham-shell-mainbar-inner{
    min-height:72px;
    grid-template-columns:minmax(0,1fr) auto;
    gap:9px;
  }

  .ham-shell-logo-frame{
    width:190px;
    height:56px;
  }

  .ham-shell-action-primary{
    display:none;
  }

  .ham-shell-footer-grid{
    grid-template-columns:1fr;
    gap:34px;
    padding-block:50px 45px;
  }

  .ham-shell-footer-cta-actions{
    grid-template-columns:1fr;
  }

  .ham-shell-footer-cta-actions a{
    min-width:0;
  }

  .ham-shell-footer-bottom-inner{
    align-items:flex-start;
    flex-direction:column;
    padding-block:18px;
  }

  .ham-shell-floating{
    right:9px;
    bottom:9px;
    left:9px;
    grid-template-columns:1fr 1fr;
  }

  .ham-shell-floating a{
    padding-inline:8px;
  }

  .ham-shell-back-top{
    right:11px;
    bottom:70px;
  }
}

@media(max-width:385px){
  .ham-shell-logo-frame{
    width:165px;
    height:50px;
  }

  .ham-shell-floating strong{
    font-size:.7rem;
  }
}

@media(prefers-reduced-motion:reduce){
  .ham-shell-header *,
  .ham-shell-footer *,
  .ham-shell-mobile-panel,
  .ham-shell-back-top{
    scroll-behavior:auto!important;
    transition:none!important;
    animation:none!important;
  }
}

.ham-shell-header .ham-shell-brand,
.ham-shell-header .ham-shell-logo-frame,
.ham-shell-header .ham-shell-logo-frame img,
.ham-shell-footer .ham-shell-footer-logo,
.ham-shell-footer .ham-shell-footer-logo img{
  background-color:transparent!important;
  background-image:none!important;
}

.ham-shell-header .ham-shell-logo-frame img,
.ham-shell-footer .ham-shell-footer-logo img{
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
}
