/* Estilos base */
body {
    font-family: "Arial Italic", "Helvetica Italic", sans-serif;
    background: #0f0a1e;
    color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    display: flex;
    height: 100vh;
    flex-direction: column;
    line-height: 1.5;
}

.smooth {
    position: relative;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    /*overflow-y: scroll;*/
    scroll-snap-type: y mandatory;
    /* scroll-padding: 5vh 0; */
}

/* Header class*/
.header {
    width: 100%;
    background-color: #0f0a1e; /* Cor escura para combinar com o fundo */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    min-height: 60px;
    font-size: 1rem;
}

    .header ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: flex;
        width: 100%;
        justify-content: center;
    }

        .header ul li {
            margin: 0 1em;
            padding: 1em;
        }

            .header ul li a {
                position: relative;
                text-decoration: none;
                text-transform: uppercase;
                font-weight: 600;
                color: #f4f4f4;
            }

                .header ul li a::after {
                    position: absolute;
                    bottom: -3px;
                    left: 0;
                    content: '';
                    width: 0;
                    height: 3px;
                    transition: all 0.2s linear;
                }

                .header ul li a:hover::after {
                    width: 100%;
                    background-color: #03BFCB;
                }


section {
    padding: 100px 0;
}

    section h2.section-heading {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 40px;
    }

    section h3.section-subheading {
        margin-bottom: 75px;
        text-transform: none;
        font-family: "Arial Italic", "Helvetica Italic", sans-serif;
        font-size: 16px;
        font-style: italic;
        font-weight: 400;
    }

@media(min-width:768px) {
    section {
        padding: 0 0;
    }
}


.logo {
    width: 100px; /* ajuste conforme o tamanho desejado */
    height: auto;
    position: absolute;
    top: 90px;
    right: 1600px;
}

