@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,800;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;1,14..32,300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

html,
body {
    /* background: linear-gradient(
    135deg,        
    #D2FB71 0%,
    #D2FB71 50%,
    #fff 50%,
    #fff 100%
  ); */
    background:
        radial-gradient(circle at top left, rgba(230, 230, 230, 0.35), transparent 60%),
        radial-gradient(circle at top right, rgba(230, 230, 230, 0.35), transparent 60%),
        #ffffff;
    color: black;
    width: 100vw;
    height: 100vh;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
}

header {
    position: fixed;
    display: grid;
    grid-template-columns: 0.5fr 400px;
    gap: 10%;
    top: 15px;
    left: 20px;
    width: 100vw;
    z-index: 9;
}

.ul-header {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    margin-top: 15px;
    white-space: nowrap;
    font-size: 14px;
}

.ul-header li a {
    position: relative;
    padding-bottom: 1px;
}

.ul-header li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: #5b4fd9;
    border-radius: 999px;
    transition: width 0.35s ease;
}

.ul-header li a:hover::after {
    width: 100%;
}

.ul-header a,
.ul-header a:visited,
.ul-header a:hover,
.ul-header a:active,
.ul-header a:focus {
    text-decoration: none;
    border-bottom: none;
    color: #000;
}

.logo-header {
    height: 40px;
    width: auto;
    margin-top: 10px;
    margin-left: 80px;
}

/* ---- SECTION 1 ---- */
.section-home {
    width: 100vw;
    min-height: 100vh;
    position: relative;
}

/* ---- DIV INFOMATIONS ---- */
.informations {
    position: absolute;
    top: 180px;
    left: 100px;
}

.p-mini-decriptions {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #5b4fd9;
    background: rgba(91, 79, 217, 0.06);
    padding: 6px 14px;
    border-radius: 999px;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    line-height: 45px;
    margin-top: 20px;
    text-shadow:
        0 0 6px rgba(0, 0, 0, 0.22),
        0 0 18px rgba(0, 0, 0, 0.18);
}

.p-informations-descriptions {
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4a;
    max-width: 420px;
    margin-top: 16px;
    padding-left: 14px;
    border-left: 2px solid #6a60dc;
}

.p-informations-descriptions strong {
    font-weight: 600;
}

/* Animação de entrada nos textos */
@keyframes slideInLeftInformations {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.informations {
    animation: slideInLeftInformations 0.9s ease-out forwards;
    opacity: 0;
}


/* ---- div bottons ---- */
.bottons {
    position: absolute;
    top: 540px;
    left: 110px;
}

.botton-1 {
    background: #6a60dc;
    color: #fff;
    font-size: 15px;
    padding: 8px 20px;
    border: none;
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(20, 8, 8, 0.496);
    cursor: pointer;
    opacity: 0.3;
}

.botton-1:hover {
    background: #6A4DE6;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.622);
    transition: box-shadow 1s ease;
}

.botton-1 a,
.botton-1 a:visited,
.botton-1 a:hover,
.botton-1 a:active,
.botton-1 a:focus {
    text-decoration: none;
    border-bottom: none;
    color: #fff;
}



.botton-2 {
    background: #6a60dc;
    color: #fff;
    font-size: 15px;
    padding: 8px 20px;
    border: none;
    border-radius: 999px;
    margin-left: 7px;
    box-shadow: 0 0 18px rgba(20, 8, 8, 0.496);
    cursor: pointer;
}

.botton-2:hover {
    background: #6A4DE6;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.622);
    transition: box-shadow 3s ease;
}

.botton-2 a,
.botton-2 a:visited,
.botton-2 a:hover,
.botton-2 a:active,
.botton-2 a:focus {
    text-decoration: none;
    border-bottom: none;
    color: #fff;
}

/* Animação de entrada nos botões */
@keyframes buttonsSlideUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botão 1 entra primeiro */
.botton-1 {
    animation: buttonsSlideUp 0.8s ease-out forwards;
    opacity: 0;
    /* começa invisível e aparece com a animação */
}

/* Botão 2 entra logo depois */
.botton-2 {
    animation: buttonsSlideUp 0.8s ease-out 0.12s forwards;
    /* pequeno delay */
    opacity: 0;
}


/* ---- div person ---- */
.person {
    margin-left: 1000px;
    position: relative;
    display: inline-block;
}


.isa {
    margin-right: 110px;
    margin-top: 79px;
    height: 550px;
}

.person::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100px;
    border-radius: 2%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

/* ---- FOOTER  ---- */
footer {
    width: 100%;
    height: 100px;
    padding-bottom: 30px;
    position: fixed;
    bottom: 0;
}

.footer-line {
    height: 0.5px;
    background: #000;
    margin-right: 0;
    margin-left: auto;
    width: 100%;
    transform-origin: right center;
    transform: scaleX(0);
    animation: lineGrow 1.2s ease forwards;
}

@keyframes lineGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.footer-line {
    margin-bottom: 20px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-text {
    font-size: 13px;
    color: #666;
    font-family: "Nunito", sans-serif;
}

.redes {
    display: flex;
    gap: 18px;
}

.redes img {
    width: 28px;
    transition: 0.25s ease;
    cursor: pointer;
    opacity: 0.85;
}

.redes img:hover {
    transform: scale(1.12);
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(132, 71, 255, 0.25));
}

/* ---- SECTION 2 ---- */
.section-sobre-mim {
    display: flex;
    min-height: 90vh;
}

.informations-sobre-mim {
    margin-left: 100px;
    margin-top: 80px;
}

.h1-sobre-mim {
    position: relative;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 60px;
    margin-left: 150px;
}

.h1-sobre-mim::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 230px;
    height: 1px;
    background: #6A60DC;
    border-radius: 6px;
}

.tilulo-resumo {
    top: 10px;
    left: 22px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6a60dc;
    opacity: 0.9;
}

.resumo {
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
    text-align: left;
    position: relative;
    z-index: 1;
    margin-top: 22px;
    max-width: 500px;
    line-height: 23px;
}

.circulo {
    /* background: linear-gradient(135deg, #6A4DE6, #9A6AFD); */
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.257);
    height: 300px;
    width: 300px;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-left: 400px;
    margin-top: 150px;
}

.img-isa-circulo {
    height: 300px;
    width: auto;
}