:root {
    --azul-color: #3B8EB2;
    --laranja-color: #FF8700;
    --verdelimao-color: #ABC12F;
    --cinza-color: #58595B;

}

.header-container {
    position: sticky;
    display: flex;
    background-color: #fff;
    top: 0;

    z-index: 100;
}

body {
    margin: 0 auto;
    max-width: 1200px;
    box-sizing: border-box;
    
}

.logo-wrapper {
    padding: 0 3rem;
}

.section-title {
    font-weight: 700;
    font-size: 27px;
    margin: 10px 0 10px;
}

.logo-wrapper img {
    width: 189.639px;
    height: 91.1849px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #58595b;
}

.nav-container-mobile {
    display: flex;
    align-items: center;
    justify-content: end;
}

.nav-container ul {
    padding: 0 3rem;
    margin: 0;
    list-style: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.nav-container ul li a{
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-button {
    font-size: 35px;
    text-decoration: none;
    background-color: #58595b;
    border: none;
    border-radius: 8px;
    color: #fff;
}



.menu-closed {
    display: none;
}

.menu-opened {
    display: flex;
    justify-content: end;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 9999;
}

.menu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    height: 100%;
    background-color: #fff;
    width: 50%;
    
}

.menu-wrapper a {
    color: rgb(48, 66, 84);
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
}

.info-section {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.info-section>div {
    flex: 1;
}

.logo-grande-container img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.canvas-layout {
    height: 100%;
}

.canvas-layout img {
    width: 100%;
    object-fit: cover;
}

.info-section>div:nth-child(2) {

    background-color: #58595b;
}

/*EIXOS*/
.eixos-section {
    margin-top: 5rem;
    color: #fff;
}

.eixos-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 1rem 3rem;
    background-color: #FF8700;
    height: 100%;
}

.eixos-container img {
    width: 176.395px;
    height: 184.755px;
}

.eixos-divider {
    border-bottom: 2px solid #fff;

}

.eixos-divider2 {
    border-bottom: 5px solid #fff;

}

#eixos-cards-container div {
    width: 200px;
}

#eixos-cards-container h3 {
    font-size: 18px;
    margin-top: 1rem;
    font-weight: 700;
}

.card-info {
    margin-bottom: 20px;
}

/*Documentos*/
.documentos-section {
    margin-top: 3rem;
    color: #abc12f;
    position: relative;
}

.documentos-divider {
    border-bottom: 2px solid #abc12f;
    height: 5px;
}

.documentos-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

/* .documentos-info>div {
    flex: 1;
} */

.documentos-img-container {}

.documentos-img-container img {
    width: 388.334px;
    height: 549.27px;
    object-fit: contain;
    border: 7px solid #92d050;
}

.documentos-description-container {
    display: flex;
    flex-direction: column;
    width: 50%;
    color: #000;
    padding: 7rem 0 0 0;
}

.documentos-description-container h3 {
    font-weight: 700;
}

.documentos-description-container p {
    font-weight: 400;
}

.download-container {
    display: flex;
    justify-content: center;
    align-items: center;


    /* Ajuste conforme necessário */
    /* height: 320px; */
}

.download-arrow {
    position: relative;
    display: flex;
    justify-content: center;
}

.arrow-img {
    display: block;
    width: 50%;
}

.download-btn {
    position: absolute;
    top: 47%;
    left: 53%;
    transform: translate(-50%, -50%);
    background-color: #abc12f;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 29px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;

    @media screen and (max-width: 992px) {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
}



/* Oficina */

.oficina-section {
    margin-top: 5rem;
    color: #fff;
}

.oficina-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 3rem;
    background-color: #3B8EB2;
    height: 100%;
}

.oficina-container h5 {
    font-weight: 400;
    width: 90%;
    margin: 2rem auto 0;
}

.oficina-tree {
    color: #3b8eb2;
    object-fit: cover;
    background-image: url(../img/oficina-tree.svg);
    width: 107%;
    background-repeat: no-repeat;
    height: 1185px;
}

.tree {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    color: #3b8eb2;
    /* flex-direction: column; */
    align-items: center;
    position: relative;

    width: 100%;
}

.tree>.tree-leaves:first-child::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1;
}

.tree-leaf {
    display: flex;
    flex-wrap: wrap;
    color: #3b8eb2;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 500px;
    gap: 1.5em;

    @media screen and (max-width: 668px) {
        width: 100%;
    }
}

.tree-leaves {
    display: flex;
    flex-wrap: wrap;
    color: #3b8eb2;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    transform: translateY(-10px);
}

.tree-leaves::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1;
}

