/* -----------------------------------------
   Banner
----------------------------------------- */

.banner-container {
    background-image: url('https://assets.volkswagen.com/is/image/volkswagenag/98-3219-still-tiguan-24-r-line-300tsi-ps2-3-4-frente-esq-2T2T-mystik-amb-acao-adv_br_-iAMNg9q85j?Zml0PWNyb3AsMSZmbXQ9d2VicCZxbHQ9Nzkmd2lkPTE5MjAmaGVpPTEwODAmYWxpZ249MC4wMCwwLjAwJmJmYz1vZmYmM2E1Nw==');
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center center;
}

.banner-container header {
    background-color: var(--bs-body-bg);
    display: flex;
    justify-content: space-between;
    padding: 24px;
    background: var(--bs-body-bg);
    animation: fadeInTop 2s ease 0s 1 normal forwards;
}
/* .banner-container header.scroll {
    background: var(--bs-body-bg);
    animation: fadeInCenter 2s ease 0s 1 normal forwards;
} */


.banner-container header .navbar-brand {
    max-width: 170px;
}

.banner-container .banner-bg {
    height: 100vh;
    width: 100%;
    /* background-color: rgba( 0, 30, 80, .5); */
    /* background: rgb(0,30,80); */
    background: linear-gradient(90deg, rgba(0,30,80,0.6) 0%, rgba(255,255,255,0) 63%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 100px;
    flex-direction: column;
}

.banner-container .banner-bg h1 {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    animation: fadeInLeft 2s ease 0s 1 normal forwards;
}

.banner-container .banner-bg h4 {
    font-size: 30px;
    color: #fff;
    animation: fadeInLeft 2s ease 0s 1 normal forwards;
}

.banner-container .banner-footer {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 20px;
    padding-bottom: 24px;
}

.banner-container .banner-footer a {
    color: var(--bs-secondary-color);
    font-size: 24px;
}

@media (max-width: 620px) {
    .banner-container header .navbar-brand {
        max-width: 120px;
    }
    .banner-container .banner-bg {
        background: linear-gradient(90deg, rgba(0,30,80,0.6) 0%, rgba(0,30,80,0.2) 100%);
        padding: 0 30px !important;
        text-align: center;
    }
    .banner-container header a.btn {
        padding: 4px 28px;
        font-size: 0.875rem;
    }
}






/* -----------------------------------------
   News
----------------------------------------- */

.news {
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news h1 {
    margin-bottom: 24px;
}

.news .new-subtitle {
    font-size: 24px;
    margin: 32px 0 0 0;
}





/* -----------------------------------------
   Footer
----------------------------------------- */
footer {
    border-top: 1px solid var(--bs-primary);
    padding: 24px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.footer-contact {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
}
.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    font-size: 14px;
}
footer p {
    margin: 0;
}
.footer-contact a {
    display: flex;
    gap: 4px;
}
.footer-contact span {
    background-color: var(--bs-secondary-color);
    border-radius: 50px;
    width: 24px;
    height: 24px;
    color: var(--bs-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 760px) {
    footer, .footer-contact {
        flex-direction: column;
    }
    .footer-contact {
        margin-bottom: 16px;
    }
    .footer-info {
        align-items: flex-start;
    }
}







/* -----------------------------------------
   Login
----------------------------------------- */
.modal-login.show  {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-login .modal-dialog {
    width: 350px;
}

.form-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    animation: fadeInTop 2s ease 0s 1 normal forwards;
    padding: 48px;
}


.form-login .login-logo {
    width: 150px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.form-login .mb-3 {
    width: 100%;
}

.confirm-password {
    max-width: 400px;
}

@media (max-width: 380px) {
    .form-login {
        padding: 48px 16px;
    }
}







/* -----------------------------------------
   Animações
----------------------------------------- */

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-50px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInTop {
	0% {
		opacity: 0;
		transform: translateY(-50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInBottom {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInCenter {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

button:disabled {
    opacity: 0.6;
}

.loading-spinner {
    display: none;
}