/*
Theme Name: Patiotime Child
Template: patiotime
Version: 1.0
*/

/* === HEADER TRANSPARENTE NA HOME === */
header.site-header,
.site-header,
body.home header,
body.home .site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  background: transparent !important;
  transition: background .25s ease, box-shadow .25s ease;
}

/* quando faz scroll */
html.scrolled header.site-header,
html.scrolled .site-header {
  background: rgba(0, 0, 0, 0.95) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* links brancos */
.site-header .menu a,
.site-header .menu li a {
  color: #fff !important;
}

/* hover laranja */
.site-header .menu a:hover {
  color: #f37021 !important;
}

/* esconder lupa e carrinho */
.header-search,
.header-cart,
.icon-search,
.icon-cart,
.site-tools,
.header-right > *:not(.main-navigation) {
  display: none !important;
}

/* botão reservar bilhetes no menu */
.menu-item.menu-cta a {
  border: 1px solid #fff;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .05em;
}
.menu-item.menu-cta a:hover {
  background: #f37021;
  border-color: #f37021;
  color: #fff !important;
}


/* se o tema estiver a meter um wrapper à direita */
.site-header .header-right > *:not(.main-navigation) {
  display: none !important;
}

/* ===== BOTÃO NO MENU (desktop) ===== */
.menu-item.menu-cta a {
  border: 1px solid #fff;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .05em;
}
.menu-item.menu-cta a:hover {
  background: #f37021;
  border-color: #f37021;
  color: #fff !important;
}

/* mostrar o botão também no mobile e centralizar */
@media (max-width: 1024px) {
  .menu-item.menu-cta {
    display: block !important;
    text-align: center;
    margin: 10px 0;
  }
}

/* ===== BOTÃO FLUTUANTE ===== */
.btn-flutuante-cdf {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #e8590c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 99999;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-flutuante-cdf:hover {
  background-color: #ff6b00;
  transform: scale(1.1);
}