/* Header TAG*/
header {
    color: #fff;
    background-attachment: scroll;
    /*background-image: url(https://unsplash.imgix.net/uploads%2F14115408840644deb16b0%2F2dc933e3?q=75&fm=jpg&auto=format&s=7f43646e4d26049c6c39890afb2e5ced);*/
    /*background-image: url(../img/menu.png);*/
    background-position: center center;
    background-repeat: none;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

    header .intro-text {
        padding-top: 100px;
        padding-bottom: 50px;
    }

        header .intro-text .intro-lead-in {
            color: white;
            margin-bottom: 25px;
            /*text-transform: uppercase;*/
            font-family: "Arial Italic", "Helvetica Italic", sans-serif;
            font-size: 50px;
            font-weight: 700;
            line-height: 50px;
        }

        header .intro-text .intro-heading {
            color: #B3B8CD;
            margin-bottom: 100px;
            font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
            font-size: 22px;
            font-style: italic;
            line-height: 22px;
        }

        header .intro-text .intro-subheading {
            color: #B3B8CD;
            margin-bottom: 25px;
            font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
            font-size: 25px;
            font-style: italic;
            line-height: 22px;
        }


@media(min-width:768px) {
    header .intro-text {
        padding-top: 100px;
        padding-bottom: 520px;
    }

        header .intro-text .intro-lead-in {
            color: white;
            margin-bottom: 10px;
            /*text-transform: uppercase;*/
            font-family: "Arial Italic", "Helvetica Italic", sans-serif;
            font-size: 50px;
            font-weight: 600;
            line-height: 60px;
        }

        header .intro-text .intro-heading {
            color: #B3B8CD;
            margin-bottom: 100px;
            font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
            font-size: 30px;
            font-style: italic;
            line-height: 30px;
        }


        header .intro-text .intro-subheading {
            color: #B3B8CD;
            margin-bottom: 50px;
            font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
            font-size: 25px;
            font-style: italic;
            line-height: 40px;
        }
}

.link-flash {
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --primary-color: #03BFCB;
    font-size: 20px;
    position: relative;
}

    .link-flash::before,
    .link-flash::after {
        position: absolute;
        content: "";
        left: 0;
        bottom: -0.1rem;
        display: block;
        width: 100%;
        height: 1px;
        background: #03BFCB;
        transition: 1.1s var(--ease-out-expo);
    }

    .link-flash::before {
        transform: scaleX(0);
        transform-origin: left;
    }

    .link-flash::after {
        transform-origin: right;
        transition-delay: 0.25s;
    }

    .link-flash:hover::before {
        transform: scaleX(1);
        transition-delay: 0.25s;
    }

    .link-flash:hover::after {
        transform: scaleX(0);
        transition-delay: 0s;
    }

a {
    color: white;
    text-decoration: none;
}

main {
    display: flex;
    margin-top: -30px; /* Ajusta o espaço acima para não sobrepor o header */
    padding: 50px;
    width: 100vw;
}

/* Aside */
aside {
    width: 25%;
    padding: 20px;
}

/* Article */
article {
    width: 75%;
    margin-right: 10%;
    padding: 50px;
}

/* Responsividade */
@media (max-width: 768px) {
    header {
        position: relative;
    }

    main {
        flex-direction: column;
        padding: 20px 10px;
    }

    aside, article {
        width: 100%;
        margin-right: 0;
    }
}

h1, h2, h3 {
    color: #fff;
    text-align: center;
}

.center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

input {
    display: none;
}

figcaption {
    margin-top: -50px;
    padding: 20px;
    text-shadow: -1px 0 0 #fdff2a, -3px 0 0 #df4a42, 1px 0 0 #91fcfe, 3px 0 0 #4405fc;
    animation: blink 1s steps(4, start) infinite;
}

.article-tags {
    display: flex;
    flex-direction: column;
}


h3 {
    margin: 10px 0;
}

h6 {
    margin: 5px 0;
}

.card-container {
    background-color: #0d1a33;
    border-radius: 5px;
    box-shadow: 0px 10px 20px -10px rgba(0,0,0,0.75);
    color: #B3B8CD;
    padding-top: 30px;
    position: relative;
    width: 350px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

    .card-container .pro {
        color: #231E39;
        background-color: #0d1a33;
        border-radius: 3px;
        font-size: 14px;
        font-weight: bold;
        padding: 3px 7px;
        position: absolute;
        top: 30px;
        left: 30px;
    }

    .card-container .round {
        border: 1px solid #03BFCB;
        border-radius: 50%;
        padding: 7px;
    }

.round {
    width: 250px; /* Defina o tamanho desejado para o contêiner */
    height: 250px; /* Defina o tamanho desejado para o contêiner */
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}

a.btn-primary {
    background-color: #03BFCB;
    border: 1px solid #03BFCB;
    border-radius: 3px;
    color: #231E39;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    padding: 10px 25px;
}

button.primary {
    background-color: #03BFCB;
    border: 1px solid #03BFCB;
    border-radius: 3px;
    color: #231E39;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    padding: 10px 25px;
}

    button.primary.ghost {
        background-color: transparent;
        color: #02899C;
    }

.skills {
    background-color: #07142e;
    text-align: left;
    padding: 15px;
    margin-top: 30px;
}

    .skills ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .skills ul li {
            border-radius: 2px;
            display: inline-block;
            font-size: 12px;
            margin: 0 7px 7px 0;
            padding: 7px;
        }

.imagem img {
    height: 30px;
    width: 40px;
}
/* Media queries para tornar o site responsivo */

/* Dispositivos pequenos, como smartphones */
@media only screen and (max-width: 600px) {
    main {
        flex-direction: column;
        padding: 20px 10px;
    }

    aside, article {
        width: 100%;
        max-width: none;
        margin-right: 0;
    }
}


/*TIMELINE*/
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

    .timeline:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 30px;
        width: 2px;
        margin-left: -1.5px;
        background-color: #f1f1f1;
    }

    .timeline > li {
        position: relative;
        margin-bottom: 50px;
        min-height: 50px;
    }

        .timeline > li:before,
        .timeline > li:after {
            content: " ";
            display: table;
        }

        .timeline > li:after {
            clear: both;
        }

        .timeline > li .timeline-panel {
            float: right;
            position: relative;
            width: 100%;
            padding: 0 20px 0 100px;
            text-align: left;
        }

            .timeline > li .timeline-panel:before {
                right: auto;
                left: -15px;
                border-right-width: 15px;
                border-left-width: 0;
            }

            .timeline > li .timeline-panel:after {
                right: auto;
                left: -14px;
                border-right-width: 14px;
                border-left-width: 0;
            }

        .timeline > li .timeline-image {
            /*z-index: 100;*/
            position: absolute;
            left: 0;
            width: 80px;
            height: 80px;
            margin-left: 0;
            border: 1px solid #03BFCB;
            border-radius: 50%;
            text-align: center;
            color: #fff;
            background-color: #0d1a33;
        }

            .timeline > li .timeline-image h4 {
                margin-top: 12px;
                font-size: 10px;
                line-height: 14px;
            }

        .timeline > li.timeline-inverted > .timeline-panel {
            float: right;
            padding: 0 20px 0 100px;
            text-align: left;
        }

            .timeline > li.timeline-inverted > .timeline-panel:before {
                right: auto;
                left: -15px;
                border-right-width: 15px;
                border-left-width: 0;
            }

            .timeline > li.timeline-inverted > .timeline-panel:after {
                right: auto;
                left: -14px;
                border-right-width: 14px;
                border-left-width: 0;
            }

        .timeline > li:last-child {
            margin-bottom: 0;
        }

    .timeline .timeline-heading h4 {
        margin-top: 0;
        color: inherit;
    }

        .timeline .timeline-heading h4.subheading {
            text-transform: none;
        }



@media(min-width:768px) {
    .timeline:before {
        left: 50%;
    }

    .timeline > li {
        margin-bottom: 100px;
        min-height: 100px;
    }

        .timeline > li .timeline-panel {
            float: left;
            width: 41%;
            padding: 0 20px 20px 30px;
            text-align: right;
        }

        .timeline > li .timeline-image {
            left: 50%;
            width: 100px;
            height: 100px;
            margin-left: -50px;
        }

            .timeline > li .timeline-image h4 {
                margin-top: 16px;
                font-size: 13px;
                line-height: 18px;
            }

        .timeline > li.timeline-inverted > .timeline-panel {
            float: right;
            padding: 0 30px 20px 20px;
            text-align: left;
        }

    .timeline .timeline-body > p,
    .timeline .timeline-body > ul {
        margin-bottom: 0; /* Remove a margem negativa em telas menores */
    }
}

@media(min-width:992px) {
    .timeline > li {
        min-height: 150px;
    }

        .timeline > li .timeline-panel {
            padding: 0 20px 20px;
        }

        .timeline > li .timeline-image {
            width: 100px;
            height: 100px;
            margin-left: -50px;
        }

            .timeline > li .timeline-image h4 {
                margin-top: 30px;
                font-size: 15px;
                line-height: 20px;
            }

        .timeline > li.timeline-inverted > .timeline-panel {
            padding: 0 20px 20px;
        }

    .timeline .timeline-body > p,
    .timeline .timeline-body > ul {
        margin-bottom: -140px;
    }
}

@media(min-width:1200px) {
    .timeline > li {
        min-height: 0;
    }

        .timeline > li .timeline-panel {
            padding: 0 20px 20px 100px;
        }

        .timeline > li .timeline-image {
            width: 100px;
            height: 100px;
            margin-left: -50px;
        }

            .timeline > li .timeline-image h4 {
                margin-top: 23px;
            }

        .timeline > li.timeline-inverted > .timeline-panel {
            padding: 0 100px 20px 20px;
        }

    .timeline .timeline-body > p,
    .timeline .timeline-body > ul {
        margin-bottom: -140px;
    }
}


.enter-abouticon {
    width: 95%;
    height: 100%;
    margin: auto;
    text-align: center;
    border-radius: 100%;
    background-color: #07142e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .enter-abouticon i.bi {
        margin: auto;
        font-size: 50px;
        opacity: 0.7;
        transition: opacity 0.4s;
        color: #fff;
    }

.card-services:hover .enter-abouticon svg, .card-services:focus .enter-abouticon svg {
    opacity: 1;
}

.services {
    padding-top: 90px;
    padding-bottom: 90px;
    /*background-color: #231E39;*/
}

.card-services {
    transition: box-shadow 0.7s;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    background-color:;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    margin-top: 10px;
    margin-bottom: 10px;
}

.servi-icons {
    width: 130px;
    height: 130px;
    margin: auto;
    display: flex;
    border-radius: 100%;
    transition: box-shadow 0.4s;
}

.card-services:hover {
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.15);
}


    .card-services:hover .servi-icons, .card-services:focus .servi-icons {
        box-shadow: 0px 0px 0px 3px rgba(3, 191, 203, 0.68);
    }

