.artigo_master { background: var(--c-gradiente-azul);
    .thumb { aspect-ratio: 2; width: 100%; background-size: cover; border-radius: 20px; }
    .artigo { width: 75%;
        /* & * { text-align: left; width: 100%; } */
        .artigo_titulo { margin: 36px 0 12px 0; font-family: "Outfit"; font-size: min(48px, 3.5vw); font-weight: 700; line-height: 120%; color: var(--c-azul-900) }
        .artigo_corpo { font-family: "Encode"; color: black; font-size: 20px; }
    }
}

.lista li::marker {
    color: #71619C;
}
 
.card {
    display: block;
    border: 2px solid #1d8595;
    box-shadow: 0 6px 0 #b3decd;
    background-color: #fff;
    border-radius: 16px;
    padding: 0 20px;
    margin-bottom: 20px;
 
    .card-header {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.25;
        border-bottom: 1px solid #28b8ce;
        padding: 20px 0 10px;
    }
 
    .card-body {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.25;
        padding: 20px 0;
    }
}
 
 
.tabela {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
 
    td,
    th {
        border: 1px solid #ddd;
        padding: 8px;
    }
 
    tr:nth-child(even) {
        background-color: #e1f5f8;
    }
 
    tr:hover {
        background-color: #c9e6db;
    }
 
    th {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: left;
        background-color: #135863;
        color: white;
    }
}
 
.card-comparacao {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
 
    .card {
        height: 100%;
        align-self: stretch;
    }
 
    .compare-symbol {
        font-size: 32px;
        font-weight: 700;
    }
}

.timeline-zigzag {
    h4 {
        color: #71619C;
    }
 
    .blue-bg {
        /* background-color: #4D4545; */
        color: #000;
        min-height: 100%;
        width: 100%;
    }
 
    .container-fluid {
        width: 100%;
    }
 
    .container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 15px;
    }
 
    .pb-3 {
        padding-bottom: 1rem;
    }
 
    .pt-2 {
        padding-top: 0.5rem;
    }
 
    .text-center {
        text-align: center;
    }
 
    .text-right {
        text-align: right;
    }
 
    .row {
        display: flex;
        width: 100%;
    }
 
    .align-items-center {
        align-items: center;
    }
 
    .justify-content-end {
        justify-content: flex-end;
    }
 
    .col-2 {
        width: 16.666667%;
    }
 
    .col-6 {
        width: 50%;
        padding: 0 15px;
    }
 
    .col-8 {
        width: 66.666667%;
        padding: 0;
    }
 
    .circle {
        font-weight: bold;
        padding: 15px 20px;
        border-radius: 50%;
        background-color: #1d8595;
        color: #fff;
        max-height: 50px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
    }
 
    .how-it-works.row {
        display: flex;
        position: relative;
    }
 
    .how-it-works.row .col-2 {
        display: inline-flex;
        align-self: stretch;
        align-items: center;
        justify-content: center;
        position: relative;
    }
 
    .how-it-works.row .col-2::after {
        content: "";
        position: absolute;
        border-left: 3px solid #1d8595;
        z-index: 1;
    }
 
    .how-it-works.row .col-2.bottom::after {
        height: 50%;
        left: 50%;
        top: 50%;
    }
 
    .how-it-works.row .col-2.full::after {
        height: 100%;
        left: calc(50% - 3px);
    }
 
    .how-it-works.row .col-2.top::after {
        height: 50%;
        left: 50%;
        top: 0;
    }
 
    .timeline {
        display: flex;
        position: relative;
    }
 
    .timeline div {
        padding: 0;
        height: 40px;
    }
 
    .timeline hr {
        border-top: 3px solid #1d8595;
        margin: 0;
        top: 17px;
        position: relative;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
 
    .timeline .col-2 {
        display: flex;
        overflow: hidden;
        position: relative;
    }
 
    .timeline .corner {
        border: 3px solid #1d8595;
        width: 100%;
        position: relative;
        border-radius: 15px;
        box-sizing: border-box;
    }
 
    .timeline .top-right {
        left: 50%;
        top: -50%;
    }
 
    .timeline .left-bottom {
        left: -50%;
        top: calc(50% - 3px);
    }
 
    .timeline .top-left {
        left: -50%;
        top: -50%;
    }
 
    .timeline .right-bottom {
        left: 50%;
        top: calc(50% - 3px);
    }
}
 
.destaque {
    font-size: 28px;
    font-weight: 700;
    color: #71619C;
}
 

@media (min-width: 768px) {
    .card-comparacao {
        flex-direction: row;
    }
}

@media (max-width: 1000px){
    .artigo_master .artigo { width: 90% }
    .artigo_master .artigo .artigo_titulo { font-size: max(3.5vw, 30px) }
}

@media (max-width: 760px){
    .artigo_master .artigo { width: 100% }
    .artigo_master .artigo .artigo_titulo { font-size: 30px }
}