/* ######
*
* MAIN STYLESHEET
*
###### */

/* ########### INCLUDE FONT ########### */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* ########### END INCLUDE FONT ########### */


/* ########### VARIABLES DECLARATION ########### */
:root {
    --primary-color: #0D1B26;
    --secondary-color: #0f222e;
    --tertiary-color: #FFFFFF;
    --quaternary-color: #434343;
    --bg-alternative-color: #1c2e3b;
    --whatsapp-color: #49B805;
    --alternative-color: #49B805;
    --sxa-varial-button: black;
    --sxb-varial-button: white;
    --text-primary-color: white;
    --text-secondary-color: #1E1E1E;;
    --text-tertiary-color: #505050;
    --text-quaternary-color: #000000;
    --text-alternative-color: #019ccc;
    --primary-font: 'Roboto', sans-serif;
    --secondary-font: 'Inter', sans-serif;
    --font-weight-thin: 100;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    --font-weight-black: 900;
    --default-padding: 5% 0;
}

/* ########### END VARIABLES DECLARATION ########### */


/* ########### FLOATING BUTTON ########### */

.fale {
    position: fixed;
    bottom: 15px;
    right: 30px;
    font-size: 12px;
    background: var(--whatsapp-color) !important;
    color: var(--tertiary-color);
    border-radius: 4px 4px 25px 25px;
    padding: 5px;
    -webkit-box-shadow: 1px 1px 3px 0px rgba(50, 50, 50, 0.4);
    -moz-box-shadow: 1px 1px 3px 0px rgba(50, 50, 50, 0.4);
    box-shadow: 1px 1px 3px 0px rgba(50, 50, 50, 0.4);
    z-index: 20;
    transition: .6s;
}

.fale i {
    font-size: 40px;
    color: var(--tertiary-color);
    padding-top: 3px;
    padding-bottom: 5px;
    font-weight: var(--font-weight-thin);
    transition: .6s;
}

.fale:hover {
    background: var(--tertiary-color) !important;
    color: var(--whatsapp-color) !important;
    transition: .6s;
    transform: scale(1.1);
}

.fale:hover a {
    color: var(--whatsapp-color) !important;
    transition: .6s;
}

.fale:hover i {
    color: var(--whatsapp-color) !important;
    transition: .6s;
}

.fale a {
    font-weight: var(--font-weight-bold);
    text-decoration: none;
}

/* ########### END FLOATING BUTTON ########### */


/* ########### HEADER ########### */

#header {
    background: var(--primary-color);
    padding: 2% 0;
}

#header .menus {
    align-self: center;
}

#menu .menu-item:not(#link-whatsapp) a {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-medium);
    font-size: 14px;
    color: var(--text-primary-color);
    text-decoration: none;
    transition: .6s;
}

#menu .menu-item:not(#link-whatsapp) a:hover {
    color: var(--text-alternative-color);
    transition: .6s;
}

#menu .menu-item#link-whatsapp a {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    color: white;;
    text-decoration: none;
    background: var(--whatsapp-color);
    border-radius: 6px;
    transition: .6s;
}

#menu .menu-item#link-whatsapp a:hover {
    background: var(--text-primary-color);
    color: var(--primary-color);
    transition: .6s;
}

#menu .menu-item#link-whatsapp a i {
    font-weight: var(--font-weight-thin);
}

/* ########### END HEADER ########### */


/* ########### BANNER ########### */

#banner {
    background: var(--primary-color);
    padding: var(--default-padding);
}

#banner h2 {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary-color);
    font-size: 66px;
}

#banner p {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-regular);
    color: var(--text-primary-color);
    font-size: 27px;
    margin: 10% 0;
}

#banner .form-desktop {
    margin-left: auto;
    background: var(--tertiary-color);
    border: 2px solid var(--tertiary-color);
    box-sizing: border-box;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.1));
    border-radius: 10px;
    padding: 2% 3%;
}

#banner .form-desktop h2 {
    font-family: var(--secondary-font);
    font-weight: var(--font-weight-bold);
    color: var(--text-secondary-color);
    font-size: 23px;
}

#banner .form-desktop label {
    font-family: var(--secondary-font);
    font-weight: var(--font-weight-bold);
    color: var(--text-tertiary-color);
    font-size: 14px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    padding-bottom: 2%;
}

#banner .form-desktop label[for="politica-privacidade"] {
    font-family: var(--secondary-font);
    font-weight: var(--font-weight-bold);
    color: var(--text-tertiary-color);
    font-size: 10px;
    text-transform: uppercase;
    margin-left: 2%;
    letter-spacing: inherit;
}