.enter-sicon {
    width: 95%;
    height: 95%;
    margin: auto;
    text-align: center;
    border-radius: 100%;
    background-color: #07142e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .enter-sicon i.fa {
        margin: auto;
        font-size: 80px;
        opacity: 0.7;
        transition: opacity 0.4s;
        color: #fff;
    }

    .enter-sicon i.bi {
        margin: auto;
        font-size: 80px;
        opacity: 0.7;
        transition: opacity 0.4s;
        color: #fff;
    }

.card-services:hover .enter-sicon svg, .card-services:focus .enter-sicon svg {
    opacity: 1;
}

h3.serv-name {
    font-size: 17px;
    font-family: "Arial Italic", "Helvetica Italic", sans-serif;
    color: white;
    /*text-transform: uppercase;*/
    font-weight: 400;
    margin-bottom: 10px;
}

hr.serv-hr {
    margin: 0 auto;
    width: 50px;
    opacity: 0.5;
    border: 1px solid #03BFCB;
}

p.ssubinfo {
    margin-top: 10px;
    color: #B3B8CD;
    font-family: "Arial Italic", "Helvetica Italic", sans-serif;
    font-size: 14px;
    margin-bottom: 30px;
}

a.more-servinfo, a.more-servinfo:visited {
    font-family: "Arial Italic", "Helvetica Italic", sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    opacity: 0.6;
    transition: opacity 0.4s;
}

    a.more-servinfo:hover, a.more-servinfo:focus {
        color: #03BFCB;
    }

.card-services:hover a.more-servinfo, .card-services:focus a.more-servinfo {
    opacity: 1;
}

    .card-services:hover a.more-servinfo::after, .card-services:focus a.more-servinfo::after {
        width: 35%;
    }

a.more-servinfo::after {
    content: '';
    display: none;
    margin: auto;
    width: 0%;
    transition: width 0.4s;
    border-top: 1px solid;
    margin-top: 3px;
}

