/* ===== ENSOBRADOS 2027 HEADER ===== */

.ens-header-bar {
    background: #0f1115;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    z-index: 50;
}

.ens-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ens-logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.ens-logo-main {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1;
}

.ens-logo-tagline {
    font-size: 12px;
    color: #a0a0a0;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ens-header-live {
    flex: 1;
    max-width: 850px;
}

.ens-live-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 12px 18px;
    transition: .25s;
}

.ens-live-link:hover {
    transform: translateY(-2px);
    border-color: #e61919;
}

.ens-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e61919;
    animation: ensPulse 1.5s infinite;
    flex-shrink: 0;
}

@keyframes ensPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 25, 25, .7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(230, 25, 25, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 25, 25, 0);
    }
}

.ens-live-label {
    font-size: 12px;
    font-weight: 800;
    color: #e61919;
    text-transform: uppercase;
    white-space: nowrap;
}

.ens-live-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ens-header-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d5d5d5;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.ens-header-center {
    flex: 1;
    max-width: 850px;
}

.ens-date {
    color: #ffffff;
}

.ens-location {
    color: #bdbdbd;
}

.ens-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #e61919;
}

/* ===== NEWS STRIP ===== */

.ens-news-strip {
    background: #fff;
    border-bottom: 1px solid #ececec;
    padding: 14px 0;
}

.ens-news-items {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.ens-news-items::-webkit-scrollbar {
    display: none;
}

.ens-news-label {
    max-width: 1400px;
    margin: 0 auto 12px;
    padding: 0 20px;
    font-size: 11px;
    font-weight: 900;
    color: #e61919;
    letter-spacing: 1px;
}

.ens-news-card {
    min-width: 280px;
    max-width: 280px;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 10px;
    transition: .25s;
}

.ens-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.ens-news-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.ens-news-card span {
    font-size: 13px;
    line-height: 1.4;
    color: #111;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .ens-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ens-header-live {
        width: 100%;
        max-width: none;
    }

    .ens-live-link {
        flex-wrap: wrap;
        padding: 10px 14px;
    }

    .ens-logo-main {
        font-size: 24px;
    }

    .ens-live-title {
        white-space: normal;
        overflow: visible;
    }
    
    .ens-header-meta {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .ens-header-inner {
        padding: 10px 15px;
    }
    
    .ens-logo-main {
        font-size: 20px;
    }
    
    .ens-logo-tagline {
        font-size: 10px;
    }
    
    .ens-news-card {
        min-width: 220px;
        max-width: 220px;
        padding: 8px;
    }
    
    .ens-news-card img {
        width: 60px;
        height: 50px;
    }
    
    .ens-news-card span {
        font-size: 11px;
    }
}