﻿#contentAcess {
    padding-top: 113px;
    width: 100%;
    background-color: white;
    min-height: 100vh; /* Isso garante que tenha pelo menos altura da tela */
    box-sizing: border-box;
}
    #contentAcess a:focus {
        outline: unset !important;
        outline-offset: unset !important;
    }


.p-topico {
    align-items: center;
    display: flex;
    gap: 5px;
}

.header, .footer {
    display: none;
}

#loading {
    z-index: 1000;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.conteiner-loading {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: rgba(0, 138, 67, 1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

button {
    font-family: 'Fira Sans', "Inter";
}

html, body {
    margin: 0;
    padding: 0;
    height: auto !important;
    min-height: 100vh;
}

.footer-sig {
    position: unset !important;
    margin-top: 0 !important;
}

h1 {
    font-size: 64px;
    font-weight: 600!important;
}

.intro p {
    font-size: 25px;
    font-weight: 300 !important;
}

#divIntro {
    display: flex;
    width: 100%;
    flex-direction: column;
    position: relative;
    z-index: 1; /* coloca o texto acima do ::before */
    color: white;
    padding: 20px 120px
}

    #divIntro .div-conteiner-intro p {
        color: white;
        font-size: 28px;
        font-weight: 300 !important;
    }

#nav-opcoes {
    margin-left: auto;
}

    #nav-opcoes ul {
        display: flex;
        gap: 15px;
        list-style-type: none;
    }

        #nav-opcoes ul li a {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
            color: white;
        }

            #nav-opcoes ul li a:hover {
                text-decoration: none;
                cursor: pointer;
            }

            #nav-opcoes ul li a:focus-visible {
                text-decoration: none;
                border:1px solid white;
            }

            #nav-opcoes ul li a p {
                color: white;
                font-weight: 600 !important;
                font-size: 14px;
            }

            #nav-opcoes ul li a span {
                font-size: 20px;
            }

#bannerIntro {
    position: relative;
    background-color: var(--primarycolor);
    overflow: hidden;
}

.div-conteiner-intro {
    max-width: 1008px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#section-info {
    display: flex;
    padding: 30px 120px;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 18px;
}

.item-section-info {
    display: flex;
    gap: 20px;
    width: 50%;
    padding: 8px 60px;
    align-items: center;
}

.conteiner-item-info {
    align-content: center;
}

.item-section-info img {
    height: 62px;
}

.item-section-info h2 {
    font-size: 24px;
    font-weight: 500 !important;
    margin-top: 0;
    margin-bottom: 5px;
    color: #333;
}

.item-section-info p {
    font-size: 14px;
    color: #333;
}

.conteudo {
    padding: 40px 120px;
}
.conteudo ul{
    list-style-type:disc;
    padding-left: 20px;
}
.conteudo ul li{
    font-size:16px;
}
    .conteudo a{
        color: var(--colorlink);
        font-weight: 600 !important;
        font-family: 'Fira Sans';
    }
    @media (max-width: 1154px) {
        #divIntro {
        padding: 30px;
    }

    h1 {
        font-size: 16px;
    }

    .item-section-info {
        padding: 10px 0;
    }

        .item-section-info h3 {
            font-size: 22px;
        }

    #divIntro .div-conteiner-intro p {
        font-size: 24px;
    }

    .btbannerintro {
        font-size: 12px;
    }

    .div-conteiner-intro {
        padding: 0;
        gap: 15px;
    }

    #nav-opcoes ul li a p {
        display: none;
    }

    #bannerIntro {
        background-size: cover;
    }
}
