@import url(/style/colors.css);

@import url(/style/fonts.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
}

html,
body {
    height: auto;
    width: 100%;
}


::-webkit-scrollbar {
    width: 10px;
    height: 90px;
}

::-webkit-scrollbar-thumb {
    background: #d3cdcd;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}



.navbar-light #navbarSupportedContent {
    justify-content: flex-end;
}

nav ul li {
    height: auto;
    width: auto;
    padding: 0.4rem 0.1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav ul li:hover {
    background: var(--colorHover);
    border-bottom: 2px solid var(--borderColor);
}

nav ul li a {
    font-weight: bolder;
}


.container .logo img {
    height: 5rem;
    width: 100%;
}

.dropdown-menu {
    width: 100%;
}




.hero {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero img {
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
}

.hero .container .hero-text {
    width: 100%;
    height: auto;
    display: flex;
    z-index: 1;
    position: relative;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    padding-top: 15rem;
    padding-bottom: 14.20rem 
}

.hero .container .hero-text .banner-content {
    width: 100%;
    height: auto;
    padding: 1rem;
}


.hero .container .banner-content P:nth-of-type(1) {
    color: white;
    border-right: 2px solid transparent;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0);
    font-family: 'Roboto', sans-serif;
    font-weight: bolder;
    font-size: 16pt;
    position: relative;
    top: 50px;
}

.hero .overley {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.692);
}


.container .title {
    height: auto;
    width: 100%;
    margin-top: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.container .title p {
    font-size: 22pt;
    font-weight: bolder;
}

.container .text-content{
    text-align: justify;
}

.container .text-content p:nth-of-type(1){
    font-size: 22pt;
    font-weight: 600;
}

.container .text-content p:nth-of-type(2){
    font-size: 15pt;
}


.container .title div {
    height: 3px;
    width: 50px;
    background: var(--colorBtn);
    border-radius: 50px;
    margin-top: -10px;
}

.container .row .img{
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container .row .img img{
    height: 90%;
    width: 100%;
}

.container .row .track{
    height: 3px;
    width: 25px;
    border-radius: 20px;
    background: var(--colorBtn);
    margin-bottom: 1rem;
}

@media screen and (max-width: 991px){

    .container .row p { 
        margin-top: 1.5rem;
    }

}

footer {
    margin-top: 5rem;
    position: relative;
    bottom: 0;
}

footer #myForm {
    display: flex;
    align-items: left;
    justify-content: left;
    flex-direction: column;
}

footer #myForm .text {
    color: #fff;
    height: auto;
    width: 100%;
    display: flex;
    align-items: left;
    justify-content: left;
    flex-direction: column;
}

footer #myForm .input-nome {
    width: 100%;
    height: auto;
}

footer #myForm .input-nome input {
    padding: 0.50rem;
    width: 100%;
    border: none;
    outline: none;
}

footer #myForm .input-email {
    width: 100%;
    height: auto;
    margin-top: 5px;
    margin-bottom: 5px;
}

footer #myForm .input-email input {
    padding: 0.50rem;
    width: 100%;
    border: none;
    outline: none;
}


footer #myForm .input-btn {
    width: 100%;
    height: auto;
}

footer #myForm .input-btn input {
    width: 100%;
    border: none;
    outline: none;
    background: #A61213;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.50rem;
    transition: all 0.3s ease-in-out;
}

footer #myForm .input-btn input:hover {
    background: #b41515;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.288);
    border-radius: 10px;
    cursor: pointer;
}

.span-required-footer {
    display: none;
    margin: 3px 0 0 1px;
    font-size: 12px;
    color: #ffffff;
    font-weight: bold;
}

footer .container .icones {
    margin-top: 2rem;
    text-align: left;
}


footer .container .icones img {
    margin-right: 10px;
}

.fluid {
    height: auto;
    width: 100%;
    background: blueviolet;
}
