/* INÍCIO SEÇÃO MERCADO */
.mercado {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 5% 10%;
    background-image: linear-gradient(to bottom left, rgb(21, 12, 43) 70%, #1f003a 100%);
}

.texto1 {
    font-size: 40px;
    font-weight: 700;
    color: #4dffff;
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

.texto1 span {
    font-family: poppins, sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #FFFFFF;
    background-color: transparent;
}
/* FIM SEÇÃO MERCADO */

/* INÍCIO PRIMEIRA COLUNA */
.mercado-div1 {
    padding-top: 70px;
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: transparent;
}

.mercado-div1 h2 {
    font-size: 32px;
    font-weight: 700;
    color: #4dffff;
    background-color: transparent;
}

.mercado-div1 h3 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    color: #ccc;
    background-color: transparent;
}

.mercado-div1 p {
    font-family: inter, sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #ddd;
    background-color: transparent;
}

.mercado-div1 .btn {
    background-color: #0569ff;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    width: fit-content;
    transition: background-color 0.3s ease;
}

.mercado-div1 .btn:hover {
    background-color: #ffffff;
    color: #0569ff;
}
/* FIM PRIMEIRA COLUNA */

/* INÍCIO SEGUNDA COLUNA */
.mercado-div2 {
    flex: 1 1 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background-color: transparent;
}

.mercado-div2>div {
    background-color: transparent;
}

.mercado-div2 img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.mercado-div2 p {
    font-size: 15px;
    color: #ccc;
    margin-top: 4px;
    background-color: transparent;
}
/* FIM SEGUNDA COLUNA */

/* INÍCIO CARTÕES ESPECÍFICOS */
.mercado-div3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 16px 16px;
    border-radius: 20px;
    width: 288px;
    height: 310px;
    background-image: linear-gradient(to bottom left, #0569ff 20%, #1e3193 70%, rgb(42, 23, 97) 100%);
}

.mercado-div3 img {
    background-color: transparent;
    align-self: flex-start;
    margin-bottom: 20px;
    margin-left: 16px;
}

.mercado-div4,
.mercado-div5 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
    width: 288px;
    background-image: linear-gradient(to bottom left, #ffffff 20%, #ffffff 70%, rgb(255, 255, 255) 100%);
}

.mercado-div4 {
    height: 310px;
}

.mercado-div5 {
    height: 247px;
    margin-top: 30px;
}

.texto2 {
    color: #000000;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.texto2 span {
    margin-top: 10px;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1774ff;
    background-color: transparent;
}

.texto2 p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #54535e;
}

.mercado-div6 {
    display: flex;
    flex-direction: column;
    background-color: transparent;
}

.mercado-div6 img {
    margin-top: 20px;
    background-color: transparent;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.mercado-div7 {
    flex-direction: column;
    background-color: white;
    width: 100%;
}

.mercado-div7 img {
    margin-top: 20px;
    background-color: transparent;
    width: 40px;
    height: 40px;
    object-fit: contain;
    align-self: center;
}
/* FIM CARTÕES ESPECÍFICOS */

/* INÍCIO RESPONSIVIDADE */
@media (max-width: 413px) {
    .mercado {
        flex-direction: column;
        padding: 5% 5%;
        gap: 20px;
    }

    .mercado-div1,
    .mercado-div2 {
        flex: 1 1 100%;
    }

    .mercado-div2 {
        grid-template-columns: 1fr;
    }

    .mercado-div3,
    .mercado-div4,
    .mercado-div5 {
        width: 100%;
    }

    .mercado-div3 img {
        margin-left: 0;
    }

    .mercado-div5 {
        margin-top: 0;
    }
}
/* FIM RESPONSIVIDADE */