@charset "UTF-8";

/* FONT-WEIGHT 100 */
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-Thin.ttf) format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-ThinItalic.ttf) format("truetype");
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

/* FONT-WEIGHT 200 */
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-ExtraLight.ttf) format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-ExtraLightItalic.ttf)
        format("truetype");
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* FONT-WEIGHT 300 */
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-LightItalic.ttf) format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* FONT-WEIGHT 400 */
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-Italic.ttf) format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* FONT-WEIGHT 500 */
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-MediumItalic.ttf)
        format("truetype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* FONT-WEIGHT 700 */
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-BoldItalic.ttf) format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* FONT-WEIGHT 800 */
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-ExtraBold.ttf) format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-ExtraBoldItalic.ttf)
        format("truetype");
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* FONT-WEIGHT 900 */
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-Black.ttf) format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins/Poppins-BlackItalic.ttf) format("truetype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* RESET CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

/* VARIÁVEIS CSS */

/* DARK MODE */

:root {
    --p: #afadad;
    --destaque: #0075de;
    --destaque2: #0affeb;
    --destaque3: #004077;
    --subtitulo: #778899;
    --secundaria: #1696ff;
    --bg-primary: #202124;
    --bg-second: #2b2a33;
    --black-white: #000;
    --bg-hover-itens-menu: #272727;
}

/* CLASS LIGHT MODE */

.light:root {
    --p: #000;
    --destaque: #0075de;
    --destaque2: #0affeb;
    --destaque3: #004077;
    --subtitulo: #778899;
    --secundaria: #1696ff;
    --bg-primary: #fbfbfe;
    --bg-second: #f5f5f7;
    --black-white: #fff;
    --bg-hover-itens-menu: #d3d3d38a;
}

/* HTML / BODY */

html,
body {
    overflow-x: hidden;
    min-height: 100vh;
    min-width: 100vw;
    background-color: var(--bg-primary);
    transition: 0.5s;
}

/* SCROLL BAR */

::-webkit-scrollbar {
    width: 0.3125rem;
    background-color: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    width: 0.3125rem;
    background-color: var(--destaque);
    border-radius: 0.625rem;
}

/* OVERLAY */

.overlay {
    background-color: #000000a3;
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
    transition: 1s ease-in-out;
}

.overlay.open-overlay {
    display: flex;
    z-index: 3;
}

/* HEADER */

header {
    background-color: var(--bg-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 0.625rem #000000c3;
    padding: 0.3125rem 0.625rem;
    min-width: 100%;
    height: 70px;
    position: fixed;
    z-index: 6;
}

/* LOGOMARCA */

.logomarca {
    color: transparent;
}

.logo-animado {
    font-size: 1.2em;
    color: transparent;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.logo-animado:hover {
    color: var(--destaque);
    transition: 0.3s ease-in-out;
}

.developer {
    color: var(--subtitulo);
    font-weight: 500;
    font-style: italic;
}

.gilberto {
    color: var(--destaque);
    font-weight: bold;
    font-style: italic;
}

.maior-menor {
    -webkit-text-stroke: 1px var(--destaque);
    font-size: 2em;
    font-weight: bold;
}

.maior-menor:hover {
    color: varvar(--destaque);
}

.registrada {
    color: var(--destaque);
}

/* NAV DESKTOP */

.nav-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-desktop ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-desktop ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 1.25rem;
}

.nav-desktop ul li a {
    color: var(--subtitulo);
    font-size: 1em;
    font-weight: bolder;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
}

.nav-desktop ul li a:hover {
    color: var(--destaque);
}

.nav-desktop ul li a .material-symbols-outlined {
    color: var(--secundaria);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BUTTON MENU HAMBURGUER*/

#btn-burguer {
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

#btn-burguer label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.span-1 {
    background-color: var(--destaque);
    width: 30px;
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.4s ease-in-out;
}

.anima-span-1 {
    background-color: var(--destaque);
    width: 30px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 14px;
    transform: rotate(135deg);
}

.span-2 {
    background-color: var(--destaque);
    width: 30px;
    height: 4px;
}

.anima-span-2 {
    display: none;
}

.span-3 {
    background-color: var(--destaque);
    width: 30px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.4s ease-in-out;
}

.anima-span-3 {
    background-color: var(--destaque);
    width: 30px;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 12px;
    transform: rotate(-135deg);
}

/* MENU LATERAL*/

.menu {
    background-color: var(--bg-second);
    box-shadow: -5px 10px 10px #0000007c;
    border-radius: 0 0 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 0.625rem;
    position: absolute;
    top: 70px;
    right: -330px;
    min-width: 300px;
    max-height: 100vh;
    transition: 0.4s ease-in-out;
    z-index: 9999;
}

.anima-menu {
    transform: translateX(-330px);
}

.img-profile {
    max-width: 100px;
    height: auto;
    background-image: linear-gradient(
        to top,
        var(--black-white),
        var(--secundaria)
    );
    border: 0.0625rem solid var(--subtitulo);
    border-radius: 50%;
    margin-bottom: 0.625rem;
}

.container-email {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3125rem;
}

.container-email #icon_email {
    color: var(--subtitulo);
    font-size: 1.1rem;
}

.container-email .adress-email {
    color: var(--subtitulo);
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
}

.container-sociais {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3125rem;
    margin: 0.625rem;
}

.container-sociais .bx {
    color: var(--subtitulo);
    font-size: 1.6rem;
    margin: 0 0.625rem;
    transition: 0.3s;
}

.container-sociais .bx:hover {
    color: var(--destaque);
    cursor: pointer;
}

.btn-como-quer-ser-chamado {
    background-color: var(--bg-second);
    color: var(--subtitulo);
    font-weight: 500;
    border: none;
    border-radius: 20px;
    padding: 2px 10px;
    border: 1px solid rgba(128, 128, 128, 0.355);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.interrogacao_btn_como_deseja_serChamado {
    color: var(--destaque);
}

.btn-como-quer-ser-chamado:hover {
    color: var(--destaque);
    background-color: var(--bg-hover-itens-menu);
    box-shadow: 1px 1px 5px #000000e2;
}

#checkbox_mode_dark_light {
    opacity: 0;
}

.label_mode_dark_light {
    background-color: var(--subtitulo);
    width: 50px;
    height: 25px;
    border: none;
    border-radius: 20px;
    padding: 0.3125rem;
    margin: 1.625rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: 1s;
}

.ball {
    background-color: var(--destaque);
    box-shadow: 1px 1px 5px #000000c5;
    border: 1px solid var(--subtitulo);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

.ball:hover {
    background-color: var(--secundaria);
}

.anima-ball {
    left: 25px;
}

#moon {
    color: #09ecd9e9;
    font-size: 20px;
}

#sun {
    color: rgb(255, 255, 0);
    font-size: 20px;
}

