* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    background-image: url(../img/fundo3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.navbar-custom {
    background-color: #262626;
    color: #F2A20C !important;
    font-weight: 100;
    justify-content: center;
}

.navbar-custom .navbar-brand {
    text-align: center;
}

.navbar-custom .navbar-nav .nav-link.navbar-custom {
    text-align: center;
}

.navbar{
    align-items: center !important;
    justify-content: center !important; 
}

.botao-personalizado {
    background-color: #F2A20C !important;
    color: #FEFEFE !important;
}

.container-principal {
    background-color: #FEFEFE;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.411);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    margin: auto;
    width: 85%;
}
.container-artigo{
    display: flex;
    padding: center;
}


.item-pagina {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    margin-top: 100px;
}

.texto-artigo {
    flex: 1;
    padding: 20px;
    font-size: 19px;
    text-align: justify;
    margin-left: 50px;
    margin-top: 50px;
}

.custom-image {
    width: 100px !important; 
    height: 100px !important;
    margin-right: 20px ;
}

.row{
    align-items: center !important;
    justify-content: center !important; 
    margin-top: 3% !important;
}

.btn-primary{
    background-color: #F2A20C !important;
}

.cabecalho {
    background-color: #262626;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.navegacao {
    list-style: none;
    font-size: 20px;
    display: flex;
    justify-content: center;
    color: #F2A20C ;
    margin-top: 15px;
}

.cor-barra {
    color: #F2A20C ;
}

.cor-navegacao {
    color: #F2A20C;
    font-weight: bold;
    font-family: 'Press Start 2P', cursive;
    justify-content: center;
}

.cor-titulo-pagina {
    color: #F2A20C;
    font-weight: bold;
    font-family: 'Press Start 2P', cursive;
    font-size: 60px;
}

.rodape {
    background-color: #262626;
    height: 40px;
}

.texto-rodape{
    text-align: center;
    color: #F2A20C;
}

.calcular {
    padding: 50px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #e6dfce;
    margin-top: 50px;
}

.container-principal .row .card {
    border: none !important;
    box-shadow: none !important; 
}
/*Responsividade*/

@media (max-width: 768px) {
    .container-principal {
        width: 100%;
        padding: 10px;
    }

    .container-artigo {
        flex-direction: column;
        align-items: center;
    }

    .item-pagina {
        margin: 0;
    }

    .texto-artigo {
        margin-left: 0;
    }

    .calcular {
        padding: 20px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .container-principal {
        width: 90%;
    }
}

@media (min-width: 993px) {
}

@media (max-width: 768px) {
    .cor-titulo-pagina {
        font-size: 40px; 
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .cor-titulo-pagina {
        font-size: 50px; 
    }
}