/* Barra sticky arriba */
.ssb-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #000000;
    color: #fff;
    padding: 16px 0;
    text-align: center;
}
.ssb-promo span {
    font-size: 1.2em;
    font-weight: bold;
}
.ssb-activate-link {
    color: #fff;
    text-decoration: underline;
    margin-left: 8px;
}
.ssb-activate-link:hover {
    color: #ddd;
    text-decoration: none;
}
.ssb-close {
    position: absolute;
    right: 24px;
    top: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    padding: 0;
}
.ssb-close:hover{
    background: none;
}
.ssb-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.ssb-form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    max-width: none;
    width: auto;
}
.ssb-input {
    padding: 10px 16px;
    font-size: 1.1em;
    border-radius: 30px !important;
    border: 1px solid #d1d1d1;
    background: #fff;
    color: #000000;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: border-color 0.2s;
    width: 200px;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
    margin-bottom: 0 !important;
}
.ssb-input:focus {
    border-color: #000000;
    outline: none;
}
.ssb-gdpr {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.95em;
    margin: 0;
    width: auto;
    min-width: 380px;
}
.ssb-gdpr input[type="checkbox"] {
    accent-color: #000000;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    border: none;
    border-radius: 30px;
}
.ssb-button {
    background: #fff;
    color: #000000;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: background 0.2s, color 0.2s;
    align-self: center;
    margin: 0;
}
.ssb-button:hover {
    background: #000000;
    color: #fff;
}
.ssb-back {
    text-decoration: underline;
    background: none;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: background 0.2s, color 0.2s;
    align-self: center;
    margin: 0;
}
.ssb-back:hover {
    text-decoration: none;
    background:none;
    color: #ddd;
}
.ssb-message {
    font-size: 1em;
}
.ssb-visually-hidden {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
@media (max-width: 600px) {
    .ssb-top {
        bottom: 0;
        top: auto;
    }
    .ssb-form {
        flex-direction: column;
        gap: 12px;
    }
    .ssb-form-group {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    #ssb-promo {
        display: inline-block;
        max-width: 80%;
        font-size: 10pt;
        line-height: normal;
    }
    .ssb-input {
        width: 100%;
        max-width: 100%;
    }
    .ssb-button {
        width: 100%;
    }
}