.div-ul {
    min-width: 100%;
    display: flex;
    max-height: calc(100vh - 91px);
    overflow-y: auto;
}

.menu ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-width: 100%;
    margin-top: 1.625rem;
}

.menu ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100%;
}

.itens-menu-mobile {
    border-bottom: 1px solid rgba(128, 128, 128, 0.355);
    color: var(--subtitulo);
    font-size: 1rem;
    font-weight: bold;
    min-width: 100%;
    text-align: center;
    padding: 0.625rem;
    transition: 0.3s;
    cursor: pointer;

    position: relative;
}

.itens-menu-mobile:hover {
    color: var(--destaque);
}

.itens-menu-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--bg-hover-itens-menu);
    z-index: -2;
    transition: 0.3s;
}

.itens-menu-mobile:hover::before {
    width: 100%;
}

/* SUBTÍTULOS E PARÁGRAFOS*/

h2 {
    color: var(--subtitulo);
    text-align: center;
}

h3 {
    color: var(--secundaria);
    text-align: center;
}

p {
    color: var(--p);
}

/* SECTION HOME */

#home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0 1.25rem;
}

code {
    color: var(--destaque);
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
    font-size: 18px;
    margin: 30px 0;
}

#icon_console {
    color: var(--subtitulo);
    font-size: 20px;
}

.log {
    font-family: "Courier New", Courier, monospace;
    font-weight: lighter;
    color: var(--subtitulo);
}

.parenteses {
    color: var(--subtitulo);
    font-weight: lighter;
}

.aspas {
    color: var(--destaque);
}

.hello_world {
    color: var(--secundaria);
    font-family: "Courier New", Courier, monospace;
    font-weight: lighter;
}

.user-name {
    color: var(--destaque);
    font-weight: bold;
}

.boas-vindas {
    color: var(--p);
    font-size: 1.25rem;
    font-weight: 300;
    text-align: center;
    max-width: 700px;
}

.eu-sou {
    color: var(--subtitulo);
    font-size: 2rem;
    font-weight: 200;
    text-align: center;
    margin-top: 3rem;
}

