@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch&family=Oswald&family=Quicksand:wght@300..700&family=Roboto+Condensed&family=Space+Mono&display=swap');

body {
    margin: 0;
    background-color: #010110;
}

p,
a,
h1,
h2 {
    color: white;
    font-family: 'Roboto Condensed';
    margin: 0;
    text-decoration: none;
}


/* menu */

@media only screen and (min-width: 768px) {
    header {
        width: 100%;
        height: 4.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        z-index: 999999999999999999999;
        border-bottom: 0.1px solid rgba(182, 177, 177, 0.616);
        backdrop-filter: blur(0.2rem);
        background-color: rgba(0, 0, 0, 0.582);
    }

    .div-logo {
        width: 20%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .div-btns {
        width: 42%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .div-talk {
        width: 20%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .btn-talks {
        width: 8rem;
        height: 2.5rem;
        font-family: 'Oswald';
        font-size: 1.1rem;
        color: white;
        border: none;
        border-radius: 0.3rem;
        transition: all, 0.2s ease;
        cursor: pointer;
        background-color: #442cda;
    }

    .btn-talks:hover {
        background-color: #3f2ac7;
    }

    .btn-menu {
        font-family: 'Oswald';
        font-size: 1.3rem;
        color: rgb(203, 203, 203);
        margin: auto 1rem;
        border: none;
        cursor: pointer;
        border-radius: 2rem;
        transition: all, 0.2s ease;
        background-color: transparent;
    }

    .btn-menu:hover {
        color: white;
        text-shadow: 0 0 0.2rem rgba(255, 255, 255, 0.558);
        align-items: center;
    }

    #logo {
        width: auto;
        height: 8rem;
        margin-top: 2rem;
    }


    /* conteudo */

    .container {
        width: 70%;
        height: auto;
        margin-top: 12rem;
        margin: auto;
    }

    .centralizar {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .apresentacao {
        width: 100%;
        height: 26rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 6rem;
    }

    .zone {
        width: auto;
        height: auto;
        scroll-margin-top: 10rem;
    }

    .space {
        width: 100%;
        height: 10rem;
    }

    .skills {
        width: 100%;
        height: 10rem;
        margin-top: 5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .imgs-skills {
        width: auto;
        height: 5.5rem;
        margin: auto 1rem;
    }


    /* textos */

    .subtt {
        height: auto;
        font-size: 2.2rem;
        font-family: 'Space Mono';
        color: #442cda;
        text-align: left;
        letter-spacing: 0.2rem;
        margin-bottom: 5rem;
        text-align: center;
    }

    .ttwork {
        width: 100%;
        height: auto;
        font-size: 2.1rem;
        font-family: 'Roboto Condensed';
        font-weight: bold;
        color: White;
        text-align: center;
    }

    .ttwork p {
        text-align: center;
    }

    .text-base {
        width: 60%;
        height: auto;
        font-family: 'Roboto Condensed';
        font-size: 1.1rem;
        color: rgb(171, 171, 171);
        margin: auto;
        margin-top: 2rem;

        text-align: center;
    }

    .center {
        width: 100%;
        height: auto;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* Apresentação */

    .apr {
        width: 80%;
        height: 28rem;
        margin: auto;
    }

    .apr-txt {
        font-family: 'Roboto Condensed';
        font-size: 3.5rem;
        color: white;
        font-weight: bold;
        letter-spacing: 0rem;
        line-height: 4rem;
        user-select: none;
        margin-top: 9rem;
        text-align: center;
    }

    .base-tt {
        background-image: linear-gradient(to bottom right, #390f66, #5d1ba3, #3723bb, #442CDA);
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 0 transparent;

    }

    .btn-work {
        width: 9rem;
        height: 3rem;
        margin-top: 1rem;
        border: 0.15rem solid #442cda;
        border-radius: 0.3rem;
        font-family: 'Roboto Condensed';
        font-size: 1.4rem;
        color: white;
        transition: all, 0.2s ease;
        cursor: pointer;
        user-select: none;
        background-color: transparent;

        margin-bottom: 2rem;
    }

    .btn-work:hover {
        color: black;
        background-color: #442cda;
    }


    /* serviços */

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 20px;
    }

    .card {
        background: #242230;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        text-align: left;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        border-bottom: 4px solid #442cda;
        width: 20rem;
        height: auto;
        font-family: 'Roboto Condensed';
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    }

    .card h3 {
        font-size: 1.9rem;
        color: #442cda;
        text-align: center;
        margin-bottom: 10px;
    }

    .card p {
        font-size: 1.4rem;
        color: white;
        line-height: 1.5;
        width: 99%;
        margin: auto;
    }

    .btn-link {
        width: 20rem;
        height: 4rem;
        margin-top: 1rem;
        border: 0.15rem solid #442cda;
        border-radius: 2rem;
        font-family: 'Roboto Condensed';
        font-size: 1.4rem;
        color: white;
        transition: all, 0.2s ease;
        cursor: pointer;
        user-select: none;
        margin-left: 35%;
        margin-top: 5rem;
        background-color: transparent;
    }

    .btn-link:hover {
        color: black;
        background-color: #442cda;
    }

    .square-pont {
        width: 18rem;
        height: 23rem;
        margin: auto;
        border-radius: 0.6rem;
        transition: all, 0.2s ease;
        background-color: #242230;
    }

    .square-pont:hover {
        transform: translateY(-1rem);
    }

    .title-pont {
        width: 100%;
        height: auto;
        font-family: 'Roboto Condensed';
        font-size: 1.4rem;
        color: white;
        text-align: center;
    }

    .text-bases {
        width: 90%;
        height: auto;
        font-family: 'Roboto Condensed';
        font-size: 1.1rem;
        color: rgb(171, 171, 171);
    }

    .text-based {
        width: 50%;
        font-family: 'Roboto Condensed';
        font-size: 1.5rem;
        color: white;
        margin-left: 5rem;
        margin-top: 1rem;
    }

    .text-based p {
        margin-top: 2rem;
        line-height: 1.9rem;
    }

    .img-sqare {
        width: 100%;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .img-square {
        width: auto;
        height: 80%;
    }


    /* trabalhos */

    .square-mold {
        width: 25rem;
        height: 21rem;
        margin: 2rem 1rem 0 0;
        display: flex;
        align-items: end;
        border-radius: 0.6rem;
        transition: all, 0.2s ease;
    }

    .bar {
        width: 100%;
        height: 0;
        overflow-y: hidden;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        font-family: 'Roboto Condensed';
        font-size: 1.2rem;
        color: white;
        text-align: left;
        font-weight: bold;
        border-radius: 0 0 0.6rem 0.6rem;
        background-color: rgba(136, 136, 136, 0.659);
    }

    .square-mold:hover {
        transform: translateY(-1rem);
        box-shadow: 0rem 0rem 0.7em rgba(255, 255, 255, 0.234);
    }

    .square-mold:hover .bar {
        height: 3.5rem;
        backdrop-filter: blur(0.5rem);
    }

    .bar-t {
        margin-left: 2rem;
    }

    #pj-1 {
        background: url('images/clicksperfeito.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #pj-2 {
        background: url('images/GuiaMestre.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #pj-3 {
        background: url('images/upb.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #pj-4 {
        background: url('images/jatoforte.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #pj {
        background: url('images/kebradaboyz.jpeg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #pjtester {
        background: url('images/vbucks.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    footer {
        width: 100%;
        height: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 3rem;
        border-top: 1rem solid #3723bb;
        backdrop-filter: blur(0.5rem);
        color: white;
        font-family: 'Roboto Condensed';
        background-color: #242230;
    }

    .sidebar {
        display: none;
    }

    .back {
        width: 10rem;
        height: 2.5rem;

        cursor: pointer;
        border: none;
        border-radius: 0.5rem;

        color: rgb(163, 160, 160);
        font-family: 'Roboto Condensed';
        font-size: 1.1rem;

        transition: 0.1s all ease;
        margin-top: 5.5rem;

        background-color: transparent;
    }

    .back:hover {
        color: white;
        background-color: rgba(163, 160, 160, 0.527);
    }

    .titulor {
        font-family: 'Roboto Condensed';
        font-weight: 600;
        font-size: 3rem;
        margin: 2rem 0 0 0;
        color: white;
    }

    .suberto {
        font-family: 'Roboto Condensed';
        font-weight: 500;
        font-size: 1.5rem;

        width: 60%;

        margin: 1rem 0 0 0;

        color: rgb(163, 160, 160);
    }

    .center {
        width: 100%;
        height: auto;

        display: flex;
        align-items: center;
        justify-content: center;

        margin: auto;
    }

    .contato {
        width: 50%;
        height: auto;

        margin: 1.5rem;
    }

    .form {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 600px;
        color: #fff;
        font-family: sans-serif;

        margin-top: 0rem;
    }

    input,
    select,
    textarea {
        background: #1c1c1c;
        border: 1px solid #333;
        padding: 14px;
        border-radius: 6px;
        color: #fff;

        resize: none;

        font-family: 'Roboto Condensed';
    }

    .title-lg {
        font-size: 1.75rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #fff;
    }

    .text-label {
        font-size: 1rem;
        font-weight: 500;
        color: #fff;
        margin-bottom: 0.25rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        /* para ícones */
    }

    .text-body {
        font-size: 0.95rem;
        color: #B7B7B7;
        margin-bottom: 1.25rem;
    }

    .box {
        background: #1a1a1a;
        border: 1px solid #272727;
        padding: 1.5rem;
        border-radius: 10px;
        margin-top: 2rem;
    }

    .btn-whatsapp {
        display: block;
        text-align: center;
        background: #25D366;
        color: #fff;
        padding: 12px;
        border-radius: 6px;
        font-weight: 600;
        margin-top: 1rem;
        text-decoration: none;
    }

    .btn-whatsapp:hover {
        background: #1ebe5c;
    }


    .info {
        font-size: 0.85rem;
        opacity: 0.7;
    }

    .headermobile {
        display: none;
    }

    .enviar {
        height: 2.4rem;

        border: none;
        border-radius: 0.5rem;

        color: white;
        font-family: 'Roboto Condensed';
        font-size: 1.1rem;
        font-weight: 600;

        background-color: #3723bb;
    }

    .text-label img {
        width: auto;
        height: 1.3rem;
    }

    .base-planos {
        width: 100%;
        height: 45rem;

        margin-top: 3rem;

        display: flex;
    }

    .planos-individuais {
        width: 24rem;
        height: 39rem;

        margin: auto;
        border: 0.2rem solid transparent;
        border-radius: 0.5rem;

        transition: all 0.2s ease;
        background-color: #242230;
    }

    .planos-individuais:hover {
        border: 0.2rem solid #3723bb;
    }

    #popular {
        border: 0.3rem solid #3723bb;
    }

    .popular {
        width: 6.5rem;
        height: 2.5rem;

        font-size: 1rem;
        text-align: center;
        font-weight: 600;
        margin: auto;
        margin-left: 8.5%;
        margin-top: -1.4rem;

        position: absolute;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 2rem;

        background-color: #3723bb;
    }

    .plano-title {
        margin-top: 2rem;
        margin-left: 1.5rem;

        font-size: 1.9rem;
        font-weight: 600;
    }

    .desc-plan {
        margin-top: 1rem;
        margin-left: 1.5rem;

        font-size: 1.2rem;
        color: #8b8b8b;

        width: 85%;
    }

    .precos {
        margin-top: 1rem;
        margin-left: 1.5rem;

        font-size: 1.9rem;
        font-weight: 600;

    }

    .interaction {
        width: 90%;
        height: 8rem;

        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;

        border-bottom: 0.1rem solid rgba(110, 110, 110, 0.493);
    }

    .btn-plans {
        width: 100%;
        height: 3rem;

        border: none;
        border-radius: 0.7rem;

        font-family: 'Roboto Condensed';
        font-size: 1.2rem;
        font-weight: 600;

        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;

        color: WHITE;
        cursor: pointer;

        margin-top: 0.5rem;

        background-color: #3723bb7c;
    }

    li img {
        width: auto;
        height: 2rem;
    }

    .planos-individuais li {
        font-family: 'Roboto Condensed';
        font-size: 1.3rem;

        display: flex;
        align-items: center;

        color: #8b8b8b;

        margin-top: 1rem;
        margin-left: 1.5rem;
    }
}


@media only screen and (max-width: 768px) {
    header {
        display: none;
    }

    .back {
        width: 10rem;
        height: 2.5rem;

        cursor: pointer;
        border: none;
        border-radius: 0.5rem;

        color: rgb(163, 160, 160);
        font-family: 'Roboto Condensed';
        font-size: 1.1rem;

        transition: 0.1s all ease;
        margin-top: 5.5rem;

        background-color: transparent;
    }

    .back:hover {
        color: white;
        background-color: rgba(163, 160, 160, 0.527);
    }

    .titulor {
        font-family: 'Roboto Condensed';
        font-weight: 600;
        font-size: 3rem;
        margin: 2rem 0 0 0;
        color: white;
    }

    .suberto {
        font-family: 'Roboto Condensed';
        font-weight: 500;
        font-size: 1.5rem;

        width: 90%;

        margin: 1rem 0 0 0;

        color: rgb(163, 160, 160);
    }

    .center {
        width: 90%;
        height: auto;

        display: block;

        margin: auto;
    }

    .contato {
        width: 90%;
        height: auto;

        margin: 1.5rem;
    }

    .form {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 600px;
        color: #fff;
        font-family: sans-serif;

        margin-top: 0rem;
    }

    input,
    select,
    textarea {
        background: #1c1c1c;
        border: 1px solid #333;
        padding: 14px;
        border-radius: 6px;
        color: #fff;

        font-family: 'Roboto Condensed';
    }

    .title-lg {
        font-size: 1.75rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #fff;
    }

    .text-label {
        font-size: 1rem;
        font-weight: 500;
        color: #fff;
        margin-bottom: 0.25rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        /* para ícones */
    }

    .text-body {
        font-size: 0.95rem;
        color: #B7B7B7;
        margin-bottom: 1.25rem;
    }

    .box {
        background: #1a1a1a;
        border: 1px solid #272727;
        padding: 1.5rem;
        border-radius: 10px;
        margin-top: 2rem;
    }

    .btn-whatsapp {
        display: block;
        text-align: center;
        background: #25D366;
        color: #fff;
        padding: 12px;
        border-radius: 6px;
        font-weight: 600;
        margin-top: 1rem;
        text-decoration: none;
    }

    .btn-whatsapp:hover {
        background: #1ebe5c;
    }


    .info {
        font-size: 0.85rem;
        opacity: 0.7;
    }

    .headermobile {
        display: none;
    }

    .enviar {
        height: 2.4rem;

        border: none;
        border-radius: 0.5rem;

        color: white;
        font-family: 'Roboto Condensed';
        font-size: 1.1rem;
        font-weight: 600;

        background-color: #3723bb;
    }

    .text-label img {
        width: auto;
        height: 1.3rem;
    }

    .headermobile {
        width: 100%;
        height: 4.5rem;
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: end;
        top: 0;
        z-index: 999999999999999999999;
        backdrop-filter: blur(0.6rem);
        background-color: #000000d3;
    }

    .header-logo {
        height: 8rem;
        margin-right: auto;
        margin-top: 2.25rem;
        margin-left: 0rem;
    }

    .btn-talks {
        height: 2.5rem;
    }

    .container {
        width: 100%;
        margin-top: 5rem;
    }

    .zone {
        width: 100%;
        height: auto;
    }

    .apresentacao {
        flex-wrap: wrap;
        height: auto;
        margin-top: 5rem;
    }

    .text-based {
        width: 90%;
        text-align: center;
        font-size: 1.3rem;
        margin: auto;
    }

    .text-based p {
        margin-top: 1rem;
        line-height: 1.6rem;
    }

    .apr {
        margin: 0;
        width: 100%;
        height: auto;
    }

    .apr-txt {
        font-size: 3.0rem;
        line-height: 3.2rem;
        text-align: center;
        margin: auto;
        width: 90%;
        height: auto;
    }


    .ttwork {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card {
        margin: auto;
    }

    .btn-work {
        margin-top: 1rem;
        margin-left: 30%;
    }

    .text-base {
        width: 80%;
        height: auto;
        margin: auto;
        margin-top: 1rem;
        text-align: center;
    }

    .text-bases {
        width: 80%;
        height: auto;
        margin: auto;
        text-align: center;
    }

    .square-pont {
        max-width: 85%;
        min-width: 60%;
        height: auto;
        margin-top: 3rem;
    }

    .img-sqare {
        height: 4rem;
    }

    .img-square {
        height: 80%;
        margin: 0;
    }

    .centralizar {
        display: inline-block;
    }

    .square-mold {
        margin: auto;
        margin-top: 3rem;
        width: 80%;
        height: 14rem;
    }

    .skills {
        flex-wrap: wrap;
        height: auto;
        margin-top: 5rem;
    }

    .space {
        height: 5rem;
    }


    .btn-link {
        margin-left: 5%;
    }


    /* menu cell */
    nav {
        display: block;
    }

    .hamburger {
        position: relative;
        right: 2.3rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1001;
        /* Certifique-se de que o botão fique acima do menu */
    }

    .hamburger .bar {
        height: 3.001px;
        width: 100%;
        background-color: #ffffff;
        border-radius: 2px;
        transition: 0.3s;
    }

    .sidebar {
        position: fixed;
        top: 0;
        right: -250px;
        /* Inicialmente fora da tela */
        width: 250px;
        height: 100%;
        display: block;
        padding-top: 60px;
        transition: right 0.3s ease;
        z-index: 1000;
        backdrop-filter: blur(0.6rem);
        background-color: #0000004b;
    }

    #servico {
        width: 100%;
    }

    .sidebar ul {
        list-style-type: none;
        padding-left: 20px;
    }

    .sidebar ul li {
        margin: 20px 0;
    }

    .sidebar ul li a {
        font-family: 'Oswald';
        font-size: 1.5rem;
        color: white;
        text-decoration: none;
        font-size: 18px;
        display: block;
    }

    /*ativo */
    .sidebar.active {
        right: 0;
    }

    /* Transições do botão hambúrguer ao abrir o menu */
    .sidebar.active~.hamburger .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .sidebar.active~.hamburger .bar:nth-child(2) {
        opacity: 0;
    }

    .sidebar.active~.hamburger .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    .container {
        width: 100%;
        height: auto;
        margin-top: 12rem;
        margin: auto;
    }

    .centralizar {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .apresentacao {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 6rem;
    }

    .zone {
        width: 100%;
        height: auto;
        scroll-margin-top: 10rem;
    }

    .space {
        width: 100%;
        height: 6rem;
    }

    .btn-talks {
        width: 10rem;
        height: 2.5rem;

        border: none;
        border-radius: 0.5rem;

        font-family: 'Roboto Condensed';
        font-weight: 600;
        font-size: 1.1rem;

        color: white;

        background-color: #3723bb;
    }

    .skills {
        width: 100%;
        height: 10rem;
        margin-top: 5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .imgs-skills {
        width: auto;
        height: 5.5rem;
        margin: auto 1rem;
    }


    /* textos */

    .subtt {
        height: auto;
        font-size: 1.7rem;
        font-family: 'Space Mono';
        color: #442cda;
        text-align: left;
        letter-spacing: 0.2rem;
        margin-top: 3rem;
        margin-bottom: 5rem;
        text-align: center;
    }

    .ttwork {
        width: 100%;
        height: auto;
        display: flex;
        font-size: 2.1rem;
        font-family: 'Roboto Condensed';
        font-weight: bold;
        color: White;
        text-align: center;
    }

    .text-base {
        width: 90%;
        height: auto;
        font-family: 'Roboto Condensed';
        font-size: 1.1rem;
        color: rgb(171, 171, 171);
        margin-left: 0.7rem;
    }


    /* Apresentação */

    .apr {
        width: 100%;
        height: auto;
        margin: auto;
    }

    .apr-txt {
        font-family: 'Roboto Condensed';
        font-size: 2.8rem;
        color: white;
        font-weight: bold;
        letter-spacing: 0rem;
        line-height: 2.5rem;
        user-select: none;
        margin-top: 1rem;
        margin-bottom: 3rem;

        width: 90%;
        height: auto;
    }

    .base-tt {
        background-image: linear-gradient(to bottom right, #390f66, #5d1ba3, #3723bb, #442CDA);
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 0 transparent;
    }

    .btn-work {
        width: 9rem;
        height: 3rem;
        margin-top: 1rem;
        border: 0.15rem solid #442cda;
        border-radius: 0.3rem;
        font-family: 'Roboto Condensed';
        font-size: 1.4rem;
        color: white;
        transition: all, 0.2s ease;
        cursor: pointer;
        user-select: none;
        background-color: transparent;
    }

    .btn-work:hover {
        color: black;
        background-color: #442cda;
    }


    /* serviços */

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 20px;

    }

    .card {
        background: #242230;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        text-align: left;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        border-bottom: 4px solid #442cda;
        width: 20rem;
        height: auto;
        font-family: 'Roboto Condensed';
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    }

    .card h3 {
        font-size: 1.9rem;
        color: #442cda;
        text-align: center;
        margin-bottom: 10px;
    }

    .card p {
        font-size: 1.4rem;
        color: white;
        line-height: 1.5;
        width: 99%;
        margin: auto;
    }

    .btn-link {
        width: 20rem;
        height: 4rem;

        border: 0.15rem solid #442cda;
        border-radius: 2rem;
        font-family: 'Roboto Condensed';
        font-size: 1.4rem;
        color: white;
        transition: all, 0.2s ease;
        cursor: pointer;
        user-select: none;
        margin-top: 5rem;
        background-color: transparent;
    }

    .btn-link:hover {
        color: black;
        background-color: #442cda;
    }

    .square-pont {
        width: 18rem;
        height: 23rem;
        margin: auto;
        border-radius: 0.6rem;
        transition: all, 0.2s ease;
        background-color: #242230;
    }

    .square-pont:hover {
        transform: translateY(-1rem);
    }

    .title-pont {
        width: 100%;
        height: auto;
        font-family: 'Roboto Condensed';
        font-size: 1.4rem;
        color: white;
        text-align: center;
    }

    .text-bases {
        width: 90%;
        height: auto;
        font-family: 'Roboto Condensed';
        font-size: 1.1rem;
        color: rgb(171, 171, 171);
    }

    .text-based {
        width: 100%;
        font-family: 'Roboto Condensed';
        font-size: 1.5rem;
        color: white;
        margin-top: 1rem;
    }

    .text-based p {
        margin-top: 2rem;
        line-height: 1.9rem;
    }

    .img-sqare {
        width: 100%;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .img-square {
        width: auto;
        height: 80%;
    }


    /* trabalhos */

    .square-mold {
        width: 22rem;
        height: 17rem;
        margin-left: 0.5rem;
        display: flex;
        align-items: end;
        border-radius: 0.6rem;
        transition: all, 0.2s ease;
    }

    .bar {
        width: 100%;
        height: 0;
        overflow-y: hidden;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        font-family: 'Roboto Condensed';
        font-size: 1.2rem;
        color: white;
        text-align: left;
        font-weight: bold;
        border-radius: 0 0 0.6rem 0.6rem;
        background-color: rgba(136, 136, 136, 0.659);
    }

    .square-mold:hover {
        transform: translateY(-1rem);
        box-shadow: 0rem 0rem 0.7em rgba(255, 255, 255, 0.234);
    }

    .square-mold:hover .bar {
        height: 3.5rem;
        backdrop-filter: blur(0.5rem);
    }

    .bar-t {
        margin-left: 2rem;
    }

    #pj-1 {
        background: url('images/clicksperfeito.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #pj-2 {
        background: url('images/GuiaMestre.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #pj-3 {
        background: url('images/upb.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #pj-4 {
        background: url('images/jatoforte.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #pj {
        background: url('images/kebradaboyz.jpeg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #pjtester {
        background: url('images/vbucks.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    footer {
        width: 100%;
        height: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 3rem;
        border-top: 1rem solid #3723bb;
        backdrop-filter: blur(0.5rem);
        color: white;
        font-family: 'Roboto Condensed';
        background-color: #242230;
    }

    .base-planos {
        width: 100%;
        height: auto;

        margin-top: 3rem;

        display: block;
    }

    .planos-individuais {
        width: 90%;
        height: 39rem;

        margin: auto;
        margin-top: 2rem;
        border: 0.2rem solid transparent;
        border-radius: 0.5rem;

        transition: all 0.2s ease;
        background-color: #242230;
    }

    .planos-individuais:hover {
        border: 0.2rem solid #3723bb;
    }

    #popular {
        border: 0.3rem solid #3723bb;
    }

    .popular {
        width: 6.5rem;
        height: 2.5rem;

        font-size: 1rem;
        text-align: center;
        font-weight: 600;
        margin: auto;
        margin-left: 7.5rem;
        margin-top: -1.4rem;

        position: absolute;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 2rem;

        background-color: #3723bb;
    }

    .plano-title {
        margin-top: 2rem;
        margin-left: 1.5rem;

        font-size: 1.9rem;
        font-weight: 600;
    }

    .desc-plan {
        margin-top: 1rem;
        margin-left: 1.5rem;

        font-size: 1.2rem;
        color: #8b8b8b;

        width: 85%;
    }

    .precos {
        margin-top: 1rem;
        margin-left: 1.5rem;

        font-size: 1.9rem;
        font-weight: 600;

    }

    .interaction {
        width: 90%;
        height: 8rem;

        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;

        border-bottom: 0.1rem solid rgba(110, 110, 110, 0.493);
    }

    .btn-plans {
        width: 100%;
        height: 3rem;

        border: none;
        border-radius: 0.7rem;

        font-family: 'Roboto Condensed';
        font-size: 1.2rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;

        color: WHITE;
        cursor: pointer;

        margin-top: 0.5rem;

        background-color: #3723bb7c;
    }

    li img {
        width: auto;
        height: 2rem;
    }

    .planos-individuais li {
        font-family: 'Roboto Condensed';
        font-size: 1.3rem;

        display: flex;
        align-items: center;

        color: #8b8b8b;

        margin-top: 1rem;
        margin-left: 1.5rem;
    }
}