/* Global Variables */
:root {
  scroll-behavior: auto;
  --base-color: #454545;
  --heading-color: #030A15;
  --primary-color: #22B0AF;
  --light-color: #F7F7F7;
  --base-font: 'Roboto', sans-serif;
  --heading-font: 'Plus Jakarta Sans', sans-serif;
}

.welcome-box {
    background-color: #007bff; /* Cor primária da página, substitua conforme necessário */
    color: #fff; /* Cor do texto */
    font-family: 'Roboto', sans-serif;
    font-size: 16px; /* Ajuste do tamanho do texto */
    padding: 10px 20px; /* Espaçamento interno */
    border-radius: 8px; /* Bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para destaque */
    text-align: center; /* Centraliza o texto */
    display: inline-block; /* Comportamento semelhante a botão */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Transições suaves */
    margin-bottom: 10px; /* Espaçamento inferior */
}

.welcome-box:hover {
    background-color: #0056b3; /* Cor ao passar o mouse */
    transform: scale(1.05); /* Leve aumento ao passar o mouse */
    cursor: pointer; /* Mostra o cursor como indicador de interatividade */
}

  

/* Initially hide the navigation on mobile */
.navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 30px;
}

/* Links Styles */
.navigation li a {
  text-decoration: none;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: bold;
  color: var(--heading-color);
  transition: color 0.3s;
}

.navigation li a:hover {
  color: var(--primary-color);
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 24px;
  width: 30px;
  cursor: pointer;
}

.hamburger-menu .bar {
  width: 100%;
  height: 4px;
  background-color: var(--heading-color);
  transition: all 0.3s;
}

/* Contact Info Section */
.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Email Styles */
.email-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-icon {
  color: var(--base-color);
  font-size: 18px;
}

.email-text {
  color: var(--base-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  font-family: var(--base-font);
}

/* Social Icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icon {
  color: var(--base-color);
  font-size: 18px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
  }

 

  /* Show the menu when it is toggled (open) */
  

  .contact-info {
    margin-top: 10px;
    flex-direction: column;
    gap: 10px;
  }

  .email-info {
    justify-content: center;
  }

 
}