@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%;
}

@media screen and (max-width: 1150px) {
    .hero img {
        width: 100%;
        height: 100%;
    }
}

@media Screen and (max-width: 540px) {

    .hero .container .hero-text {
        text-align: center;
    }

    .hero .container .hero-text h1 {
        font-size: 28pt;
    }
}

.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: 14rem;
    padding-bottom: 7.5rem;
}

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

.hero .container .hero-text img {
    animation: animation 2s ease alternate infinite;
}

@keyframes animation {
    to {
        transform: translateY(0px);
    }

    from {
        transform: translateY(-30px);
    }
}

@media screen and (max-width: 991px) {
    .hero .container .hero-text img {
        display: none;
    }
}

.container .row .text-logo-brsid {
    margin-top: 1rem;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.container .row .text-logo-brsid img {
    display: none;
    height: auto;
    width: 50%;
}

@media screen and (max-width:991px) {
    .container .row .text-logo-brsid img {
        display: block;
    }
}

.hero .container .hero-text .text-line {
    height: auto;
    width: 100%;
    font-weight: bold;
    text-shadow: rgba(0, 0, 0, 0.122) 0.1em 0.1em 0.2em
}

.hero .container .hero-text .text-line b {
    color:#8BBA3C;
    text-shadow: #8cba3c23 0.1em 0.1em 0.2em;
}

.hero .container .subtitle {
    font-size: 13pt;
    font-weight: bold;
}

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

.container .title {
    height: auto;
    width: 100%;
    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;
    }
}

.container .row .text p {
    font-size: 13pt;
    font-weight: 100;
}


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;
}

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

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

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

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