.sinte-news-ticker-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999999;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    min-height: 70px;
    height: 70px;
}

/* Label - Desktop vs Mobile */
.sinte-ticker-label {
    background: rgba(255,255,255,0.15);
    border-radius: 30px;
    padding: 6px 16px;
    margin-right: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.sinte-ticker-label span {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-label { 
    display: none; 
    position: relative;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

/* Container do pulsar com ondas */
.pulse-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: wave 2s infinite;
    pointer-events: none;
}

.pulse-wave:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.pulse-wave:nth-child(2) {
    width: 120%;
    height: 120%;
    animation-delay: 0.5s;
    opacity: 0.4;
}

.pulse-wave:nth-child(3) {
    width: 140%;
    height: 140%;
    animation-delay: 1s;
    opacity: 0.3;
}

.pulse-icon {
    font-size: 26px;
    color: white;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.sinte-ticker-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 70px;
}

.sinte-ticker-track {
    display: flex;
    position: absolute;
    left: 0;
    transition: transform 0.5s ease;
    gap: 15px;
    padding: 0 10px;
    height: 100%;
    align-items: center;
}

.sinte-ticker-item {
    flex: 0 0 auto;
    width: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    height: 60px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sinte-ticker-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.3);
}

.sinte-ticker-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    height: 100%;
    padding: 0;
}

.sinte-ticker-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px 0 0 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.sinte-ticker-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sinte-ticker-fallback-icon {
    font-size: 24px;
    color: white;
}

.sinte-ticker-title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    padding: 0 12px;
    margin: 0;
}

.sinte-ticker-controls {
    display: flex;
    gap: 8px;
    margin-left: 20px;
    padding: 5px;
    background: rgba(0,0,0,0.15);
    border-radius: 30px;
    height: 50px;
    align-items: center;
}

.sinte-ticker-controls button {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 18px;
}

.sinte-ticker-controls button:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* Mobile Instagram Link - SEM BACKGROUND, apenas ícone grande */
.sinte-mobile-instagram {
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    height: 70px;
    width: 70px;
    margin-left: 10px;
    font-size: 42px;
    transition: transform 0.3s ease;
}

.sinte-mobile-instagram:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.sinte-mobile-instagram i {
    font-size: 42px;
    line-height: 1;
}

.sinte-ticker-empty {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #2E7D32;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 9999999;
}

/* Responsividade - Mobile */
@media (max-width: 768px) {
    .sinte-news-ticker-wrapper { 
        padding: 0 10px; 
        min-height: 60px;
        height: 60px;
    }
    
    .desktop-label { display: none; }
    
    .mobile-label { 
        display: flex;
        width: 50px;
        height: 50px;
    }
    
    .sinte-ticker-label { 
        width: 50px; 
        height: 50px; 
        padding: 0;
        margin-right: 10px;
        background: transparent;
        border: none;
    }
    
    .desktop-controls { display: none; }
    
    .sinte-mobile-instagram { 
        display: flex; 
        height: 60px;
        width: 60px;
        font-size: 36px;
    }
    
    .sinte-mobile-instagram i {
        font-size: 36px;
    }
    
    .sinte-ticker-container { 
        height: 60px; 
    }
    
    .sinte-ticker-item { 
        width: 240px; 
        height: 50px; 
    }
    
    .sinte-ticker-thumb { 
        width: 50px; 
        height: 50px; 
    }
    
    .sinte-ticker-title { 
        font-size: 0.8rem; 
        padding: 0 8px;
    }
    
    .pulse-icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .sinte-ticker-item { 
        width: 220px; 
    }
    
    .sinte-ticker-thumb { 
        width: 50px; 
        height: 50px; 
    }
    
    .sinte-ticker-title { 
        font-size: 0.75rem; 
    }
    
    .sinte-mobile-instagram { 
        font-size: 32px;
        width: 50px;
    }
    
    .sinte-mobile-instagram i {
        font-size: 32px;
    }
    
    .mobile-label {
        width: 45px;
        height: 45px;
    }
    
    .pulse-icon {
        font-size: 22px;
    }
}

@media (max-width: 360px) {
    .sinte-ticker-item { 
        width: 200px; 
    }
    
    .sinte-ticker-thumb { 
        width: 45px; 
        height: 45px; 
    }
    
    .sinte-ticker-title { 
        font-size: 0.7rem; 
    }
}