* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    user-select: none;
    scroll-behavior: smooth;
}

::-webkit-scrollbar-thumb {
    background-color: #056E78; /* Cor do botão */
}

::-webkit-scrollbar {
    background-color: #ffffff75; /* Cor de fundo */
}

.botao-mobile {
    display: none;
    border: none;
    background: none;
    border-top: 3px solid #ffffff;
    cursor: pointer;
    margin-right: 5rem;
}

.botao-mobile::before, .botao-mobile::after{
    content: " ";
    display: block;
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    margin-top: 5px;
    position: relative;
    transition: 0.3s;
}

.active {
    border-top-color: transparent;
}

.active::before {
    transform: rotate(135deg);
}

.active::after {
    transform: rotate(-135deg);
    top: -7px;
}



main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}



.orcamento {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    margin-right: 3rem;

    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 700;
    font-size: 1.2rem;
    background-color: #ffffff;
    color: rgb(54, 54, 54);
    border-radius: 10px;
}

.orcamento:hover {
    background-color: rgb(54, 54, 54);
    color: #ffffff;
}

.caixa-menu {
    display: flex;
    justify-content: space-between;
    background-color: #f5a284;
    font-size: 1.1rem;
    height: 10vh;
    width: 100%;
    align-items: center;
}

ul{
    list-style: none;
}

.menu {
    display: flex;
    width: 80%;
    font-weight: 500;
    margin-left: 0.8rem;
    align-items: center;
}

.itenmenu {
    display: flex;
    height: 10vh;
    margin-right: 0.8rem;
}

.itenmenu a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    position: relative;
    transition: 0.2s;
    padding-inline: 0.4rem;
}

.itenmenu a::after {
    content: "";
    width: 0%;
    height: 3px;
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    left: -25px;
}

.itenmenu a:hover::after{
    width: 100%;
    animation: menu 0.3s ease-in-out forwards;
}

@keyframes menu {
    0% {
        left: -15px;
    }
    50% {
        left: 15px;
    }
    100% {
        left: 0px;
    }
}


.imgbackgroud {
    display: flex;
    background-image: url(../imagens/apresentacao.png);
    background-position: 0% 70%; 
    background-size: cover;
    height: 90vh;
    width: 100%;
}

.imagem-inicial img {
    width: 100%;
}

.sliders input {
    display: none;
}

.caixa-texto-1, .caixa-texto-2{
    opacity: 0;
    left: 5%;
    top: 40%;
    position: absolute;
    z-index: 1;
    transition: 0.5s ease-in;
    color: white;
}

.caixa-texto-1 .texto-1, .caixa-texto-2 .texto-1 {
    font-size: 1.5rem;
}

.caixa-texto-1 .texto-2, .caixa-texto-2 .texto-2 {
    font-size: 3.5rem;
}

#radio1:checked ~ .caixa-texto-1 {
    opacity: 100%;
    top: 20%;
}

#radio4:checked ~ .caixa-texto-1 {
    opacity: 100%;
    top: 20%;
}

#radio2:checked ~ .caixa-texto-2 {
    opacity: 100%;
    top: 20%;
}

#radio3:checked ~ .caixa-texto-2 {
    opacity: 100%;
    top: 20%;
}




#radio1:checked ~ .slider {
    transition: none;
    transform: translateY(-25%);
}

#radio2:checked ~ .slider {
    transform: translateY(-50%);
}

#radio3:checked ~ .slider {
    transform: translateY(-50%);
}

#radio4:checked ~ .slider {
    transform: translateY(-75%);
}








.imagens-servicos {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 75vh;
}

.box-flipper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 25%;
    position: relative;
    height: 100%;
    transform: translateY(-4rem);
}


