/* Estilos gerais */
body {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0F7697;
    padding: 10px 20px;
    color: #FFFFFF;
}

header .logo img {
    width: 280px;
    height: 72px;
}

header .menu-topo ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header .menu-topo ul li {
    margin-right: 20px;
}

header .menu-topo ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
}

/* Container principal */
.container {
    display: flex;
    margin-top: 1px;
}

/* Menu Lateral */
.menu-lateral {
    width: 165px;
    background-color: #BAD94A;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.menu-lateral ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu-lateral ul li {
    margin-bottom: 35px;
}

.menu-lateral ul li a {
    text-decoration: none;
    color: #0F7697;
    font-weight: 500;
}

/* Conteúdo principal */
main {
    flex: 1;
    padding: 15px;
}

main h1 {
    color: #0F7697;
}

/* Botões de exemplo */
.botoes-exemplo {
    margin-top: 20px;
}

.botoes-exemplo .btn {
    background-color: #BAD94A;
    border: none;
    color: white;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.botoes-exemplo .btn:hover {
    background-color: #0F7697;
}

/* Rodapé */
footer {
    background-color: #0F7697;
    padding: 40px;
    text-align: right;
    color: white;
}

footer .redes-sociais a {
    text-decoration: none;
    color: white;
    margin: 0 35px;
    font-weight: 500;
}

footer .redes-sociais a:hover {
    text-decoration: underline;
}
