/* Botão flutuante - Área dos Patrocinadores */
.sponsor-area-btn {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 2147483000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    background: linear-gradient(135deg, #d0663d 0%, #b6532e 100%);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    box-shadow: 0 6px 20px rgba(208, 102, 61, 0.45), 0 2px 6px rgba(21, 21, 21, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.sponsor-area-btn::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffdd00;
    box-shadow: 0 0 8px #ffdd00;
    flex-shrink: 0;
}

.sponsor-area-btn i {
    font-size: 13px;
}

.sponsor-area-btn:hover,
.sponsor-area-btn:focus-visible {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #e2764a 0%, #d0663d 100%);
    box-shadow: 0 10px 26px rgba(208, 102, 61, 0.6), 0 3px 10px rgba(21, 21, 21, 0.5);
    color: #fff;
}

.sponsor-area-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .sponsor-area-btn {
        top: auto;
        bottom: 90px;
        right: 16px;
        padding: 11px 16px;
        font-size: 12px;
    }
}
