@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Montserrat:wght@400;500;600;700&display=swap');

/* Top Bar */
.eutb-bar-276ba2eb {
    position: relative;
    z-index: 99999;
    width: 100%;
    background: #0a0806;
    border-bottom: 1px solid rgba(212, 168, 87, 0.15);
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.eutb-bar-276ba2eb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 87, 0.06) 50%, transparent 100%);
    pointer-events: none;
}

/* Inner wrapper */
.eutb-inner-276ba2eb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    min-height: 44px;
    flex-wrap: wrap;
}

/* Content group */
.eutb-content-276ba2eb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Pulse dot */
.eutb-pulse-276ba2eb {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4a857;
    flex-shrink: 0;
    animation: eutb-pulse-anim-276ba2eb 2s ease-in-out infinite;
}

@keyframes eutb-pulse-anim-276ba2eb {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 168, 87, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(212, 168, 87, 0); }
}

/* EN VIVO label */
.eutb-label-276ba2eb {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #d4a857;
    line-height: 1;
}

/* Separator */
.eutb-sep-276ba2eb {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Text */
.eutb-text-276ba2eb {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    text-align: center;
}

.eutb-text-276ba2eb strong {
    font-weight: 600;
    background: linear-gradient(120deg, #ffd96b, #d4a857 50%, #ffd96b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eutb-date-276ba2eb {
    color: rgba(255, 255, 255, 0.55);
}

/* CTA Button */
.eutb-cta-276ba2eb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    background: linear-gradient(180deg, #ffd96b 0%, #d4a857 45%, #8a6020 100%);
    color: #0a0806;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 16px -4px rgba(212, 168, 87, 0.4);
    transition: all 250ms ease;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

.eutb-cta-276ba2eb:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px -4px rgba(212, 168, 87, 0.55);
    color: #0a0806;
    text-decoration: none;
}

.eutb-cta-276ba2eb:focus-visible {
    outline: 2px solid #ffd96b;
    outline-offset: 2px;
}

/* ═══════════════════════════════════════════
   MOBILE (small screens)
   ═══════════════════════════════════════════ */
@media (max-width: 600px) {
    .eutb-inner-276ba2eb {
        flex-direction: column;
        gap: 8px;
        padding: 10px 16px 12px 16px;
    }

    .eutb-content-276ba2eb {
        gap: 6px;
    }

    .eutb-date-276ba2eb {
        display: block;
        width: 100%;
    }

    .eutb-cta-276ba2eb {
        width: 100%;
        padding: 9px 18px;
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════════
   TABLET+ (768px+)
   ═══════════════════════════════════════════ */
@media (min-width: 768px) {
    .eutb-inner-276ba2eb {
        flex-wrap: nowrap;
        padding: 10px 20px;
    }

    .eutb-text-276ba2eb {
        font-size: 14px;
    }

    .eutb-cta-276ba2eb {
        padding: 8px 22px;
        font-size: 12px;
    }
}
