.spk-banner-principal {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.spk-banner-principal-container {
    /* width: min(100% - 7%, 1024px); */
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2em;
}

.spk-banner-principal-bundle {
    overflow: clip;
    transition: all 2s;
}

.spk-banner-principal-bundle:hover > img {
    transform: scale(1.1);
}

.spk-banner-principal-desktop {
    width: 100%;
    /* max-width: 1024px; */
    height: fit-content;
    /* max-height: 120px; */
    transition: all .7s ease-out;
}

.spk-banner-principal-tablet {
    width: 100%;
    max-width: 768px;
    height: fit-content;
    max-height: 120px;
    display: none;
    transition: all .7s ease-out;
}

.spk-banner-principal-mobile {
    width: 100%;
    max-width: 480px;
    height: fit-content;
    max-height: 120px;
    display: none;
    transition: all .7s ease-out;
}

@media (max-width:1024px) {
    
}

@media (max-width:768px) {
    .spk-banner-principal-desktop {
        display: none;
    }
    
    .spk-banner-principal-tablet {
        display: flex;
    }
}

@media (max-width:480px) {
    .spk-banner-principal-tablet {
        display: none;
    }

    .spk-banner-principal-mobile {
        display: flex;
    }
}