    @charset "UTF-8";

    /*Aqui vai as importações das fontes no CSS*/
    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Crafty+Girls&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


    @font-face {
        font-family: "Lemon Milk";
        src: url(../font/LEMONMILK-Medium.otf);
        font-weight: bold;
    }

    /*Aqui vai as Configurações padrões da paletas de cor e definição das fontes no CSS*/
    :root {
        --corPrimaria: #5500FF;
        --corSecundaria: #00A6FF;
        --corTerceriaria: #4DFF00;
        --outros: #FF00A1;
        --preto: #000000;
        --branco: #ffffff;

        /*Fontes*/
        --font-titulo: "Lemon Milk";
        --font-subititulo: "Bebas Neue", serif;
        --font-paragrafos: "Roboto", normal;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    h1,
    h2 {
        font-family: var(--font-titulo);
    }

    p,
    h3,
    h4,
    h5 {
        font-family: var(--font-paragrafos);
    }


    .destaques {
        color: var(--corPrimaria);
        font-weight: bold;
    }

    /*Header*/
    header {
        text-align: center;
        justify-content: center;
        padding: 50px;
        font-family: var(--font-subititulo);
        background-color: var(--preto);
    }

    .header-logo {
        height: 50px;
        width: auto;
        display: block;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 30px;
    }

    nav ul {
        display: flex;
        justify-content: center;
        gap: 35px;
        list-style: none;
    }

    .auth-links {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: 0px;
    }

    nav ul li a {
        text-decoration: none;
        color: var(--branco);
        font-size: 1.1rem;
        letter-spacing: 1px;
        transition: color 0.5s ease;
    }

    nav ul li a:hover {
        color: var(--outros);
    }

    nav .auth-links a {
        margin-left: 10px;
        font-weight: bold;
        font-size: 1.3rem;
        text-decoration: none;
    }

    nav .auth-links a:first-child {
        transition: background-color 0.s ease;
        transition: color 0.6s ease;
        color: #5500FF;
        padding: 3px 10px;
        border-radius: 10px;
    }

    nav .auth-links a:first-child:hover {
        background-color: #5500FF;
        color: white;
        padding: 3px 10px;
        border-radius: 10px;
    }

    nav .auth-links a:last-child {
        transition: background-color 0.6s ease;
        transition: color 0.6s ease;
        background-color: #5500FF;
        color: white;
        padding: 3px 10px;
        border-radius: 10px;
    }

    nav .auth-links a:last-child:hover {
        color: #5500FF;
        background-color: #0099ff00;
        padding: 3px 10px;
        border-radius: 10px;
    }




    /*Seção que vai sobre essa pagina-*/
    .conteudo {
        display: flex;
        margin: auto;
        gap: 20px;
        width: 80vw;
        margin: auto;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .textoApre>p {
        margin-top: 10px;
        line-height: 1.5em;
        font-size: 1.2em;
    }

    /*Seção que vai pesquisar os editores ou projetos*/
    .pesquisa {
        justify-content: center;
        align-items: center;
        gap: 50px;
        display: flex;
        flex-flow: row wrap;
        margin-top: 20px;
        background-color: var(--preto);
        height: 372px;
        color: var(--branco);
    }

    .inputPesq {
        margin-left: 30px;
        padding: 20px;

    }

    .inputPesq>h2 {
        margin-bottom: 20px;

    }

    #pesq {
        text-align: justify;
        height: 58px;
        width: 512px;
        border-radius: 35px;
        background: none;
        border: 2px solide white;
        color: white;
        padding: 20px;
    }


    .pesqConteudo {
        flex-direction: column;
        width: 484px;
    }

    .pesqConteudo>button {
        cursor: pointer;
        border: none;
        color: var(--branco);
        margin-top: 20px;
        background-color: var(--corPrimaria);
        padding: 10px;
        border-radius: 20px;
        margin: 5px;

    }

    .pesqConteudo>button:hover {
        transition: 0.5s ease;
        background-color: var(--corSecundaria);
        color: var(--preto);
    }

    /* Seção parte dos editores */
    .editores {
        margin: auto;
        padding: 20px 0;
        background-color: #D9D9D9;
    }

    .contEditores {
        margin: auto;
        width: 90vw;
        max-width: 1200px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contEditores>p {
        width: 70vw;
        max-width: 800px;
        margin-top: 10px;
        margin-bottom: 20px;
        text-align: center;
    }

    /* Container dos cards (pai) */
    .paiCard {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 50px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    /* Card individual */
    .card {
        background-color: var(--branco);
        border-radius: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 25px;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        flex: 1 1 350px;
        overflow: hidden;
        text-align: center;
    }

    .card>img {
        width: 140px;
        height: 140px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 20px;
        border: 4px solid #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
    }

    .card>h5 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333;
        margin: 0 0 20px 0;
        text-align: center;
    }

    /* Container para as informações (para alinhar o texto) */
    .card-info {
        width: 100%;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex-grow: 1;
    }

    .card-info>p {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .card-info>p>strong {
        color: #333;
        min-width: 100px;
        display: inline-block;
        margin-right: 8px;
    }

    /* Botão */
    .card>button {
        margin-top: 25px;
        background-color: #00E676;
        color: #000;
        padding: 14px 20px;
        border: none;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        width: 100%;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .card>button:hover {
        background-color: #00c853;
        transform: translateY(-2px);
    }

    .projetos {
        background-color: var(--preto);
        color: var(--branco);
        padding: 60px 20px;
        text-align: center;
    }

    .projetos>h2 {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .paiCardProjetos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- O Card Individual --- */
    .cardProjetos {
        background-color: #1c1c1c;
        border-radius: 12px;
        border: 1px solid #333;
        overflow: hidden;
        flex-basis: 48%;
        min-width: 350px;
        display: flex;
        flex-direction: column;
    }

    .card-projeto-header {
        position: relative;
        height: 180px;
        width: 100%;
        background-color: #111;
    }

    .card-projeto-header .fundo {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card-projeto-header .perfil {
        position: absolute;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 3px solid var(--branco);
        bottom: -40px;
        left: 20px;
        z-index: 1;
    }

    /* Corpo com os textos */
    .card-projeto-body {
        padding: 20px;
        padding-top: 50px;
        text-align: left;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .card-projeto-body h5 {
        font-size: 1.4rem;
        margin: 0 0 5px 0;
    }

    .card-projeto-body .editor-name {
        font-size: 0.9rem;
        color: #aaa;
        margin-bottom: 15px;
    }

    .card-projeto-body .editor-name-highlight {
        font-weight: 600;
        color: #00aaff;
    }

    .card-projeto-body>p {
        color: #ccc;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Vídeo do YouTube */
    .project-media {
        margin-top: auto;
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 8px;
        overflow: hidden;
    }

    .project-media iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .cardProjetos .view-profile-btn {
        background: var(--cor-primaria, #00aaff);
        color: var(--branco, #fff);
        text-align: center;
        text-decoration: none;
        font-weight: bold;
        font-size: 1rem;
        padding: 16px;
        border: none;
        width: 100%;
        cursor: pointer;
        margin-top: auto;
        transition: background-color 0.3s ease, letter-spacing 0.3s ease;
    }

    .cardProjetos .view-profile-btn:hover {
        background-color: #0088cc;
        letter-spacing: 0.5px;
    }

    /*SEÇÃO SERVIÇOS PRESTADOS*/
    .serPrestados {
        padding: 20px;
        display: flex;
        justify-content: center;
    }

    .paiSerPrestados {
        display: flex;
        flex-flow: row wrap;
        gap: 50px;
    }

    /*Icones font-awesome*/
    .icones {
        font-size: 60px;
        text-align: center;
        padding: 10px;
    }

    /*Card normal*/
    .cardSerPrestados {
        width: 200px;
        height: 350px;
        background-color: lightgray;
        padding: 20px;
        text-align: center;
        align-items: center;
        border-radius: 20px;
    }

    /*Card roxo*/
    .cardSerPrestadosRosa {
        width: 200px;
        height: 350px;
        padding: 20px;
        text-align: center;
        align-items: center;
        color: var(--corPrimaria);
        font-size: 1.1em;
    }

    /*Footer*/

    footer {
        background-color: var(--preto);
        font-family: var(--font-paragrafos);
        color: white;
        margin-top: 40px;
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 0.8rem;
    }

    .footer-logo {
        height: 40px;
        width: auto;
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    footer p {
        padding: 5px;
        text-align: center;
    }

    .socials>a {
        color: var(--branco);
    }

    footer .socials i {
        font-size: 1.5rem;
        margin: 0 8px;
        vertical-align: middle;
    }

    i {
        padding-top: 5px;
        transition: color 0.5s ease;
    }

    i.fa-github:hover {
        color: rgb(101, 0, 252);
    }

    i.fa-instagram:hover {
        color: red;
    }

    i.fa-linkedin:hover {
        color: rgb(0, 170, 255);
    }
