:root {
  --bg-black:linear-gradient(180deg,rgba(17, 20, 21, 1) 25%, rgba(35, 34, 34, 1) 51%, rgba(63, 63, 63, 1) 100%);
  --table-border-color: rgba(193,193,193,1);
}

body {
    margin: 0px;
}


.bg-container {
    width: auto;
    height: auto;
    background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(35, 34, 34, 1) 13%, rgba(23, 30, 31, 1) 32%, rgba(0, 58, 72, 1) 55%);
}

/* article page config */
.black{
    background: var(--bg-black);
}


.flex-top-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5%;
}

.flex-container {
    display: flex;
    height: 400px;
    flex-direction: row;
    justify-content: space-between;
}

.flex-item {
    display: flex;
    width: 100%;
    margin: 2%;
}

.title {
    font-family: 'Jost';
    font-weight: bold;
    font-size: 3.25rem;
    line-height: 54px;
    color: #f1f1f1;
}

.subtitle {
    font-family: 'Work Sans';
    font-weight: 500;
    font-size: 1.43rem;
    color: #ffffff;
    margin-top: 5%;
}

.flex-top-container span {
    color: #EC6938;
}

.align-end {
    justify-content: end;
}

.flex-item-center {}

.center {
    margin: 0 auto;
}

.blur-text {
    filter: blur(10px);
    /* desfoca o próprio texto */
}

/* animation */
svg {
    width: 400px;
    height: 50px;
}

line {
    stroke: #e45e2b;
    /* cor das linhas */
    stroke-width: 4;
    stroke-linecap: round;

    /* Animação */
    stroke-dasharray: 300;
    /* comprimento virtual */
    stroke-dashoffset: 300;
    /* começa fora da tela */
    animation: draw 1s ease forwards;
}

/* Pequeno delay em cada linha */
line:nth-child(1) {
    animation-delay: 0s;
}

line:nth-child(2) {
    animation-delay: 0.2s;
}

line:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
        /* linha aparece da direita p/ esquerda */
    }
}

.article_option {
    display: flex;
    width: 100%;
    height: 100%;
    max-height: 460px;
    max-width: 326px;
    align-items: center;
    border-radius: 24px 0px 24px 0px;
    color: #fff;
    padding: 5%;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Work Sans', Arial, sans-serif;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.10);
    transition: all 0.3s linear;
}

.article_option.orange {
    background: #EC6938;
}

.article_option.blue {
    background: #00343D;
}

.article_option h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.article_option h3 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.article_option p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    padding-top: 5%;
}

.article_option:hover {
    border-radius: 24px 24px 24px 24px;
    transform: scale(1.05);
}

/* article style */
.article-container{
    display: flex;
    flex-direction: column;
    color: #f1f1f1;
    max-width: 1188px;
    margin: 0 auto;
    padding: 5%;
    font-family: 'Work Sans';
}

.article-container h2{
    margin-top: 2.5%;
    font-size: 20px;
}
.article-container p{
    line-height: 22px;
    margin-top: 2.5%;
    text-align: justify;
    text-indent: 42px;
}
.article-container span{
    font-weight: bold;
}

/* table */
.table-container{
    width: auto;
    height: auto;
}

.tg {
    /* border-collapse: collapse; */
    margin-top: 5%;
    margin-bottom: 5%;
    border-spacing: 0;
    background: linear-gradient(180deg,rgba(53, 53, 53, 1) 25%, rgba(35, 34, 34, 1) 51%, rgba(27, 32, 33, 1) 100%);
    border-top-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.tg td {
    border: 2px solid var(--table-border-color);
    font-family: Arial, sans-serif;
    font-size: 14px;
    overflow: hidden;
    padding: 10px;
    word-break: normal;
}

.tg th {
    border: 2px solid var(--table-border-color);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal;
}

.tg .tg-0lax {
    text-align: center;
    vertical-align: top
}

.tg th.table-title,td.table-title{
    font-family: 'Jost';
    font-weight: 600;
    font-size: 1.625rem;
    min-width: 186px;
}

.tg th.text,td.text{
    font-family: 'Work Sans';
    font-weight: 400;
    font-size: 1.125rem;
}

/* article style */


@media (max-width: 900px) {
    .flex-container {
        flex-direction: column;
        height: auto;
    }

    .flex-item-center {
        justify-content: center;
        text-align: center;
        justify-self: center;
    }

    .tg th.text,
    .tg td.text,
    .tg th.table-title,
    .tg td.table-title{
        font-size: 0.875rem;
        min-width: auto;
    }
}