.col-sm-12.session-title {
    text-align: center;
    padding-bottom: 30px;
}

h1.session-tit {
    margin: 0;
    font-size: 30px;
    /*font-weight: 900;*/
    color: white;
    font-family: "Arial Italic", "Helvetica Italic", sans-serif;
    /*opacity: 0.8;*/
}

hr.ss-hr {
    width: 100px;
    border: 1px solid;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
    /*opacity: 0.1;*/
    color: #03BFCB;
}

p.ss-pp {
    color: #969696;
    margin-bottom: 75px;
    text-transform: none;
    font-family: "Arial Italic", "Helvetica Italic", sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    /*width: 400px;*/
    margin: auto;
    max-width: 100%;
}

/*CONTATO*/
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    margin: 0;
    padding-bottom: 1.4em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    border-bottom: 3px solid slategrey;
    background: #0d1a33;
    font-family: 'Roboto', sans-serif;
    color: lightgrey;
    font-weight: 700;
    font-size: 18px;
    transition: ease-in-out 0.25s;
}

/*    .contact-form textarea {
        min-height: 50px;
        max-height: 500px;
        white-space: pre-wrap;
        word-wrap: break-word;
        resize: vertical;
        overflow: hidden;
    }*/

.contact-form ::-webkit-input-placeholder {
    font-size: 12px;
    color: slategrey;
    text-transform: uppercase;
    font-weight: 400;
}

/*.contact-form label {
    font-size: 12px;
    color: slategrey;
    text-transform: uppercase;
    font-weight: 400;
}
*/
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.contact-form button:focus {
    outline: none;
    resize: none;
    border-bottom: 3px solid #03BFCB;
}

.contact-form button {
    color: lightgrey;
    background: rgba(34, 34, 34, 0.0);
    border: 3px solid #03BFCB;
    height: 74px;
    width: 200px;
    float: right;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: ease-in-out 0.25s;
}

    .contact-form button span {
        transition: ease-in-out 0.25s;
    }

    .contact-form button:hover {
        background: #03BFCB;
        color: lightgrey;
    }

        .contact-form button:hover span {
            padding-left: 10px;
            color: white;
        }

/*FOOTER*/

.site-footer {
    /*background-color: #26272b;*/
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #737373;
}

    .site-footer hr {
        border-top-color: #bbb;
        opacity: 0.5
    }

    .site-footer a {
        color: #737373;
    }

        .site-footer a:hover {
            color: #3366cc;
            text-decoration: none;
        }

    .site-footer .social-icons {
        text-align: right
    }

        .site-footer .social-icons a {
            width: 40px;
            height: 40px;
            line-height: 40px;
            margin-left: 6px;
            margin-right: 0;
            border-radius: 100%;
            background-color: #33353d
        }

.copyright-text {
    margin: 0
}

