* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    background-color: #111015 !important;
    color: #6a6a6e !important;
    height: 100%;
    min-height: 100vh;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif !important;
    color-scheme: dark;
}

h1 {
    outline: none;
    border: none;   
}

h1:focus {
    outline: none;
    border: none;
}

.custom-nav {
    fill: #6a6a6e;
    color: #6a6a6e !important;
}

.line {
    width: 100%;
    height: 1px;
    background-color: #38373c;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.p-page {
    padding: 5rem;
}

.loading {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #13f287;
}

.loading-ico {
    font-size: 60px;
    animation: loadingProcess 1.3s linear infinite;
}

@keyframes loadingProcess {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.chart-list {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.container {
    border: 1px solid #38373c;
    padding: 3rem;
    border-radius: 2rem;
}

.container-rounded {
    border: 1px solid #38373c;
    padding: 3rem;
    border-radius: 2rem;
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-roundeds {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
}

.sidebar {
    display: none;
    border-right: 1px solid #38373c;
    padding: 2rem;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.doc-section{
    display: flex;
    height: 100vh;
}

.doc-area {
    padding: 5rem;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
}

.title-header-doc {
    color: #fff;
    font-size: 40px;
    margin-bottom: 3rem;
}

.title-doc {
    color: #fff;
    font-size: 30px;
    margin-bottom: 1.5rem;
}

.p-doc {
    margin-bottom: 1rem;
}

.navigations {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.links-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-home {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
}

.title-logo {
    font-size: 35px;
    color: #fff;
    font-weight: 100;
}

.title-logo-tining {
    font-size: 30px;
    color: #fff;
    font-weight: 100;
}

.btn {
    background: rgb(36,35,40);
    background: linear-gradient(180deg, rgba(36,35,40,1) 2%, rgba(17,16,21,1) 100%);    
    border: 1px solid #38373c;
    outline: none;
    padding: 15px 20px 15px 20px;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 400;
    transition: 0.3s all ease;
    font-size: 15px;
}

.clipboard-area {
    background: rgb(36,35,40);
    background: linear-gradient(180deg, rgba(36,35,40,1) 2%, rgba(17,16,21,1) 100%);    
    border: 1px solid #38373c;
    outline: none;
    padding: 15px 20px 15px 20px;
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-clip {
    font-size: 30px;
}

.btn-clip-check {
    color: #13f287;
}

.btn-green {
    background-color: #13f287;  
    outline: none;
    border: none;
    padding: 15px 20px 15px 20px;
    color: #111015 !important;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s all ease;
    font-size: 15px;
}

a {
    color: #6a6a6e;
    transition: 0.3s all ease;
}

a:hover {
    color: #13f287;
} 

.gradient-text {
    background: linear-gradient(to bottom, #27e08b, #118c76);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.clip-code {
    border: 1px solid #6a6a6e;
    margin-top: 1rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    overflow: hidden;
}

.header-clip-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #6a6a6e;
}

.code-section {
    padding: 1rem;
    counter-reset: line;
    overflow-x: auto;
    white-space: nowrap;
    font-family: monospace;
}

.title-html-clip-code {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e34c26;
}

.title-terminal-clip-code {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.title-razor-clip-code {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #646cff;
}

.terminal-clip-code {
    color: #fff;
}

.button-clip {
    font-size: 20px;
    transition: 0.1s all ease;
}
.button-clip:hover {
    color: #fff;
}

.line-code {
    color: #ededed;
    padding: 5px;
}

.line-code::before {
    counter-increment: line;
    content: counter(line);
    display: inline-block;
    width: 2rem;
    margin-right: 1rem;
    color: #888;
}

.title-anotation {
    font-weight: bold;
    font-size: 17px;
}

.custom-block-anotation {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-color: #646cff;
    color: #bcc0ff;
    background-color: rgb(100, 108, 255, 0.08);
    border: 1px solid #646cff;
    padding: 1rem;
    border-radius: 10px;
    max-width: 600px;
    margin-bottom: 1rem;
}

/*================================= HEADER =================================*/
.title-header {
    font-size: 4rem;
    color: #f3f3f7;
    text-align: center;
    width: 1200px;
}

.header-home {
    height: 100vh;
    width: 100%;
    background-image: url("../wpp-header-blazor-charts.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* ================================== TYPES =======================================*/
.types-charts-section {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.title-header-types {
    font-size: 4rem;
    color: #f3f3f7;
    text-align: center;
    width: 900px;
}

.card-type {
    background-image: url("../bg-types.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #38373c;
    padding: 3rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 500px;
}

.title-type-card {
    color: #fff;
    font-size: 2rem;
}

.chart-type-list {
    display: flex;
    gap: 3rem;
    align-items: center;
}


/*================================ steps =======================================*/

.steps-section {
    height: 100%;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 15rem;
    padding-right: 15rem;
    margin-top: 10rem;
    margin-bottom: 20rem;
}

.container-cards-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-top: 5rem;
}

.colum-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 400px;
    width: 100%;
}

.instalation-step {
    background-image: url("../wpp-instalation.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #38373c;
    border-radius: 20px;
    width: 30%;
    height: 100%;
    overflow: hidden;
}

.html-step {
    background-image: url("../wpp-instalation-html.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #38373c;
    border-radius: 20px;
    width: 70%;
    height: 100%;
    overflow: hidden;
}

.import-step {
    background-image: url("../wpp-instalation-using.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #38373c;
    border-radius: 20px;
    width: 70%;
    height: 100%;
    overflow: hidden;
}

.ready-step {
    background-image: url("../wpp-instalation-ready.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #38373c;
    border-radius: 20px;
    width: 30%;
    height: 100%;
    overflow: hidden;
}

.bg-shadow-text {
    background: linear-gradient(to bottom, rgba(17, 16, 21, 0) 52%, #111015 86%, #111015 71%);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding: 3rem;
}

.title-step {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.desc-step {
    font-size: 18px;
}

/*---------- BENEFICIES SECTIONS ----------*/

.how-to-use-beneficie {
    background-image: url("../wpp-how-to-use.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #38373c;
    border-radius: 20px;
    width: 70%;
    height: 100%;
    overflow: hidden;
}

.js-beneficie {
    background-image: url("../javascript-beneficie.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #38373c;
    border-radius: 20px;
    width: 30%;
    height: 100%;
    overflow: hidden;
}

.link-beneficie {
    background-image: url("../wpp-link.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #38373c;
    border-radius: 20px;
    width: 30%;
    height: 100%;
    overflow: hidden;
}

.comparation-beneficie {
    background-image: url("../wpp-graph-beneficies.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #38373c;
    border-radius: 20px;
    width: 70%;
    height: 100%;
    overflow: hidden;
}



/* ================================== cta =======================================*/

.cta-section {
    height: 100vh;
    width: 100%;
    background-image: url("../wpp-footer.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

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

.logo-footer {
    height: 150px;
    padding: 0.2rem;
    border: 1px solid #38373c;
    background: rgb(36,35,40);
    background: linear-gradient(180deg, rgba(36,35,40,1) 2%, rgba(17,16,21,1) 100%);  
    border-radius: 25px;
    -webkit-box-shadow: 0px 0px 42px -12px rgba(0,255,150,1);
    -moz-box-shadow: 0px 0px 42px -12px rgba(0,255,150,1);
    box-shadow: 0px 0px 42px -12px rgba(0,255,150,1);
    margin-bottom: 5rem;
}

.title-footer {
    font-size: 45px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.desc-footer {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #d4d4d8;
}

.footer {
    width: 100%;
    text-align: center;
    color: #d4d4d8;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.63);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid #38373c;
    padding: 5rem;
}

.expansion-quote {
    border: 1px solid #6a6a6e !important;
    padding: 1rem !important;
    border-radius: 5px !important;
    color: #fff !important;
    margin-bottom: 0.5rem !important;
}

/* ================================== UTILS =======================================*/

.active {
    color: #13f287;
    fill: #13f287;
}

.flex-i-center {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.xl-p {
    color: #bdbdbd;
    font-size: 25px;
    width: 800px;
    text-align: center;
}
/* ============================== MOBILE MENU ====================================*/

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(17, 16, 21, 0.76);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.6px);
    -webkit-backdrop-filter: blur(10.6px);
    border-bottom: 1px solid #6a6a6e;
}

.links-mobile {
    height: 100vh;
    padding-top: 2rem;
    font-size: 20px;
}

.logo-mobile {
    height: 50px;
}

.icon-toggle-modal {
    font-size: 30px;
    color: #fff;
}

.logo-mobile-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-logo-mobile {
    font-size: 20px;
    color: #fff;
}

/* ================================== MOBILE ====================================*/

@media (max-width: 768px){
    /* - NAVBAR - */
    .nav {
        padding: 1rem;
    }
    .logo-home {
        gap: 0.3rem;
    }
    .title-logo {
        font-size: 20px;
    }
    .logo {
        width: 30px;
        height: 30px;
    }
    /* - HEADER HOME - */
    .header-home {
        padding: 1rem;
    }
    .title-header {
        font-size: 2rem;
        width: auto;
    }
    .xl-p {
        font-size: 20px;
        width: auto;
    }
    /* - STEPS SECTION - */
    .colum-step {
        flex-direction: column;
        height: 100%;
    }
    .steps-section {
        padding-right: 1rem;
        padding-left: 1rem;
        margin-top: 0;
        margin-bottom: 5rem;
    }
    .instalation-step {
        width: 100%;
    }
    .html-step {
        width: 100%;
    }
    .import-step {
        width: 100%;
    }
    .ready-step {
        width: 100%;
    }
    .how-to-use-beneficie {
        width: 100%;
    }
    .js-beneficie {
        width: 100%;
    }
    .link-beneficie {
        width: 100%;
    }
    .comparation-beneficie {
        width: 100%;
    }
    .bg-shadow-text {
        background: linear-gradient(to bottom, rgba(17, 16, 21, 0) 0%, #111015 50%, #111015 91%);
        height: 100%;
    }

    .cta-section {
        height: 100%;
        margin-top: 10rem;
    }
    .footer-content {
        padding: 1rem;
    }
    .text-to-install {
        font-size: 10px;
    }
    .clipboard-area {
        justify-content: space-between;
    }
    .btn-clip {
        font-size: 20px;
    }
    .sidebar {
        display: none;
    }
    .doc-area {
        padding: 1rem;
        margin-top: 7rem;
        margin-bottom: 7rem;
        height: auto; /* Remove a altura fixa */
        overflow-y: visible; /* Remove o scroll interno */
    }
    .line-code {
        font-size: 10px;
    }
    .line-code::before{
        width: auto;
    }
    .mobile-nav {
        display: flex;
    }
    .expansion-quote {
        padding: 0.5rem !important;
        font-size: 18px;
    }
    .expansion-quote p {
        color: #888 !important;
    }
}

.language-csharp {
    background-color: #111015 !important;
    color: #fff !important;
}

.hljs-string {
    color: #646cff !important;
}

.hljs-number {
    color: #e34c26 !important;
}

.hljs-keyword {
    color: #f27713 !important;
}

.hljs-built_in {
    color: #f2134b !important;
}

.mud-button-root {
    border-radius: 5px !important;
    background-color: #13f287 !important;
    color: #fff !important;
    transition: 0.2s all ease !important;
}

.mud-button-root:hover {
    background-color: #22b86f !important;
}

.table-section {
    overflow: auto;
}

table {
    border-collapse: collapse;
    border: 1px solid #6a6a6e;
    text-align: start;
    overflow-x: auto;
    margin-bottom: 5rem;
}

thead {
    color: #fff;
}

td, th {
    padding: 0.6em 1em;
    border: 1px solid #6a6a6e;
}

.tag-type {
    color: #bcc0ff;
    padding: 5px;
    border-radius: 5px;
    background-color: rgb(100, 108, 255, 0.08);
}

.tag-name {
    color: #f27713;
    padding: 5px;
    border-radius: 5px;
    background-color: rgba(255, 185, 100, 0.08);
}


.github-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #6a6a6e;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 50px;
}

.horizontal-bar {
    width: 100%;
    overflow-x: auto;
}

.chart-responsive {
    overflow-x: auto;
    min-width: 600px;
}

