@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap'); /*Thin*/
@import url('https://fonts.googleapis.com/css2?family=Viaoda+Libre&display=swap'); /*Title*/
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap'); /*Body Texts*/

/* GERAL CONFIGS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Questrial', sans-serif;
}
h1 {
    font-size: 1.5rem;
    font-weight: normal;
    width: 30ch;
}
@media screen and (max-width: 768px) {
    h1 {
        font-size: 1rem;
    }
}
h2 {
    text-align: center;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}
h2::after {
    content: '';
    display: block;
    width: 10ch;
    height: 2px;
    background: white;
    margin: .2rem auto 0;
}
h3 {
    font-weight: normal;
}
/* LOADER */
.loader-container {
    background: black;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    color: white;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
}
.the-loader i {
    z-index: 10001;
}
/* NAVBAR */
nav a {
    font-family: 'Viaoda Libre', cursive;
}
.nav-item > a {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}
#floating-wpp {
    position: fixed;
    padding: .5rem;
    bottom: 3rem;
    right: 2rem;
    color: white;
    z-index: 1001;
    font-size: 1rem;
    background: rgb(0, 145, 48);
    width: 17ch;
    height: 3.2rem;
    text-align: start;
    border-radius: 1rem;
    border: white 1px solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: transform .2s ease;
}
#floating-wpp i {
    font-size: 2rem;
}
#floating-wpp:hover {
    transform: scale(1.1);
}
@media screen and (max-width: 768px) {
    #floating-wpp {
        bottom: 2.5rem;
    }
}
/* LANDING-PAGE */
#landing-page {
    width: 100%;
    min-height: 100vh;
    height: auto;
    background: url(imgs/pexels-chris-f-1283219.jpg), rgba(0, 0, 0, .6);
    background-blend-mode: overlay;
    background-size: cover;
    color: white;
    overflow: hidden;
}

.landing-main {
    padding: 10rem 5rem 5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    font-family: 'Lato', sans-serif;

}
.landing-main img {
    width: 20rem;
    align-self: center;
}
.landing-main > div {
    text-align: center;
    margin-top: 3.5rem;
}

.landing-main > div > h3,
.landing-main > div > h4 {
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
}
.landing-main > div > h3{
    font-size: 3rem;
}
.landing-main > div > h3::after{
    content: '';
    display: block;
    width: 11ch;
    margin: 0 auto;
    height: 2px;
    background: white;
    transform: translateY(-5px);
}

.landing-main > div > h4{
    font-size: 1.7rem;
}

.landing-main > div > a{
    background: rgb(0, 83, 58);
    padding: .5rem .7rem;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-top: 2rem;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .landing-main {
        padding: 6rem 1rem 5rem;
    }
    .landing-main img {
        width: 12rem;
    }
    .landing-main > div > h3{
        font-size: 2rem;
    }
    .landing-main > div > h4 {
        font-size: 1.1rem;
    }
}


.landing-bottom {
    width: 100%;
    height: 10rem;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content:start;
    bottom: 0;
    background: rgba(0, 0, 0, .85)
}
.landing-bottom > div {
    margin: 2rem;
}
.landing-bottom > span {
    height: 70%;
    width: 1px;
    background: white;
}

.bottom-first > p {
    font-size: 1.2rem;
    text-decoration: underline;
    line-height: 1.8;
}
.bottom-first > div {
    display: flex;
}
.bottom-first > div > p {
    margin-right: 2rem;
    line-height: 1.2;
}
.bottom-second {
    display: flex;
}
.bottom-second > a {
    text-decoration: none;
    color: white;
    margin: 0 3rem;
    transition: all .1s ease;
}
.bottom-second > a > i {
    margin-right: 1rem;
}
.bottom-second > a > p {
    display: inline-block;
    line-height: 1.5;
}

.bottom-second > a > p > span {
    text-decoration: underline;
}

.bottom-second > a:hover {
    transform: scale(1.05);
}

.bottom-third {
    font-size: 2rem;
    text-align: center;
}
.bottom-third > a {
    margin-left: 2rem;
    text-decoration: none;
    color: white;
    transition: all .1s ease;
}
.bottom-third > a > i {
    transition: all 50ms ease;
}
.bottom-third > a > i:hover {
    transform: scale(1.1);
}
@media screen and (max-width: 945px) {
    .landing-bottom {
        flex-direction: column;
        height: auto;
        position: relative; 
    }
    .bottom-first > div {
        flex-direction: column;
    }
    .bottom-first > div > p {
        margin: 1rem 0;
    }
    .bottom-second {
        flex-direction: column;
    }
    .bottom-second > a {
        margin: 1rem 0;
    }
    .bottom-third a:first-child {
        margin: 0;
    }
    .landing-bottom > span {
        width: 90%;
        height: 1px;
        background: white;
    }
        
}
/* CÁLCULO BEBIDAS */
#calculo {
    background: #111;
    color: white;
}
#calculo h2 {
    background: black;
    padding: 1rem;
    font-size: 1.7rem;
}
#calculo h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.4rem;
}

