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

.dropdown-menu {
    width: 100%;
}

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


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

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

.hero .container .hero-text-about {
    height: 100%;
    width: 100%;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container .hero-text-about p {
    color: white;
    font-size: 28pt;
    text-shadow: 1px 1px 10px black;
    padding-top: 15rem;
    padding-bottom: 15.60rem;
    position: relative;
    top: 75px;
    border-right: 2px solid transparent;
    font-family: 'Roboto', sans-serif;
    font-weight: bolder;
    font-size: 30pt;
}

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



.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: bold;
}

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


.container .row .conteudo{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: justify;
}

.container .row .conteudo p:nth-of-type(1){
    font-size: 18pt;
    font-weight: 600;
}

.container .row .conteudo p:nth-of-type(2){
    font-size: 14pt;
}
.container .row .conteudo .img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    width: auto;
}


.container .card-body p:nth-of-type(1){
        font-weight: 700;
}


.container .card-body{
    text-align: justify;
}

.container-card{
    display: flex;
    align-items: center;
    justify-content: center;
}

.container .cards {
    margin-top: 2rem;
    height: auto;
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.container .cards .card {
    transition: all 0.3s ease-in-out;
}

.container .cards .card:hover {
    cursor: pointer;
    transform: translateY(-20px);
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.164);
}

.container .cards .card .card-img-top {
    height: auto;
    width: 100%;
}

.container .cards .btn {
    background: var(--colorBtn);
    border: none;
    outline: none;
}

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