  /* Importação de fontes */
  @font-face {
    font-family: 'FinalSix';
    src: url('/path/to/FinalSix-Regular.woff2') format('woff2'),
         url('/path/to/FinalSix-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
  }
  @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

  /* Estilos Gerais */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Open Sans', sans-serif;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* ==================== ESTILOS PARA MOBILE (Default) ==================== */
  .header {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;
    padding: 21px 0px; /* Padding ajustado para 21px top e bottom */
    width: 100%;
    background-color: white;
  }

  .header .logo {
    display: block;
    align-self: center; /* Centraliza a logo */
  }

  .header .logo img {
    height: 81.22px; /* Logo menor em mobile */
    display: block;
    align-self: center;
    left: 105px;
    top: 23px;
    position: absolute;
  }

  .header .nav-links {
    /*display: none; /* Oculta os links de navegação em mobile */
    align-items: center;
    background-color: #fff;
    display: flex;
    justify-content: end;
    padding: 21px 0px;
    width: 100%
  }

  .btn-login {
    background-color: #0A3B9E;
    color: white !important;
    padding: 8px 20px;
    border-radius: 10.29px;
    font-family: 'FinalSix', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    transition: all 0.3s ease;
  }
  
  .btn-login:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }
  
  .user-avatar {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .avatar-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
    border-radius: 20px;
  }
  
  .avatar-container:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(to right, #e89f1f, #f7a800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .avatar-container:hover .avatar-circle {
    opacity: 0.8;
    transform: scale(1.05);
  }
  
  .chevron-icon {
    color: #6b7280;
    font-size: 12px;
    transition: all 0.3s ease;
  }
  
  .avatar-container:hover .chevron-icon {
    color: #374151;
  }
  
  .chevron-icon.rotated {
    transform: rotate(180deg);
  }
  
  .user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
    margin-top: 8px;
  }
  
  .dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .dropdown-header span:first-child {
    display: block;
    font-weight: 600;
    color: #000;
    font-size: 14px;
    margin-bottom: 2px;
  }
  
  .dropdown-header span:last-child {
    display: block;
    color: #6b7280;
    font-size: 12px;
  }
  
  .dropdown-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 4px 0;
  }
  
  .dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
  }
  
  .dropdown-item:hover {
    background-color: #f9fafb;
  }
  
  .dropdown-item i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
  }
  
  .logout-item {
    color: #dc2626;
  }
  
  .logout-item:hover {
    background-color: #fef2f2;
  }
  
  .hidden {
    display: none !important;
  }

  .site-button {
    display: none;
  }

  /* ==================== ESTILOS PARA DESKTOP ==================== */
  @media (min-width: 769px) {
    .header {
      justify-content: space-between;
      align-items: center;
      padding: 20px 100px;
      position: relative;
      width: 100%;
      top: 0;
      left: 0;
      background-color: white;
    }

    .header .logo {
      align-self: auto;
    }
    
    .header .logo img {
      width: 108px;
      height: 99.53px;
    }
    
    .header .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 14px;
      font-weight: 600;
    }
    
    .header .nav-links a {
      text-decoration: none;
      color: #000;
    }

    .btn-login {
      background-color: #0A3B9E;
      color: white !important;
      padding-left: 35px;
      padding-right: 35px;
      border-radius: 10.29px;
      font-family: 'FinalSix', sans-serif;
      font-weight: 500;
      font-size: 17.93px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 45.59px;
    }

    .avatar-circle {
      width: 45px;
      height: 45px;
      font-size: 16px;
    }
    
    .chevron-icon {
      font-size: 14px;
    }
    
    .user-dropdown {
      min-width: 220px;
    }
    
    .dropdown-header span:first-child {
      font-size: 16px;
    }
    
    .dropdown-header span:last-child {
      font-size: 14px;
    }
    
    .dropdown-item {
      font-size: 16px;
      padding: 12px 16px;
    }
    
    .site-button {
      border: 1.17px solid #0A3B9E;
      background-color: white;
      color: #0A3B9E !important;
      padding-left: 35px;
      padding-right: 35px;
      border-radius: 10.29px;
      font-family: 'FinalSix', sans-serif;
      font-weight: 500;
      font-size: 17.93px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 45.59px;
    }
  }