* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #00000033 #54b689;
}
body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    accent-color: #54b689;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
    scrollbar-width: thin;
}


/* Estilo para seleção de texto */
::selection {
    color: #333333;
    background-color: #54b68891;
}


/* a{
    text-decoration: none;
    color: #54B689;
}
a:hover{
    text-decoration: underline;
} */
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #54B689;
    color: #fff;
    overflow-y: auto;
    scrollbar-color: rgba(0, 0, 0, 0.2) #54B689;
    scrollbar-width: thin;
}


@keyframes collapseAnimation {
    from { height: 60px; } /* Altura inicial */
    to { height: 500px; } /* Altura final quando colapsado */
}
@keyframes closeAnimation {
    from { height: 500px; } /* Altura inicial */
    to { height: 0; } /* Altura final quando colapsado */
}


.main-wrapper{
    margin-left: 280px;
}


#info-profile{
    display: block;
    margin: 0 auto;
    width: 260px;
}
.info-name{
    /* text-transform: uppercase; */
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
    margin: 20px auto;
}
.profilePhoto {
    border: 4px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}
.profilePhoto img {
    width: 100%;
    height: 120%;
    object-fit: cover; /* Garante que a imagem cubra todo o espaço do contêiner, mantendo sua proporção */
    transition: transform 0.3s ease; /* Adiciona uma transição suave ao fazer o zoom da imagem */
}
.profilePhoto img:hover {
    transform: scale(1.1);
}
#info-profile .bio{
    display: block;
    margin: 20px 0px;
    font-size: 14px;
    text-align: center;
}
.social-list{
    display: flex;
    justify-content: center;
    width: inherit;
}
.social-list a{
    margin: 6px 6px;
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
}


