* {
    margin: 0;
    padding: 0;

}

body {
    color: #FFF;
    /* background-image: linear-gradient(220deg, #051e57 0%, #6115AC 100%); */
    /* background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    /*  */
    background-image: url(../img/02.png);
    background-position: center center;
    /* Centraliza a imagem */
    background-size: cover;
    /* Cobre toda a área sem distorcer */
    background-repeat: no-repeat;
    /* Evita repetição */
    background-attachment: fixed;
    /*Opcional: fixa ao rolar  */
    /*  */
    width: 100%;
    margin: 0 auto;
    font-family: "Poppins", Sans-serif;

}

.header {
    background-image: url(../img/02.png);
    background-position: center center;
    /* Centraliza a imagem */
    background-size: cover;
    /* Cobre toda a área sem distorcer */
    background-repeat: no-repeat;
    /* Evita repetição */
    /* background-attachment: fixed;  Opcional: fixa ao rolar  */
    height: 100vh;


}

.container {
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;

}

.logo {
    margin: 100px 0px 25px 16px;
    width: 100%;
}

.hero-content {
    display: flex;
    height: 400px;
}

.hero-image {
    width: 400px;

    max-width: 100%;
    max-height: 100%;
}

.hero-image img {
    width: 350px;


}

.hero-title {

    font-size: 45px;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: 0.6px;
}

.hero-subtitle {
    margin-bottom: 32px;
}

.hero-description {}

.div-cta {
    display: flex;
}

.cta {
    background-color: #FFF;
    /* Fundo branco ou outra cor sólida */
    border-radius: 15px;
    padding: 20px;
    text-decoration: inherit;
    font-family: "Poppins", Sans-serif;
    transition: all .3s;
    box-shadow: 0 10px 30px rgba(0.15, 0.15, 0.15, 0.70);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    fill: #FFF;
    color: #FFF;
    text-decoration: inherit;
}

.btn_cta {
    transition: all .3s;
    /* Gradiente apenas no texto */
    background: linear-gradient(250deg, #051e57 -20%, #6115AC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

}

.btn_cta:hover {
    transform: scale(1.1);
    transition-duration: 0.3s;
    transition-property: transform;
}

#hero {
    margin-bottom: 130px;

    @media (max-width: 1280px) {
        margin-bottom: 75px;

        .container {

            padding-top: 50px;
        }
    }



}

.btn_div {
    display: flex;
    justify-content: center;
}

@media (max-width: 1280px) {

    #hero {
        height: 80vh;
        margin-bottom: 0px;
    }
        .container {
        max-width: 1000px;
    }
}


@media (max-width: 768px) {
    #hero {
        height: 100vh;
        margin-bottom: 0px;
        display: flex;
        justify-content: center;
    }

    .container {
        max-width: 700px;
        margin: 0 auto;

    }

    .logo {
        display: none;
    }

    .hero-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .hero-image {
        margin-top: 100px;
        width: 100%;
        align-items: center;
        justify-content: center;
        display: flex;

        img {
            width: 200px;
        }
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        margin-bottom: 100px;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-bottom: 100px;
    }

    .btn_cta {
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .hero-content {
        height: 100%;
    }

    .hero-title {

        font-size: 32px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0.6px;
    }

    #hero .container {
        padding-top: 0;
        padding-bottom: 10px;
    }

    .hero-subtitle {
        margin-bottom: 32px;
    }

    .container{
        max-width: 350px;
    }
}