#banner .form-desktop input {
    font-family: var(--secondary-font);
    font-weight: var(--font-weight-regular);
    color: var(--text-quaternary-color);
    font-size: 16px;
    border: 1px solid var(--quaternary-color);
    box-sizing: border-box;
    border-radius: 10px;
    padding: 4% 5% !important;
}

#mc-embedded-subscribe {
    width: 100%;
    background: var(--whatsapp-color);
    color: var(--text-primary-color);
    border: 1px solid var(--whatsapp-color);
    font-family: var(--secondary-font);
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    padding: 6% !important;
}

#banner .form-desktop .mc-field-group {
    margin: 5% 0;
}

/* ########### END BANNER ########### */


/* ########### SERVICES ########### */

#services {
    background: var(--primary-color);
    padding: var(--default-padding);
}

#services .service .title {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-bold);
    font-size: 25px;
    text-align: center;
    color: var(--text-primary-color);
    padding: var(--default-padding);
}

#services .service .desc {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-bold);
    font-size: 15px;
    text-align: center;
    color: var(--text-primary-color);
}

#services .btn-default {
    margin-top: 5%;
}

/* ########### END SERVICES ########### */


/* ########### TESTIMONIAL ########### */

#testimonial {
    background: var(--primary-color);
    padding: var(--default-padding);
}

#testimonial h2 {
    font-family: var(--secondary-font);
    font-weight: var(--font-weight-bold);
    font-size: 55px;
    text-align: center;
    color: var(--text-primary-color);
}

#testimonial p {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-regular);
    font-size: 18px;
    text-align: center;
    color: var(--text-primary-color);
    padding: 2% 0 5% 0;
}

#testimonial .testimonial-carousel .owl-item:not(.center) {
    transform: scale(.8);
}

#testimonial .testimonial-carousel .owl-dots .owl-dot span {
    background: var(--text-alternative-color);
    width: 20px;
    height: 20px;
    transform: scale(.9);
}

#testimonial .testimonial-carousel .owl-dots .owl-dot.active span, #coffees .coffees-carousel .owl-dots .owl-dot:hover span {
    background: transparent;
    border: 3px solid var(--text-alternative-color);
    transform: scale(1.2);
}

/* ########### END TESTIMONIAL ########### */


/* ########### COFFEES ########### */

#coffees {
    padding: var(--default-padding);
    background: var(--bg-alternative-color);
}

#coffees h2 {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-bold);
    font-size: 61px;
    text-align: center;
    color: var(--text-primary-color);
}

#coffees .coffees-carousel {
    padding: var(--default-padding);
}

#coffees .coffees-carousel .owl-item:not(.center) {
    transform: scale(.8);
}

#coffees .coffees-carousel {
    position: relative;
}

#coffees .coffees-carousel .owl-next, #coffees .coffees-carousel .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

#coffees .coffees-carousel .owl-next {
    right: 0;
    display: flex;
}

#coffees .coffees-carousel .owl-prev {
    left: 0;
    display: flex;
}

#coffees .coffees-carousel .owl-nav i {
    font-size: 60px;
    font-weight: 100;
    color: var(--text-primary-color);
    transition: .6s;
}

#coffees .coffees-carousel .owl-nav [class*=owl-]:hover {
    background: #00000020;
    transition: .6s;
}

#coffees .coffees-carousel .owl-nav [class*=owl-]:hover i {
    color: var(--text-primary-color);
    transition: .6s;
}

/* ########### FIM COFFEES ########### */


/* ########### REQUEST ########### */

#request {
    background: var(--secondary-color);
    padding: var(--default-padding);
}

#request h2 {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-bold);
    font-size: 48px;
    text-align: center;
    color: var(--text-primary-color);
}

#request h2 span {
    display: block;
    color: var(--text-alternative-color);
}

#request .btn-default {
    margin-top: 5%;
}

/* ########### END REQUEST ########### */


/* ########### ABOUT ########### */

#about {
    padding: var(--default-padding);
    background: var(--bg-alternative-color);
}

#about .about h3 {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-bold);
    font-size: 49px;
    color: var(--text-primary-color);
    padding: 0 1%;
    margin-bottom: 7%;
}

#about .about p {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-regular);
    font-size: 16px;
    color: var(--text-primary-color);
    padding: 0 7% 0 1%;
    margin-bottom: 7%;
}

#about .about .instagram {
    margin-bottom: 10%;
}