.social-list ul{
    cursor: default;
    list-style: none;
}
.social-list ul li{
    display: inline-block;
    margin: 0px 10px;
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transition: background-color 0.3s ease;
}
.social-list ul li:hover{
    background-color: #ffffffbb;
}
.social-linkedin{
    width: 18px;
    height: 18px;
    background-color: #54b689;
    -webkit-mask-image: url(../images/linkedin.png);
    mask-image: url(../images/linkedin.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
    margin: 2px auto;
}
.social-github{
    width: 18px;
    height: 18px;
    background-color: #54b689;
    -webkit-mask-image: url(../images/github.png);
    mask-image: url(../images/github.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
    margin: 2px auto;
}
.social-email{
    width: 18px;
    height: 18px;
    background-color: #54b689;
    -webkit-mask-image: url(https://img.icons8.com/?size=100&id=12623&format=png);
    mask-image: url(https://img.icons8.com/?size=100&id=12623&format=png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
    margin: 2px auto;
}
.social-salesforce{
    width: 18px;
    height: 18px;
    background-color: #54b689;
    -webkit-mask-image: url(../images/salesforce.png);
    mask-image: url(../images/salesforce.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
    margin: 2px auto;
}


.navbar{
    display: block;
    margin-top: 30px;
}
.navbar-nav{
    display: flex;
    flex-direction: column;
    width: 160px;
    margin: 0 auto;
    list-style: none;
}
.nav-item{
    padding: 10px;
}
.nav-link{
    display: inline-flex;
    align-content: center;
    width: 100%;
    padding: 3px;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}
.nav-link.active{
    color: #235840;
}
.nav-link:hover{
    color: #235840;
}


.btnclick{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    margin: 25px auto;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #0e7157;
    background-color: #3b7f60;
    transition: background-color 0.3s ease;
}
.btnclick:hover{
    background-color: #0e7157;
}
.img-send{
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    -webkit-mask-image: url(https://cdn-icons-png.freepik.com/512/4203/4203958.png);
    mask-image: url(https://cdn-icons-png.freepik.com/512/4203/4203958.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
}
.btnclick a{
    display: inline-flex;
    justify-content: space-evenly;
    padding: 10px 0px;
    text-decoration: none;
    text-align: center;
    font-weight: bolder;
    color: #ffffff;
    width: 100%;
}
.dark-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}


.dark-mode-toggle label {
    cursor: pointer;
}


.dark-mode-toggle img {
    width: 20px; /* Ajuste conforme necessário */
    height: 20px; /* Ajuste conforme necessário */
    margin-right: 5px; /* Espaçamento entre o ícone e o texto */
}


.dark-mode-toggle {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    height: 65px;
    margin: 50px 0px;
}


.dark-mode-toggle .toggle {
    display: none;
}


.dark-mode-toggle .toggle-btn {
    outline: 0;
    display: block;
    width: 70px;
    height: 30px;
    position: relative;
    cursor: pointer;
    user-select: none;
    padding: 2px;
    transition: all 0.2s ease-in-out;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
}
.dark-mode-toggle .toggle-btn::after{
    left: 0;
    transition: all 0.2s ease-in-out;
    background: rgba(255, 255, 255, 0.4);
    content: "";
    border-radius: 16px;
}
.dark-mode-toggle .toggle-btn::after, .dark-mode-toggle .toggle-btn::before{
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    top: -20px;
}


.dark-mode-toggle .toggle:checked + .toggle-btn:after {
    left: 50%;
}




/* .dark-mode-toggle label span {
    display: flex;
    align-items: center;
}


.dark-mode-toggle label img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
} */
.horiz{
    display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
    width: 60%;
}


.mode-dark{
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    -webkit-mask-image: url(https://static-00.iconduck.com/assets.00/dark-theme-icon-512x512-185rlszm.png);
    mask-image: url(https://static-00.iconduck.com/assets.00/dark-theme-icon-512x512-185rlszm.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
}


.space-hr{
    margin: 20px 0px;
}
.space-hr hr{
    border: 0.5px solid #3c8362;
}
.nav-about{
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 9px;
    background-color: #ffffff;
    -webkit-mask-image: url(https://pic.onlinewebfonts.com/thumbnails/icons_452489.svg);
    mask-image: url(https://pic.onlinewebfonts.com/thumbnails/icons_452489.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
    transition: background-color 0.3s ease;
}
.nav-experience{
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 9px;
    background-color: #ffffff;
    -webkit-mask-image: url(https://cdn-icons-png.flaticon.com/512/522/522510.png);
    mask-image: url(https://cdn-icons-png.flaticon.com/512/522/522510.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
    transition: background-color 0.3s ease;
}
.nav-portfolio{
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 9px;
    background-color: #ffffff;
    -webkit-mask-image: url(https://img.icons8.com/?size=512&id=7692&format=png);
    mask-image: url(https://img.icons8.com/?size=512&id=7692&format=png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
    transition: background-color 0.3s ease;


}


.nav-resume{
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 9px;
    background-color: #ffffff;
    -webkit-mask-image: url(https://img.icons8.com/?size=512&id=23882&format=png);
    mask-image: url(https://img.icons8.com/?size=512&id=23882&format=png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
    transition: background-color 0.3s ease;
}
.nav-contact{
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 9px;
    background-color: #ffffff;
    -webkit-mask-image: url(https://img.icons8.com/?size=100&id=12623&format=png);
    mask-image: url(https://img.icons8.com/?size=100&id=12623&format=png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
    transition: background-color 0.3s ease;
}


.nav-item .nav-link:hover .nav-about,
.nav-item .nav-link:hover .nav-portfolio,
.nav-item .nav-link:hover .nav-experience,
.nav-item .nav-link:hover .nav-resume,
.nav-item .nav-link:hover .nav-contact,
.nav-link.active .nav-about,
.nav-link.active .nav-portfolio,
.nav-link.active .nav-experience,
.nav-link.active .nav-resume,
.nav-link.active .nav-contact {
    background-color: #235840;
}


.main-header{
    background-color: #f0fff8;
}






.portfolio-social{
    display: flex;
    justify-content: center;
}






























/* TAMANHO DE LARGuA DE WEB */


/* .about-me, .section-what, .featured-section, .footer-info, .section-contact, .section-form, .container-container{ */










.section-header {
    /* display: flex; */
    width: 100%;
    height: 380px;
    /* padding: 60px;
    border: 1px solid red;*/
    border-bottom: 1px solid #54b6883b;
}










.container-content{
    margin: 0 auto;
    max-width: 1430px;
    height: 100%;
}
.about-me{
    display: flex;
    width: 100%;
    height: 380px;
    padding: 60px;
    border: 1px solid red;
}
.container{
    margin: 10px 100px 0px 0px;
}
.name-about{
    /* font-size: 30px;
    font-size: 1.875rem; */
    font-size: clamp(1.5rem, 1.2vw + 1rem, 2.5rem);
    font-weight: bold;
}
.title-about {
    /* margin: 15px 0;
    display: inline-block; */
    display: inline-flex;
    position: relative; /* Necessário para posicionar o pseudoelemento */
    width: fit-content;
}
.des-about{
    height: max-content;
    padding-right: 30px;
}


.typed-out {
    display: inline-block;
    /* display: initial; */
    font-size: 1.6rem;
    font-weight: 300;
    font-style: inherit;
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 1s steps(20, end) forwards;
}


.blinking {
    display: inline-block;
    background-color: #54b689;
    width: 3px;
    height: 100%;
    /* position: absolute; */
    border-radius: 2px;
    animation: blinking .8s infinite;
}




.description-about {
    margin: 10px 0;
    display: inline-block;
    position: relative; /* Necessário para posicionar o pseudoelemento */
}


.des-about .bioText {
    width: 95%;
    height: 95px;
    /* display: inline-block;
    overflow: hidden;
    white-space: pre-wrap; /* Impede que o texto quebre em várias linhas * /
    animation: typing 1s steps(20, end) forwards; */
    animation-delay: 2s;
}


.des-about .bioText::after{
    content: '';
    display: inline-block;
    background-color: #54b689;
    width: 3px;
    height: 19px;
    position: absolute;
    border-radius: 2px;
    animation: blinking .8s infinite;
    margin-left: 5px;
}


@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}


@keyframes blinking {
    50% { background-color: transparent; }
    100% { background-color: #54b689; }
}


/* .title-about h3 {
   
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    border-right: .15em solid orange;
    animation: typing 3s steps(40, end), blink-caret .75s step-end infinite;
} */




.resume-about{
    display: inline-flex;
    justify-content: space-between;
    width: 470px;
    /* margin: 20px 0px; */
}


.btn-portfolio, .btn-resume{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    width: 230px;
    transition: background-color 0.3s ease;
}
.btn-portfolio{
    background-color: #54b689;
}
.btn-portfolio:hover{
    background-color: #48a077;
}
.btn-resume{
    background-color: #505050;
}
.btn-resume:hover{
    background-color: #434343;
}


.profile-image {
    /* width: 940px; */
    width: 547px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    height: 300px;
    border: 3px solid #54b689;
    border-radius: 10px;
}


.profile-image img {
    width: 100%;
    height: 151%;
    overflow: hidden;
    object-fit: cover;
    pointer-events: none;
}


.section-what{
    border: 1px solid red;
}
.overflow{
    padding: 0px 60px;
    /* margin-top: 20px; */
}


.section-title{
    font-size: 20px;
    position: relative;
    margin-bottom: 20px;
    padding-left: 1.5rem;
    color: #292929;
}
.section-title h2::before{
    content: "";
    display: inline-block;
    width: 5px;
    height: 100%;
    background: #54B689;
    position: absolute;
    left: 0;
    top: 0;
}


/* .description-about{
    border: 1px solid red;
    margin-bottom: 40px;


    padding-right: 5px;
    border-right: .15em solid #54b689;
    overflow: hidden;
    animation: typing 5s steps(200, end) forwards, blinking .8s infinite;
    width: 0;
} */




.skills img{
    width: 40px;
}
.cont-center{
    margin: 0 auto;
}
.row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 30px 60px 10px;
}
.form-group{
    flex: 0 0 auto;
    width: 40%;
    /* height: 150px; */
    margin-bottom: 25px;
}
.lang-title{
    display: block;
    font-weight: bold;
    margin: 10px 0;
}
.lang-title + p{ font-size: 14px; }


.detalh p{
    font-size: 20px;
    position: relative;
    padding-left: 1.5rem;
    color: #292929;
    margin-bottom: 40px;
    text-decoration: underline overline;;
    text-decoration-color: #0e7157;
    text-decoration-line: 5px;
}
.detalh p::before{
    content: "";
    display: inline-block;
    width: 5px;
    height: 100%;
    background: #54B689;
    position: absolute;
    left: 0;
    top: 0;
}
.featured-section{
    margin-top: 20px;
    border: 1px solid red;
}


.project{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 90px 10px;
}
.project-heading{
    background-color: #fafafa;
    display: flex;
}
.project-group{
    width: 45%;
    margin-bottom: 30px;
}


.project-image{
    position: relative;
    background-color: #0c0c0c;
    width: 200px;
    height: 200px;
    overflow: hidden;
}
.project-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.project-info{
    /* border: 1px solid green; */
    width: 100%;
    padding: 20px;
}
.project-title{
    margin-bottom: 10px;
}
.btn-project-title{
    color: #292929;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: #0e7157;
    transition: color 0.3s ease;
}
.btn-project-title:hover{
    color: #54b689;
    text-decoration-color: #54b689;
}
.project-description{
    font-size: 14px;
}
.project-description p{
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    overflow: hidden;
    -webkit-box-orient: vertical;
    overflow: hidden;
   
}
.project-group{
    z-index: 1;
    position: relative;
    transition: all 0.3s;
}
.project-group:nth-child(1)::before{
    content: '';
    background: #54b689;
    position: absolute;
    top: -11px;
    left: -11px;
    width: 150px;
    height: 150px;
    z-index: -1;
}
.project-group:last-child::after{
    content: '';
    background: #54b689;
    position: absolute;
    bottom: -11px;
    right: -11px;
    width: 150px;
    height: 150px;
    z-index: -1;
}


.btn-project{
    background-color: #54b689;
    /* padding: 10px 0px; */
    margin: 0 auto 100px;
    width: 280px;
    height: 35px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.btn-project a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}
.btn-project:hover{
    background-color: #48a077;
}
.footer-info{
    height: 200px;
    border: 1px solid red;
    margin-top: 50px;
}


/* CONTATO */


.content-contact {
    display: flex;
    align-content: center;
    justify-content: space-evenly;
    flex-direction: column;
    height: 100%;
}
.content-title{
    margin: 0 auto;
    font-size: 30px;
    text-align: center;
    color: #333;
}
.contact-description{
    margin: 0 auto;
    text-align: center;
    width: 60%;
    line-height: 1.6;
}






.container-about{
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    /* height: 375px; */
    height: 100%;
    padding: 40px 60px;
}
.colum-profile{
    display: flex;
    flex-direction: column;
    /* justify-content: space-around;
    justify-content: space-between; */
    justify-content: space-evenly;
    width: 100%;
}




.contact-info{
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
    padding: 65px 1.5rem;
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center; */
}


.contact-heading h3{
    font-weight: 600;
    color: #292929;
    font-size: 2.5rem;
    line-height: 0.9;
    white-space: nowrap;
    margin-bottom: 1.2rem;
    text-align: center;
}








.form-wrapper{
    max-width: 32rem;
}




.contact-form {
    display: grid;
    margin-top: 2.55rem;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 1rem;
}
.input-warp {
    position: relative;
}
.input-warp.w-100{
    grid-column: span 2;
}
.contact-input{
    width: 100%;
    background-color: #54b68961;
    padding: 1.5rem 1.35rem calc(0.75rem - 2px) 1.35rem;
    border: 1px solid transparent;
    outline: none;
    font-family: inherit;
    border-radius: 10px;
    color: #3c8362;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 0 20px #c6f3de;
    transition: 0.3s;
}
.contact-input:hover{
    background-color: #54b6888f;


}
.input-warp label{
    position: absolute;
    top: 50%;
    left: calc(1.35rem + 2px);
    transform: translateY(-50%);
    pointer-events: none;
    color: #235941;
    transition: .25s;
}
textarea.contact-input{
    resize: none;
    width: 100%;
    min-height: 150px;
}
textarea.contact-input ~ label{
    top: 1.2rem;
    transform: none;
}
textarea.contact-input ~ .icon-msg{
    top: 1.3rem;
    transform: none;
}


.input-warp.focus .contact-input{
    background-color: #54b6888f;
    border: 1px solid #54b689;
    box-shadow: 0 0 5px #54b689;
}


.input-warp.focus label{
    color: #00523c;
}


.input-warp.not-empty label{
    font-size: 0.66rem;
    top: 0.75rem;
    transform: translateY(0);
}




.contact-btn{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    margin-top: 1rem;
    width: 100%;
    grid-column: span 2;
}


.btn{
    display: inline-block;
    /* padding: 1.1rem 2rem; */
    padding: 1.1rem 0;
    background-color: #3b7f60;
    color: #cdffe3;
    border-radius: 10px;
    border: 1px solid #0e7157;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}
.btn:hover{
    background-color: #245a42;
}
.btn:disabled, .btn.upload:disabled, .btn.upload input[type="file"]:disabled{
    background-color: #9fd6bc;
    color: #245a42;
    cursor: not-allowed;
}
.btn.upload{
    position: relative;
    background-color: #4ca57c;
}
.btn.upload span{
    color: #bdffe0;
}
.btn.upload:hover{
    background-color: #3b7f60;
}


.btn.upload input{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: yellow;
    cursor: pointer;
    opacity: 0;
}


input:is(:-webkit-autofill, :autofill),
textarea:is(:-webkit-autofill, :autofill) {
    -webkit-box-shadow: 0 0 0 30px #9fd6bc inset;
    -webkit-text-fill-color: #468b6b !important;
}
input:-moz-autofill,
textarea:-moz-autofill {
    box-shadow: 0 0 0 30px #9fd6bc inset;
    color: #468b6b !important;
}


.dark-mode input:is(:-webkit-autofill, :autofill),
.dark-mode textarea:is(:-webkit-autofill, :autofill) {
    -webkit-box-shadow: 0 0 0 30px #50aa81 inset;
    -webkit-text-fill-color: #14382a !important;
    border-color: unset;
}
.dark-mode input:-moz-autofill,
.dark-mode textarea:-moz-autofill {
    box-shadow: 0 0 0 30px #50aa81 inset;
    color: #14382a !important;
    border-color: unset;
}










.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}


.toast-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.toast {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    position: relative;
    animation: slideIn 0.5s ease-in-out forwards;
    opacity: 1;
    /* display: flex; */
    display: -webkit-inline-box;
}


.toast.fade-out {
    animation: slideOut 0.5s ease-in-out forwards;
}


.toast-success {
    background-color: #5cb85c; /* Verde */
}


.toast-warning {
    width: 60%;
    background-color: #f0ad4e; /* Amarelo */
}
.toast-warning p{
    width: 94%;
}


.toast-failed {
    background-color: #d9534f; /* Vermelho */
}


.icon {
    margin-right: 10px;
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
}


.icon-success {
    -webkit-mask-image: url(../images/success.png);
    mask-image: url(../images/success.png);
}


.icon-warning {
    -webkit-mask-image:  url(../images/warning.png);
    mask-image: url(../images/warning.png);
}


.icon-failed {
    -webkit-mask-image: url(../images/remove.png);
    mask-image: url(../images/remove.png);
}


@keyframes slideIn {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}


@keyframes slideOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}










































.container-timeline{
    max-width: 1200px;
    margin: 20px auto;
    padding:30px;
    color: #0e7157;
}
.container-timeline .timeline{
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    grid-column-gap: 40px;
}
.timeline .date{
    grid-area: theDate;
}
.timeline .line{
    position: relative;
    background-color: #54b689;
    grid-area: theLine;
}
.line span{
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border: 2px solid #54b689;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s;
}
.timeline .content{
    padding: 20px;
    background-color: #54b68961;
    border-radius: 10px;
    grid-area: theContent;
}
.content h2{
    padding-bottom: 10px;
    color: #54b689;
}
.content .info{
    margin-bottom: 10px;
}
.content .local{
    font-style: italic;
    font-weight: 300;
    margin-left: 8px;
    border-left: 1px solid #0e7157;
    padding-left: 10px;
}
.content p{
    line-height: 1.5;
}
.timeline:nth-child(odd){
    grid-template-areas: 'theDate theLine theContent';
}
.timeline:nth-child(even){
    grid-template-areas: 'theContent theLine theDate';
}
.timeline .content, .timeline .date{
    margin-bottom: 35px;
}
.timeline:nth-child(odd) .date{
    text-align: right;
}
.date span{
    display: inline-block;
    padding: 10px 16px;
    font-weight: 600;
    border: 2px solid #54b689;
    border-radius: 25px;
    position: relative;
    top: -7px;
}
.line .last-point{
    top: initial;
    bottom: 0;
}
.timeline .last{
    margin-bottom: 0;
}
.timeline:hover .line span:not(.last-point){
    background-color: #54b689;
    box-shadow: 0 0 10px 3px #54b689;
}
@media (max-width: 768px) {
    .timeline:nth-child(odd),
    .timeline:nth-child(even){
        grid-template-columns: 2px 1fr;
        grid-template-areas: 'theLine theDate' 'theLine theContent';
    }
    .timeline:nth-child(odd) .date{
        text-align: left;
    }
    .timeline .date{
        margin-bottom: 5px;
    }
    .timeline .content{
        margin-bottom: 25px;
    }
    .timeline .last{
        margin-bottom: 5px;
    }
}
@media(max-width: 520px){
    .timeline .line{
        display: none;
    }
    .timeline:nth-child(odd),
    .timeline:nth-child(even){
        grid-template-columns: 1fr;
        grid-column-gap: 0;
    }
}










.content-heading{
    /* padding: 60px 60px 0; */
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /* justify-content: space-between; */
}


.content-title{
    margin: 0 auto;
    font-size: 30px;
    text-align: center;
    color: #333;
}
.content-description{
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}
.content-description p {
    margin: 10px auto;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: #333;
}
.content-heading .content-description a{
    color: #54b689;
    transition: .3s;
}
.content-heading .content-description a:hover{
    color: #398562;
}






.experience-description{
    padding: 30px;
   
    line-height: 1.5;
}


.contact-social{
    margin: 0 auto;
}


.contact-social .btn-social{
    display: inline-flex;
    width: 50px;
}


.btn-social a{
    background-color: #54b689;
    display: block;
    margin: 0 auto;
    width: 32px;
    height: 32px;
    padding-top: 6px;
    border-radius: 50%;
    text-decoration: none;
    overflow: hidden;
    transition: background-color 0.5s ease;
}
.btn-social a:has(.icon-linkedin:hover),
.btn-social a:has(.icon-github:hover),
.btn-social a:has(.icon-mail:hover){
    background-color: #f0fff8;
    border: 1px solid #54b689;
}


.icon-linkedin{
    margin: 0 auto;
    width: 18px;
    height: 18px;
    background-color: #f0fff8;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
    -webkit-mask-image: url(../images/linkedin.png);
    mask-image: url(../images/linkedin.png);
}
.icon-github{
    margin: 0 auto;
    width: 18px;
    height: 18px;
    background-color: #f0fff8;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
    -webkit-mask-image: url(../images/github.png);
    mask-image: url(../images/github.png);
}
.icon-mail{
    margin: 0 auto;
    width: 18px;
    height: 18px;
    background-color: #f0fff8;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
    -webkit-mask-image: url(../images/salesforce.png);
    mask-image: url(../images/salesforce.png);
}


.icon-linkedin:hover,
.icon-github:hover,
.icon-mail:hover,
.icon-linkedin:hover,
.icon-linkedin:hover{
    background-color: #54b689;
}




.content a{
    color:#297469;
    transition: .5s;
}
.content a:hover{
    color:#073d2f;
}














.vtl {
    margin: 0 auto;
    padding-left: 50px; /* "reserve space" for vertical line */
    max-width: 800px; /* optional */
    padding-top: 20px;
}
.vtl, .event {
    position: relative;
    padding-top: 45px;
}
.vtl::before, .event::before, .event::after { position: absolute; }


/* (B) VERTICAL LINE */
.vtl::before {
    content: "";
    width: 2px;
    height: 84%;
    background: #54b689;
    top: 155px;
    bottom: 0;
    left: 17px;
}


.vtl::after {
    /* content: "Continua..."; */
    width: fit-content;
    height: 20px;
    padding: 0 10px;
    border-radius: 5px;
    border: 2px solid #54b689;
    background: #87d1b8;
    color: #fff;
    font-size: 14px;
    transition: .5s;
    top: -1.8%;
    left: -4%;
    position: absolute;
}


/* (C) EVENTS */
.event {
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: #54b68961;
}
.event::after {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #54b689;
    background: #fff;transition: .5s;
    top: 20%;
    left: -44.4px;
}
.event:hover::after {
    background: #54b689;
    box-shadow: 0 0 10px 3px #54b689;
}


.event .date{
    font-size: 12px;
    padding-bottom: 10px;
    color: #0e7159;
}
/* p.date { font-size: 1.1em; font-weight: 700; }
p.txt { font-size: 0.9em; } */


/* (D) CIRCLE ON VERTICAL LINE */




/* (E) EVENT "SPEECH BUBBLE CALLOUT" */
.event::before {
/* (E1) DRAW TRIANGLE */
    content: "";
    border: 10px solid transparent;
    border-right-color: #b5e3ce;
    border-left: 0;


    /* (E2) POSITION TO THE LEFT */
    top: 20%; left: -10px;
}






























.content-skills{
    background: #93dbbb;
    padding: 5px 10px;
    font-size: 12px;
    box-shadow: inset 0 2px 0 #0e715885;
    border-radius: 8px;
}
/* .lang-tech .lang-html{
    color: #9f461d;
    background-color: #ec692b;
    border: 1px solid #9f461d;
    border-radius: 5px;
    padding: 0px 10px;
}
.lang-tech .lang-css{
    color: #2935dd;
    background-color: #29a8dd;
    border: 1px solid #2935dd;
    border-radius: 5px;
    padding: 0px 10px;
}
.lang-tech .lang-js{
    color: #ff7f2a;
    background-color: #fcc54e;
    border: 1px solid #fc944e;
    border-radius: 5px;
    padding: 0px 10px;
}
.lang-tech .lang-c{
    color: #2935dd;
    background-color: #29a8dd;
    border: 1px solid #2935dd;
    border-radius: 5px;
    padding: 0px 10px;
} */


.content-skills > span{
    border: 1px solid #4ea487;
    background: #71b59e;
    border-radius: 3px;
    display: inline-block;
    padding: 2px 10px;
    color: rgba(255, 255, 255, 0.7);
    margin: 3px 2px;
    text-align: center;
}


.proj-title{
    position: relative;
    display: flex;
    width: fit-content;
    padding-bottom: 10px;
}
#sdak .proj-link{
    cursor: default;
}
#sdak .proj-link:hover{
    text-decoration: none;
}
.proj-title .proj-link{
    text-decoration: none;
    color: #54b689;
    font-weight: bold;
    font-size: 20px;
    padding-right: 30px;
    transition: .5s;
}
.proj-title .proj-link:hover{
    text-decoration: underline;
    color: #1a9e7b;
}










.proj-heading{
    margin: 0px auto 10px;
    /* opacity: 0;
    visibility: hidden; */
    background-color: #b5e3ce;
    border: 2px solid #43926e;
    border-radius: 10px;
    /* position: absolute;
    z-index: 1;
    left: 95%;
    top: -180%; */
    width: 80%;
    transition: .5s;
}


/* .proj-title:hover .proj-heading{
    opacity: 1;
    visibility: visible;
} */
.github-container .social-github{
    background-color: white;
}


/* .proj-heading:before {
    content: "";
    border: 10px solid transparent;
    border-right-color: #43926e;
    border-left: 0;
    top: 31%;
    left: -11px;
    position: absolute;
} */
.heading-img {
    background-color: #0c0c0c;
    overflow: hidden;
    height: 230px;
    border-radius: 8px;
    border: 1px solid #43926e;
    transition: transform 0.3s ease;
}
.heading-img img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


.heading-img:hover img{
    animation: scrollImage 10s linear infinite;
}
.heading-img:hover .img-80 {
    animation: scrollImage 80s linear infinite;
}


@keyframes scrollImage {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-100% + 200px)); /* Ajusta o deslocamento para cima para corresponder à altura da imagem e do contêiner */
    }
}


.github-container{
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #00523c;
    background-color: #1e674d;
    position: absolute;
    right: 20px;
    top: 40px;
}
.github-container .social-github{
    position: inherit;
    top: 3px;
    left: 5px;
}


.proj-description{
    padding-top: 12px;
    color: #0e7159;
}
.proj-description a{
    color: #16765e;
    transition: .5s;
}
.proj-description a:hover{
    color: #4ea487;
}




























/* RESUME */




.curriculum-description {
    padding: 20px;
}






/* .menu-content{
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    width: 250px;
    height: 35px;
    border: 1px solid #797979;
}
.menuSelect{
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
    cursor: pointer;
}
.menuSelect:hover{
    background-color: #ccc;
} */


.menu-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: clamp(300px, 50%, 700px);
    background-color: #54b689;
    margin: 30px auto;
    border-radius: 5px;
}


.menuSelect {
    padding: 10px 20px; /* Espaçamento interno dos itens do menu */
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    transition:  background-color .5s;
}
.menuSelect.active{
    background-color: #3c8362;
    border: 1px solid #0e7157;
}
.menuSelect:hover{
    background-color: #0e7157;
}


.pdf-container {
    max-width: 100%;
    margin: 70px 0;
    text-align: center;
}


.pdf-container object,
.pdf-container embed {
    width: 100%;
    height: 990px;
    border-radius: 10px;
    border: 3px solid #54b689;
    /* box-shadow: 0px 0px 30px #54b689; */
}


.hide-height {
    height: 0 !important;
    border: none !important;
}








.support-pdf {
    border: 2px solid #54b689;
    padding: 20px;
    border-radius: 8px;
    max-width: 490px;
    margin: 20% auto;
    text-align: center;
}


.support-pdf p {
    font-size: 16px;
    margin-bottom: 30px;
}


.support-pdf a {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #3b7f60;
    border: 1px solid #0e7157;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


.support-pdf a:hover {
    background-color: #0e7157;
}


/* .icon-pdf {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('https://img.icons8.com/?size=512&id=47812&format=png'); /* Substitua 'pdf-icon.png' pelo caminho para o ícone PDF * /
    background-size: cover;
    margin-right: 10px; /* Ajuste o espaçamento entre o ícone e o texto conforme necessário * /
} */


.icon-pdf{
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 20px 20px;
    mask-size: 20px 20px;
    margin-right: 10px;
    -webkit-mask-image: url(https://static-00.iconduck.com/assets.00/file-pdf-icon-1814x2048-gasd2xsv.png);
    mask-image: url(https://static-00.iconduck.com/assets.00/file-pdf-icon-1814x2048-gasd2xsv.png);
}






























.section-overflow{
    background-color: #ffffff;
}










.menu-button{
    display: none;
    padding: 5px;
    position: absolute;
    border-radius: 3px;
    margin: 15px;
}


/* Estilos para o nav-toggle */
.nav-toggle {
    display: none;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
}


/* Linhas do ícone de menu */
.nav-toggle .line {
    width: 100%;
    height: 2px;
    background-color: #ffffff; /* Cor das linhas */
    position: absolute;
    left: 0;
    transition: transform 0.3s ease; /* Animação de transição */
}


/* Ajuste de posição das linhas */
.nav-toggle .line:nth-child(1) {
    top: 0;
}


.nav-toggle .line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}


.nav-toggle .line:nth-child(3) {
    bottom: 0;
}


/* Estilo para o menu de navegação quando o toggle está ativado */
.nav-toggle.active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}


.nav-toggle.active .line:nth-child(2) {
    opacity: 0;
}


.nav-toggle.active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}




@media (max-width: 1400px) {
    .container-about {
        padding: 20px 60px;
        gap: 15px;
    }
    .profile-image {top: 20px;}
    .des-about{height: 100px;}
}


@media (max-width: 1300px) {
    .des-about{height: 135px; }
}


@media (max-width: 1000px) {
    .menu-button, .nav-toggle {
        display: block;
    }
    header{
        position: relative;
        width: 100%;
        height: inherit;
    }
    #info-profile {
        display: none; /* Inicialmente oculto */
        animation: collapseAnimation 0.5s ease forwards;
    }
    .main-wrapper {
        margin-left: 0;
    }
    .container-about{
        padding: 0px 30px;
    }


    .colum-profile{
        position: relative;
        /* justify-content: initial; */
    }
    .des-about .bioText{
        height: 114px;
    }
   
    .profile-image {top: 45px;}


    .overflow{padding: 30px;}
    .row{
        margin: 30px 0px 0px;
    }
   
    /* .des-about{height: 115px;} */
   
   
    .content-heading{
        padding: 30px 35px;
    }
    .project{
        padding: 50px 60px 10px;
    }
    .project-group {
        width: 47%;
    }
}
@media (max-width: 930px) {
    .project-description.line p {
        -webkit-line-clamp: 6;
        line-clamp: 6;
    }
}
@media (max-width: 768px) {
    /* .container-about{
        padding: 0px 20px;
    } */
    .content-heading{
        padding: 20px;
    }
    .content-title{
        font-size: 25px;
    }
    .content-description .pt{
        width: 100% !important;
    }
    .content-description .pp{
        width: 97% !important;
    }
    .des-about .bioText{
        height: 152px;
    }
    .project {
        padding: 30px 50px 10px;
    }
    .project-group {
        width: 48.5%;
    }
}
@media (max-width: 720px) {
    .profile-image{
        display: none;
    }
    .des-about{
        padding-right: inherit;
    }
    .project-heading{
        flex-direction: column;
        align-items: center;
    }
    .project-image{
        width: 100%;
        height: 100px;
    }
    .project-heading .project-image:nth-child(1) img{
        height: 100% !important;
        margin-top: 0px !important;
    }
    .pdf-container object,
    .pdf-container embed {
        height: 800px;
    }
}






@media (max-width: 520px) {
    .section-header{
        height: 400px;
    }
    .resume-about{
        display: flex;
        flex-direction: column;
        width: max-content;
        position: relative;
        top: 20px;
    }
    .btn-resume{
        margin-top: 10px;
    }
    .des-about {
        height: 165px;
    }
    .container-about {
        padding: 0px 15px 15px;
    }
    .overflow{
        padding: 20px 15px;
    }
    .project {
        padding: 20px 30px 10px;
    }
    .project-group:nth-child(1)::before {
        top: -7px;
        left: -7px;
        width: 120px;
        height: 120px;
    }
    .project-group:last-child::after{
        bottom: -7px;
        right: -7px;
        width: 120px;
        height: 120px;
    }
    .project-info {
        padding: 10px;
    }
    .pdf-container object,
    .pdf-container embed {
        height: 600px;
    }
    .proj-heading{
        width: 90%;
    }
    .heading-img{
        height: 175px;
    }
    .input-warp label{
        left: 15px;
        font-size: 12px;
    }
    .contact-input{
        padding: 1.5rem 10px calc(0.75rem - 2px) 15px;
    }
    .vtl::before {
        height: 72%;
    }
}
@media (max-width: 450px) {
    .vtl{
        padding-left: 0px;
    }
    .vtl::before, .vtl .event::before, .vtl .event::after{
        display: none;
    }
}


@media (max-width: 400px) {
    .section-header{
        height: 430px;
    }
    .container-about {
        padding: 0 10px 10px;
    }
    .name-about {
        font-size: clamp(1rem, 1vw + 1rem, 1.5rem);
    }
    .overflow{
        padding: 20px 10px;
    }
    .row {
        margin: 20px 0px 0px;
    }
    .project {
        padding: 15px 25px 10px;
    }
    .project-group:nth-child(1)::before {
        top: -5px;
        left: -5px;
        width: 100px;
        height: 100px;
    }
    .project-group:last-child::after{
        bottom: -5px;
        right: -5px;
        width: 100px;
        height: 100px;
    }
    .project-description.lin p {
        -webkit-line-clamp: 8;
        line-clamp: 8;
    }
    .content-heading, .container-timeline {
        padding: 10px;
    }
    .proj-heading{
        width: 100%;
    }
    .heading-img{
        height: 175px;
    }
    .contact-heading h3{
        font-size: clamp(1.6rem, 8vw, 2.5rem);
    }
    .input-warp label{
        left: 10px;
        font-size: 12px;
    }
    .contact-input{
        padding: 1.5rem 10px calc(0.75rem - 2px) 10px;
    }
    .btn{
        font-size: 0.8rem;
    }
}








.dark-mode {
    background-color: #151e29; /* Cor de fundo escura */
    color: #ffffff; /* Cor do texto branco */
}


.dark-mode header{
    background: #1e2a3a;
}
.dark-mode .social-list ul li {
    background-color: #54b689;
}
.dark-mode .social-list ul li:hover{
    background-color: #499974;
}
.dark-mode .social-linkedin,
.dark-mode .social-github,
.dark-mode .social-email,
.dark-mode .social-salesforce{
    background-color: #f3f3f4;
}


.dark-mode .main-header{
    background: #111821;
}
.dark-mode .section-overflow{
    background-color: #151e29;
}
.dark-mode .btn-resume{
    background-color: #2f435c;
}
.dark-mode .btn-resume:hover{
    background-color: #384f6c;
}


.dark-mode .dark-mode-toggle .toggle-btn{
    border-color: #54b689;
}
.dark-mode .dark-mode-toggle .toggle-btn::after{
    background: #54b689;
}
.dark-mode .section-title{
    color: #f3f3f4;
}
.dark-mode .section-header{
    border-bottom: 1px solid #28394f;
}
.dark-mode .nav-item .nav-link:hover .nav-about,
.dark-mode .nav-item .nav-link:hover .nav-portfolio,
.dark-mode .nav-item .nav-link:hover .nav-experience,
.dark-mode .nav-item .nav-link:hover .nav-resume,
.dark-mode .nav-item .nav-link:hover .nav-contact,
.dark-mode .nav-link.active .nav-about,
.dark-mode .nav-link.active .nav-portfolio,
.dark-mode .nav-link.active .nav-experience,
.dark-mode .nav-link.active .nav-resume,
.dark-mode .nav-link.active .nav-contact {
    background-color: #54b689;
}
.dark-mode .nav-link:hover {
    color: #54b689;
}
.dark-mode .nav-link.active{
    color: #54b689;
}
.dark-mode .btnclick{
    background-color: #54b689;
}
.dark-mode .btnclick:hover{
    background-color: #0e7157;;
}


.dark-mode .project-heading{
    background-color: #17212d;
}
.dark-mode .btn-project-title{
    color: #f3f3f4;
}




/*experience.html*/
.dark-mode .content-title{
    color: #f3f3f4;
}
.dark-mode .content-description p{
    color: #b8babd;
}
.dark-mode .container-timeline{
    color: #054434;
}
.dark-mode .timeline .content{
    background-color: #54b688ec;
}
.dark-mode .timeline .date span{
    color: #4fab81;
}
.dark-mode .content h2 {
    /* color: #07291f; */
    color: #0d4f3b;
}
.dark-mode .line span {
    background-color: #151e29;
}




/*portfolio.html*/
.dark-mode .vtl .event,
.dark-mode .proj-heading {
    background-color: #54b688ec;
}
.dark-mode .vtl .event::before {
    border-right-color: #54b688ec;
}
.dark-mode .vtl .event::after {
    background: #151e29;
}
.dark-mode .vtl .event:hover::after {
    background: #54b689;
}


.dark-mode .event .date,
.dark-mode .proj-title .proj-link,
.dark-mode .event .proj-description{
    color: #0d4f3b;
}


.dark-mode .content-skills{
    box-shadow: inset 0 2px 0 #0e7158dc;
    background: #93dbbb;
}
.dark-mode .content-skills > span{
    color: #0d4f3b;
}
.dark-mode .proj-description a:hover{
    color: #0d4f3b;
}




/*contact.html*/
.dark-mode .contact-heading h3{
    color: #f3f3f4;
}
.dark-mode .content-heading .content-description a:hover{
    color: #8acdae;
}
.dark-mode .contact-input{
    background-color: #54b688ec;
    color: #08382a;
    box-shadow: 0 0 10px #085c35;
}


.dark-mode .input-warp.focus .contact-input{
    background-color: #54b688;
    border: 1px solid #8ae4ba;
    box-shadow: 0 0 15px #54b689;
}


.dark-mode .input-warp.focus label{
    color: #00523c;
}
.dark-mode .timeline .content::selection,
.dark-mode .vtl .event::selection {
    color: #333333;
    background-color: #bee3d294;
}