.gilberto-lopes {
    color: var(--destaque);
    font-size: 5rem;
    font-weight: 900;
    text-align: center;

    background: linear-gradient(
        45deg,
        var(--destaque2),
        #0000ff,
        var(--secundaria),
        var(--destaque),
        var(--destaque2)
    );
    background-size: 400% 100%;
    animation: degrade 10s linear infinite alternate;

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

@keyframes degrade {
    0% {
        background-position-x: 0%;
    }

    100% {
        background-position-x: 400%;
    }
}

.full-stack {
    color: var(--subtitulo);
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    text-align: center;
}

.chaves-full-stack {
    color: var(--destaque);
    font-size: 1.8rem;
    font-weight: 500;
    font-style: normal;
    text-align: center;
}

.container-tecnologias {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.container-tecnologias .bx {
    color: var(--secundaria);
    font-size: 36px;
}

.node_36x36px {
    width: 36px;
    height: auto;
}

.img-dev-home {
    max-width: 120px;
    height: auto;
    margin-top: 1rem;
    animation: animaDev 1s linear infinite alternate-reverse;
}

@keyframes animaDev {
    0% {
        filter: drop-shadow(0px 0px 1px var(--destaque));
    }
    100% {
        filter: drop-shadow(0px 0px 10px var(--destaque));
    }
}

/* SECTION SOBRE MIM */

#sobre-mim {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.25rem;
    padding-top: 71px;
}

#sobre-mim h2 {
    margin: 0.625rem;
}

.container-sobre {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.container-texto-sobremim {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.container-texto-sobremim h3 {
    margin: 2rem;
}

.container-img-developer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-dev-sobremim {
    max-width: 50px;
    height: auto;
    filter: drop-shadow(0px 0px 1px var(--destaque));
}

.container-img-developer p {
    text-indent: 4px !important;
}

.container-texto-sobremim p {
    font-size: 0.9rem;
    text-align: justify;
    text-indent: 30px;
    margin-right: 2rem;
}

blockquote {
    color: var(--p);
    font-size: 0.9rem;
    font-style: italic;
    text-align: justify;
    text-indent: 30px;
    margin-right: 2rem;
}

cite {
    color: var(--subtitulo);
}

.container-img-sobremim {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    position: relative;
}

.container-img-sobremim::after {
    content: "";
    width: 105%;
    height: 105%;
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top: 1.5px solid var(--destaque);
    border-bottom: 1.5px solid var(--destaque);
    animation: girar 8s linear infinite;
}

.container-img-sobremim::before {
    content: "";
    width: 110%;
    height: 110%;
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    border-left: 3px solid var(--secundaria);
    border-right: 3px solid var(--secundaria);
    animation: girarReverse 4s linear infinite alternate-reverse;
}

@keyframes girar {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(180deg);
    }
}

@keyframes girarReverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-180deg);
    }
}

.img-gil-sobremim {
    /* filter: drop-shadow(0px 0px 5px var(--destaque)); */
    background-image: linear-gradient(
        to top,
        var(--black-white),
        var(--secundaria)
    );
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

/* SECTION SKILLS */

#skills {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1.25rem;
}

.container-skills {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.container-hard-skills {
    border-radius: 1.25rem;
    margin: 0.625rem;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#skills h3 {
    margin: 1.625rem;
}

.container-icons-skills {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.container-hard-skills .bx {
    text-shadow: 1px 1px 0px #000;
    font-size: 6rem;
    margin: 0.625rem;
    transition: 0.3s;
    animation: animadaImg 1s linear infinite alternate;
}

@keyframes animadaImg {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

#html {
    color: rgb(255, 94, 0);
}

#css {
    color: rgb(59, 45, 250);
}

#js {
    color: rgb(235, 250, 19);
}

#node {
    width: 5.5rem;
    height: auto;
    filter: drop-shadow(1px 1px 0px #000);
    color: #139905;
    animation: animadaImg 1s linear infinite alternate;
}

#git {
    width: 5rem;
    height: auto;
    filter: drop-shadow(1px 1px 0px #000);
    animation: animadaImg 1s linear infinite alternate;
}

.tux {
    filter: drop-shadow(0px 0px 1px #8b8b8b);
    width: 6rem;
    height: auto;
    animation: animadaImg 1s linear infinite alternate;
}

.container-soft-skills {
    border-radius: 1.25rem;
    margin: 0.625rem;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-soft-skills li::before {
    content: "+ ";
    color: var(--secundaria);
}

.container-soft-skills li {
    color: var(--p);
}

/* SECTION PROJETOS */

#projetos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 71px;
}

#projetos h2 {
    margin: 1.25rem;
}

#projetos p {
    color: var(--p);
    text-align: justify;
    padding: 1.25rem;
    max-width: 900px;
}

em {
    font-weight: bold;
}

.projetos_responsivos {
    color: var(--secundaria);
}

.container-projetos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding: 0 10rem;
    min-width: 100%;
}

