/* Navbar */
.navbar-container {
    width: 100%;
    height: 80px;
    background-color: #f5d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-container h1 {
    color: #333333;
    font-size: 32px;
    font-weight: bold;
}

/* Breadcrumb */
.breadcrumb {
    width: 100%;
    height: 40px;
    background-color: #eecbcb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb span {
    color: #999999;
    font-size: 16px;
}

.breadcrumb span a {
    color: #999999;
    text-decoration: none;
}

.breadcrumb span a:hover {
    color: #333333;
}

/* Buttons */
.buttons {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

.button {
    width: 100%;
    height: 60px;
    background-color: #160385;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.button:hover {
    background-color: #4556e9;
    text-decoration: none;
    color: white;
}

/* Footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

#content {
    flex: 1;
}

#footer {
    background-color: #004AAD;
    color: white;
    padding: 20px;
    text-align: center;
    width: 100%;
    margin-top: auto; /* Mantém o rodapé colado na parte inferior */
}
.Barra_link {
    margin-right: 2em;
}
@media (max-width: 767px) {
    #footer {
        position: relative; /* Altera para posição relativa em dispositivos móveis */
        margin-top: 0; /* Remove a margem superior para evitar deslocamentos */
    }
}



/* Header */
.header {
    background-color: #f3f3f3;
    text-align: center;
    padding: 5px;
    opacity: 0;
    animation: fadeIn 0.6s forwards ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Typography Adjustments */
h1 {
    margin: 0;
    font-size: 44px;

    @media screen and (max-width: 768px) {
        font-size: 28px;
    }
}

p {
    margin-top: 10px;

    @media screen and (max-width: 768px) {
        margin-top: 5px;
    }
}
