* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

.section-escolher{
    background-color: #294D63;
    color: white;
    max-width: 1240px;
    border-radius: 10px;
    padding: 50px;
    height:fit-content;
    display: flex;
    margin: auto;
    flex-direction: column;
    margin: 50px auto; 
    align-items: center;
}

.section-escolher h1{
    font-size: 2.5em;
}

#sub-titulo-escolher{
    text-align: center;
    font-size: 1.2em;
    font-weight: 300;
    padding: 20px 0;
    max-width: 1000px;
}

.container-escolher-cards{
    display: flex;
    flex-direction: row;
    gap: 150px;
}

.cards-escolher{
    margin-top: 30px;
    display: flex;
    width: fit-content;
    height: 200px;
    flex-direction: column;
    gap: 20px;
}

.cards-escolher p{
    font-size: 1em;
    font-weight: 300;
    max-width: 250px;
}

.titulo-cards-escolher{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.titulo-cards-escolher p{
    font-weight: 600;
    font-size: 1.3em;
}

.icon-cards-escolher{
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.icon-cards-escolher img{
    width: 50px;
}

#img-menor-foguete{
    width: 37px;

}

.section-escolher button{
    background-color: #5B8FB0;
    margin-top: 80px;
    width: 300px;
    height: 50px;
    border: none;
    color: white;
    font-size: 1.2em;
    border-radius: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section-escolher button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

@media (max-width: 640px) {
    .section-escolher {
        max-width: 336px;
        margin: 40px auto;
        height: auto;
        padding: 15px;
    }

    .section-escolher h1 {
        font-size: 14px;
    }

    #sub-titulo-escolher{
        font-size: 10px;
        max-width: auto;
    }

    .cards-escolher {
        height: auto;
        width: 100%;
        margin-top: 10px;
    }

    .cards-escolher p {
        font-size: 10px;
    }

    .container-escolher-cards {
        flex-direction: column;
        gap: 10px;
    }

    .titulo-cards-escolher {
        display: flex;
        flex-direction: row;
        align-items: center;

    }

    .titulo-cards-escolher p{
        font-weight: 600;
        font-size: 12px;
    }

    .icon-cards-escolher{
        width: 30px;
        height: 30px;
    }

    .icon-cards-escolher img {
        width: 20px;
    }

    #img-menor-foguete{
        width: 17px;
    }

    .section-escolher button{
        display: none;
    }
}