@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

/* GLOBAL STYLR */

* {
    font-family: 'Poppins', sans-serif;
    margin: 0 auto;
    padding: 0;

}


ul {
    list-style-type: none;
}

li,
a {
    text-decoration: none;
    position: relative;
}

.subheader {
    font-size: 22px;
    font-weight: 400;
    color: #519B84;
    letter-spacing: 5px;
}

h1 {
    font-size: 68px;
    font-weight: 600;
    color: #3B506B;
    margin: 20px 0;
}

h2 {
    font-size: 54px;
    font-weight: 500;
    color: #3B506B;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    color: #3B506B;
    padding: 20px 0;
}

p,
#member-list {
    font-size: 17px;
    font-weight: 400;
    color: #3B506B;
}

.btn-filled {
    background-color: #519B84;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 40px;
    border: none;
    border-radius: 20px;
    transition: all .2s ease-in-out;
    margin: 0;
}

.btn-filled:hover {
    background-color: #D5B484;
    transition: 300ms;
    transform: scale(1.1);
}

.btn-border-only {
    background-color: transparent;
    color: #519B84;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 40px;
    border: 1px solid #519B84;
    border-radius: 20px;
    transition: all .2s ease-in-out;
    margin: 0;
}

.btn-border-only:hover {
    border: 1px solid #D5B484;
    color: #D5B484;
    transition: 300ms;
    transform: scale(1.1);
}

.btn-smaller-border-only {
    background-color: transparent;
    color: #3B506B;
    font-size: 18px;
    font-weight: 500;
    padding: 7px 40px;
    border: 1px solid #3B506B;
    border-radius: 20px;
    transition: all .2s ease-in-out;
    margin-top: 10px;
}

.btn-smaller-border-only:hover {
    border: 1px solid #D5B484;
    color: #D5B484;
    transition: 300ms;
    transform: scale(1.1);
}

/* Scroll Bar */

::-webkit-scrollbar {
    width: 8px;

}

::-webkit-scrollbar-thumb {
    background-color: #D5B484;
    border-radius: 50px;
}


/* HEADER */

.header-container {
    display: flex;
    justify-content: space-between;
    height: 150px;
    align-items: center;
    border-bottom: 1px solid #F0F0F0;
    padding: 0 10%;
}

.column {
    padding: 10px;
}

.logo {
    width: auto;
    margin-right: 10px;
}

.header-logo {
    width: 200px;
    transition: all .2s ease-in-out;
}

.header-logo:hover {
    transform: scale(1.1);
}

.search {
    width: 40%;
    margin: 0 5px;
}

.search-box {
    width: 100%;
    border: 1px solid #F0F0F0;
    border-radius: 50px;
}

#txtBusca {
    font-size: 18px;
    border: none;
    width: 75%;
    position: relative;
    height: 65px;
    left: 34px;
    background: transparent;
    outline: none;
}

#search-image {
    margin-bottom: -13px;
    margin-left: 35px;
}

/* Mobile Menu */

.menu-btn {
    display: none;
    color: #519B84;
}

.mobile-menu {
    background-color: #fefefe;
    display: none;
}

.mobile-menu a {
    color: #3B506B;
}


/*BARRA DE PESQUISA*/

.busca {

    display: flex;
    flex-direction: column;
    position: absolute;
    font-size: 1rem;
    border-radius: 10px;
    top: 110px;
    left: 39%;
    background-color: rgb(255, 255, 255);
    width: 25%;
    text-align: center;
    margin-top: 5px;
    float: left;
    z-index: 10000;

}

.busca li {
    padding-top: 10px;
    z-index: 5;
}

.busca ul li a {
    color: #000000;
}