@media (max-width:991px) {
    .site-footer [class^=col-] {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    .site-footer {
        padding-bottom: 0
    }

        .site-footer .copyright-text, .site-footer .social-icons {
            text-align: center
        }
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

    .social-icons li {
        display: inline-block;
        margin-bottom: 4px
    }

        .social-icons li.title {
            margin-right: 15px;
            text-transform: uppercase;
            color: #96a2b2;
            font-weight: 700;
            font-size: 13px
        }

    .social-icons a {
        background-color: #eceeef;
        color: #818a91;
        font-size: 16px;
        display: inline-block;
        line-height: 44px;
        width: 44px;
        height: 44px;
        text-align: center;
        margin-right: 8px;
        border-radius: 100%;
        -webkit-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear
    }

        .social-icons a:active, .social-icons a:focus, .social-icons a:hover {
            color: #fff;
            background-color: #29aafe
        }

    .social-icons.size-sm a {
        line-height: 34px;
        height: 34px;
        width: 34px;
        font-size: 14px
    }

    /*  .social-icons a.whatsapp:hover {
        background-color: #47d716
    }*/

    .social-icons a.github:hover {
        background-color: #000;
    }

    .social-icons a.linkedin:hover {
        background-color: #007bb6
    }


@media (max-width:767px) {
    .social-icons li.title {
        display: block;
        margin-right: 0;
        font-weight: 600
    }
}


/*PRIMEIRA LINHA */

.col-sm-12.session-title {
    text-align: center;
    padding-bottom: 30px;
}

h1.session-tit {
    margin: 0;
    font-size: 30px;
    /*font-weight: 900;*/
    color: white;
    font-family: "Arial Italic", "Helvetica Italic", sans-serif;
    /*opacity: 0.8;*/
}

hr.ss-hr {
    width: 100px;
    border: 1px solid;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
    /*opacity: 0.1;*/
    color: #03BFCB;
}

p.ss-pp {
    color: #969696;
    margin-bottom: 75px;
    text-transform: none;
    font-family: "Arial Italic", "Helvetica Italic", sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    /*width: 400px;*/
    margin: auto;
    max-width: 100%;
}

/*HERO - botoes de acao*/
.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

    .hero-actions a.btn-primary {
        background-color: #03BFCB;
        border: 1px solid #03BFCB;
        border-radius: 3px;
        color: #231E39;
        font-family: Montserrat, sans-serif;
        font-weight: 600;
        font-style: normal;
        padding: 12px 30px;
    }

        .hero-actions a.btn-primary:hover {
            background-color: transparent;
            color: #03BFCB;
        }

/*Botao ghost (card Sobre)*/
a.btn-ghost {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #03BFCB;
    border-radius: 3px;
    color: #03BFCB;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    padding: 10px 25px;
    margin-left: 8px;
    transition: all 0.25s ease-in-out;
}

    a.btn-ghost:hover {
        background-color: #03BFCB;
        color: #231E39;
    }

/*PROJETOS*/
.projects {
    padding-top: 90px;
    padding-bottom: 60px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-card {
    display: flex;
    flex-direction: column;
    background-color: #0d1a33;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 25px;
    text-align: left;
    box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.75);
    transition: border-color 0.3s, transform 0.3s;
}

    .project-card:hover {
        border-color: rgba(3, 191, 203, 0.6);
        transform: translateY(-4px);
    }

    .project-card h3 {
        text-align: left;
        color: white;
        font-size: 18px;
        text-transform: capitalize;
        margin: 0 0 10px;
        font-family: "Arial Italic", "Helvetica Italic", sans-serif;
    }

    .project-card p {
        flex: 1;
        color: #B3B8CD;
        font-size: 14px;
        margin: 0 0 20px;
    }

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-lang {
    color: #03BFCB;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects-status {
    grid-column: 1 / -1;
    text-align: center;
    color: #969696;
    font-style: italic;
}

    .projects-status a {
        color: #03BFCB;
    }

.projects-more {
    text-align: center;
    margin-top: 40px;
}

    .projects-more a.link-flash {
        font-size: 16px;
    }

/*HERO centralizado*/
#home header {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .intro-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 20px 40px;
}

header .intro-text .intro-lead-in {
    margin-bottom: 15px;
}

header .intro-text .intro-heading {
    margin-bottom: 30px;
}

header .intro-text .intro-subheading {
    max-width: 760px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.logo {
    position: static;
    width: 140px;
    height: auto;
    margin: 0 0 30px;
}

.hero-actions {
    justify-content: center;
}

/*==================== NOVA HOME ====================*/

/*Topbar*/
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    background: rgba(8, 13, 26, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 100;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-style: normal;
}

.topbar-logo img {
    width: 58px;
    height: 58px;
    display: block;
}

.topbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 38px;
}

    .topbar-menu a {
        position: relative;
        color: #e6edf3;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

        .topbar-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            height: 2px;
            width: 0;
            background: #03BFCB;
            transition: width 0.2s linear;
        }

        .topbar-menu a:hover::after,
        .topbar-menu a.active::after {
            width: 100%;
        }

.topbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s;
}

    .topbar-cta:hover {
        border-color: #03BFCB;
        color: #03BFCB;
    }

/*Hero*/
.hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 150px 40px 60px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-style: normal;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border: 1px solid rgba(3, 191, 203, 0.45);
    border-radius: 999px;
    background: rgba(3, 191, 203, 0.07);
    color: #7de8ee;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

    .hero-badge i {
        color: #03BFCB;
        font-size: 14px;
    }

.hero-title {
    text-align: left;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin: 26px 0 22px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

    .hero-title span {
        color: #03BFCB;
    }

.hero-copy {
    color: #aeb6c8;
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 0 34px;
}

    .hero-copy strong {
        color: #e8ecf4;
    }

.hero-cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #03BFCB;
    color: #06222b;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 10px;
    transition: all 0.25s;
}

    .btn-solid:hover {
        filter: brightness(1.12);
        transform: translateY(-2px);
        color: #06222b;
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(3, 191, 203, 0.5);
    color: #d7dceb;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 10px;
    transition: all 0.25s;
}

    .btn-outline:hover {
        background: rgba(3, 191, 203, 0.1);
        color: #fff;
    }

/*Janela de codigo*/
.hero-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.code-window {
    flex: 1;
    min-width: 0;
    background: #0b1526;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 45px -10px rgba(3, 191, 203, 0.18);
}

.code-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

    .code-bar .dot {
        width: 11px;
        height: 11px;
        border-radius: 50%;
    }

.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }

.code-bar .code-file {
    margin-left: 10px;
    color: #8b94a7;
    font-size: 12px;
    font-family: Consolas, monospace;
}

.code-body {
    padding: 18px 16px;
    font-family: Consolas, 'Courier New', monospace;
    font-size: 13.5px;
    line-height: 1.8;
    color: #dbe2f0;
    overflow-x: auto;
}

.code-line {
    display: block;
    white-space: pre;
}

    .code-line .ln {
        display: inline-block;
        width: 30px;
        color: #3d4a63;
        user-select: none;
    }

