.spk-moedas-dados {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.spk-moedas-dados-container {
    width: min(100% - 7%, 1024px);
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2em;
}

.spk-moedas-dados-banner {
    overflow: clip;
}

.spk-moedas-dados-banner:hover > img {
    transform: scale(1.1);
}

.spk-moedas-dados-banner-desktop {
    width: 100%;
    max-width: 1024px;
    height: fit-content;
    max-height: 120px;
    transition: all .7s ease-out;
}

.spk-moedas-dados-banner-tablet {
    width: 100%;
    max-width: 768px;
    height: fit-content;
    max-height: 120px;
    display: none;
    transition: all .7s ease-out;
}

.spk-moedas-dados-banner-mobile {
    width: 100%;
    max-width: 480px;
    height: fit-content;
    max-height: 120px;
    display: none;
    transition: all .7s ease-out;
}

.spk-moedas-dados-render {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.spk-moedas-dados-bundle {
    width: min(100% - 7%, 1024px);
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2em;
}

.spk-moedas-dados-item {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
    gap: 2em;
}

.spk-moedas-dados-item > img {
    width: fit-content;
    height: fit-content;
    max-width: 47px;
    max-height: 47px;
}

.spk-moedas-dados-info {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 1em;
}

.spk-moedas-dados-info h2 {
    font-weight: bold;
}

.spk-moedas-dados-info h3 {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 1em;
}

.spk-moedas-dados-cotacao {
    font-size: 20px;
    font-weight: bold;
}

.spk-moedas-dados-button-box {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 1em;
}

.spk-moedas-dados-button {
    padding-inline: 14px;
    width: fit-content;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    transition: all .7s ease-out;
    color: var(--color-text-black);
    background-color: var(--color-spk-button);
    gap: .4em;
}

.spk-moedas-dados-button:hover {
    color: var(--color-text-white);
    background-color: var(--color-spk-complement);
}

.spk-moedas-dados-button img {
    width: fit-content;
    height: fit-content;
    max-width: 26px;
    max-height: 26px;
}

.spk-moedas-dados-button h2 {
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width:1024px) {
    
}

@media (max-width:768px) {
    .spk-moedas-dados-banner-desktop {
        display: none;
    }
    
    .spk-moedas-dados-banner-tablet {
        display: flex;
    }
}

@media (max-width:480px) {
    .spk-moedas-dados-banner-tablet {
        display: none;
    }

    .spk-moedas-dados-banner-mobile {
        display: flex;
    }
}
