body {

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

.gamma-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.gamma-container iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: none;
}

/* Tablet */
@media (max-width: 768px) {
    .gamma-container iframe {
        height: 500px;
    }
}

/* Celular */
@media (max-width: 480px) {
    .gamma-container iframe {
        height: 450px;
    }
}

header p{

    font-size: 10px;
}

.perfil {

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    gap: 40px;
    color: white;
    background-color: #061721;
}

.perfil h1 {

    font-size: 20px;
}

.foto--perfil {

    border-radius: 80%;
    height: 45px;
    padding-bottom: 5px ;
    padding-top: 5px;
}

/* MENU PRINCIPAL */
.lista {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);

    z-index: 1000;

    padding: 12px 25px;

    background: rgba(15, 15, 25, 0.75);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* LISTA */
.lista ul {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;
}

/* LINKS */
.lista a {
    position: relative;

    display: block;
    padding: 10px 18px;

    color: #ffffff;
    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;

    border-radius: 30px;

    transition: all 0.3s ease;
}

/* EFEITO AO PASSAR O MOUSE */
.lista a:hover {
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.08);

    transform: translateY(-2px);
}

/* LINHA FUTURISTA */
.lista a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 5px;

    width: 0;
    height: 2px;

    background: #00e5ff;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.lista a:hover::after {
    width: 50%;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .lista {
        width: 90%;
        padding: 8px 12px;
        border-radius: 20px;
    }

    .lista ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2px;
    }

    .lista a {
        padding: 8px 10px;
        font-size: 12px;
    }
}



#sobre-min {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 40px;

    text-align: center;

    background: #080b12;

    color: white;
}

/* TÍTULO */

#sobre-min h1 {
    margin: 0;

    font-size: clamp(40px, 6vw, 75px);
    font-family: Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -2px;

    background: linear-gradient(
        90deg,
        #ffffff,
        #00e5ff
    );

    background-clip: text;
    color: transparent;
}
/* SUBTÍTULO */

#sobre-min h3 {
    max-width: 750px;

    margin-top: 25px;

    color: #aeb7c6;

    font-size: clamp(18px, 2vw, 24px);

    line-height: 1.6;

    font-weight: 400;
}

/* EFEITO DE LUZ */

#sobre-min::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background: #00e5ff;

    opacity: 0.08;

    filter: blur(120px);

    border-radius: 50%;

    pointer-events: none;
}

/* RESPONSIVO */

@media (max-width: 768px) {

    #sobre-min {
        padding: 30px 20px;
    }

    #sobre-min h1 {
        font-size: 42px;
    }

    #sobre-min h3 {
        font-size: 18px;
    }
}

/* =========================
   SEÇÃO PROJETOS
========================= */

#Projetos {
    min-height: 100vh;

    padding: 100px 8%;

    background-color: #061721;

    color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* CARD DO PROJETO */

.Projeto {
    width: 100%;
    max-width: 900px;

    padding: 30px;

    background: rgba(8, 11, 18, 0.75);

    border: 1px solid rgba(0, 229, 255, 0.15);

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);

    transition: 0.4s ease;
}


/* EFEITO DO CARD */

.Projeto:hover {
    transform: translateY(-8px);

    border-color: rgba(0, 229, 255, 0.5);

    box-shadow:
        0 20px 60px rgba(0, 229, 255, 0.12);
}


/* TÍTULO */

.Projeto h3 {
    margin-bottom: 15px;

    color: #00e5ff;

    font-size: 28px;

    font-weight: 700;
}


/* DESCRIÇÃO */

.Projeto p {
    margin-bottom: 25px;

    color: #aeb7c6;

    font-size: 17px;

    line-height: 1.6;
}


/* IMAGEM */

.Projeto a {
    display: block;

    overflow: hidden;

    border-radius: 14px;
}


/* IMAGEM DO PROJETO */

.Projeto img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 14px;

    transition: 0.5s ease;
}


/* ZOOM AO PASSAR O MOUSE */

.Projeto a:hover img {
    transform: scale(1.04);
}


/* RESPONSIVO */

@media (max-width: 768px) {

    #Projetos {
        padding: 70px 20px;
    }

    .Projeto {
        padding: 20px;
    }

    .Projeto h3 {
        font-size: 24px;
    }

    .Projeto p {
        font-size: 15px;
    }
}


body {
    background-color: rgba(3, 30, 45, 0.95);
    color: #ffffff;
    margin: 0;
}

/* Fundo geral atrás das seções */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 119, 160, 0.08);
    pointer-events: none;
    z-index: -1;
}

/* HABILIDADES */

#habilidades {
    background-color: rgba(6, 23, 33, 0.95);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.18);
    max-width: 500px;
    margin: 40px auto;

    box-shadow: 0 0 30px rgba(0, 217, 255, 0.08);
}

#habilidades h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 25px;
}

#habilidades ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#habilidades li {
    color: #b8c5ca;
    background-color: rgba(255, 255, 255, 0.03);

    padding: 14px 18px;
    margin-bottom: 10px;

    border-left: 3px solid #00d9ff;
    border-radius: 5px;

    transition: 0.3s ease;
}

#habilidades li:hover {
    color: #ffffff;
    background-color: rgba(0, 217, 255, 0.08);
    transform: translateX(8px);
    box-shadow: 0 0 12px rgba(0, 217, 255, 0.15);
}

/* =========================
   FOOTER
========================= */

footer {
    background-color: #061721;
    color: #ffffff;
    padding: 50px 8%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;

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

/* Títulos das seções */

footer h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 20px;
}

/* Textos */

footer p {
    color: #b8c5ca;
    font-size: 15px;
    line-height: 1.8;
    margin: 8px 0;
}

/* Links */

footer a {
    color: #00d9ff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

/* Efeito ao passar o mouse */

footer a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #00d9ff;
}

/* Seções */

#Links-uteis,
#Contatos {
    flex: 1;
}

/* Responsividade */

@media (max-width: 768px) {

    footer {
        flex-direction: column;
        padding: 40px 6%;
        gap: 30px;
    }

    footer h3 {
        font-size: 20px;
    }

    footer p {
        font-size: 14px;
    }
}



