/*
Theme Name: Astra Child
Template: astra
Version: 1.0.0
Description: Tema filho do Astra com menu hamburguer personalizado.
Author: Secom Bahia
*/

@import url("../astra/style.css");
/* Força overlay no topo */
.nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 75, 139, 0.97);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
  z-index: 9999;
}

/* Mostra quando aberto */
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Garante que o botão fique sempre visível */
.hamburger {
  position: relative;
  z-index: 10000;
}

/* Rebaixa header do Astra */
.site-header, .main-header-bar {
  position: relative;
  z-index: 1;
}
