
/* Import Material Symbols  */
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,200,0,0");

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
/*==============================Global==============================*/

*{
    margin: 0;
    padding: 0;
 }

:root {
  --AzulProfundo: rgb(0, 0, 255);
  --AzulEletrico: rgb(40, 100, 255);
  --AzulCeleste: rgb(80, 200, 255);
  --AzulClaro: rgb(236, 241, 255);
  --Branco: rgb(255, 255, 255);
  --GhostWhite: rgb(251, 252, 255);
  --Verde: rgb(118, 203, 147);
  --DarkGray: rgb(64, 64, 64);
  --LightBlueWithOpacity: rgba(236, 241, 255, 0.4);
}

.light-theme {
  --PageBackground: var(--Branco);
  --HighlightBackground: var(--GhostWhite);
  --HighlightBackgroundTransparent: rgba(251, 252, 255, 0.8);
  --TextColor: var(--DarkGray);
  --HoverColor: var(--LightBlueWithOpacity);
  --BorderColor: var(--AzulClaro);
  --ImgDevices: url("/src/img/devicesBGWhite.png");
}

.dark-theme {
  --PageBackground: #181818;
  --HighlightBackground: #1f1f1f;
  --HighlightBackgroundTransparent: rgba(31, 31, 31, 0.8);
  --TextColor: var(--AzulClaro);
  --HoverColor: var(--LightBlueWithOpacity);
  --BorderColor: #2B2B2B;
  --ImgDevices: url("/src/img/devicesBGBlack.png");
}

/*==============================body==============================*/

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-top: 10px;
    padding-bottom: 50px;
}

body::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar-thumb {
    display: none;
}

/*==============================Header==============================*/

header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    height: 70px;
}

header figure img {
    width: 250px;
}


/*==============================main==============================*/

main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

/*==============================section==============================*/

section {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    width: 1080px;
    gap: 12px;
}

/*=================h2=================*/

h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    color: var(--TextColor);

}

h2 span {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    margin-top: 50px;
    color: var(--TextColor);

}

/*=================h3=================*/

h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    color: var(--TextColor);
}

h3 span {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    color: var(--TextColor);
}

/*=================p=================*/

p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    text-align: justify;
    color: var(--TextColor);
}

p a {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    text-align: justify;
    text-decoration: none;
    color: var(--AzulEletrico);
}

/*=================li=================*/

li {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    text-align: justify;
    margin-left: 20px;
    color: var(--TextColor);
}

.BTN_Voltar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    position: fixed;
    left: 50px;
    bottom: 100px;
    cursor: pointer;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(207deg, #2864FF 0%, #4392F1 100%);
    animation: EfeitoBTNVoltar 0.5s normal;
}

.BTN_Voltar:hover {
    background: linear-gradient(207deg, rgb(40, 101, 255, 0.5) 0%, rgb(67, 146, 241, 0.5) 100%);
}

.BTN_Voltar span {
    font-size: 40px;
    color: var(--Branco);
}

@keyframes EfeitoBTNVoltar {
    0% {
        opacity: 0;
        transform: translateX(-150px);
    } 100% {
        opacity: 1;
        transform: translateX(0px);
    }
}


@media (max-width: 1150px) {

    /*==============================main==============================*/

    main {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    /*==============================section==============================*/

    section {
        display: flex;
        align-items: start;
        justify-content: start;
        flex-direction: column;
        width: 90%;
    }

}