/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

/* botao de login */

.topbar-fixa {
    position: fixed;
    top: 0;
    width: 100%;
    background: #333; /* Usando a variável --bg */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    z-index: 1000;
}

  /* Login */
.login_box {
    display: flex;
    margin-left: 400px;
    align-items: center;
}
  
.login_text {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    padding: 6px 12px;
}
  
.login_text:hover {
    background-color: #ff7b00;
    border-radius: 6px;
}


body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Garante que o body ocupe toda a altura da viewport */
}

main {
    flex: 1 0 auto; /* Faz o conteúdo principal expandir, empurrando o footer para baixo */
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Utility Classes */
.section {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #ff7b00;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff7b00;
}

.list-items {
    margin-left: 30px;
    margin-bottom: 20px;
}