.c-kw { color: #c678dd; }
.c-ty { color: #4ec9b0; }
.c-me { color: #e5c07b; }
.c-va { color: #61afef; }

/*Chips de tecnologia*/
.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 215px;
}

.tech-chip {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0e1830;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
}

    .tech-chip::before {
        content: '';
        position: absolute;
        left: -20px;
        top: 50%;
        width: 20px;
        height: 1px;
        background: rgba(3, 191, 203, 0.4);
    }

.tech-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(3, 191, 203, 0.12);
    color: #03BFCB;
    font-size: 20px;
    flex-shrink: 0;
}

    .tech-ico.net {
        background: #5c2d91;
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        font-family: 'Inter', sans-serif;
    }

.tech-chip strong {
    display: block;
    color: #fff;
    font-size: 14px;
}

.tech-chip small {
    color: #8b94a7;
    font-size: 12px;
}

/*Cards de diferenciais*/
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 65px;
}

.feature-card {
    display: flex;
    gap: 14px;
    padding: 22px;
    background: #0d1626;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    text-align: left;
    transition: border-color 0.3s, transform 0.3s;
}

    .feature-card:hover {
        border-color: rgba(3, 191, 203, 0.5);
        transform: translateY(-3px);
    }

.feature-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(3, 191, 203, 0.12);
    color: #03BFCB;
    font-size: 20px;
    box-shadow: 0 0 18px -4px rgba(3, 191, 203, 0.5);
}

.feature-card h3 {
    text-align: left;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.feature-card p {
    color: #98a2b6;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

/*Faixa de estatisticas*/
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 26px;
    padding: 26px 10px;
    background: #0c1424;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(3, 191, 203, 0.1);
    color: #03BFCB;
    font-size: 22px;
}

.stat-info strong {
    display: block;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.stat-info span {
    color: #8b94a7;
    font-size: 13px;
}

/*Responsivo*/
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 640px) {
    .topbar {
        padding: 10px 16px;
    }

    .topbar-menu {
        display: none;
    }

    .hero {
        padding: 120px 20px 40px;
    }

    .hero-features,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .hero-right {
        flex-direction: column;
        align-items: stretch;
    }

    .tech-stack {
        flex-direction: row;
        flex-wrap: wrap;
        min-width: 0;
    }

        .tech-stack .tech-chip {
            flex: 1 1 45%;
        }

    .tech-chip::before {
        display: none;
    }
}

/*Ajuste de espacamento do hero*/
#home {
    padding: 0;
}

.hero {
    padding-top: 105px;
}

/*==================== SOBRE (novo) ====================*/
#about {
    padding: 0;
}

.about {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 40px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-style: normal;
}

.about-inner {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 46px;
    align-items: start;
}

/*Card de perfil*/
.profile-card {
    background: linear-gradient(180deg, #0d1a33 0%, #0b1526 100%);
    border: 1px solid rgba(3, 191, 203, 0.35);
    border-radius: 18px;
    padding: 34px 26px;
    text-align: center;
    box-shadow: 0 0 40px -18px rgba(3, 191, 203, 0.4);
}

.profile-photo {
    width: 210px;
    height: 210px;
    box-sizing: border-box;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 6px;
    border: 2px solid #03BFCB;
    box-shadow: 0 0 30px -6px rgba(3, 191, 203, 0.55);
}

    .profile-photo img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        display: block;
    }

.profile-name {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.profile-role {
    color: #03BFCB;
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 18px;
}

.profile-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #aeb6c8;
    font-size: 14px;
    margin-bottom: 22px;
}

    .profile-meta i {
        color: #8b94a7;
        margin-right: 6px;
    }

.profile-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-sm {
    padding: 11px 20px;
    font-size: 14px;
    border-radius: 10px;
}

.profile-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 22px 0 16px;
}

.profile-label {
    text-align: left;
    color: #d7dceb;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px;
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0e1830;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e6edf3;
    font-size: 19px;
    transition: all 0.25s;
}

    .social-btn:hover {
        border-color: #03BFCB;
        color: #03BFCB;
        transform: translateY(-2px);
    }

.skills-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0e1830;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 14px;
    color: #e6edf3;
    font-size: 13px;
    font-weight: 500;
}

    .skill-chip img {
        width: 18px;
        height: 18px;
    }