#about .about .instagram a {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-bold);
    font-size: 18px;
    color: var(--text-primary-color);
    text-transform: uppercase;
    padding: 0 1%;
    text-decoration: none;
    transition: .6s;
}

#about .about .instagram a:hover {
    color: var(--text-alternative-color);
    transition: .6s;
}

#about .img img {
    filter: drop-shadow(10px 9px 0px var(--tertiary-color));
    width: 85%;
    margin: auto;
}

/* ########### END ABOUT ########### */


/* ########### FOOTER ########### */

footer {
    background: var(--primary-color);
    padding: var(--default-padding);
}

footer .desc {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    color: var(--text-primary-color);
    text-transform: uppercase;
}

footer .btn-whats a {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-bold);
    font-size: 23px;
    color: var(--whatsapp-color);
    text-decoration: none;
    transition: .6s;
}

footer .btn-whats a:hover {
    color: var(--text-primary-color);
    transition: .6s;
}

footer .social-media a {
    margin: auto;
    transform: scale(.9);
    transition: .6s;
    display: block;
}

footer .social-media a.align-right {
    margin-left: auto;
    margin-right: 0;
}

footer .social-media a.align-left {
    margin-right: auto;
    margin-left: 0;
}

footer .social-media a:hover {
    transform: scale(1);
    transition: .6s;
}

footer .all-rights {
    padding: 3% 0 0;
    margin-top: 7%;
    border-top: 1px solid #6A6A6A;
}

footer .all-rights p, footer .all-rights p a {
    font-family: var(--secondary-font);
    font-weight: var(--font-weight-regular);
    font-size: 14px;
    color: var(--text-primary-color);
}

footer .all-rights p a {
    font-weight: var(--font-weight-extra-bold);
    transition: .6s;
    text-decoration: none;
}

footer .all-rights p a:hover {
    color: var(--text-alternative-color);
    transition: .6s;
}

footer .all-rights .row {
    margin: auto;
}

footer .made a img {
    transform: scale(.9);
    transition: .6s;
}

footer .made {
    text-align: right;
}

footer .made a:hover img {
    transform: scale(1);
    transition: .6s;
}

/* ########### END FOOTER ########### */


/* ########### BUTTONS ########### */

.btn-default {
    display: flex;
}

.btn-default a {
    font-family: var(--primary-font);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary-color);
    text-decoration: none;
    font-size: 26px;
    background: var(--alternative-color);
    padding: 3% 6%;
    border-radius: 6px;
    transition: .6s;
    text-transform: uppercase;
}

.btn-default a:hover {
    background: var(--text-primary-color);
    color: var(--primary-color);
    transition: .6s;
}

.btn-default a i {
    font-weight: var(--font-weight-thin);
}

/* ########### END BUTTONS ########### */


/* ########### MENU MOBILE ########### */

.btn-mobile-menu .menu-mobile.active {
    background: var(--primary-color);
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 65%;
    padding: 10% 10%;
    z-index: 21;
    display: block;
    box-shadow: -4px 0px 7px #00000094;
}

.btn-mobile-menu {
    text-align: right;
}

#header .btn-mobile-menu {
    align-self: center;
    margin-left: -5%;
}

.btn-mobile-menu .link-menu.active {
    z-index: 11;
    position: relative;
}

.btn-mobile-menu .link-menu i {
    font-size: 32px;
    color: var(--text-primary-color);
}


.btn-mobile-menu .menu-mobile.active .link-menu i {
    font-size: 32px;
}


.btn-mobile-menu .menu-mobile.active .nav-link {
    padding: 10% 0;
    font-family: Roboto;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary-color);
}


.btn-mobile-menu .menu-mobile.active .nav-item:not(#link-whatsapp) .nav-link {
    padding: 10% 0;
    font-family: Roboto;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary-color);
}


.btn-mobile-menu .menu-mobile.active .nav-item#link-whatsapp .nav-link {
    padding: 5% 5%;
    font-family: Roboto;
    font-weight: 500;
    border-radius: 6px;
    font-size: 16px;
    color: var(--text-primary-color);
    background: var(--whatsapp-color);
}

/* ########### FIM MENU MOBILE ########### */


/* ########### PAGE PRIVACY ########### */

#privacy {
    background: var(--secondary-color);
}

#privacy h3, #privacy p {
    color: var(--text-primary-color);
}

/* ########### FIM PAGE PRIVACY ########### */


/* ########### RESPONSIVE ########### */

