@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    background: url('img/forest.jpg') no-repeat;
    background-size:cover;
    background-position: center;
}

.header {
    position: fixed ;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    /* background: rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(40px); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header::before{
    content:'' ;
    position: absolute ;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(40px);
    z-index: -1;
}

.header::after{
    content:'' ;
    position: absolute ;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    transition: .5s;
}

.header:hover::after{
    left: 100%;
}

.logo {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    font-size: 0.8rem;
    color: #fff;
    text-decoration:none ;
    font-weight: 500;
    margin-left: 2.5rem ;

}

#check {
    display: none;
}

.icons{
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}



@media(max-width: 992px) {
    .header{
        padding: 1.3rem 5%;
    }
}

@media(max-width: 808px) {
    .icons{
        display: inline-flex;
    }

    #check:checked~.icons #menu-icon {
        display:none ;
    }

    .icons #close-icon {
       display: none ; 
    }

    #check:checked~.icons #close-icon {
        display:block ;
    }

    .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(50px);
        box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        overflow: hidden ;
        transition: .3s ease;
    }

    #check:checked~.navbar {
        height: 19.7rem;
    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-20px);
        opacity: 0;
        transition: .3 ease;
    }

    #check:checked~.navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.06s * var(--i));
    }
}

.chartCard {
    justify-content: center;
    background: transparent;
    display: flex ;
    align-items: center;
}

.chartBox{
    width: 780px;
    height: 390px;
    padding: 30px;
    justify-content: center;
    border-radius: 25px;
    border: solid 3px rgba(25, 126, 104, 1);
    background: #ffffff;
    box-shadow: 
        0 4px 6px -1px rgba(18, 83, 15, 0.74), /* Sombra principal mais suave */
        0 2px 4px -2px rgba(255, 0, 0, 0.08), /* Sombra interna para profundidade */
        inset 0 2px 4px 0 rgba(255, 255, 255, 0.1); /* Sombra interna para um brilho sutil */
}

.buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding-top: 10rem;
}

.btn-link{
    padding: 17px;
    font-size: 12px;
    width: 180px;
    height: 60px;
    color: #ffffff;
    background-color:#127251;
    justify-content: center;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    border: none;
    box-shadow: 
        0 4px 6px -1px rgba(105, 184, 101, 0.74), /* Sombra principal mais suave */
        0 2px 4px -2px rgba(0, 0, 0, 0.08), /* Sombra interna para profundidade */
        inset 0 2px 4px 0 rgba(255, 255, 255, 0.1); /* Sombra interna para um brilho sutil */
}
.btn-link:hover{
    width: 182px;
    height: 62px;
    color: #fff;
    background-color:#0e8a60;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
    gap: 4vh;
    min-height: 50vh; 
}

.container .card {
    position: relative;
    width: 160px;
    height: 320px;
    background: linear-gradient(to top, rgba(22, 62, 38, 0.7), rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    margin: 20px;
    padding: 10px 10px 10px 10px;
    align-items: center;
    justify-content: center;
    display: flex;
    border: #000;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.74), /* Sombra principal mais suave */
        0 2px 4px -2px rgba(255, 0, 0, 0.08), /* Sombra interna para profundidade */
        inset 0 2px 4px 0 rgba(255, 255, 255, 0.1); /* Sombra interna para um brilho sutil */
}

.container .card .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
    transition: .5s;
}
.container .card:hover .content {
    opacity: 1;
}
.container .card .content .contentbox h3{
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600 ;
    font-size: 12px;
    text-align: center;
    margin: 20px 0 10px;
    line-height: 1.1em;
}

.container .card .content .contentbox h3 span{
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    
}

.container .card .content .contentbox h4 {
    font-size: 10px;
    font-weight: 400;
    text-transform: initial;
    color: #f4f1f1;
    
}

.container .card .content .imgbox {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid rgba(0,0,0,0.25);
    object-fit: cover;
    
}

.container .card .content .imgbox img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

h1 {
    text-align: center;
    font-size: 50px;
    color:rgb(12, 105, 62);
    text-shadow: 1px 2px 3px #1f1414 ;
}