/*Trajetoria*/
.section-eyebrow {
    color: #03BFCB;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-title {
    text-align: left;
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 10px 0 12px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.about-sub {
    color: #aeb6c8;
    font-size: 16px;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 0 40px;
}

.journey {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

    .journey::before {
        content: '';
        position: absolute;
        left: 34px;
        top: 20px;
        bottom: 20px;
        width: 1px;
        background: rgba(255, 255, 255, 0.15);
    }

.journey-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 26px;
}

.journey-ico {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1526;
    border: 1px solid #03BFCB;
    color: #03BFCB;
    font-size: 26px;
    box-shadow: 0 0 22px -6px rgba(3, 191, 203, 0.6);
}

.journey-card {
    position: relative;
    flex: 1;
    background: #0c1424;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 20px 40px 20px 24px;
}

    .journey-card::before {
        content: '';
        position: absolute;
        left: -15px;
        top: 50%;
        width: 15px;
        height: 1px;
        background: rgba(3, 191, 203, 0.5);
    }

    .journey-card::after {
        content: '';
        position: absolute;
        right: 16px;
        top: 22px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #03BFCB;
    }

.journey-date {
    color: #03BFCB;
    font-size: 13px;
    font-weight: 600;
}

.journey-card h3 {
    text-align: left;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 4px 0 8px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.journey-card p {
    color: #98a2b6;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    max-width: 680px;
}

/*Mini estatisticas do Sobre*/
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0c1424;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 18px;
}

    .mini-stat > i {
        color: #03BFCB;
        font-size: 26px;
        flex-shrink: 0;
    }

    .mini-stat strong {
        display: block;
        color: #fff;
        font-size: 17px;
        font-weight: 800;
        line-height: 1.2;
        font-family: 'Inter', 'Segoe UI', sans-serif;
    }

    .mini-stat span {
        display: block;
        color: #8b94a7;
        font-size: 12px;
        line-height: 1.4;
    }

/*Responsivo do Sobre*/
@media (max-width: 1100px) {
    .about-inner {
        grid-template-columns: 1fr;
    }

    .profile-card {
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about {
        padding: 50px 20px;
    }

    .journey::before {
        left: 26px;
    }

    .journey-ico {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 34px;
    }
}

/*Correcao: neutraliza a regra antiga aside{width:25%} no novo card de perfil*/
aside.profile-card {
    width: 100%;
    box-sizing: border-box;
}

/*==================== SERVICOS (novo) ====================*/
#service {
    padding: 0;
}

.services-block {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-style: normal;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.head-line {
    position: relative;
    width: 150px;
    height: 1px;
}

    .head-line.left {
        background: linear-gradient(90deg, transparent, rgba(3, 191, 203, 0.6));
    }

    .head-line.right {
        background: linear-gradient(270deg, transparent, rgba(3, 191, 203, 0.6));
    }

    .head-line::before {
        content: '';
        position: absolute;
        top: -2.5px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(3, 191, 203, 0.6);
    }

    .head-line.left::before {
        left: 0;
    }

    .head-line.right::before {
        right: 0;
    }

.section-title {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 14px 0 18px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.section-sub {
    color: #aeb6c8;
    font-size: 16px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 55px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    text-align: left;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0c1626 0%, #0a1220 100%);
    border: 1px solid rgba(3, 191, 203, 0.25);
    border-radius: 16px;
    padding: 26px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

    .service-card:hover {
        border-color: rgba(3, 191, 203, 0.6);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px -20px rgba(3, 191, 203, 0.25);
    }

.service-top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    margin-bottom: 20px;
}

.service-ico {
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 1px solid rgba(3, 191, 203, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03BFCB;
    font-size: 34px;
    background: radial-gradient(circle, rgba(3, 191, 203, 0.1), transparent 70%);
    box-shadow: 0 0 25px -8px rgba(3, 191, 203, 0.5);
}

.service-card h3 {
    text-align: left;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 10px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.service-card p {
    color: #98a2b6;
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #03BFCB;
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.25s, color 0.25s;
}

    .service-link:hover {
        color: #7de8ee;
        gap: 13px;
    }

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-block {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 40px;
    }

    .head-line {
        width: 70px;
    }

    .service-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*==================== CONTATO (novo) ====================*/
#contact {
    padding: 0;
}

.contact-block {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px 30px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-style: normal;
}

.contact-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: start;
}

.contact-title {
    text-align: left;
    color: #fff;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 12px 0 16px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

    .contact-title span {
        color: #03BFCB;
    }

.contact-sub {
    color: #aeb6c8;
    font-size: 16px;
    line-height: 1.7;
    max-width: 430px;
    margin: 0 0 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #0c1424;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 16px 18px;
}

    .info-card.highlight {
        margin-top: 14px;
        border-color: rgba(3, 191, 203, 0.5);
        background: linear-gradient(180deg, rgba(3, 191, 203, 0.08), rgba(3, 191, 203, 0.02));
    }

.info-ico {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 191, 203, 0.12);
    color: #03BFCB;
    font-size: 20px;
}

    .info-ico.solid {
        border-radius: 50%;
        background: #d7dceb;
        color: #0c1424;
    }

.info-card div strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.info-card div span {
    color: #8b94a7;
    font-size: 14px;
}

/*Card do formulario*/
.contact-form-card {
    background: #0c1424;
    border: 1px solid rgba(3, 191, 203, 0.3);
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 0 45px -20px rgba(3, 191, 203, 0.35);
}

.form-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.form-head-ico {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 191, 203, 0.15);
    color: #03BFCB;
    font-size: 24px;
}

.form-head h3 {
    text-align: left;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.form-head p {
    color: #8b94a7;
    font-size: 14px;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    margin-bottom: 18px;
}

    .form-field label {
        display: block;
        text-align: left;
        color: #e6edf3;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        display: block;
        width: 100%;
        box-sizing: border-box;
        background: #0a111f;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        color: #e6edf3;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 15px;
        padding: 13px 14px;
        transition: border-color 0.25s;
    }

        .form-field input:focus,
        .form-field select:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: #03BFCB;
        }

        .form-field input::placeholder,
        .form-field textarea::placeholder {
            color: #5c6579;
        }

    .form-field textarea {
        resize: vertical;
        min-height: 120px;
    }

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b94a7;
    font-size: 13px;
    max-width: 300px;
    text-align: left;
    margin: 0;
}

button.btn-solid {
    border: none;
    cursor: pointer;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

#status {
    margin-top: 14px;
    color: #03BFCB;
    font-size: 14px;
}

/*Rodape*/
.site-footer-new {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 60px;
    padding: 24px 0 10px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

    .footer-inner p {
        color: #737d90;
        font-size: 14px;
        margin: 0;
    }

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #0e1830;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #e6edf3;
        font-size: 17px;
        transition: all 0.25s;
    }

        .footer-social a:hover {
            color: #03BFCB;
            border-color: #03BFCB;
        }

/*Responsivo do Contato*/
@media (max-width: 1100px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-block {
        padding: 60px 20px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 38px;
    }

    .contact-form-card {
        padding: 24px;
    }

    .form-footer {
        justify-content: center;
    }
}

/*==================== PROJETOS v2 ====================*/
#projects {
    padding: 0;
}

