/* Estilos padrão */
.conversao-de-venda {
    display: flex;
    align-items: center;
    padding-left: 5%;
    padding-top: 7%;
    padding-bottom: 10%;
    min-height: 70vh;
}

.conversao-box {
    display: grid;
    width: 100%;
    grid-template-areas: "image text";
    grid-template-columns: 35% 65%;
}

.gif-phone {
    grid-area: image;
    width: 70%;
}

.gif-conversao-box{
    display: flex;
    align-items: flex-end;
    
}

.text-conversao {
    padding-top: 5%;
    grid-area: text;
}

.title-conversao {
    font-size: 2.5rem;
    width: 100%;
}

.subtitle-conversao {
    font-size: 1.2rem;
    color: #0074FF;
    padding-bottom: 2%;
}

.icon-box {
    display: flex;
    align-items: center;
    margin-top: -15px;
}

.list-icons-conversao {
    display: flex;
    flex-direction: column;
    margin-left: -20px;
}

.icon-conversao {
    width: 11%;
}

.button-conversao {
    font-weight: 300;
    font-size: 1rem;
    color: #FFF;
    border-radius: 100px;
    border: none;
    background-color: #0074FF;
    height: 7%;
    width: 20%;
}

/* Estilos para telas menores (768px ou menos) */
@media screen and (max-width: 768px) {
    .conversao-de-venda {
        padding-left: 10%;
        padding-right: 10%;
    }

    .conversao-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .text-conversao{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .title-conversao {
        width: 100%;
        font-size: 1.9rem;
        line-height: 40px;
    }

    .subtitle-conversao {
        font-size: 1rem;
        width: 80%;
    }

    .icon-conversao {
        width: 25%;
    }

    .list-icons-conversao {
        margin-left: -5%;
    }

    .icon-description {
        width: 70%;
        font-size: 0.8rem;
    }

    .button-conversao {
        width: 45%;
        padding: 8px;
    }

    .gif-phone {
        display: none;
    }
}

/* Estilos para telas muito pequenas (400px ou menos) */
@media screen and (max-width: 400px) {
    .conversao-de-venda {
        padding: 7% 7% 20% 7%;
    }

    .conversao-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gif-phone {
        display: none;
    }
}

@media screen and (max-width: 667px) {
    .conversao-de-venda{
        display: flex;
        align-items: flex-start;
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 5%;
        padding-bottom: 20%;
        height: auto;
    }
}
