/* Banner de promoção pontual */
.spot-promo-banner {
    position: relative;
    margin: 0 0 1.5rem;
    width: 100%;
    padding: 1.35rem 1.25rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 212, 0, 0.45);
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.14), rgba(0, 229, 255, 0.1));
    box-shadow: 0 0 36px rgba(255, 212, 0, 0.2), 0 16px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.spot-promo-banner__glow {
    position: absolute;
    inset: -40% -20%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 212, 0, 0.12), transparent 55%);
    pointer-events: none;
    animation: spot-promo-pulse 3s ease-in-out infinite;
}

@keyframes spot-promo-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.spot-promo-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.spot-promo-banner__head {
    min-width: 0;
}

.spot-promo-banner__aside {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.25rem;
}

@media (min-width: 720px) {
    .spot-promo-banner__inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 1.5rem 2rem;
    }

    .spot-promo-banner__head {
        flex: 1 1 50%;
    }

    .spot-promo-banner__aside {
        flex: 0 1 auto;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        margin-left: auto;
    }
}

.spot-promo-banner__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffd400;
}

.spot-promo-banner__kicker span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7a18;
    box-shadow: 0 0 10px #ff7a18;
    animation: spot-promo-blink 1.2s ease-in-out infinite;
}

@keyframes spot-promo-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.spot-promo-banner__title {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    letter-spacing: 0.03em;
    color: #f4f7ff;
    line-height: 1.1;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.spot-promo-banner__sub {
    margin: 0.5rem 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #9aa8c2;
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.spot-promo-countdown {
    text-align: center;
}

.spot-promo-countdown__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9aa8c2;
    margin-bottom: 0.45rem;
}

.spot-promo-countdown__digits {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.55rem 0.85rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spot-promo-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 2.4rem;
}

.spot-promo-countdown__unit strong {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.65rem;
    line-height: 1;
    color: #ffd400;
    text-shadow: 0 0 12px rgba(255, 212, 0, 0.45);
}

.spot-promo-countdown__unit small {
    font-size: 0.62rem;
    font-weight: 700;
    color: #9aa8c2;
    text-transform: uppercase;
}

.spot-promo-countdown__sep {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.4rem;
    color: rgba(255, 212, 0, 0.5);
    margin-top: -0.35rem;
}

.spot-promo-banner__prices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.spot-promo-banner__price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.65rem 1rem;
    border-radius: 14px;
    background: rgba(5, 8, 20, 0.55);
    min-width: 7rem;
}

.spot-promo-banner__price-item--cyan {
    border: 1px solid rgba(0, 229, 255, 0.35);
}

.spot-promo-banner__price-item--orange {
    border: 1px solid rgba(255, 122, 24, 0.4);
}

.spot-promo-banner__plan {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9aa8c2;
}

.spot-promo-banner__old {
    font-size: 0.82rem;
    color: #6b7a94;
    text-decoration: line-through;
}

.spot-promo-banner__now {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.75rem;
    color: #ffd400;
    line-height: 1.1;
}

/* Modal */
.spot-promo-modal {
    margin: auto;
    padding: 0;
    border: none;
    max-width: min(520px, calc(100vw - 2rem));
    width: 100%;
    background: transparent;
    color: #f4f7ff;
}

.spot-promo-modal::backdrop {
    background: rgba(2, 3, 8, 0.82);
    backdrop-filter: blur(6px);
}

.spot-promo-modal__card {
    position: relative;
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: 22px;
    border: 2px solid rgba(255, 212, 0, 0.4);
    background: linear-gradient(160deg, #0a1228 0%, #050814 100%);
    box-shadow: 0 0 48px rgba(255, 212, 0, 0.18), 0 24px 64px rgba(0, 0, 0, 0.55);
}

.spot-promo-modal__close {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #f4f7ff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}

.spot-promo-modal__close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.spot-promo-modal__kicker {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff7a18;
}

.spot-promo-modal__title {
    margin: 0.35rem 0 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 7vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: 0.03em;
}

.spot-promo-modal__sub {
    margin: 0.5rem 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #9aa8c2;
    text-wrap: pretty;
    overflow-wrap: break-word;
}

.spot-promo-countdown--modal {
    margin: 1.25rem 0;
}

.spot-promo-modal__offers {
    display: grid;
    gap: 0.75rem;
}

.spot-promo-modal__offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.spot-promo-modal__offer:hover {
    transform: translateY(-2px);
}

.spot-promo-modal__offer--cyan {
    border: 1px solid rgba(0, 229, 255, 0.35);
}

.spot-promo-modal__offer--cyan:hover {
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.2);
}

.spot-promo-modal__offer--orange {
    border: 1px solid rgba(255, 122, 24, 0.4);
}

.spot-promo-modal__offer--orange:hover {
    box-shadow: 0 0 24px rgba(255, 122, 24, 0.25);
}

.spot-promo-modal__offer-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9aa8c2;
}

.spot-promo-modal__offer-old {
    font-size: 0.88rem;
    color: #6b7a94;
    text-decoration: line-through;
}

.spot-promo-modal__offer-price {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.2rem;
    color: #ffd400;
    line-height: 1.1;
    text-shadow: 0 0 16px rgba(255, 212, 0, 0.45);
}

.spot-promo-modal__offer-cta {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #25d366;
}

/* Preço riscado nos cards quando promo ativa */
.offer-price-old {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6b7a94;
    text-decoration: line-through;
    margin-bottom: 0.1rem;
}

.offer-price--promo {
    color: #ffd400 !important;
}
