html, body, footer{
    margin: 0;
    padding: 0;
}

* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}



/*Estilos das sessões (definindo cores)*/
#auxilia{
    color: rgb(56, 56, 56);
    background-image:linear-gradient(0deg, #f8e8e8d5, #ffffff);
    background-repeat: no-repeat;
}

#inbds{
    color: rgb(255, 255, 255);
    background-image:linear-gradient(0deg, #1c7900d5, #029c02);
    background-repeat: no-repeat;
}

#caixa{
    color: rgb(255, 255, 255);
    background-image:linear-gradient(0deg, #243075d5, #262569);
    background-repeat: no-repeat;
}

#brdigital{
    color: rgb(0, 0, 0);
    background-image:linear-gradient(0deg, #aee290d5, #ffffff);
    background-repeat: no-repeat;
}

/*bg com a cor padrão*/
.bg-color{
    background-color: #1874ffd5;
}

/*Estilos do Banner/Carousel, Sessao 1*/
.section1-title{
    letter-spacing: 10px;
    text-transform: uppercase;
    font-size: 4em;
    font-weight: 700;
}

.section1-list{
    letter-spacing: 2px;
    font-size: 2em;
    font-weight: 600;
}

.btn-interest-dark-auxilia{
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    font-weight: 800;
    text-decoration: none;
    background-color: #ff0000;
    border-radius: 20px;
    padding: 10px;
    color: white;
}

.btn-interest-dark-auxilia:hover{
    background-color: #cc0000;
    transition: 0.05s;
    color: white;
    box-shadow: 0px 0px 5px white;
}

.btn-interest-dark-inbds{
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    font-weight: 800;
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 10px;
    color: rgb(2, 2, 2);
}

.btn-interest-dark-inbds:hover{
    background-color: #ffffff;
    transition: 0.05s;
    color: rgb(75, 75, 75);
    box-shadow: 0px 0px 5px white;
}

.btn-interest-dark-caixa{
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    font-weight: 800;
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 10px;
    color: rgb(2, 2, 2);
}

.btn-interest-dark-caixa:hover{
    background-color: #ffffff;
    transition: 0.05s;
    color: rgb(75, 75, 75);
    box-shadow: 0px 0px 5px white;
}

/*Mudando tamanho fonte para mobile*/
@media screen and (max-width: 768px) {
    .section1-title{
        letter-spacing: 5px;
        text-transform: uppercase;
        font-size: 3em;
        font-weight: 700;
    }
    
    .section1-list{
        letter-spacing: 2px;
        font-size: 1.5em;
        font-weight: 600;
    }
}

/*Modal Styles*/

.content h1{
    padding: 0px;
    margin-bottom: 0px;
    font-size: 28px;
}

.content p{
    padding-left: 10px;
    font-size: 14px;
    color: gray;
    margin-bottom: 10px;
}

.content label{
    margin-left: 10px;
    padding-top: 20px;
}

input:focus {
    outline: none;
    border-bottom: 1px solid black;
}

.content input{
    border-radius: 5px 5px 0px 0px;
    background-color: rgb(238, 238, 238);
    margin-bottom: 0px;
    margin-top: 5px;
    border: 0px;
    border-bottom: 1px solid gray;
    font-size: 18px;
    width: 100%;
    padding: 10px;
}

.content select {
    border-radius: 5px 5px 0px 0px;
    background-color: rgb(238, 238, 238);
    margin-bottom: 0px;
    margin-top: 5px;
    border: 0px;
    border-bottom: 1px solid gray;
    font-size: 18px;
    width: 100%;
    padding: 10px;
}

.submitModalButton {
    margin-top: 20px;
    position: relative;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 20px;
    color: white;
    background-color: rgb(0, 100, 250);
}

.submitModalButton:hover{
    background-color: rgb(0, 80, 200);
}

.close{
    position: relative;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 20px;
    background-color: red !important;
    color: white;
    text-decoration: none;
    margin-top: 10px;
}

.close:hover{
    background-color: rgb(151, 17, 17);
}

.modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 77, 77, 0.7);
    transition: all 0.8s;
}

.modal:target {
    visibility: visible;
    opacity: 1;
}

.content {
    border-radius: 10px;
    position: relative;
    width: 500px;
    max-width: 90%;
    background: #fff;
    padding: 1em 2em;
}