@media (max-width: 575.98px) {

    /* ########### VARIABLES DECLARATION ########### */
    :root {
        --default-padding: 10% 0;
    }

    /* ########### END VARIABLES DECLARATION ########### */
    /* ########### VARIABLES HEADER ########### */
    #header .logo img {
        width: 100%;
        margin-left: 5%;

    }

    /* ########### END HEADER ########### */
    /* ########### BANNER ########### */
    #banner h2 {
        font-size: 35px;
        text-align: center;
    }

    #banner p {
        font-size: 15px;
        margin: 10% 15%;
        text-align: center;
    }

    .btn-default {
        justify-content: center;
    }

    .btn-default a {
        font-size: 26px;
        padding: 5% 6%;
    }

    #banner img {
        width: 90%;
        margin-bottom: 10%;
    }

    #banner .form-desktop h2 {
        font-size: 18px;
    }

    /* ########### FIM BANNER ########### */
    /* ########### SERVICE ########### */
    #services .service {
        margin: 5% 0;
    }

    /* ########### FIM SERVICE ########### */
    /* ########### COFFEES ########### */
    #coffees h2 {
        font-size: 32px;
    }

    #coffees .coffees-carousel .owl-prev {
        left: 15px;
    }

    #coffees .coffees-carousel .owl-item img {
        width: 75%;
        margin: auto;
    }

    #coffees .coffees-carousel .owl-next {
        right: 15px;
    }

    /* ########### FIM COFFEES ########### */
    /* ########### TESTIMONIAL ########### */
    #testimonial h2 {
        font-family: var(--secondary-font);
        font-weight: var(--font-weight-bold);
        font-size: 32px;
        text-align: center;
        color: var(--text-primary-color);
    }

    #testimonial p {
        font-size: 14px;
    }

    /* ########### FIM TESTIMONIAL ########### */
    /* ########### REQUEST ########### */
    #request h2 {
        font-size: 36px;
    }

    #request h2 span {
        font-size: 43PX;
    }

    /* ########### FIM REQUEST ########### */
    /* ########### ABOUT ########### */
    #about .img {
        padding: 0;
    }

    #about .img img {
        width: 100%;
        filter: drop-shadow(0px 9px 0px var(--primary-color));
    }

    #about .about .row {
        width: 100%;
        margin: auto;
    }

    #about .about h3 {
        font-size: 38px;
    }

    #about .about p {
        font-size: 14px;
        line-height: 32px;
    }

    #about .about .img {
        margin-bottom: 10%;
    }

    /* ########### FIM ABOUT ########### */
    /* ########### FOOTER ########### */
    footer .row {
        margin: 0;
    }

    footer .desc {
        text-align: center;
    }

    footer .btn-whats {
        text-align: center;
    }

    footer .social-media {
        margin: 10% 0 3%;
    }

    footer .all-rights p, footer .all-rights p a {
        text-align: center;
    }

    footer .all-rights {
        border-top: none;
    }

    /* ########### FIM FOOTER ########### */

}

@media (min-width: 576px) and (max-width: 767.98px) {

    /* ########### VARIABLES DECLARATION ########### */
    :root {
        --default-padding: 10% 0;
    }

    /* ########### END VARIABLES DECLARATION ########### */
    /* ########### MENU MOBILE ########### */
    .btn-mobile-menu .menu-mobile.active {
        overflow-y: auto;
    }

    /* ########### END MENU MOBILE ########### */
    /* ########### VARIABLES HEADER ########### */
    #header .logo img {
        width: 100%;
        margin-left: 5%;
    }

    /* ########### END HEADER ########### */
    /* ########### BANNER ########### */
    #banner h2 {
        font-size: 35px;
        text-align: center;
    }

    #banner p {
        font-size: 15px;
        margin: 10% 15%;
        text-align: center;
    }

    .btn-default {
        justify-content: center;
    }

    .btn-default a {
        font-size: 26px;
        padding: 5% 6%;
    }

    #banner img {
        width: 90%;
        margin-bottom: 10%;
    }

    /* ########### FIM BANNER ########### */
    /* ########### SERVICE ########### */
    #services .service {
        margin: 5% 0;
    }

    /* ########### FIM SERVICE ########### */
    /* ########### COFFEES ########### */
    #coffees h2 {
        font-size: 32px;
    }

    #coffees .coffees-carousel .owl-prev {
        left: 15px;
    }

    #coffees .coffees-carousel .owl-item img {
        width: 75%;
        margin: auto;
    }

    #coffees .coffees-carousel .owl-next {
        right: 15px;
    }

    /* ########### FIM COFFEES ########### */
    /* ########### TESTIMONIAL ########### */
    #testimonial h2 {
        font-family: var(--secondary-font);
        font-weight: var(--font-weight-bold);
        font-size: 32px;
        text-align: center;
        color: var(--text-primary-color);
    }

    #testimonial p {
        font-size: 14px;
    }

    /* ########### FIM TESTIMONIAL ########### */
    /* ########### REQUEST ########### */
    #request h2 {
        font-size: 36px;
    }

    #request h2 span {
        font-size: 43PX;
    }

    /* ########### FIM REQUEST ########### */
    /* ########### ABOUT ########### */
    #about .img {
        padding: 0;
    }

    #about .img img {
        width: 100%;
        filter: drop-shadow(0px 9px 0px var(--primary-color));
    }

    #about .about .row {
        width: 100%;
        margin: auto;
    }

    #about .about h3 {
        font-size: 38px;
    }

    #about .about p {
        font-size: 14px;
        line-height: 32px;
    }

    #about .about .img {
        margin-bottom: 10%;
    }

    /* ########### FIM ABOUT ########### */
    /* ########### FOOTER ########### */
    footer .row {
        margin: 0;
    }

    footer .desc {
        text-align: center;
    }

    footer .btn-whats {
        text-align: center;
    }

    footer .social-media {
        margin: 10% 0 3%;
    }

    footer .all-rights p, footer .all-rights p a {
        text-align: center;
    }

    footer .all-rights {
        border-top: none;
    }

    /* ########### FIM FOOTER ########### */

}

