.menu-destaque {
   font-weight: bold;
  color: #ffffff !important;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
}

.menu-destaque:hover {
  background-color: #FFD700;
}

header
{
/* Define a imagem de fundo */
    background-image: url("https://static.vecteezy.com/system/resources/previews/006/502/678/non_2x/angola-round-flag-with-3d-style-design-angola-independence-day-background-vector.jpg");
    
    /* Faz a imagem cobrir todo o espaço sem distorcer */
    background-size: cover;
    
    /* Centraliza a imagem */
    background-position: center;
    
    /* Garante que o fundo não se repita */
    background-repeat: no-repeat;
    
    /* Opcional: Adiciona uma leve transparência se quiser que o logo destaque mais */
    position: relative;
},
.site-header

,
.header,
#masthead {
  position: relative;
}

.header-banner {
  position: absolute;
  left: 220px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.header-banner a {
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  display: inline-block;
}

.contact-button {
  /* Layout & Sizing */
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  
  /* Colors */
  background-color: #007bff; /* Primary Blue */
  color: white;
  
  /* Smooth Transition */
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover Effect */
.contact-button:hover {
  background-color: #0056b3; /* Darker Blue */
  transform: translateY(-2px); /* Slight lift */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Active/Click Effect */
.contact-button:active {
  transform: translateY(0);
}