@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;
    padding: 0;
    box-sizing: border-box;
}

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: 10px 0 20px 0;
}

p {
    font-size: 18px;
    font-weight: 400;
    color: #3B506B;
}

/* Scrollbar */

body,
html {
    width: 100vw;
    overflow-x: hidden !important;
}

::-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%;
    background-color: #FFFFFf;
}

.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;
}

input[type="text"] {
    border: none;
    outline: none;
    width: 339px;
}

.search-box {
    display: flex;
    width: 30vw;
    height: 10vh;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #F0F0F0;
    border-radius: 50px;
    padding: 15px 30px;
}

/*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 {
    transition: all .2s ease-in-out;
}

.account-icon:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .header-container {
        max-width: 100%;
    }

    .header-logo {
        width: 100%;
    }

    .search-box {
        font-size: 10px;
        max-width: 100%;
    }
}

/* NAVIGATION MENU */

.main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    height: 70px;
    background-color: #ffffff;
}

.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;
}

/* ABOUT US SECTION */

body {
    background-color: #EDEAE3;
    margin: auto;
}

.healing {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}

.healing h1 {
    font-size: 50px;
    color: #3B506B;
    margin-bottom: 25px;
    position: relative;
}

.healing h1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #519B84;

}

.healing p {
    font-size: 18px;
    color: #3B506B;
    margin-bottom: 35px;
    padding: 10px 20px;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
    margin-bottom: 40px;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    margin-right: 40px;
    overflow: hidden;

}

.about-image img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.2);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 23px;
    margin-bottom: 15px;
    color:
}

.about-content p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
}

.about-content .read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #519B84;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
}

.about-content .read-more:hover {
    background-color: #D5B484;
    transition: 300ms;
    transform: scale(1.1);
}

/* RODAPÉ */

.footer-container {
    background-color: #FFFFFf;
    margin: auto;
    padding: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0 1%;
}

/* COPYRIGHT */

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

.copyright>p {
    color: #fff;
}

/* BACK TO TOP ICON */

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

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


/* ABOUT US SECTION */

@media screen and (max-width: 768px) {
    .healing {
        padding: 0px 20px;
    }

    .healing h1 {
        font-size: 36px;
    }

    .healing p {
        font-size: 17px;
        margin-bottom: 0;
    }

    .container {
        padding: 0px;
    }

    .about {
        padding: 20px;
        flex-direction: column;
    }

    .about-image {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .about-content p {
        padding: 0;
        font-size: 16px;
    }

    .about-content .read-more {
        font-size: 16px;
    }
}

/*Media para tablets */

@media screen and (min-width: 768px) and (max-width: 1024px) {

    /* 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: 180px;
        transition: all 0.2s ease-in-out;
    }

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

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

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

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

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

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

}

/* Mobile Menu */

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

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

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

/* Media para  tablets e celulares  */
@media screen and (max-width: 280px) {


    .img-login {
        height: 10vh;
        width: 20vw;
        padding-right: 0%;
        border-radius: 90px;
    }

    .back-to-top {
        width: 20vw;
    }

    /* 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;
    }

    /* 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: 88px;
        transition: all 0.2s ease-in-out;
        position: relative;
        left: 45px;
    }

    i {
        padding-left: 70px;

    }

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

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

    .imglupa {
        position: relative;

    }

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

    }

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

    #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;
    }


}


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

    .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;
    }

    /* 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;
    }

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

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

}

/* CONTATO */

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

    .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;
    }

    /* 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;

    }

    .column_search {
        position: relative;
        bottom: 90px;
        left: 92px;
    }

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

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

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

    .back-to-top {
        position: relative;
        bottom: 96px;
        float: right;
        right: 0;
        width: 50px;
        padding-right: 15px;
    }
}

@media (max-width: 850px) {
    .form {
        grid-template-columns: 1fr;
    }

    .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .text {
        margin: 1rem 0 1.5rem 0;
    }

    .social-media {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    .contact-info:before {
        display: none;
    }

    .square,
    .big-circle {
        display: none;
    }

    form,
    .contact-info {
        padding: 1.7rem 1.6rem;
    }

    .text,
    .information,
    .social-media p {
        font-size: 0.8rem;
    }

    .title {
        font-size: 1.15rem;
    }

    .input {
        padding: 0.45rem 1.2rem;
    }

    @media screen and (min-width: 429px) and (max-width:634px) {
        /* HEADER */

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

        header {
            border-left: none;

        }

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

        .search-box {
            width: 40vw;
            border: 1px solid #f0f0f0;
            border-radius: 50px;
            top: 110px;
            right: 50px;
            height: 60px;
            left: 32px;
            padding-left: 0px;

        }

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

    @media screen and (max-width: 280px) {
        .botoes {
            width: 100%;
            padding-left: 1%;
        }

        .btn-cadastrar {
            width: 25vw;
        }

        .btn-entrar {
            width: 25vw;
        }

        h4 {
            font-size: 10px;
            padding-left: 0%;
            display: flex;
        }

        .img-login {
            height: 10vh;
            width: 20vw;
            padding-right: 0%;
            border-radius: 90px;
        }

        .back-to-top {
            width: 20vw;
        }

        /* 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;
        }

        /* 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: 88px;
            transition: all 0.2s ease-in-out;
            position: relative;
            left: 45px;
        }

        i {
            padding-left: 70px;

        }

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

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

        .imglupa {
            position: relative;

        }

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

        }

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

        #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;
        }


    }

}