*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
.area{
    min-height: auto;
    padding: 40px 10%;
    background: #F8F6F3;
}

.subtitulo{
    display: block;
    text-align: center;
    color: #C79A5D;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 55px;
    font-weight: 500;
}



.cards{
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 70px;
    max-width: 1300px;
    margin: 0 auto 70px;
}

.card-dark, .card{
    width: 620px;
    min-height: 200px;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 35px;
    transition: .35s;
    flex: 1;
    
}

.card-dark{
    background-color: #0c1118;
    color: #FFF;
}

.card{
    background: #FFF;
    border: 2px solid #202020;
}
.card h2{
    color: black;
}

.card-dark:hover, .card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, .12);
}

.card-dark img, .card img{
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.card-dark h2, .card h2{
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 18px;
}

.card-dark p, .card p{
    line-height: 1.2;
    font-size: 17px;
    max-width: 330px;
}

.card-dark p{
    color: #D5D5D5;
}
.card p{
    color: #444;
}

.serv{
    display: inline-block;
    margin-top: 28px;
    color: #C79A5D;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
}

.serv:hover{
    color: #9F743E;
}

.conteudoCards{
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 20px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 80px auto 0;
}

.coluna{
    flex: 1;
    width: 100%;
    position: relative;
    padding-bottom: 40px;
}

.cabecalho{
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 35px;
    min-height: 140px;
}

/* .cabecalho span{
    color: #C79A5D;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
} */

/* .cabecalho h2{
    margin-top: 8px;
    margin-bottom: 18px;
    font-size: 40px;
    font-weight: 500;
    color: #101010;
} */

.circulo{
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #111827;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.circulo img{
    width: 60px;
    height: 60px;
}

.coluna span{
    color: #C79A5D;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.coluna h2{
    margin: 12px 0;
    font-size: 42px;
    font-weight: 500;
    color: #111;
}

.coluna p{
    color: #666;
    line-height: 1.2;
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 390px;
}

.coluna::after{
    content: "";
    display: block;
    width: 320px;
    height: 3px;
    background: #C79A5D;
    margin: 35px 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 20px;

}

.servicos{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 35px;
}

.servico{
    background: #FFF; 
    border: 1px solid #E7E7E7;
    border-radius: 12px;
    padding: 20px;
    transition: .35s;
    min-height: 185px;
}

.servico:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

}
.servico img{
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
}

.servico h3{
    font-size: 19px;
    margin-bottom: 12px;
    color: #101010;
}

.servico ul{
    padding-left: 18px;
}

.servico li{
    color: #666;
    margin-bottom: 10px;
    line-height: 1.1;
}

/* @media(max-width: 1100px){
    .colunas{
        flex-direction: column;
    }
    .servicos{
        grid-template-columns: 1fr;
        flex-direction: column;
    }
} */