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

html, body {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}

.background {
    background-image: url("../img/fundo.jfif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    position: relative;
    z-index: 0; 
}


.background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(237, 212, 169, 0.5); 
    z-index: -1; 
}
.navbar {
    
    position: relative;
    background-image: url("../img/fundo.jfif");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1; 
    padding: 5vh 40px;

    border-bottom: 5px solid #654321;
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #654321af;



    z-index: 2; 
}

.navbar > * {
    position: relative;
    z-index: 3; 
}


.navbar ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    
}

.navbar ul li a {
    color: #fff8e7;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #ffffff;
}
.navbar-content {
    display: flex;
    justify-content: space-between; /* Isso garante que os itens fiquem nas pontas */
    align-items: center;
    width: 100%;
}

.navbar ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.profile-icon-area {
    display: flex;
    align-items: center;
}

.navbar .profile-icon {
    width: 45px;
    height: 45px;
    background-color: rgb(209, 203, 203); 
    border: 2px solid #010101;
    border-radius: 50%;
    overflow: hidden; 
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar .profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.auth-buttons .btn {
    padding: 5px 10px;
    background-color: #fff;
    border: 2px solid #ff7070;
    border-radius: 10px;
    color: #ff7070;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.auth-buttons .btn:hover {
    background-color: #ff7070;
    color: white;
}
.navbar-profile-fix {
    position: fixed;
    top: 15px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fff8e7;
    object-fit: cover;
    cursor: pointer;
    z-index: 999;
}

.nav-link:hover {
  
  background-color: rgba(20, 20, 19, 0.5);
  border-radius: 10px;
}

.navbar .nav-link.active {
  background-color: rgba(20, 20, 19, 0.5);
  color: white !important;
  border-radius: 10px;
}


.modal-backdrop {
  z-index: 1090 !important; 
}
.modal {
  z-index: 1100 !important;  
}

.logo-absolute {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5px; /* ajuste fino conforme preferir */
    z-index: 10; /* garantir que apareça por cima */
}

.logo-absolute img {
    height: 90px; /* aumente sem mudar a navbar */
    width: auto;
}
