/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    font-size: 20px;
}

/* Cabeçalho */
header {
    background-color: #06052b;
    padding: 60px 0;
    box-shadow: 0 20px 4px rgba(0, 0, 0, 0.1);
}

header .menu-desktop ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 40px;
}

header .menu-desktop ul li a {
    color: #fafafa;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}

header .menu-desktop ul li a:hover {
    color: #3500a0;
}

/* Redes Sociais */
.social-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.social-links img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s;
}

.social-links img:hover {
    transform: scale(1.1);
}

/* Topo do site */
.topo-do-site {
    padding: 100px 3%;
    text-align: center;
}

.topo-do-site h1 {
    font-size: 48px;
    color: #480af3;
    margin-bottom: 20px;
    font-weight: bold;
}

.topo-do-site p {
    font-size: 18px;
    color: #777;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Certificados */
#p1 {
    color: #dedde6;
    text-align: center;
    padding: 15px;
    font-family: Georgia, serif;
    font-size: 20px;
}

#h2 {
    color: #fcfcfc;
    text-align: center;
    font-family: Verdana, sans-serif;
    font-size: 45px;
}

.certificados {
    width: 100%;
    padding: 40px;
    background-color: rgba(53, 15, 221, 0.904);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.certificados-img {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px;
    width: 100%;
}

.certificados-img img {
    height: 300px;
    border: 1px solid #24223b;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
}

.certificados-img img:hover {
    transform: scale(1.05);
}

/* Hard Skills */
#hardskills {
    background-color: #eff5fd;
    padding: 60px 5%;
    text-align: center;
}

#hardskills h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.skill {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 40px 15px rgba(0, 37, 117, 0.116);
    transition: 0.3s ease-in-out;
    text-align: center;
}

.skill:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.skill img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.skill img:hover {
    transform: scale(1.1);
}

.skill h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.skill p {
    font-size: 16px;
    color: #504c4c;
    line-height: 1.5;
}

/* Imagem de Perfil */
.minha-imagem {
    padding: 85px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #012eaa;
    gap: 25px;
}

.imagem-container {
    width: 300px;
    height: 300px;
    overflow: hidden;
    border: 3px solid #ddd;
}

.imagem-perfil {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-in-out;
}

.imagem-perfil:hover {
    transform: scale(1.1);
}

/* Soft Skills */
.softskills-container {
    width: 100%;
    max-width: 12000px;
    margin: 30px auto;
    padding: 30px;
    background-color: #dbeee4;
    border-radius: 10px;
    box-shadow:  4px 12px rgba(4, 250, 4, 0.1);
}

#h22 {
    font-size: 30px;
    font-weight: 700;
    color: #37393b;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.softskills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.soft-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.soft-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.soft-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #007BFF;
    margin-bottom: 15px;
}

.soft-item p {
    font-size: 1.125rem;
    color: #555;
}

/* Projetos */
.meus-projetos {
    padding: 40px 20px;
    background-color: #3dd1a5b4;
}

.meus-projetos h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    color: #000;
}

#Utilitarios {
    color: #0db437;
    text-decoration: underline;
}

.projetos-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.projetos-scroll::-webkit-scrollbar {
    height: 8px;
}

.projetos-scroll::-webkit-scrollbar-thumb {
    background-color: #4210ce;
    border-radius: 10px;
}

.projeto {
    flex: 0 0 auto;
    width: 300px;
    background: #fff;
    border: 1px solid #1ba000;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(9, 0, 92, 0.15);
    transition: transform 0.5s ease;
}

.projeto:hover {
    transform: scale(0.97);
}

.projeto h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #005577;
}

.projeto p {
    font-size: 0.95em;
    color: #020202;
    margin-bottom: 15px;
}

.projeto a {
    display: inline-block;
    padding: 10px 15px;
    background-color: #1ba000;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.projeto a:hover {
    background-color: #158300;
}

/* Projetos Destaque */
.projetos-destaque {
    background-color: #3753a89d;
    padding: 60px 20px;
}

.projetos-destaque h2 {
    text-align: center;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Card do Projeto */
.destaque {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffffec;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.destaque:hover {
    transform: translateY(-5px);
}

.destaque img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: cover;
}

.destaque .info {
    text-align: left;
    width: 100%;
}

.destaque h3 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 10px;
}

.destaque p {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.6;
}

.destaque a {
    display: inline-block;
    padding: 10px 18px;
    background-color: #18337e;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.destaque a:hover {
    background-color: #1a00ac;
}

/* Rodapé minimalista */
.footer {
    background-color: #1b1b1b;
    color: #ffffff;
    padding: 40px 0 20px;
    text-align: center;
}

.parte-de-baixo ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.parte-de-baixo ul li a {
    color: #00bfff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.parte-de-baixo ul li a:hover {
    color: #ffffff;
}

.footer-container p {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Responsivo: Tablets */
@media (max-width: 1024px) {
    .topo-do-site h1 {
        font-size: 38px;
    }

    .skills-container,
    .softskills {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificados-img img {
        height: 250px;
    }

    .imagem-container {
        width: 250px;
        height: 250px;
    }

    .destaque {
        padding: 20px;
    }
}

/* Responsivo: Celulares */
@media (max-width: 768px) {
    header .menu-desktop ul {
        flex-direction: column;
        gap: 20px;
    }

    .topo-do-site {
        padding: 60px 5%;
    }

    .topo-do-site h1 {
        font-size: 32px;
    }

    .topo-do-site p {
        font-size: 16px;
    }

    .certificados {
        padding: 30px 15px;
    }

    .certificados-img {
        gap: 10px;
        padding: 5px;
    }

    #h2 {
        font-size: 36px;
    }

    #p1 {
        font-size: 18px;
    }

    .skills-container,
    .softskills {
        grid-template-columns: 1fr;
    }

    #hardskills h2,
    #h22 {
        font-size: 28px;
    }

    .minha-imagem {
        flex-direction: column;
        padding: 40px 0;
    }

    .imagem-container {
        width: 200px;
        height: 200px;
    }

    .meus-projetos h2,
    .projetos-destaque h2 {
        font-size: 1.5rem;
    }

    .projeto,
    .destaque {
        width: 100%;
    }

    .softskills-container {
        padding: 20px;
    }

    .footer {
        padding: 30px 10px;
    }

    .parte-de-baixo ul {
        flex-direction: column;
        gap: 10px;
    }
}