.card-projetos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.card-projetos .bxl-html5 {
    color: rgba(222, 67, 24, 0.911);
    font-size: 3em;
}
.card-projetos .bxl-css3 {
    color: rgb(53, 53, 222);
    font-size: 3em;
}
.card-projetos .bxl-javascript {
    color: rgb(232, 244, 71);
    text-shadow: 1px 1px 3px black;
    font-size: 3em;
}

/* IPHONE */

.iphone {
    border-radius: 30px;
    background-image: url(../assets/img/iphone-preto.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 300px;
    height: 624px;
    padding: 75px 15px;
    margin: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone.branco {
    background-image: url(../assets/img/iphone-branco.png);
}

.iphone img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    border: 1px solid #a3a3a3;
}
.card-projetos a {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 5px #00000056;
    background-color: var(--bg-second);
    color: var(--subtitulo);
    width: calc(100% - 50px);
    border-radius: 20px;
    font-weight: bold;
    padding: 5px 10px;
    text-align: center;
    font-size: 1em;
    margin: 10px;
    transition: 0.3s ease-in-out;
    z-index: 0;
    position: relative;
}
.card-projetos a:hover {
    color: var(--destaque);
}

.card-projetos a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--bg-hover-itens-menu);
    z-index: -1;
    transition: 0.3s;
    border-radius: 20px;
}

.card-projetos a:hover::before {
    width: 100%;
}

.card-projetos a .bx-link-external {
    color: var(--secundaria);
    font-size: 1.1rem;
    margin: 0.3125rem;
}

.card-projetos a .bx-code-alt {
    color: var(--secundaria);
    font-size: 1.2rem;
    margin: 0.3125rem;
}

/* SECTION CONTATO */

#contato {
    background-image: url(../assets/img/contato.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 71px 1.25rem;
}

.mensagemPraUsuarioForm {
    max-width: 500px;
    text-align: justify;
    color: #000;
    background-color: rgba(173, 216, 230, 0.884);
    padding: 10px;
    border-radius: 20px;
}

#contato form h2 {
    color: var(--destaque);
    text-shadow: 1px 1px 0px var(--destaque3);
}

#contato form {
    backdrop-filter: blur(10px);
    background-color: transparent;
    outline: none;
    border: 1px solid var(--secundaria);
    box-shadow: 8px 10px 7px #00000063;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.25rem;
    margin: 2rem 0;
    width: 500px;
    max-width: 100%;
    border-radius: 20px;
}

#contato form label {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--destaque);
    cursor: pointer;
}

.container-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 1.25rem;
}

#contato form .material-symbols-outlined {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--destaque);
    padding: 0.3125rem;
    font-size: 1.4rem;
    cursor: pointer;
}

#contato form .input-form {
    color: rgb(73, 73, 73);
    width: 100%;
    outline: none;
    padding: 0.3125rem;
    border: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    border: 2px solid transparent;
}

#contato form .input-form:focus {
    border-radius: 1.25rem;
    border: 2px solid var(--secundaria);
    background-color: lightgray;
}

.container-textarea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

#contato form textarea {
    color: rgb(73, 73, 73);
    font-weight: 500;
    resize: none;
    max-width: 100%;
    outline: none;
    padding: 0.3125rem;
    border: none;
    border: 2px solid transparent;
    transition: 0.4s ease-in-out;
}

#contato form textarea:focus {
    border-radius: 1.25rem;
    border: 2px solid var(--secundaria);
    background-color: lightgray;
}

#contato .btn-form {
    width: 100%;
    padding: 0.3125rem;
    margin-top: 1.25rem;
    border: 1px solid var(--secundaria);
    color: var(--secundaria);
    background-color: #f5f5f7;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 1.25rem;
    font-weight: bold;
}

#contato .btn-form:hover {
    background-color: var(--destaque);
    border: 1px solid var(--destaque);
    color: #f5f5f7;
}

/* FOOTER */

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-primary);
    color: var(--subtitulo);
    text-align: center;
    padding: 0.625rem;
}

footer p {
    font-size: 12px;
    color: var(--subtitulo);
}

/* LOGOMARCA DO FOOTER */

footer .logo-animado {
    font-size: 0.9em;
}

footer .maior-menor {
    font-size: 1.4em;
}

/* BOTÃO "IR PARA O TOPO" */

footer #btn-topo {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 50px;
    color: var(--secundaria);
    transition: 0.3s ease-in-out;
    z-index: 2;
    animation: anima-btn-topo 2s infinite alternate-reverse;
}

@keyframes anima-btn-topo {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

footer #btn-topo:hover {
    color: var(--destaque);
}
