/* ORDEM DE SERVIÇO */
body {
    background: linear-gradient(135deg, #0f172a, #111827);

    color: white;

    font-family: Arial, sans-serif;
}
.ordem-servico{
    padding: 140px 8%;

    min-height: 100vh;

}

.ordem-container{
    max-width: 900px;

    margin: auto;
}

.voltar{
    display: inline-block;

    margin-bottom: 40px;

    color: #06b6d4;

    text-decoration: none;

    font-weight: 500;

    transition: 0.3s;
}

.voltar:hover{
    color: #7c3aed;
}

.ordem-servico span{
    color: #06b6d4;

    letter-spacing: 2px;

    font-size: 14px;

    font-weight: 600;
}

.ordem-servico h1{
    font-size: 64px;

    margin: 20px 0 40px;

    line-height: 1.1;

    background: linear-gradient(90deg,#7c3aed,#06b6d4);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.ordem-servico p{
    color: #a1a1aa;

    font-size: 18px;

    line-height: 2;

    margin-bottom: 30px;
}

/* CTA */

.cta-box{
    margin-top: 70px;

    padding: 40px;

    border-radius: 24px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    position: relative;

    overflow: hidden;
}

/* glow */

.cta-box::before{
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    background: rgba(6,182,212,0.15);

    border-radius: 50%;

    top: -100px;
    right: -100px;

    filter: blur(60px);
}

.cta-box h3{
    font-size: 32px;

    margin-bottom: 20px;

    position: relative;

    z-index: 2;
}

.cta-box p{
    margin-bottom: 30px;

    position: relative;

    z-index: 2;
}

.cta-box a{
    display: inline-block;

    padding: 16px 28px;

    border-radius: 14px;

    background: linear-gradient(90deg,#7c3aed,#06b6d4);

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;

    position: relative;

    z-index: 2;
}

.cta-box a:hover{
    transform: translateY(-5px);
}

/* RESPONSIVO */

@media(max-width: 900px){

    .ordem-servico h1{
        font-size: 42px;
    }

    .ordem-servico p{
        font-size: 16px;
    }

}