@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}

header {
    background-color: #f0f0f0;
    width: 100%;
    padding: 0px 4%;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3em;
}

.logo-name {
    color: #000;
}

.header-container {
    max-width: 1280px;
    margin: auto;
}

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

header ul li {
    display: inline-block;
    margin: 0 40px;
}

header ul a {
    text-decoration: none;
}
/* Animação Menu */
.nav-btn {
    font-size: 17px;
    background: transparent;
    border: none;
    padding: 1em 1.5em;
    color: #000;
    text-transform: uppercase;
    position: relative;
    transition: 0.5s ease;
    cursor: pointer;
}

.nav-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #23ff06;
    transition: 0.5s ease;
}

.nav-btn:hover {
    color: #1e1e2b;
    transition-delay: 0.5s;
}

.nav-btn:hover::before {
    width: 100%;
}

.nav-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    background-color: #06ff0a;
    transition: 0.4s ease;
    z-index: -1;
}

.nav-btn:hover::after {
    height: 100%;
    transition-delay: 0.4s;
    color: aliceblue;
}

/* Animação Botão de Login */
.fancy {
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 1.25em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
}

.fancy::before {
    content: ' ';
    width: 1.5625rem;
    height: 2px;
    background: black;
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}

.fancy .text {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
}

.fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
    color: white;
    background: black;
}

.fancy:hover::before {
    width: 0.9375rem;
    background: white;
}

.fancy:hover .text {
    color: white;
    padding-left: 1.5em;
}

.fancy:hover .top-key {
    left: -2px;
    width: 0px;
}

.fancy:hover .bottom-key-1,
.fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
}
.is-active {
    display: block;
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #e8e8e8;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #4b4b4b;
    display: block;
    transition: 0.3s;
}

#main {
    transition: margin-left 0.5s;
    padding: 20px;
}

/* body.dark-mode {
    background-color: #222;
    color: #FFF;
}

.header.dark-mode {
    background-color: #333;
}

.sidebar.dark-mode {
    background-color: #333;
}

.sidebar.dark-mode a {
    color: #FFF;
}

.openbtn.dark-mode {
    background-color: #444;
} */

.container {
    display: flex;
    height: 100vh;
}

/* ---------------------------------------------------------------------------------------- */

.cabeçalhoDiv {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    width: 100%;
    height: 100px;
}
.containercabelhacocontent {
    display: flex;
    width: 100%;
    height: 100px;
    padding: 0 20px;
    flex-direction: column;
}

.content {
    margin-top: 20px;
    margin-bottom: 20px;
}

.cabeçalho-link {
    display: flex;
    gap: 3rem;
    font-weight: 300;
}

.cabeçalho-link a {
    color: rgb(0, 182, 0);
    font-size: 16px;
}

button {
    color: rgb(32, 34, 33);
    background: transparent;
    border: solid 2px rgb(107, 112, 108);
    padding: 5px;
    border-radius: 15px;
    font-size: 16px;
    width: 150px;
    cursor: pointer;
}

button:hover {
    background-color: rgb(50, 53, 51);
    color: rgb(185, 187, 185);
    transition: 0.5s;
}

.buttonFlip{
    color: rgb(32, 34, 33);
    background: transparent;
    border: solid 2px rgb(107, 112, 108);
    padding: 5px;
    border-radius: 15px;
    font-size: 16px;
    width: 150px;
    cursor: pointer;
    width: 100%;
}

.container-text {
    padding: 150px 0 0 130px;
}

.content-text ul {
    list-style-type: none;
}

.content-text ul li:before {
    content: "• ";
}


/* ---------------------------------------------------------------------------------------- */
.plantas {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    
}

.imagem {
    width: 250px;
    height: 250px;
    border-radius: 15px;
}

.imagem img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.planta {
    width: 250px;
    border-radius: 15px;
    cursor: pointer;
}

.hidePage {
    display: none;
}

.plantaClicada {
    width: 100%;
    height: 100%;
}

/* -------------------------------------A IMAGEM DAS PLANTAS--------------------------------------------------- */

.planta-img {
    width: 70%;  /* Diminua o tamanho para 50% */
    height: 70%;  /* Diminua o tamanho para 50% */
    border-radius: 15px;
    display: block;  /* Adicionado para centralizar a imagem */
    margin: auto;  /* Adicionado para centralizar a imagem */
}

.img-plant {
    width: 70%;  /* Diminua o tamanho para 50% */
    height: 70%;  /* Diminua o tamanho para 50% */
    border-radius: 15px;
    object-fit: cover;
    display: block;  /* Adicionado para centralizar a imagem */
    margin: auto;  /* Adicionado para centralizar a imagem */
}

/* -------------------------------------A IMAGEM DAS PLANTAS--------------------------------------------------- */

.planta-info {
    display: flex;
    padding: 10px   ;
    flex-direction: column;
    gap: 20px;
    
}

.planta-info h2 {
    font-size: 30px;
}
.planta-info p {
    font-size: 17px;
}

.planta-info p strong {
    font-size: 20px;
}

.containerCard {
    width: 250px;
    height: 450px;
}


.flip-card {
    width: 100%;
    height: 100%;
    perspective: 1000px;
}
.flip-card-inner {
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(-180deg);
}

.flip-card .flip-card-back{
    transform: rotateY(-180deg);

}

.flip-card-front,
.flip-card-back {
    position: absolute;
    backface-visibility: hidden;
}


.flip-card-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.tagsTypes{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 5px;
}

.tagIMG {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.box {
    background-color: rgba(255, 255, 255); 
    margin: 0px 100px 0px 100px;

    border-radius: 10px;
    
}

.content h1{
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 90px;
    color: green;
    text-align: center;
}

.content {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;


}

.content-text {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.content-img {
    margin-top: 5px;     
    text-align: center;
    width: 100%;
}

.content-img img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}




@media (max-width: 700px) {
    nav,
    .btn-login {
        display: none;
    }

    .burguer {
        display: block;
        cursor: pointer;
        padding: 14px 16px;
        color: black;
        z-index: 2;
    }
    .burguer div {
        width: 25px;
        height: 3px;
        background-color: black;
        margin: 5px 0;
    }

    .planta-img {
        padding: 10px;
        height: 100%;
        border-radius: 15px;
    }
    
    .img-plant {
        width: 100%;
        height: 100%;
        border-radius: 15px;
    }

    .content h1 {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 30px;
        color: green;
        text-align: center;
    }

    .box {
        width: 100%;
        background-color: rgba(255, 255, 255);
        margin: 0px;
        border-radius: 10px;
    }

    
}
