@charset "UTF-8"; 

@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Bebas+Neue&family=Kaushan+Script&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200..700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --cor : rgb(248, 248, 248);
    --cor1: #ff6ec4;
    --cor2: #7873f5;
    --cor3: rgb(76, 0, 253);
    --cor4: rgba(76, 0, 253, 0.822);
    --cor5: #12192C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    min-height: 100%;
    background-image: linear-gradient(135deg, var(--cor2), var(--cor1));
    background-repeat: no-repeat;
    background-color: var(--cor2);
}

body {
    min-height: 100dvh;
    background-image: linear-gradient(135deg, var(--cor2) ,var(--cor1));
    background-repeat:no-repeat;
    background-attachment: scroll;
    padding: 24px;
    overflow-x: hidden;
}
/* 
---------CONTEINERS----------
*/
.container {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(280px, 420px);
    justify-content: center;
    align-content: center;
    min-height: calc(100dvh - 48px);
    text-align: center;
    gap: 0;
}

.c-direito {
    width: 100%;
    min-height: 500px;
    background-color: rgba(255, 255, 255, 0.432);
    box-shadow: 2px 2px 2px 0px #0000005e; 
    border: 2px solid rgba(225, 225, 225, 0.322);
    border-radius: 50px 0 0px 3px;
}

.c-esquerdo {
    width: 100%;
    min-height: 500px;
    background-color: var(--cor5); 
    border: 2px solid var(--cor5);
    border-radius: 0 3px 50px 0;   
}

/* 
---------PERFIL - LADO DIREITO----------
*/
.ft-perfil{
    width: clamp(110px, 22vw, 140px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(225, 225, 225, 0.322); 
    box-shadow: 2px 2px 2px 0px #00000069;
}
h1{
    color: rgb(18, 18, 19);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-family:'Montserrat Alternates', sans-serif;
    font-weight: 700;
    text-align: center;
}
.c-direito > div{
    min-height: 100%;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    
}
aside {
    padding: 1.75rem 0 0;

}
aside a:hover{
    background-color: transparent;
    padding: 8px;
    transition: .3s;
}

aside a{
    color: black;
    text-decoration: none;
    padding-left: 0;
    padding-right: 0;
}
/* 
---------SOBRE - LADO ESQUERDO----------
*/

h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-family:'Oswald', sans-serif;
    color: var(--cor3);
    text-align: center;
    font-weight: 800;
}

h3 {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-family:'Oswald', sans-serif;
    color: var(--cor3);
    text-align: center;
    font-weight: 300;
}

p {
    text-align: center;
    font-family: 'Oswald',Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: clamp(0.98rem, 1.5vw, 1.08rem);
    line-height: 1.6;
    color: var(--cor); 
    text-indent: 20px;

}
.c-esquerdo > div{
    min-height: 100%;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    
}

.btn {
    width: fit-content;
    margin: 0 auto;  
}

button {
    background-color: var(--cor3);
    color: var(--cor);
    border: 0;
    padding: 0.55rem 1.25rem;
    border-radius: 20px;
    display: block;
    box-shadow: 2px 2px 2px 0px #00000069;
    font-family: 'Oswald',Arial, Helvetica, sans-serif;
    font-weight: 320;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    border: 2px solid var(--cor4);
    transition: all 0.3s ease;
}
button:hover {
    color: rgba(225, 225, 225, 0.5);
    transform: scale(1.1);
    box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.322);
}

a{
    text-decoration: none;
}

@media (max-width: 520px) {
    body {
        padding: 16px;
    }

    .container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .c-direito,
    .c-esquerdo {
        min-height: auto;
    }

    .c-direito {
        border-radius: 36px 36px 0 0;
    }

    .c-esquerdo {
        border-radius: 0 0 36px 36px;
    }

    .c-direito > div,
    .c-esquerdo > div {
        padding: 2.5rem 1.25rem;
    }

    p {
        text-indent: 0;
    }

    .btn,
    button {
        width: 100%;
    }
}

@media (min-width: 521px) and (max-width: 900px) {
    .container {
        grid-template-columns: minmax(280px, 360px) minmax(280px, 360px);
    }

    .c-direito > div,
    .c-esquerdo > div {
        padding: 3rem 1.5rem;
    }
}

@media (max-height: 520px) and (orientation: landscape) {
    body {
        padding: 8px;
    }

    .container {
        grid-template-columns: minmax(240px, 320px) minmax(280px, 420px);
        min-height: calc(100dvh - 24px);
        width: 100%;
    }

    .c-direito,
    .c-esquerdo {
        min-height: 0;
    }

    .c-direito > div,
    .c-esquerdo > div {
        padding: 1.25rem 1rem;
    }

    .c-direito > div {
        gap: 0.5rem;
    }

    .c-esquerdo > div {
        gap: 0.75rem;
    }

    .ft-perfil {
        width: 82px;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 0.9rem;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.35;
        text-indent: 0;
    }

    aside {
        padding-top: 0.75rem;
    }

    button {
        padding: 0.45rem 1rem;
        font-size: 0.82rem;
    }
}