.calculo-content {
    padding: 1rem 3rem 2rem;
    line-height: 2;
}
.calculo-inputs {
    margin-top: 2rem;
    font-size: 1.2rem;
}

.calculo-inputs > div {
    display: flex;
    flex-wrap: wrap;
}

.calculo-inputs > div > label > input {
    margin: 0 .5rem 0 1rem;
}
.calculo-inputs > div:nth-child(1) > label:nth-child(2) {
    margin-left: 8.3rem;
}
.calculo-inputs > div:nth-child(2) > label:nth-child(2) {
    margin-left: 4rem;
}
.calculo-inputs > div:nth-child(3) > p {
    margin-right: 1.5rem;
}
.calculo-inputs > div:nth-child(4) > p,
.calculo-inputs > div:nth-child(5) > p {
    margin-right: 1.1rem;
}

#qtd-h,
#qtd-m,
#qtd-c {
    background: transparent;
    border: white 2px solid;
    border-radius: 5px;
    margin: .3rem 0;
    font-size: 1rem;
    color: white;
    outline: none;
    padding-left: .3rem;
    height: 2rem;
    width: 10rem;
}

.calculo-content > a {
    background: rgb(0, 83, 58);;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 7px;
    max-width: 40ch;
    display: block;
    margin: 2rem auto 0;
    text-align: center;
    cursor: pointer;
}

.calculo-content > span {
    width: 100%;
    height: 2px;
    background: white;
    display: block;
    margin: 1rem auto 0;
}

.calculo-results {
    text-align: start;
    font-size: 1.2rem;
}

@media screen and (max-width:970px) {
    #calculo h3 {
        font-size: 1.2rem;
    }
    .calculo-content {
        padding: 1rem 2rem 2rem;
        line-height: 2;
    }
    .calculo-inputs > div {
        flex-direction: column;
    }
    .calculo-inputs > div:nth-child(1) > label:nth-child(2) {
        margin-left: 0;
    }
    .calculo-inputs > div:nth-child(2) > label:nth-child(2) {
        margin-left: 0;
    }
    .calculo-results {
        margin-top: 1rem;
        font-size: 1rem;
    }
}

/* Produtos */
#products {
    background: url(imgs/drew-beamer-bTN-zKFy9uA-unsplash.jpg), rgba(0, 0, 0, .65);
    background-blend-mode: overlay;
    background-size:cover;
    background-position: center;
    color: white;
    padding-top: 3rem;
}
.products-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    padding: 1rem 3rem;
}
.product {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin: 1rem 5rem;
}
.product svg{
    height: 100px;
    width: 100px;
}



/* COMO CHEGAR */

#como-chegar{
    background-color: #001d16;
    color: white;
    height: 30rem;
    width: 100%;
    overflow: hidden;
}
#como-chegar h2 {
    padding: 2rem 0 1rem;
    height: 6rem;
    background: #070707;
    border-top: 2px solid rgb(20, 20, 20);
}
#como-chegar iframe {
    width: 100%;
    height: 24rem;
    z-index: -10;
}
#como-chegar a {
    background: rgb(0, 54, 38);
    text-align: center;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    position: relative;
    display: block;
    width: 13rem;
    line-height: 2rem;
    height: 2rem;
    align-self: center;
    margin: 0 auto;
    transform: translateY(-3rem);
}
#como-chegar a i {
    margin-right: .5rem;
    display: inline-block;
}
@media screen and (max-width: 768px) {
    #como-chegar a {
        width: 10rem;
        font-size: .9rem;
        height: 3rem;
        line-height: 3rem;
        transform: translateY(-4.5rem);
    }
}
/*-- Footer Contact Section --*/


footer {
    background: #111;
    border-top: #0a0a0a 1rem solid;
    color: rgb(196, 196, 196);
    padding: 1rem 3rem 0;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-content img {
    height: 7rem;
    margin: 1rem 0 1.5rem;
    max-width: 20rem;
}

.footer-text {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.footer-text h3 {
    text-transform: uppercase;
    color: #ccc;
    font-size: 1.3rem;
    margin-bottom: .5rem;
}
.footer-subtitle-line {
    width: 20%;
    height: 2px;
    background-color: rgb(168, 168, 168);
    align-self: center;
    margin-bottom: 1rem;
}

.footer-text > p {
    font-size: 1.1rem;
    margin: .5rem 0;
}

.footer-text > p > span {
    margin-bottom: 1rem;
}

.footer-text a{
    text-decoration: none;
    color: #ccc;
    transition: .3s all ease;
}
.footer-text a:hover{
    color: rgb(0, 163, 114);
}
.footer-text a i {
    font-size: 1.8rem;
    margin: .5rem .4rem;
}

footer .footer-line{
    width: 140%;
    transform: translateX(-20%);
    height: 2px;
    background: #333;
}
footer .disclaimer {
    text-align: center;
    padding: 1rem 0;
}
