* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    zoom: 0.98;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #01010c;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    zoom: 0.98;
}

/* Blobs */
.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.blob1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff006e, #ff4d8f);
    top: -150px;
    right: -150px;
}

.blob2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #acacac, #ebebeb);
    bottom: 1000px;
    left: 500px;
}

.blob3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff9fe7, #ee65c0);
    top: 55%;
    left: 69%;
}

.blob4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #c7c7c7, #ff7aa5);
    bottom: -00px;
    right: -100px;
}

.blob5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #272727, #747474);
    top: 5%;
    left: -50px;
}

.blob6 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ff006e, #ff7aa5);
    top: 8%;
    left: 50%;
}

.blob7 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #f792cd, #ff69af);
    top: 25%;
    right: 10%;
}

.blob8 {
    width: 157px;
    height: 157px;
    background: radial-gradient(circle, #ff69c1, #ff0077);
    top: 22%;
    left: 10%;
}

.blob9 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ff4d8f, #c77dff);
    bottom: 10%;
    left: 10%;
}
.blob10 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #616161, #ff4d8f);
    bottom: 50%;
    right: 20%;
    opacity: 0.4;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #010005;
    opacity: 0.8;
    backdrop-filter: blur(2px);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff4d8f;
}

/* Sections */
section {
    min-height: 100vh;
    padding: 100px 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contato {
    padding: 100px 40px;
    height: 50vh;
}

#sobre {
    padding: 100px 40px;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero */
.hero {
    background: var(--green-dark);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 30px 40px;
}

.hero-content {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.hero h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ff006e, #ff7aa5, #c77dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.portfolio-subtitle {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero .description {
    font-size: 12px;
    color: #bbbbbb;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff006e, #c77dff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

/* Section Titles */
.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #afafaf;
    background-clip: text;
    font-family: 'nunito', sans-serif;
    font-size: 1.52rem;
    color: #ff5c92;
    margin-bottom: 30px;
    font-weight: 700;
    margin-top: 20px;
    text-transform: uppercase;
}

/* About */
.about-content {
    max-width: 160vh;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.about-content p {
    font-size: 0.96rem;
    line-height: 2;
    color: #ffffff;
    margin-bottom: 30px;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image {
    width: 50%;
    margin-bottom: 15%;
    object-fit: cover;
}

/* Description Box */
.description-box {
    background: rgb(29, 29, 29);
    padding: 15px;
    margin-top: -80px;
    margin-left: 40px;
    position: relative;
    z-index: 10;
    max-width: 280px;
    border-radius: 4px;
}

.description-box p {
    color: rgb(255, 255, 255);
    font-size: 0.8rem;
    line-height: 1.3;
    font-family: 'Fira Mono', 'Source Code Pro', 'Consolas', monospace;
}

/* Anchor Down */
.anchor-down {
    position: relative;
    top: 180px;
    border-radius: 20%;
    color: #ffffff;
    font-size: 1rem;
    transition: background 0.2s;
    padding: 10px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.anchor-down:hover {
    color: #ffbbe3;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Resume */
.resume {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resume-title {
    font-family: 'nunito', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.resume-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.section-block {
    margin-bottom: 60px;
}

/* Timeline */
.timeline-item {
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
}

.timeline-item::before {
    content: '◆';
    position: absolute;
    left: -11px;
    top: 0;
    color: var(--yellow);
    font-size: 1.2rem;
}

.timeline-year {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.timeline-title {
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.timeline-subtitle {
    color: rgb(255, 255, 255);
    font-size: 1rem;
    line-height: 1.7;
}

.lista-cursos {
    list-style-type: disc;
    padding-left: 20px;
    color: rgb(255, 255, 255);
    text-align: left;
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.lista-cursos li {
    margin-bottom: 8px;
    margin-left: 15px;
}

a {
    color: #ffbbe3;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ff4d8f;
    text-decoration: underline;
}


/* Experience Box */
.experience-box {
    background: rgba(27, 27, 27, 0.295);
    border-radius: 20px;
    max-width: 600px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.experience-box .section-title,
.experience-box .timeline-item,
.experience-box .timeline-year,
.experience-box .timeline-title,
.experience-box .timeline-subtitle {
    color: white;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    max-width: 150vh;
    margin: 0 auto;
    padding: 20px;
    z-index: 1;
    flex-wrap: wrap;
}

.skill-item {
    text-align: center;
    padding: 30px 20px 1px 20px;
    background: rgba(255, 255, 255, 0.048);
    border-radius: 20px;
    transition: transform 0.3s, background 0.3s;
    backdrop-filter: blur(10px);
}

.skill-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 140, 190, 0.1);
}

.skill-item i {
    font-size: 48px;
    background: linear-gradient(135deg, #ff70ae, #f4e6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skill-item p {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.skill-tag {
    color: rgb(255, 255, 255);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px;
    max-height: 90px;
}

/* Software Icons */
.software-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.software-icon {
    background: var(--black);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.295);
}

/* Languages */
.language-item {
    margin-bottom: 20px;
}

.language-name {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.language-level {
    color: #ffffff;
}

/* Projects */


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

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #ff7ab4;
}

.project-tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff006e, #c77dff);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-decoration: uppercase;
}

.project-card h3 {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #ffffff;
}

.project-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.project-link {
    color: #ff4d8f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.project-link:hover {
    color: #c77dff;
}

/* Contact */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 24px;
    color: #ff4d8f;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ffe3ee;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.social-links a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff006e, #c77dff);
    transform: translateY(-5px);
}

/* Footer */
footer {
    color: #ffffff;
    text-align: center;
    position: absolute;
    z-index: 1;
    font-size: 14px;
    width: 100%;
    bottom: 50px;
    left: 0px;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* Responsive */
@media (max-width: 1024px) {
    html,
        body {
            overflow-x: hidden;
        }
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        cursor: pointer;
        z-index: 1100;
        background: none;
        border: none;
        position: absolute;
        right: 20px;
        top: 18px;
    }

    .hamburger span {
        display: block;
        height: 4px;
        width: 28px;
        background: #fff;
        margin: 4px 0;
        border-radius: 2px;
        transition: 0.3s;
    }

    .nav-links.nav-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        background: rgba(10,10,10,0.98);
        border-radius: 12px;
        padding: 20px 30px;
        gap: 20px;
        z-index: 1200;
        box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .about-image {
        width: 20%;
    }
    .about-image-wrapper:first-child .about-image {
        width: 20%;
    }
    .resume-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html,
        body {
            overflow-x: hidden;
        }
    nav {
        padding: 20px 15px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero {
        padding: 30px 10px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .hero .description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    section,
    #sobre,
    #contato {
        padding: 60px 10px;
    }

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

    .about-content {
        padding: 10px;
    }

    .about-image {
        width: 90%;
    }
    .about-image-wrapper:first-child .about-image {
        width: 60%;
    }

    .resume-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 10px;
        padding: 10px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .project-card {
        padding: 18px;
    }

    .contact-content {
        padding: 0 5px;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* Celulares  */ 
@media (max-width: 430px) {
    html,
        body {
            zoom: 0.9;
            margin-left: 2%;
    }
    nav {
padding: 34px 40px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-links {
        gap: 8px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero .subtitle {
        font-size: 13px;
    }

    .hero .description {
        font-size: 12px;
    }

    .cta-button {
        padding: 10px 18px;
        font-size: 13px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .about-image {
        width: 100%;
    }
    .about-image-wrapper:first-child .about-image {
        width: 70%;
    }

    .skills-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .project-card {
        padding: 10px;
    }

    .contact-item {
        padding: 10px;
        font-size: 13px;
    }

    .social-links {
        gap: 10px;
        margin-top: 20px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    footer {
        font-size: 11px;
        padding: 10px 0;
    }

    section,
    .resume-content
    #sobre,
    #contato {
        padding-left: 50px;
        margin-right: 5%;
    }

    .timeline-item {
        padding-left: 20px;
        padding-right: 50px;
    }
}
        
/* Responsivo para telas menores mas não tantoo */
@media (max-width: 1200px) {

            html,
                body {
                    overflow-x: hidden;
                }

                nav {
                    padding: 34px 40px;
                }


            .nav-links {
                display: none;
                /* Esconde o menu */
            }
    
            .hamburger {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 36px;
                height: 36px;
                cursor: pointer;
                z-index: 1100;
                background: none;
                border: none;
                position: absolute;
                right: 20px;
                top: 18px;
            }
    
            .hamburger span {
                display: block;
                height: 4px;
                width: 28px;
                background: #fff;
                margin: 4px 0;
                border-radius: 2px;
                transition: 0.3s;
            }
    
            .nav-links.nav-active {
                display: flex !important;
                flex-direction: column;
                position: absolute;
                top: 60px;
                right: 10px;
                background: rgba(10, 10, 10, 0.98);
                border-radius: 12px;
                padding: 20px 30px;
                gap: 20px;
                z-index: 1200;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
            }
    
            body.menu-open {
                overflow: hidden;
            }
                        .about-content {
max-width: 59vh;        } 
        }


 /* Responsivo para telas menores mas não tantoo */
        @media (max-width: 789px) {

            html,
                body {
                    overflow-x: hidden;
                }
            .nav-links {
                gap: 15px;
                flex-wrap: wrap;
            }
    
            nav {
                padding: 34px 40px;
                flex-direction: column;
                gap: 15px;
            }
    
            .hero-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            section,
            #sobre,
            #contato {
                padding: 40px 5px;
            }
                        .about-content {
                            max-width: 59vh;
        }
        }

/* telas grandes (desktops, ultrawide monitors) */
@media (min-width: 1500px) {
    body {
        max-width: 1600px;
        margin: 0 auto;
    }
    section,
    #sobre,
    #contato {
        padding-left: 0;
        padding-right: 0;
    }
    .hero-content,
    .about-content,
    .resume-content,
    .skills-grid,
    .projects-grid
     {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
}
        