.login-cadastro {
    width: auto;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.login-cadastro>a {
    margin-right: 10px;
    color: #000000;
}

.login-cadastro>a:after {
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #D5B484;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.login-cadastro>a:hover:after {
    width: 100%;
    left: 0;
}

.account-icon {
    left: 130px;
    margin-left: 5px;
    transition: all .2s ease-in-out;

}

.account-icon:hover {

    left: 130px;
    transform: scale(1.1);

}

/* NAVIGATION MENU */

.main-menu {
    max-width: 1440px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 70px;
}

.main-menu>li>a {
    position: relative;
    padding: 5px 10px;
    color: #000000;
}

.main-menu>li>a:after {
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #D5B484;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.main-menu>li>a:hover:after {
    width: 100%;
    left: 0;
}


/* HERO SECTION */

.hero-section {
    background-image: url("img/Hero-Image.png");
    height: 750px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-content {
    text-align: left;
    position: absolute;
    top: 50%;
    left: 34vw;
    transform: translate(-50%, -50%);
}

.hero-box {
    padding: 0 10%;
}

.hero-bold-title {
    margin-top: -20px;
    font-weight: 800;
}

.hero-text {
    padding-right: 100px;
    margin-bottom: 50px;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

/* CATEGORIAS */

.categories-section {
    padding: 80px 0;
}

.categories-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
    max-width: 1440px;
    margin: auto;
}

.categories-box {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1440px;
    padding: 0 8%;
    gap: 50px;
}

.categories-box-item {
    text-align: center;
}

.categories-box-item>img {
    width: 100%;
}

/* CONTEÚDOS EM DESTAQUE */

.blog-section {
    background-color: #f0f0f0;
    padding: 80px 0;
}

.blog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
    margin: auto;
}

.blog-box {
    max-width: 1440px;
    display: flex;
    justify-content: center;
    padding: 0 8%;
    gap: 50px;
}

.blog-box-item>img {
    width: 100%;
}

/* SEJA UM MEMBRO */

.member-section {
    padding: 80px 8%;
}

.member-box {
    display: flex;
    align-items: center;
    max-width: 1440px;
    gap: 50px;
}

.member-box-image {
    width: 100%;
}

#member-list {
    padding: 30px 0px 30px 80px;
}

.member-bullet-point {
    list-style-image: url('img/icon-chevron.png');
}

.member-bullet-point::marker {
    text-align: center !important;
}

.member-box-btn {
    padding-top: 30px;
}

/* FALE CONOSCO */

.contact-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.contact-box {
    display: flex;
    align-items: center;
    margin: auto;
    max-width: 1440px;
}

.contact-box-button {
    margin-left: 600px;
}

/* COPYRIGHT */

.copyright {
    background-color: #519b84;
    text-align: center;
    padding: 15px 0;
}

.copyright>p {
    color: #fff;
}

/* BACK TO TOP ICON */

.back-to-top {
    max-width: 1440px;
    position: fixed;
    bottom: 10px;
    float: right;
    right: 2%;
}

.back-to-top>img {
    width: 80%;
}


/* MEDIA QUERY */

