:root { /* Variáveis */
    --titulo: 24px;
    --sub-titulo: 18px;
    --texto: 14px;
    --texto-centralizado: center;
    --text-color: #000;

    --mg-0: 0rem;
    --mg-05: 0.5rem;
    --mg-1: 1rem;
    --mg-2: 2rem;
    --mg-3: 3rem;

    --grey: #F9F9F9;
    --green: #007B8B;
    --laranja: #F68C51;
    --amarelo: #EBB424;
}
/* Templates */
.mg-bt-0 {
    margin-bottom: var(--mg-0) !important;
}
.mg-bt-05 {
    margin-bottom: var(--mg-05) !important;
}
.mg-bt-1 {
    margin-bottom: var(--mg-1) !important;
}
.mg-bt-2 {
    margin-bottom: var(--mg-2) !important;
}
.mg-bt-3 {
    margin-bottom: var(--mg-3) !important;
}
.mg-tp-05 {
    margin-top: var(--mg-05) !important;
}
.mg-tp-1 {
    margin-top: var(--mg-1) !important;
}
.mg-tp-2 {
    margin-top: var(--mg-2) !important;
}
.mg-tp-3 {
    margin-top: var(--mg-3) !important;
}
.d-flex {
    display: flex;
}
.ct-center {
    justify-content: center;
}
.ct-between {
    justify-content: space-between;
}
.al-items {
    align-items: center;
}
/* Page */
section {
    min-height: calc(100vh - 230px);
    overflow: hidden;
}
strong {
    color: var(--text-color);
}
.container {
    min-height: auto !important;
}
.banner {
	width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 10px;
}
.banner .img-banner {
	width: 100%;
}
.banner .img-banner img {
	width: 100%;
	transition: ease-in-out 1s;
}
.banner .img-banner[data-scroll="in"] img {
	filter: brightness(0.7);
    transform: scale(1.06);
}
.banner .img-banner .banner-mobile {
	display: none;
}
.banner .text-block {
	z-index: 2;
	position: absolute;
}
.banner .text-block h2 {
	font-size: 45px;
	text-align: center;
	font-weight: 500;
	color: #fff;
	transition: ease-in-out 0.8s;
    transform: translateX(100px);
	opacity: 0;
}
.banner .text-block h2[data-scroll="in"] {
    transform: translateX(0px);
	opacity: 1;
}
.banner .text-block h3 {
	font-size: 35px;
	font-weight: 300;
	text-align: center;
	color: #fff;
	transition: ease-in-out 1.2s;
    transform: translateX(100px);
	opacity: 0;
}
.banner .text-block h3[data-scroll="in"] {
    transform: translateX(0px);
	opacity: 1;
}
div.container {
    max-width: 910px;
    margin-bottom: var(--mg-3);
    transform: translateY(100px);
    transition: ease-in-out 1.2s;
    opacity: 0;
    padding: 0 20px;
}
div.container[data-scroll="in"] {
    transform: translateY(-0px);
    opacity: 1;
}
div.container .titulo {
    color: var(--text-color);
    margin-bottom: var(--mg-2);
}
p {
    color: var(--text-color);
    margin-bottom: var(--mg-1);
}
.green {
    color: var(--green);
}
.title-text-block {
    font-weight: 500;
    font-size: 16px !important;
}
.sub-titulo {
    margin-bottom: var(--mg-05);
    font-size: var(--sub-titulo) !important;;
    font-weight: 500;
}
.text-center {
    text-align: var(--texto-centralizado);
}
.ultimo-texto { 
    margin-bottom: var(--mg-2);
}
.video {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 600px;
    height: 340px;
    margin: auto;
}
.bg-grey {
    background-color: var(--grey);
    padding: var(--mg-2);
    margin-bottom: var(--mg-2);
}
.div-btn {
    display: flex;
    justify-content: center;
    margin-bottom: var(--mg-2);
}
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-primario {
    background-color: #fff;
    border: 1px solid #000;
    font-size: var(--sub-titulo);
    font-weight: 500;
    color: var(--text-color);
    width: 240px;
    height: 40px;
    transition: ease-in-out 0.3s;
}
.btn-primario:hover {
    background-color: var(--laranja);
    color: #fff;
    border: 1px solid #fff;
    transform: scale(1.05);
}
.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logos img {
    width: 120px;
}
.amarelo {
    color: var(--amarelo);
}
.verde {
    background-color: var(--green);
}
.branco {
    color: #fff;
}
.deixo-bebo-recupero {
    width: 50%;
}
.form-contato .titulo {
    margin-bottom: 15px !important;
}
.page-evento-sem-descartavel .form-contato .row-input {
    margin-bottom: 10px;
}
label.label-data {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}
.form-contato .row-input input, .form-contato .row-input select {
    height: 35px !important;
}
.form-contato .row-input .half {
    width: 48%;
}

.fake-label {
    color: #000;
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
}
.radio-content .row label {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.form-contato .div-btn button {
    cursor: pointer;
}
/* @MEDIA QUERY SECTION */
@media only screen and (max-width: 800px) {
    .banner .text-block h2 {
        font-size: 25px;
    }
    .banner .text-block h3 {
        font-size: 20px;
    }
}
@media only screen and (max-width: 600px) {
    .banner {
        display: none;
    }
    .banner .img-banner .desktop {
        display: none;
    }
    .banner .img-banner .mobile {
        display: unset;
    }
    .caminho {
        display: none;
    }
    .video {
        height: 200px;
        width: 100%;
    }
    .container-texts {
        flex-direction: column;
    }
    .container-texts .text-block {
        margin-bottom: var(--mg-1);
    }
    .bg-grey {
        background-color: var(--grey);
        padding: var(--mg-1);
        margin-bottom: var(--mg-1);
    }
    .ultimo-texto {
        margin-bottom: var(--mg-2);
    }
    .container {
        margin-bottom: var(--mg-2) !important;
        margin-top: 30px;
    }
    .div-btn {
        margin-bottom: var(--mg-2) !important;
    }
    .logos {
        flex-direction: column;
        margin-bottom: var(--mg-0) !important;
    }
    .logos .around-logo {
        margin-bottom: var(--mg-2);
    }
    .logos img {
        width: 90px;
    }
    .deixo-bebo-recupero {
        width: 90%;
    }
    .page-evento-sem-descartavel .form-contato .row-input {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;
    }
    .form-contato .row-input .w100 {
        margin-bottom: 10px !important;
    }
    .form-contato .row-input .half {
        width: 100%;
        margin-bottom: 10px;
    }
}