/* =========================
   RESET GERAL
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html{
    scroll-behavior: smooth;
}

/* =========================
   BODY
========================= */

body{

    background: linear-gradient(135deg, #4b00ff, #ff00c8);

    overflow-x: hidden;

    padding: 25px;

    min-height: 100vh;
}

/* =========================
   FUNDO BLUR
========================= */

.blur{

    position: fixed;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    filter: blur(120px);

    z-index: 0;
}

.blur1{

    background: #ff00c8;

    top: -100px;
    left: -100px;
}

.blur2{

    background: #4b00ff;

    bottom: -100px;
    right: -100px;
}

/* =========================
   CONTAINER PRINCIPAL
========================= */

.container{

    width: 100%;

    max-width: 1300px;

    margin: auto;

    min-height: 100vh;

    padding: 45px 60px;

    border-radius: 35px;

    position: relative;

    z-index: 2;

    background: rgba(0, 0, 0, 0.65);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);
}

/* =========================
   MENU
========================= */

nav{

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

/* Logo */

.logo{

    color: white;

    font-size: 30px;

    font-weight: 700;
}

.logo span{

    color: #ff00c8;
}

/* Links */

nav ul{

    display: flex;

    align-items: center;

    gap: 35px;

    list-style: none;
}

nav ul li a{

    text-decoration: none;

    color: white;

    font-size: 15px;

    transition: 0.3s ease;
}

nav ul li a:hover{

    color: #ff00c8;
}

/* =========================
   BOTÃO MENU
========================= */

.btn-nav{

    padding: 13px 30px;

    border: none;

    border-radius: 40px;

    background: linear-gradient(to right, #ff00c8, #7b2cff);

    color: white;

    font-weight: 600;

    cursor: pointer;

    transition: 0.4s ease;

    box-shadow: 0 0 25px #ff00c8;
}

.btn-nav:hover{

    transform: translateY(-5px);
}

/* =========================
   HERO
========================= */

.hero{

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

    min-height: 90vh;
}

/* =========================
   TEXTO HERO
========================= */

.hero-text h4{

    color: #ff00c8;

    letter-spacing: 5px;

    font-size: 14px;

    margin-bottom: 20px;
}

.hero-text h1{

    color: white;

    font-size: 72px;

    line-height: 1.1;

    font-weight: 700;
}

.hero-text h1 span{

    background: linear-gradient(to right, #ff00c8, #7b2cff);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-text p{

    color: #d4d4d4;

    margin-top: 25px;

    font-size: 18px;

    line-height: 1.8;

    max-width: 600px;
}

/* =========================
   BOTÃO PRINCIPAL
========================= */

.btn-main{

    margin-top: 35px;

    padding: 15px 35px;

    border: none;

    border-radius: 40px;

    background: linear-gradient(to right, #ff00c8, #7b2cff);

    color: white;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.4s ease;

    box-shadow: 0 0 25px #ff00c8;
}

.btn-main:hover{

    transform: translateY(-6px);
}

/* =========================
   AVATAR
========================= */

.image-box{

    width: 340px;
    height: 340px;

    border-radius: 50%;

    overflow: hidden;

    border: 3px solid #ff00c8;

    position: relative;

    animation:
    float 4s ease-in-out infinite,
    glow 3s ease-in-out infinite;
}

.image-box img{

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.image-box:hover img{

    transform: scale(1.05);
}

/* =========================
   ANIMAÇÕES
========================= */

@keyframes float{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-18px);
    }

    100%{
        transform: translateY(0px);
    }

}

@keyframes glow{

    0%{
        box-shadow:
        0 0 20px #ff00c8,
        0 0 50px #7b2cff;
    }

    50%{
        box-shadow:
        0 0 35px #ff00c8,
        0 0 90px #7b2cff;
    }

    100%{
        box-shadow:
        0 0 20px #ff00c8,
        0 0 50px #7b2cff;
    }

}

/* =========================
   SEÇÕES
========================= */

.about,
.projects,
.certifications,
.contact{

    margin-top: 120px;

    color: white;
}

/* Títulos */

.about h2,
.projects h2,
.certifications h2,
.contact h2{

    font-size: 42px;

    margin-bottom: 30px;
}

/* Textos */

.about p,
.contact p{

    color: #d4d4d4;

    line-height: 1.9;

    font-size: 17px;
}

/* =========================
   GRID PROJETOS
========================= */

.projects-grid{

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 25px;
}

/* =========================
   CARDS
========================= */

.project-card{

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    padding: 35px;

    border-radius: 25px;

    transition: 0.4s ease;
}

.project-card:hover{

    transform: translateY(-10px);

    box-shadow: 0 0 25px #ff00c8;
}

.project-card h3{

    color: white;

    font-size: 24px;

    margin-bottom: 15px;
}

.project-card p{

    color: #d4d4d4;

    line-height: 1.8;

    font-size: 15px;
}

/* =========================
   BOTÃO PROJETO
========================= */

.project-button{

    display: inline-block;

    margin-top: 22px;

    padding: 12px 24px;

    border-radius: 14px;

    background: linear-gradient(to right, #ff00c8, #7b2cff);

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;

    box-shadow: 0 0 18px #ff00c8;
}

.project-button:hover{

    transform: scale(1.05);

    box-shadow: 0 0 25px #ff00c8;
}

/* =========================
   CERTIFICAÇÕES
========================= */

.certification-tags{

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;
}

/* Tags */

.certification-tags a{

    padding: 14px 22px;

    border-radius: 30px;

    text-decoration: none;

    color: white;

    font-weight: 500;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.3s ease;

    box-shadow: 0 0 15px rgba(255,0,200,0.15);
}

.certification-tags a:hover{

    transform: translateY(-5px);

    background: linear-gradient(90deg, #ff00cc, #7b2cff);

    box-shadow: 0 0 25px rgba(255,0,200,0.4);
}

/* =========================
   RESPONSIVIDADE
========================= */

@media(max-width: 950px){

    .hero{

        flex-direction: column-reverse;

        text-align: center;

        justify-content: center;
    }

    .hero-text p{

        margin: 25px auto 0 auto;
    }

    .hero-text h1{

        font-size: 55px;
    }

}

@media(max-width: 700px){

    body{

        padding: 15px;
    }

    .container{

        padding: 30px 25px;
    }

    nav{

        flex-direction: column;

        gap: 25px;
    }

    nav ul{

        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;
    }

    .hero{

        gap: 35px;
    }

    .hero-text h1{

        font-size: 42px;
    }

    .hero-text p{

        font-size: 16px;
    }

    .image-box{

        width: 240px;
        height: 240px;
    }

    .about h2,
    .projects h2,
    .certifications h2,
    .contact h2{

        font-size: 34px;
    }

    .project-card{

        padding: 25px;
    }

    .project-button{

        width: 100%;

        text-align: center;
    }

    .certification-tags a{

        width: 100%;

        text-align: center;
    }

}

@media(max-width: 480px){

    .hero-text h1{

        font-size: 34px;
    }

    .hero-text h4{

        font-size: 12px;

        letter-spacing: 3px;
    }

    .hero-text p{

        font-size: 15px;
    }

    .btn-main,
    .btn-nav{

        width: 100%;
    }

    .projects-grid{

        grid-template-columns: 1fr;
    }

}