/* News Ticker Section */
.news-ticker-section {
    background: rgba(20, 30, 35, 0.95);
    border: 3px solid rgba(0, 255, 157, 0.4);
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(0, 255, 157, 0.2);
}

.news-ticker-header {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.3) 0%, rgba(0, 255, 157, 0.2) 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(0, 255, 157, 0.3);
}

.news-ticker-header i {
    color: #00FF9D;
    font-size: 18px;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.news-ticker-header span {
    color: #00FF9D;
    font-family: 'Bangers', cursive;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.news-ticker-wrapper {
    padding: 15px;
}

/* Scrollbar customizada */
.news-ticker-wrapper::-webkit-scrollbar {
    width: 8px;
}

.news-ticker-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.news-ticker-wrapper::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 157, 0.5);
    border-radius: 4px;
}

.news-ticker-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 157, 0.7);
}

.news-ticker-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-ticker-item {
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #00FF9D;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.news-ticker-item:last-child {
    border-bottom: none;
}

.news-ticker-item:hover {
    background: rgba(0, 255, 157, 0.05);
    border-left-color: #00FF9D;
}

.ticker-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ticker-icon {
    color: #00FF9D;
    font-size: 16px;
    min-width: 20px;
}

.ticker-expand-btn {
    margin-left: auto;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}

.ticker-expand-btn img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.ticker-expand-btn:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.ticker-short {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.ticker-content {
    margin-top: 10px;
    padding-left: 30px;
    padding-right: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.6;
    animation: slideDown 0.3s ease;
    word-wrap: break-word;
}

.ticker-content strong,
.ticker-content b {
    color: #00FF9D;
    font-weight: 700;
}

.ticker-content em,
.ticker-content i {
    color: #00FF9D;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.ticker-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.ticker-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.ticker-title-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .news-ticker-item {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .ticker-date,
    .ticker-category {
        font-size: 11px;
    }
    
    .ticker-title {
        font-size: 13px;
        width: 100%;
    }
}