.flipper {
    position: relative;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.box-flipper:hover .flipper {
    transform: rotateY(180deg);
}

.front, .back {
    width: 100%;
    position: absolute;
    backface-visibility: hidden;
}

.front {
    z-index: 2;
    transform: rotateY(0deg);
}

.back {
    transform: rotateY(180deg);
}

.flipper img {
    width: 100%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}






.biografia {
    margin-top: 6rem;
    display: flex;
    padding: 2rem;
    width: 95%;
}

.foto-aline {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foto-aline h1 {
    display: none;
}

.foto-aline img {
    width: 50%;
    border-radius: 50%;
}

.sobre-mim {
    display: flex;
    flex-direction: column;
    width: 50%;
    color: #056E78;
    padding: 1rem;
}

.sobre-mim ul {
    display: flex;
    border-bottom: solid 3px #d3886b15;
    justify-content: space-between;
    margin-top: 1.3rem;
}

.sobre-mim li a {
    display: flex;
    text-decoration: none;
    color: #E29579;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    text-align: center;
}

.sobre-mim ul li input {
    display: none;
}

.sobre-mim ul li label {
    color: #E29579;
    font-weight: 500;
    transition: color 0.2s ease-in;
}

.sobre-mim ul li input:hover + label{
    color: #04545c;
    cursor: pointer;
}

.sobre-mim ul li input:checked + label {
    color: #04545c;
    border-bottom: 2px solid #04545c;
}


#texto-bio {
    color: #272323;
    margin-block: 1rem;
    line-height: 1.5;
    font-size: 1.1rem;
}

.box-btn-ctt {
    display: flex;
    height: auto;
    width: 100%;
    height: max-content;
    flex-grow: 1;
    align-items: end;
}

.botao-contato {
    text-decoration: none;
    background-color: #E29579;
    border-radius: 10px;
    font-weight: 700;
    color: white;
    transition: 0.3s ease-in-out;
    padding: 0.8rem;
}

.botao-contato:hover {
    background-color: #272323;
    color: white;
}








.info-bio {
    width: 100%;
    background-image: linear-gradient(to right, #04545c, #045962, #045f68, #04646e, #046a74, #046e78, #03717c, #037580, #027883, #027b87, #017f8a, #00828e);
    height: 24vh;
    margin-block: 4rem;
    display: flex;
    align-items: center;
}

.item-bio {
    border-right: #ffffffe0 1px solid;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.info-bio div img {
    width: 5rem;
}

.tit-bio {
    font-size: 2rem;
    font-weight: 700;
}

.info-bio div:last-child {
    border: none;
}







.box-servicos {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #e2957993;
    align-items: center;
    padding-bottom: 3rem;
}

h2 {
    margin: 2rem 2rem 2rem 2rem;
    font-size: 2rem;
    color: white;
    text-align: center;
}

.outros-servicos {
    display: flex;
    flex-wrap: wrap;
    gap: 4.5rem;
    justify-content: center;
}

.outros-servicos div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20rem;
    transition: border 0.3s ease-in-out;
    border-radius: 10px;
    padding: 2rem 1rem;
    background-color: white;
}

.outros-servicos .titulo {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    color: #056E78;
    margin-block: 1rem;
}

.outros-servicos .conteudo {
    text-align: center;
    text-overflow: ellipsis;
}

.outros-servicos img {
    width: 3rem;
}

h3 {
    margin-top: 6rem;
    font-size: 2rem;
    color: #056E78;
}






.caixa-servicos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2rem 8rem 5rem 8rem;
}

.servicos {
    align-items: center;
    text-align: center;
}

.servicos img {
    border-radius: 100%;
    width: 75%;
    border: 0.8rem solid #FFFFFF;
    transform: translateY(30%);
}

.servicos-informacoes {
    background-color: #e2957986;
    padding-top: 5rem;
    height: 10rem;
    width: 14rem;
    border-radius: 4px;
}

.map {
    width: 100%;
    height: 70vh;
}

.map iframe {
    width: 100%;
    height: 100%;
}

.info-contato {
    background-color: #04545c;
    height: 20%;
}

.caixa-contato {
    background-color: #056E78;
    display: flex;
    width: 100%;
}

.tit-cott {
    color: white;
}

.sub-caixas-contato {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem 2rem 2rem;
    width: 33%;
}

.sub-caixas-contato div {
    margin-top: 1.3rem;
    display: flex;
    align-items: center;
}

.sub-caixas-contato a {
    text-decoration: none;
    color: white;
}

.sub-caixas-contato a:hover {
    color: #E29579;
}

.sub-caixas-contato .conteudo {
    color: rgba(255, 255, 255, 0.678);
    line-height: 1.3;
    margin-top: 1.3rem;
}

.sub-caixas-contato ul {
    color: rgba(255, 255, 255, 0.678);
    margin-top: 1.3rem;
}

.sub-caixas-contato li {
    margin-bottom: 1rem;
}

.sub-caixas-contato img {
    width: 1.2rem;
    margin-right: 0.3rem;
}

.info-contato {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-block: 0.5rem;
    color: cadetblue;
}

