@font-face {
    font-family: 'DrukWide';
    src: url('../fonts/DrukWideBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

*,
*::before,
*::after{
    box-sizing: border-box;   /* padding e borda contam dentro da largura */
}

*{
    margin: 0;
    font-family: "Poppins";
    font-weight: 400;
}

/* nada pode ultrapassar a largura do seu container */
img,
video,
canvas{
    max-width: 100%;
}

                                                                                /* CONTAINER-ONE */

.container_one{
    padding: 0;
    position: relative;
    background-color: #fff;
    border-top: 1px solid;
}

.container_one .container-start{
    width: 97%;
    margin: 5px auto;
    border-radius: 15px;
    background: url(../../img/Primeira-imagem-de-fundo.png) no-repeat center center;
    background-size: cover;
    text-align: left;
    overflow: hidden;
}

.container_one .container-start .card-start{
    padding: 20px;
    background: rgba(0, 0, 0, 0.608);
    color: #fff;
}

.container_one .container-start .card-start .title-start{
    font-weight: 600;
}

.container_one .container-start .card-start .text-start{
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.5;
}

.container_one .container-start .card-start .button-simulation{
    display: inline-block; /* permite aplicar margin */
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 13px 40px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    color: white;
    background-color: #ffa017;
}

.container_one .container-start .card-start .button-simulation:hover{
    transform: scale(0.97);
    transition: transform 0.3s ease;
}