@media screen and (max-width: 1200px) {
    .subheader {
        font-size: 20px;
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 38px;
    }

    /* HERO SECTION */
    .hero-section {
        height: 550px;
        background-position: right;
        background-image: linear-gradient(0deg, rgba(233, 233, 233, 0.8), rgba(233, 233, 233, 0.8)), url("img/Hero-Image.png");
    }

    .hero-content {
        text-align: center;
        top: 80px;
        left: 0;
        transform: none;
        padding: 0 100px;
    }

    .hero-box {
        padding: 0;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* CATEGORIAS */
    .categories-box {
        flex-wrap: wrap;
    }

    /* CONTEÚDOS EM DESTAQUE */

    .blog-box {
        padding: 0 8%;
        gap: 30px;
    }

    /* SEJA UM MEMBRO */

    .member-box {
        display: flex;
        flex-wrap: wrap;
    }


    .member-box-image {
        text-align: center;
    }

    /* FALE CONOSCO */

    .contact-box-button {
        margin-left: 100px;
    }

    /* BACK TO TOP ICON */

    .back-to-top {
        position: fixed;
        bottom: 10px;
        float: right;
        right: 50px;
    }
}


@media screen and (max-width: 800px) {

    /* FALE CONOSCO */

    .contact-box-button {
        margin-left: 0px;
    }
}

@media screen and (max-width: 680px) {

    * {
        max-width: 100%;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    /* HERO SECTION */

    .hero-section {
        height: 500px;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    /* CONTEÚDOS EM DESTAQUE */
    .blog-box {
        display: flex;
        flex-wrap: wrap;
        padding: 0 50px;
        gap: 50px;
    }

    /* SEJA UM MEMBRO */
    #member-list {
        padding-left: 30px;
    }

    /* FALE CONOSCO */
    .contact-box {
        display: flex;
        flex-direction: column;
    }

    .contact-box-button {
        margin: 30px 0 0 0;
    }

    /* COPYRIGHT */
    .copyright>p {
        padding: 0 50px;
    }

    /* BACK TO TOP ICON */
    .back-to-top {
        display: none;
    }
}

@media screen and (max-width: 500px) {

    /* HERO SECTION */
    .hero-section {
        height: 600px;
    }
}

@media screen and (max-width: 400px) {

    /* HERO SECTION */
    .hero-section {
        height: 650px;
    }
}

/* Media para  tablets e celulares  */

@media screen and (max-width: 800px) {


    #modal_valida {
        text-align: center;
        padding: 20px;
        position: relative;
        margin-top: 10px;
        width: 80%;
        border-radius: 5%;
        display: none;
        background-color: var(--Branco-esfumaçado);
    }

    .main-menu {
        padding: 1.5rem 4rem;
        display: none;
    }

    .login-cadastro {
        display: none;
    }

    .menu-btn {
        display: block;
        cursor: pointer;
    }

    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-bottom: 1rem;
    }

    .mobile-menu li {
        display: block;
        padding-top: 1.2rem;
    }

    .open {
        display: block;
    }

    .busca {
        left: 35%;
        width: 35%;
    }

    /* HEADER */

    .header-container {
        display: flex;
        justify-content: space-between;
        height: 150px;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
        padding: 0 10%;
        background-color: white;
    }

    .column {
        padding: 10px;
    }

    .logo {
        width: auto;
        margin-right: 10px;
    }

    .header-logo {
        width: 160px;
        transition: all 0.2s ease-in-out;
    }

    .header-logo:hover {
        transform: scale(1.1);
    }

    .search {
        width: 40%;
        margin: 0 5px;
        margin-right: 10px;
    }

    .search-box {
        width: 80%;
        border: 1px solid #f0f0f0;
        border-radius: 50px;
        margin: 0 0px;
    }

    .imglupa {
        position: relative;
        left: 20px;
    }

    #txtBusca {
        font-size: 15px;
        border: none;
        width: 40%;
        position: relative;
        height: 65px;
        left: 34px;
        background: transparent;
        outline: none;
    }

    #search-image {
        margin-bottom: -7px;
        margin-left: 45px;
        width: 30px;
    }

    /* BACK TO TOP ICON */

    .back-to-top {
        position: fixed;
        bottom: 10px;
        float: right;
        right: 30px;
    }

}

@media screen and (max-width: 500px) {
    /* Header */

    .main-menu {
        padding: 1.5rem 4rem;
        display: none;
    }

    .login-cadastro {
        display: none;
    }

    .menu-btn {
        display: block;
        cursor: pointer;
    }

    .burger {
        position: relative;
        right: 65px;
    }

    .menu-btn,
    .header-logo {
        position: relative;
        bottom: 20px;

    }

    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-bottom: 1rem;
    }

    .mobile-menu li {
        display: block;
        padding-top: 1.2rem;
    }

    .open {
        display: block;
    }

    .busca {
        top: 60px;
        left: 0;
        width: 100%;
    }

    /* HEADER */

    .header-container {
        display: flex;
        justify-content: space-between;
        height: 180px;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
        padding: 0 10%;
        background-color: white;
    }

    .column {
        padding: 10px;
    }

    .logo {

        width: auto;
        margin-right: 10px;
    }

    .logo_planty {
        width: 200px;
    }

    .header-logo {
        width: 135px;
        transition: all 0.2s ease-in-out;
        position: relative;
        left: 45px;
    }

    .header-logo:hover {
        transform: scale(1.1);
    }

    .search {
        width: 40%;
        margin: 0 5px;
        margin-right: 10px;
    }

    .imglupa {
        position: relative;
        right: 30px;
    }

    .column_search {
        position: relative;
        bottom: 90px;
        left: 91px;

    }

    .search-box {
        width: 280px;
        border: 1px solid #f0f0f0;
        border-radius: 50px;
        margin: 0 0px;
        position: absolute;
        top: 110px;
        left: 90px;
        right: 87px;
        height: 60px;
    }

    #txtBusca {
        font-size: 15px;
        border: none;
        width: 40%;
        position: relative;
        height: 65px;
        left: 34px;
        background: transparent;
        outline: none;
    }

    #search-image {
        margin-bottom: -7px;
        margin-left: 45px;
        width: 30px;
    }
}