.tree-leaf::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1;
}

.tree-leaf:nth-child(1) {
    margin-top: 30px;
}

.treewrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #3b8eb2;
    width: 100%;
    /* flex-direction: column; */
    align-items: center;

    @media(max-width: 655px) {
        justify-content: center;
        ;
    }
}

.treewrapper::before {
    content: '';
    position: absolute;
    top: 180px;
    width: 100%;
    height: 2px;

    background-color: #ffffff;
}

.treewrapper::after {
    content: '';
    position: absolute;
    top: calc(100% - 10px);
    /* Posiciona a linha na parte inferior */
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.tree-level {
    position: relative;
    display: flex;
    gap: 3rem;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.tree-levels {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: space-around;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    width: 200px;
}

.tree-levels::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1;
}

.node {
    background-color: #fff;
    border: 1px solid #91d5ff;
    border-radius: 24px;
    padding: 10px;
    text-align: center;
    z-index: 3;
}

.node-top {
    height: 85px;
}

.node h1 {
    font-size: 18px;
}

/* .tree {
    display: flex;
    color: #3b8eb2;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
}

.tree-level {
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.node {
    background-color: #fff;
    border: 1px solid #91d5ff;
    border-radius: 25px;
    padding: 10px;
    text-align: center;
    width: 150px;
    z-index: 3;
}

.tree-level:nth-child(1) .node {
    width: 500px;
    margin-bottom: 1rem;
}


.tree-level:nth-child(3) .node {
    width: 200px;
    height: 300px;
}

.tree-level:nth-child(4) .node {
    margin-top: 2rem;
    width: 500px;

}

.tree-level:nth-child(5) .node {
    margin-top: 2rem;
    width: 500px;


}

.tree-level:nth-child(6) .node {
    margin-top: 2rem;
    width: 500px;


}



.node h1 {
    font-size: 18px;
}

.node::before,
.node::after {
    content: '';
    position: absolute;
    border: 1px solid #fff;
}

.tree-level:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 105%;

    width: 1050px;
    height: 2px;
    background-color: #fff;

}


.tree-level:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 110%;
    width: 1050px;
    height: 2px;
    background-color: #fff;

}

.tree-level:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 87%;
    width: 2px;
    height: 1000px;
    background-color: #fff;

} */

/* .tree-level::after {
    content: '';
    position: absolute;
    top: 110%; 
    width: 2px;
    height: 20px;
    background-color: #fff;

  } */


/* .tree-level:nth-child(1) .node::after {
    top: 100%;
    left: 8%;
    width: 2px;
    height: 475px;
    background-color: #fff;
}

.tree-level:nth-child(2) .node::after {
    top: -22%;
    left: 29%;
    width: 2px;
    height: 475px;
    background-color: #fff;
}


.tree-level:nth-child(4) .node::after {
    top: -307%;
    left: 71%;
    width: 2px;
    height: 475px;
    background-color: #fff;
}

.tree-level:nth-child(5) .node::after {
    top: -363%;
    left: 92%;
    width: 2px;
    height: 475px;
    background-color: #fff;
} */

/* .tree-level:not(:first-child) .node:first-child::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: #fff;
    z-index: -1;
} */

/* .tree-level:not(:first-child) .node:not(:first-child)::before {
    top: 55px;
    left: 0;
    right: 0;
    width: 100%; 
    height: 2px;
    background-color: #fff;
    z-index: -1;
  } */



/*Programacao e contato*/

.sobreevento-section {}

.sobreevento-container {
    margin-top: 7rem;
    display: flex;
}

.sobreevento-container>div:first-child {
    flex: 1 1 40%;
}

.sobreevento-container>div:last-child {
    flex: 1 1 60%;
}

.sobreeventos-divider {
    border-bottom: 2px solid #000;
    height: 5px;
}

.sobreevento-description h1 {
    color: #abc12f;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.sobreevento-description a {
    color: #ABC12F;
    text-decoration: none;
    font-weight: 700;
}

.email-input {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
}

.sobreevento-info {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.sobreevento-info img {
    width: 62px;
    height: 62px;
}


.sobreeventos-inscrevase-wrapper {
    margin-top: 5rem;
}

.sobreeventos-inscrevase-wrapper h1 {
    color: #3b8eb2;
    font-weight: 700;
    text-transform: uppercase;
    font-weight: 700;
}

.sobreeventos-inscrevase-wrapper h1 a {
    color: #abc12f;
}

.sobreeventos-inscrevase-icon {
    width: 200px;
}

.footer-container {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.footer-socials-wrapper {
    position: relative;
    color: #fff;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    background-color: #58595b;
}