/* ==================== COPY TO CLIPBOARD NOTIFICATION ==================== */
.copy-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--color-navy);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.copy-notification svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    flex-shrink: 0;
}

/* Copy Button Styles */
.copy-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.copy-btn {
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    line-height: 1;
    vertical-align: middle;
}

.copy-btn:hover {
    opacity: 1;
    background: var(--color-navy);
    color: var(--color-white);
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .copy-notification {
        bottom: 80px; /* Acima do botão WhatsApp */
        right: 15px;
        left: 15px;
        max-width: calc(100% - 30px);
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .copy-btn {
        font-size: 16px; /* Maior para touch */
        padding: 4px 8px;
    }
}
