.spk-sobre {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.spk-sobre-container {
    width: min(100% - 7%, 1024px);
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.spk-sobre-bundle {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2em;
}

.spk-sobre-bundle h2 {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
}

.spk-sobre-bundle p {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    line-height: 24px;
}

.spk-sobre-banner {
    overflow: clip;
}

.spk-sobre-banner:hover > img {
    transform: scale(1.1);
}

.spk-sobre-banner-desktop {
    width: 100%;
    max-width: 1024px;
    height: fit-content;
    max-height: 120px;
    transition: all .7s ease-out;
}

.spk-sobre-banner-tablet {
    width: 100%;
    max-width: 768px;
    height: fit-content;
    max-height: 120px;
    display: none;
    transition: all .7s ease-out;
}

.spk-sobre-banner-mobile {
    width: 100%;
    max-width: 480px;
    height: fit-content;
    max-height: 120px;
    display: none;
    transition: all .7s ease-out;
}

.spk-sobre-welcome {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    font-weight: bold;
}

@media (max-width:1024px) {
    
}

@media (max-width:768px) {
    .spk-sobre-banner-desktop {
        display: none;
    }
    
    .spk-sobre-banner-tablet {
        display: flex;
    }
}

@media (max-width:480px) {
    .spk-sobre-banner-tablet {
        display: none;
    }

    .spk-sobre-banner-mobile {
        display: flex;
    }
}