.modal-show {
    overflow: hidden;
}

#modal-promotion {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    margin: auto;
    z-index: 15;
}

#modal-promotion>section {
    position: relative;
    max-width: min(1370px, calc(100% - 30px));
    padding: 0;
}

#modal-promotion>section>div {
    background-color: #fff;
    overflow: auto;
    border-radius: 4px;
    text-align: center;
    max-height: calc(100vh - 125px);
}

#modal-promotion h2 {
    text-transform: none;
    margin-bottom: 25px;
}

#modal-promotion img {
    max-width: 100%;
}

#modal-promotion .content {
    padding: 25px;
}

#modal-promotion a:not(.btn):hover {
    text-decoration: underline;
}

.texto-promocional p {
    color: #007bff;
    font-weight: 700;
}

nav:not(.social)>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

nav.social {
    padding-top: 15px;
}

button.close-modal {
    font-size: 0;
    border: 0;
    background-color: transparent;
    position: absolute;
    top: -35px;
    right: 0;
    box-shadow: 0 0 0 2px #fff;
    padding: 2px;
    border-radius: 4px;
}

.overlay-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 10;
}