.botao-whatsapp {
    display: flex;
    position: fixed;
    bottom: 3rem;
    left: 3rem;
    z-index: 100;
    background-color: #25d366;
    padding: 0rem 1rem 0rem 0.5rem;
    border-radius: 1rem;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in;
    text-decoration: none;
    color: white;
    font-weight: 500;
    animation: animate 1s infinite alternate ease-in-out;
}

.botao-whatsapp:hover {
    background-color: #20b857;
}

@keyframes animate {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.botao-flutuante {
    display: flex;
    position: fixed;
    bottom: -4rem;
    right: 2rem;
    z-index: 100;
    background-color: #E29579;
    height: 3rem;
    width: 3rem;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    transition: 0.3s ease-in;
}

.botao-flutuante a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.botao-flutuante img {
    width: 70%;
}

.mostrar {
    bottom: 3rem;
}

.botao-flutuante:hover {
    background-color: #04545c;
}














@media (max-width: 999px) {

    .imgbackgroud {
        background-image: url(/imagens/apresentacao-vertical.png);
        height: 80vh;
    }

    .botao-mobile {
        display: block;
        margin-left: 2rem;
    }
    
    .menu {
        position: absolute;
        flex-direction: column;
        width: 50vw;
        background-color: #ffffff;
        z-index: 1;
        transition: transform 0.3s ease-in;
        margin: 0;
        right: 100%;
        top: 10vh;
    }
    
    .menu.active {
        transform: translatex(100%);
    }

    .itenmenu {
        display: flex;
        width: 100%;
        margin: 0;
        height: 8vh;
    }

    .itenmenu a {
        width: 100%;
        margin: 0;
        padding: 0;
        justify-content: center;
        color: #056E78;
    }

    .itenmenu a::after {
        background-color: #f5a284;
    }

    .orcamento {
        margin-right: 1rem;
        padding: 0.3rem;
        font-size: 1.1rem;
    }





    .biografia {
        width: 100%;
        flex-direction: column;
        padding-inline: 0;
    }

    .foto-aline {
        width: 100%;
        gap: 0.5rem;
        align-items: end;
        flex-direction: column;
        align-items: center;
    }

    .foto-aline img {
        width: 50%;
        border-radius: 50%;
        
    }

    .sobre-mim h1 {
        display: none;
    }

    .foto-aline h1 {
        display: block;
        font-size: 1.5rem;
        color: #056E78;
    }
    
    .sobre-mim {
        width: 100%;
        padding-inline: 1rem;
        
    }

    .sobre-mim ul {
        font-size: 0.8rem;
    }

    .botao-contato {
        margin-top: 1rem;
    }

    .box-btn-ctt {
        justify-content: center;
    }






    .imagens-servicos {
        height: 30vh;
    }

    .box-flipper {
        width: 30%;
    }









    .info-bio {
        height: 17vh;
    }

    .tit-bio {
        font-size: 1.1rem;
        font-weight: 700;
    }

    .desc-bio {
        font-size: 0.7rem;
    }

    .item-bio {
        flex-direction: column-reverse;
        align-items: start;
        padding: 0.5rem;
        height: 70%;
    }

    .info-bio div img {
        display: none;
    }

    h2 {
        margin-left: 1rem;
        font-size: 1.3rem;
    }

    .outros-servicos {
        gap: 1.5rem;
    }
    
    .outros-servicos div {
        height: 12rem;
        width: 10rem;
        padding: 0.5rem;
    }

    .outros-servicos img {
        width: 1.7rem;
    }

    .outros-servicos .titulo {
        font-size: 0.7rem;
        margin-block: 0.5rem;
    }

    .outros-servicos .conteudo {
        font-size: 0.6rem;
    }

    h3 {
        font-size: 1.3rem;
        margin: 3rem 0rem 0rem 1rem;
    }

    footer {
        font-size: 0.9rem;
    }

    .caixa-servicos {
        justify-content: center;
        margin: 0 0 4rem 0;
        column-gap: 1rem;
    }

    .caixa-servicos .servicos {
        width: 9rem;
    }

    .servicos-informacoes {
        width: auto;
        height: 8rem;
        padding-top: 3rem;
    }

    .servicos-informacoes p {
        font-size: 0.8rem;
    }

    .caixa-contato {
        display: block;
    }
    
    .sub-caixas-contato {
        padding: 1.3rem;
        width: auto;
    }
    
    .info-contato {
        padding: 1.1rem;
    }

    .mostrar {
        bottom: 3rem;
    }

    .botao-flutuante {
        height: 2.5rem;
        width: 2.5rem;
    }

}

