/* header.css */

/* Estilo do cabeçalho */
header {
    position: relative;
    inset: 0 0 auto 0;
    z-index: 10;
    box-shadow: 0 0 5px #ccc;
    background-color: #1c1c1c; /* Cor de fundo mais escura */
}

header .logo img {
    width: 25rem;
}

header .area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: #1c1c1c;
}

header nav {
    color: #f2f2f2;
    overflow-y: hidden;
    max-height: 0;
    transition: all ease .5s;
}

header nav {
    max-height: 100vh;
}

header nav ul {
    display: flex;
    flex-direction: row;
    padding-bottom: 0;
}

header nav li {
    padding: 1rem 2rem;
}

header nav a {
    color: #f2f2f2; /* Cor de texto suave */
    text-decoration: none;
    font-size: 1.8rem;
}

header nav a:hover {
    color: #ff9f00; /* Cor de hover dourada */
    opacity: 0.8;
}

header nav a.bold {
    font-weight: bold;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
