.bg-top {
    background: url("../images/bg.jpg");
    background-size: cover;
}

.top {
    height: 100vh;
}

.logo {
    padding-top: 20px;
}

.logo img {
    width: 170px;
}

.ds-flex {
    display: flex;
    align-items: center;
    /* centraliza verticalmente */
    height: calc(100vh - 80px);
    /* desconta a altura do logo (ajuste se precisar) */
}

.cta {
    max-width: 600px;
}

.cta h1 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
}

.cta a {
    text-decoration: none;
    padding: 20px 30px;
    background: #F4AC33;
    font-size: 20px;
    color: #1D3375;
    font-weight: 700;

}
.cta a:hover{
    background: #fff;
}