@media (min-width: 768px) and (max-width: 991.98px) {

    /* ########### MENU MOBILE ########### */
    .btn-mobile-menu .menu-mobile.active {
        overflow-y: auto;
    }

    /* ########### END MENU MOBILE ########### */
    /* ########### VARIABLES HEADER ########### */
    #header .logo img {
        width: 50%;
        margin-left: 5%;
    }

    /* ########### END HEADER ########### */
    /* ########### BANNER ########### */
    #banner h2 {
        font-size: 52px;
        text-align: center;
        padding: 0 20%;
    }

    #banner p {
        font-size: 22px;
        margin: 10% 15%;
        text-align: center;
    }

    .btn-default {
        justify-content: center;
    }

    .btn-default a {
        font-size: 26px;
        padding: 2% 6%;
    }

    #banner img {
        width: 60%;
        margin-bottom: 10%;
    }

    /* ########### FIM BANNER ########### */
    /* ########### SERVICE ########### */
    #services .service {
        margin: 5% 0;
    }

    /* ########### FIM SERVICE ########### */
    /* ########### COFFEES ########### */
    #coffees h2 {
        font-size: 32px;
    }

    #coffees .coffees-carousel .owl-prev {
        left: 15px;
    }

    #coffees .coffees-carousel .owl-item img {
        width: 75%;
        margin: auto;
    }

    #coffees .coffees-carousel .owl-next {
        right: 15px;
    }

    /* ########### FIM COFFEES ########### */
    /* ########### TESTIMONIAL ########### */
    #testimonial h2 {
        font-family: var(--secondary-font);
        font-weight: var(--font-weight-bold);
        font-size: 32px;
        text-align: center;
        color: var(--text-primary-color);
    }

    #testimonial p {
        font-size: 14px;
    }

    /* ########### FIM TESTIMONIAL ########### */
    /* ########### REQUEST ########### */
    #request h2 {
        font-size: 36px;
    }

    #request h2 span {
        font-size: 43PX;
    }

    /* ########### FIM REQUEST ########### */
    /* ########### ABOUT ########### */
    #about .img {
        padding: 0;
    }

    #about .img img {
        width: 100%;
        filter: drop-shadow(0px 9px 0px var(--primary-color));
    }

    #about .about .row {
        width: 100%;
        margin: auto;
    }

    #about .about h3 {
        font-size: 38px;
    }

    #about .about p {
        font-size: 14px;
        line-height: 32px;
    }

    #about .about .img {
        margin-bottom: 10%;
    }

    /* ########### FIM ABOUT ########### */
    /* ########### FOOTER ########### */
    footer .row {
        margin: 0;
    }

    footer .desc {
        text-align: center;
    }

    footer .btn-whats {
        text-align: center;
    }

    footer .social-media {
        margin: 10% 0 3%;
    }

    footer .social-media .row {
        justify-content: center;
    }

    footer .all-rights p, footer .all-rights p a {
        text-align: center;
    }

    footer .all-rights {
        border-top: none;
    }

    /* ########### FIM FOOTER ########### */

}

@media (max-width: 480px) {
    .btn-default a {
        font-size: 18px;
    }
}