.projects-block {
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-style: normal;
}

.projects-title {
    margin: 0;
}

    .projects-title span {
        color: #03BFCB;
    }

.projects-block .section-sub {
    margin-top: 16px;
    margin-bottom: 50px;
}

.proj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    text-align: left;
}

.proj-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0c1626 0%, #0a1220 100%);
    border: 1px solid rgba(3, 191, 203, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

    .proj-card:hover {
        border-color: rgba(3, 191, 203, 0.65);
        transform: translateY(-4px);
        box-shadow: 0 24px 50px -24px rgba(3, 191, 203, 0.3);
    }

.proj-shot {
    display: block;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: #0a111f;
}

    .proj-shot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s;
    }

.proj-card:hover .proj-shot img {
    transform: scale(1.04);
}

.proj-hex {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 62px;
    color: #03BFCB;
    background: radial-gradient(circle at center, rgba(3, 191, 203, 0.12), transparent 65%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proj-body {
    flex: 1;
    padding: 22px 24px 6px;
}

    .proj-body h3 {
        text-align: left;
        color: #fff;
        font-size: 21px;
        font-weight: 700;
        margin: 0 0 10px;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        text-transform: capitalize;
    }

.proj-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

    .proj-badge i {
        font-size: 7px;
    }

    .proj-badge.pub {
        color: #2ee59d;
        border: 1px solid rgba(46, 229, 157, 0.4);
        background: rgba(46, 229, 157, 0.08);
    }

    .proj-badge.dev {
        color: #f0a437;
        border: 1px solid rgba(240, 164, 55, 0.4);
        background: rgba(240, 164, 55, 0.08);
    }

.proj-body p {
    color: #98a2b6;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 16px;
}

.proj-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .proj-tags span {
        border: 1px solid rgba(3, 191, 203, 0.45);
        color: #7de8ee;
        border-radius: 999px;
        padding: 5px 14px;
        font-size: 12px;
        font-weight: 600;
    }

.proj-actions {
    display: flex;
    gap: 12px;
    padding: 18px 24px 22px;
}

.proj-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(3, 191, 203, 0.5);
    border-radius: 10px;
    color: #7de8ee;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 16px;
    transition: all 0.25s;
}

    .proj-btn:hover {
        background: rgba(3, 191, 203, 0.1);
        color: #fff;
    }

    .proj-btn.live {
        background: #03BFCB;
        border-color: #03BFCB;
        color: #06222b;
    }

        .proj-btn.live:hover {
            filter: brightness(1.1);
            color: #06222b;
        }

    .proj-btn.disabled {
        cursor: default;
    }

        .proj-btn.disabled:hover {
            background: transparent;
            color: #7de8ee;
        }

.projects-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
    color: #aeb6c8;
    font-size: 15px;
}

    .projects-note .note-ico {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(3, 191, 203, 0.12);
        color: #03BFCB;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

/*Responsivo dos Projetos*/
@media (max-width: 900px) {
    .proj-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .projects-block {
        padding: 60px 20px;
    }

    .proj-actions {
        flex-direction: column;
    }

    .projects-note .head-line {
        display: none;
    }
}

/*Rolagem suave com compensacao da navbar fixa*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
